/* アニメーション（シート内要素） */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* フェードイン効果を適用するクラス */
.fade-in {
  animation: fade-in 0.6s ease-in-out;
  opacity: 1;
}

/* 日本語PC */
/* フッター */
footer {
  background-image: url("/assets/img/footer/footer_bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 680px;
  display: flex;
  align-items: center;
}
footer .inner .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 140px 0;
  gap: 60px;
}
footer .inner .content .front {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  justify-content: center;
  width: 100%;
}
footer .inner .content .front img {
  width: 240px;
}
footer .inner .content .front p {
  font-size: 28px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #FFF;
}

/* 20250519 → */
footer .inner .content .front a {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .inner .content .front a div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background-color: #fff;
  padding: 6px 48px;
  border-radius: 100px;
}
footer .inner .content .front a div span {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #1e5e96;
}
footer .inner .content .front a div img {
  width: auto;
  height: 14px;
  filter: invert(64%) sepia(65%) saturate(510%) hue-rotate(180deg) brightness(90%) contrast(90%);
}
/* ←20250519 */

footer .inner .content .main {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
  color: #FFF;
}
footer .inner .content .main address p {
  font-size: 14px;
  font-weight: 400;
  color: #FFF;
  font-style: normal;
}
footer .inner .content .main .phone {
  font-size: 14px;
  font-weight: 400;
  color: #FFF;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
footer .inner .content .main .phone .lg {
  font-size: 32px;
  font-weight: 700;
  color: #FFF;
  line-height: 32px;
  margin-bottom: 8px;
}
footer .inner .content .bottom {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-top: 32px;
}
footer .inner .content .bottom .sns {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 20px;
}
footer .inner .content .bottom .sns a {
  width: 28px;
}
footer .inner .content .bottom .sns a img {
  width: 100%;
}
footer .inner .content .bottom .privacypolicy a {
  font-size: 14px;
  font-weight: 400;
  color: #FFF;
}
footer .inner .content .bottom .copyright {
  font-size: 12px;
  font-weight: 400;
  color: #FFF;
}
/* 英語PC */
.en-serif {
  font-family: "Oswald", sans-serif!important;
  font-weight: 400!important;
}
.en-footer-heading {
  font-weight: 400!important;
  font-family: "Oswald", sans-serif!important;
  font-size: 20px!important;
}

/* レスポンシブ：横幅768px以下 */
@media screen and (max-width: 768px) {
  /* フッター */
  /* 日本語SP */
  footer {
    height: auto;
  }
  footer .inner .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 80px 0;
    gap: 36px;
  }
  footer .inner .content .front {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    justify-content: center;
    width: 100%;
  }
  footer .inner .content .front img {
    width: 210px;
  }
  footer .inner .content .front p {
    font-size: 12.8px;
    font-weight: 700;
    font-family: "Noto Sans JP", sans-serif;
    color: #FFF;
    letter-spacing: .5px;
  }

  /* 20250519 → */
  footer .inner .content .front a {
    width: 210px;
  }
  footer .inner .content .front a div {
    gap: 8px;
    padding: 4px auto;
    flex-direction: row;
    white-space: nowrap;
  }
  footer .inner .content .front a div span {
    font-size: 12px;
  }
  footer .inner .content .front a div img {
    height: 12px;
  }
  /* ←20250519 */

  footer .inner .content .main {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  footer .inner .content .main address p {
    font-size: 12px;
    letter-spacing: .5px;
  }
  footer .inner .content .main .phone {
    font-size: 14px;
    font-weight: 400;
    color: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  footer .inner .content .main .phone .lg {
    font-size: 32px;
    font-weight: 700;
    color: #FFF;
    line-height: 32px;
    margin-bottom: 8px;
  }
  footer .inner .content .bottom {
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
  }
  footer .inner .content .bottom .sns {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  footer .inner .content .bottom .privacypolicy a {
    font-size: 12px;
  }
  footer .inner .content .bottom .copyright {
    font-size: 10px;
  }

  /* 英語SP */
  .en-serif {
    font-family: "Oswald", sans-serif!important;
    font-weight: 400!important;
  }
  .en-footer-heading {
    font-weight: 400!important;
    font-family: "Oswald", sans-serif!important;
    font-size: 11.6px!important;
    letter-spacing: 0!important;
  }
  footer .inner .content .main address .en-address {
    font-size: 10px!important;
    letter-spacing: .25px!important;
  }
}