.site-footer {
  font-family:
    "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  color: #fff;
  width: 100%;
  position: relative;
	z-index: 10;
}
/* --- コンタクトセクション全体の枠 --- */
.footer-contact {
  position: relative;
  /* 背景の始まりからカードまでの正確な距離 */
  padding-top: 340px;
  /* 重要：カードが下に突き抜けることを許可する（hiddenにしない） */
}
@media screen and (max-width: 767px) {
  .footer-contact {
    padding-top: 254px;
  }
  .contact-card__content {
    width: 100%;
  }
}
/* 背景画像（Safari対応パララックス） */
.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* 全ての背面に配置 */
  clip-path: inset(0); /* ここで背景を切り抜く */
}
.footer-bg::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(/create/image/footer/fix-image.jpg); /* 実際の画像パス */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* カードのコンテナ */
.footer-contact__inner {
  width: 100%;
 /* max-width: 1100px;*/
	 width: clamp(331px, 88.26vw, 936px);
  margin: 0 auto;
/*  padding: 0 20px;*/
  position: relative;
  /* カードをネイビーより上に表示させる */
  z-index: 10;
}
/* --- コンタクトカード --- */
.contact-card {
  background-color: #1d6bf3;
  border-radius: 20px;
  padding: 60px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .contact-card {
    flex-direction: column;
    padding: 45px 30px 35px;
  }
}
/* カード内のテキスト・ボタン等の装飾 */
.contact-card__subtitle {
  font-size: 16px;
  margin-bottom: 5px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .contact-card__subtitle {
    font-family: "Noto Sans JP";
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 24px */
    letter-spacing: 0.45px;
  }
}
.contact-card__title {
  font-size: 64px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .contact-card__title {
    margin-bottom: 20px;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 40px */
  }
}
.contact-card__text {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .contact-card__text {
    font-family: "Noto Sans JP";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
    letter-spacing: 0.45px;
    margin-bottom: 30px;
  }
}
.btn-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  color: #003894;
  text-decoration: none;
  font-weight: bold;
  padding: 12px 12px 12px 30px;
  border-radius: 50px;
  width: 240px;
  transition: 0.3s;
  font-family: "Noto Sans JP", sans-serif;
  border: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .btn-contact {
    width: 210px;
    height: 64px;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 24px */
    letter-spacing: 0.45px;
  }
}
.btn-arrow {
  background-color: #00307d;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .btn-arrow {
    width: 34px;
    height: 34px;
  }
}
.btn-arrow::after {
  content: "";
  width: 15px;
  height: 12px;
  aspect-ratio: 5/4;
  display: inline-block;
  background-image: url("../image/common/arrow-white.svg");
}
@media screen and (max-width: 767px) {
  .btn-arrow::after {
    width: 15px;
    height: 12px;
    aspect-ratio: 5/4;
  }
}
.btn-contact:hover {
  background-color: #00307d;
  color: #fff;
}
/* --- メインフッター（ネイビー） --- */
.footer-main {
  background-color: #00307d;
  position: relative;
  /* 背景画像よりは上で、カードよりは下 */
  z-index: 5;
  /* 上のセクションに120px食い込ませる（迫り上がる） */
  margin-top: -120px;
  /* カードと文字が被らないように十分な余白を確保 */
  padding: 180px 0 60px;
}
@media screen and (max-width: 767px) {
  .footer-main {
    padding-bottom: 40px;
    margin-top: 0;
    padding-top: 40px;
  }
  .footer-main:before {
    content: "";
    height: 261px;
    width: 100%;
    background-color: #00307d;
    display: inline-block;
    position: absolute;
    top: -261px;
  }
  .footer-info {
    width: 100%;
  }
}
.footer-main__inner {
/*  max-width: 1100px;*/
  margin: 0 auto;
 /* padding: 0 20px;*/
	 width: clamp(331px, 88.26vw, 936px);
}
/* 以下、ロゴやナビゲーションの調整 */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .footer-top {
    flex-direction: column;
    margin-bottom: 18px;
  }
}
.footer-logo img {
  height: 45px;
}
.footer-address {
  font-style: normal;
  font-size: 14px;
  line-height: 2;
  color: #fff;
}
.footer-address p {
  color: var(--color-white);
  font-feature-settings: "palt"on;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%; /* 30px */
  letter-spacing: 0.45px;
}
@media screen and (max-width: 767px) {
  .footer-address p {
    font-feature-settings: 'palt'on;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 25.2px */
    letter-spacing: 0.42px;
  }
}
.footer-tel-fax {
  color: var(--color-white);
  font-family: "Noto Sans JP";
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 24px */
  letter-spacing: 0.45px;
  margin-top: 13px;
}
@media screen and (max-width: 767px) {
  .footer-tel-fax {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: 0.42px;
    margin-top: 10px;
  }
}
.footer-tel-fax span {
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
	.footer-tel-fax span {
margin-right: 14px;
	}
}



.footer-nav {
  display: flex;
  gap: 80px;
  padding-top: 92px;
}
@media screen and (max-width: 767px) {
  .footer-nav {
    width: 100%;
    gap: 60px;
    padding-top: 25px;
  }
}
.footer-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav__list li {
  margin-bottom: 12px;
}
.footer-nav__list a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .footer-nav__list a {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 22.4px */
    letter-spacing: 0.42px;
  }
}
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 1);
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .footer-divider {
    margin-bottom: 20px;
  }
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}
.footer-link {
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .footer-link {
    font-family: "Noto Sans JP";
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 20.8px */
    letter-spacing: 0.39px;
  }
}
.copyright {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 20.8px */
  letter-spacing: 0.39px;
}
@media screen and (max-width: 767px) {
  .copyright {
    font-size: 12px;
    letter-spacing: 0.36px;
  }
}
.footer-logo {
  width: 325px;
  height: 75px;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .footer-logo {
    width: 245px;
    height: 57px;
    margin: 0 auto 30px;
  }
}
.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*無限ループ Contact us Contact us Contact us*/
.infinity-agent-slider {
  position: absolute;
  bottom: 113px;
  display: flex;
  overflow: hidden;
  width: 100%;
  pointer-events: none; /* 必要に応じて、後ろのテキストがクリックを邪魔しないように設定 */
}
.infinity-agent-inner {
  display: flex;
  white-space: nowrap;
  /* 20s の数値を小さくすると早く、大きくすると遅くなります */
  animation: loop-animation 20s linear infinite;
}
.infinity-agent-inner span {
  /* --- Figmaからのデザインデータ --- */
  color: #FFF; /* var(--, #FFF) */
  font-family: 'Montserrat', sans-serif;
  font-size: 110px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 165px */
  letter-spacing: 3.3px;
  /*text-transform: uppercase;*/
  /* ループのつなぎ目が綺麗に見えるよう、テキストの後ろに少し余白を足しています */
  padding-right: 40px;
}
/* --- 無限ループのアニメーション --- */
@keyframes loop-animation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}