@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Akshar:wght@300..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Zen+Kaku+Gothic+Antique:wght@300;400;500;700;900&display=swap");
/**
 * px単位の数値をrem単位に変換する関数
 * @param {Number} $pixels - 変換したいpx値（単位なし）
 * @return {String} rem単位の計算結果
 */
html {
  font-size: 62.5%;
}

body {
  background-color: #fff;
  color: #2f3134;
  font-family: "Zen Kaku Gothic Antique", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

body.is-loading {
  overflow: hidden;
}

p,
ul,
li,
a {
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  p,
  ul,
  li,
  a {
    font-size: 1.4rem;
  }
}

a {
  transition: all 0.2s;
}
a:hover {
  opacity: 0.75;
}

.ls-m10 {
  letter-spacing: -0.1em;
}

.ls-m20 {
  letter-spacing: -0.2em;
}

.ls-m30 {
  letter-spacing: -0.3em;
}

.ls-3 {
  letter-spacing: 0.03em;
}

.ls-5 {
  letter-spacing: 0.05em;
}

.ls-10 {
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}

.pc-only {
  display: none;
}
@media (min-width: 768px) {
  .pc-only {
    display: block;
  }
}

@media (min-width: 768px) {
  .tel {
    pointer-events: none;
  }
}

.akshar {
  font-family: "Akshar", sans-serif;
}

.inter {
  font-family: "Inter", sans-serif;
}

@keyframes appearFromBottom {
  from {
    opacity: 0;
    transform: translateY(50%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in01 .merit-item {
  opacity: 0;
  transform: translateX(-50px);
  transition: transform 0.8s ease-out, opacity 0.8s ease;
}
.fade-in01.active .merit-item:nth-child(1) {
  transition-delay: 0;
  transform: translateX(0);
  opacity: 1;
}
.fade-in01.active .merit-item:nth-child(2) {
  transition-delay: 0.2s;
  transform: translateX(0);
  opacity: 1;
}
.fade-in01.active .merit-item:nth-child(3) {
  transition-delay: 0.4s;
  transform: translateX(0);
  opacity: 1;
}
.fade-in01.active .merit-item:nth-child(4) {
  transition-delay: 0.6s;
  transform: translateX(0);
  opacity: 1;
}

.fade-in02 {
  transform: translateY(50px);
  opacity: 0;
  transition: transform 0.8s ease-out, opacity 0.8s ease;
}
.fade-in02.active {
  transform: translateY(0);
  opacity: 1;
}

#site_header {
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

header .site-header-inner {
  align-items: center;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  height: 88px;
  padding: 14px 40px 14px 34px;
}
@media (max-width: 768px) {
  header .site-header-inner {
    padding: 9px 15px 9px 20px;
    height: 57px;
  }
}
header .site-header-inner .site-header-logo img {
  height: auto;
  width: 166px;
}
@media (max-width: 768px) {
  header .site-header-inner .site-header-logo img {
    width: 81px;
  }
}
header .site-header-inner .site-header-secondary {
  display: flex;
}
@media (max-width: 1140px) {
  header .site-header-inner .site-header-secondary {
    background-color: #fff;
    box-sizing: border-box;
    flex-direction: column;
    left: 0;
    opacity: 0;
    overflow: auto;
    padding: 30px 20px 72px;
    pointer-events: none;
    position: fixed;
    row-gap: 70px;
    top: 88px;
    width: 100%;
    z-index: 10;
  }
  header .site-header-inner .site-header-secondary.opening {
    transition: all 0.35s ease;
    opacity: 1;
    pointer-events: auto;
    height: calc(100dvh - 88px);
  }
}
@media (max-width: 768px) {
  header .site-header-inner .site-header-secondary {
    top: 57px;
  }
  header .site-header-inner .site-header-secondary.opening {
    height: calc(100dvh - 57px);
  }
}
header .site-header-inner .site-header-gnav ul {
  display: flex;
}
header .site-header-inner .site-header-gnav ul li {
  border-right: 1px solid #2f3134;
  padding-left: 26px;
  padding-right: 26px;
}
header .site-header-inner .site-header-gnav ul li:first-child {
  padding-left: 0;
}
header .site-header-inner .site-header-gnav ul li:last-child {
  border-right: none;
}
@media (max-width: 1140px) {
  header .site-header-inner .site-header-gnav ul li {
    width: 100%;
    padding: 20px 20px !important;
    border-right: none;
    border-top: 1px solid #DDDDDD;
  }
  header .site-header-inner .site-header-gnav ul li:last-child {
    border-bottom: 1px solid #DDDDDD;
  }
}
header .site-header-inner .site-header-gnav ul li a {
  font-weight: 500;
}
header .site-header-inner .site-header-gnav ul li a:hover {
  color: #1f3f7f;
  opacity: 1;
}
@media (max-width: 1140px) {
  header .site-header-inner .site-header-gnav ul li a {
    font-size: 1.8rem;
    display: block;
    position: relative;
    padding-right: 25px;
  }
  header .site-header-inner .site-header-gnav ul li a::after {
    content: "";
    width: 20px;
    height: 20px;
    background: url("../img/common/sp_nav_item.png") no-repeat center/contain;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -10px;
  }
}
@media (max-width: 1140px) {
  header .site-header-inner .site-header-gnav ul {
    align-items: center;
    flex-direction: column;
  }
}

header .site-header-cta a {
  background: linear-gradient(276deg, rgb(7, 32, 89) 0%, rgb(236, 107, 94) 100%);
  border-radius: 35px;
  color: #fff;
  font-weight: 700;
  padding: 14.5px 44px;
}
@media (max-width: 1140px) {
  header .site-header-cta a {
    font-size: 1.8rem;
    padding: 22.5px 45px;
  }
}
@media (max-width: 1140px) {
  header .site-header-cta {
    margin-inline: auto;
  }
}

#btn-hamburger {
  display: none;
}
@media (max-width: 1140px) {
  #btn-hamburger {
    background: linear-gradient(276deg, rgb(7, 32, 89) 0%, rgb(236, 107, 94) 100%);
    border-radius: 50%;
    display: block;
    position: relative;
    top: 0;
    right: 0;
    width: 39px;
    height: 39px;
    z-index: 1000;
    cursor: pointer;
  }
  #btn-hamburger.opening .border:first-child {
    transform: rotate(45deg);
    top: 50%;
  }
  #btn-hamburger.opening .border:nth-child(2) {
    opacity: 0;
  }
  #btn-hamburger.opening .border:nth-child(3) {
    top: 50%;
    transform: rotate(-45deg);
  }
  #btn-hamburger .border {
    background-color: #fff;
    background-repeat: no-repeat;
    height: 1px;
    left: 50%;
    position: absolute;
    transition: opacity, transform 0.2s ease;
    translate: -50% 0;
    width: 14px;
    z-index: 1;
  }
  #btn-hamburger .border:first-child {
    top: 33%;
  }
  #btn-hamburger .border:nth-child(2) {
    transform: rotate(0);
    opacity: 1;
    top: 50%;
  }
  #btn-hamburger .border:nth-child(3) {
    top: 67%;
  }
}

main {
  background-color: #fff;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
}

footer {
  position: sticky;
  bottom: 0;
  left: 0;
  padding-bottom: 50px;
  z-index: 0;
}
footer .footer-container {
  background: linear-gradient(90deg, rgb(9, 139, 235) 0%, rgb(7, 32, 89) 100%);
  padding: 81px 90px;
}
@media (max-width: 768px) {
  footer .footer-container {
    padding: 58px 0 45px;
  }
}
footer .footer-container h2 {
  background-color: #fff;
  border-radius: 3px;
  color: #1f3f7f;
  font-size: 2.3rem;
  font-weight: 400;
  margin-inline: auto;
  padding: 2px 28px 1px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  footer .footer-container h2 {
    font-size: 1.6rem;
    padding: 2px 19px;
  }
}
footer .contact-container {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 55px;
  row-gap: 36px;
}
@media (max-width: 1140px) {
  footer .contact-container {
    flex-wrap: wrap;
    margin-top: 40px;
    text-align: center;
  }
}
footer .contact-container .tel-contents {
  border-right: 1px solid #fff;
  color: #fff;
  flex-basis: 435px;
  padding-right: 58px;
}
@media (max-width: 1140px) {
  footer .contact-container .tel-contents {
    border-right: none;
    flex-basis: 100%;
    padding-right: 0;
  }
}
footer .contact-container .tel-contents .text {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  footer .contact-container .tel-contents .text {
    font-size: 1.6rem;
  }
}
footer .contact-container .tel-contents .tel {
  font-size: 5.2rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  footer .contact-container .tel-contents .tel {
    font-size: 4.2rem;
  }
}
footer .contact-container .tel-contents .note {
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 4px;
}
@media (max-width: 768px) {
  footer .contact-container .tel-contents .note {
    font-size: 1.4rem;
    margin-top: 5px;
  }
}
footer .contact-container .form-contents {
  flex-basis: 435px;
  padding-left: 58px;
}
@media (max-width: 1140px) {
  footer .contact-container .form-contents {
    flex-basis: 100%;
    padding-left: 0;
  }
}
footer .contact-container .form-contents a {
  align-items: center;
  background: #fff;
  border: 2px solid #fff;
  border-radius: 48px;
  display: flex;
  justify-content: center;
  min-width: 368px;
  overflow: hidden;
  padding: 30px 0;
  position: relative;
  transition: all 0.4s;
  width: 100%;
  z-index: 1;
}
@media (max-width: 768px) {
  footer .contact-container .form-contents a {
    margin-inline: auto;
    min-width: unset;
    max-width: 278px;
    padding: 22px 0;
  }
}
footer .contact-container .form-contents a::before {
  background: linear-gradient(276deg, rgb(7, 32, 89) 0%, rgb(236, 107, 94) 100%);
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.4s ease;
  width: 100%;
  z-index: -1;
}
footer .contact-container .form-contents a:hover {
  background-color: transparent;
  opacity: 1;
}
footer .contact-container .form-contents a:hover::before {
  opacity: 1;
}
footer .contact-container .form-contents a:hover span {
  color: #fff;
}
footer .contact-container .form-contents a span {
  color: #1f3f7f;
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  footer .contact-container .form-contents a span {
    font-size: 1.8rem;
  }
}
footer .copyright-container {
  background-color: #fff;
}
footer .copyright-container .footer-logo {
  margin-bottom: 40px;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
}
footer .copyright-container .content-width {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-inline: auto;
  padding: 44px 20px;
  width: min(100%, 1492px);
}
@media (max-width: 768px) {
  footer .copyright-container .content-width {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 70px;
    padding: 40px 20px;
  }
}
footer .copyright-container .content-width .wrap-link {
  align-items: center;
  display: flex;
}
footer .copyright-container .content-width .wrap-link a {
  color: #1f3f7f;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  padding-right: 40px;
}
@media (max-width: 768px) {
  footer .copyright-container .content-width .wrap-link a {
    font-size: 1.4rem;
    padding-right: 20px;
  }
}
footer .copyright-container .content-width .wrap-link a:last-child {
  padding-right: 0;
}
footer .copyright-container .content-width .wrap-link a + a {
  border-left: 1px solid #1f3f7f;
  padding-left: 40px;
}
@media (max-width: 768px) {
  footer .copyright-container .content-width .wrap-link a + a {
    padding-left: 20px;
  }
}
footer .copyright-container .copyright {
  color: #1f3f7f;
  font-size: 1.4rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  footer .copyright-container .copyright {
    font-size: 1.2rem;
    margin-top: 39px;
    padding-left: 0;
  }
}

#scroll_to_pagetop {
  border-radius: 50%;
  bottom: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  opacity: 0;
  position: fixed;
  right: 95px;
  transition: all 0.2s;
  width: 50px;
  z-index: 9;
}
@media (max-width: 768px) {
  #scroll_to_pagetop {
    bottom: 16px;
    right: 16px;
  }
}
#scroll_to_pagetop.visible {
  opacity: 1;
  visibility: visible;
}
#scroll_to_pagetop:hover {
  opacity: 1;
}
#scroll_to_pagetop .scroll-trigger {
  align-items: center;
  display: flex;
  flex-direction: column;
}
#scroll_to_pagetop .scroll-trigger:hover {
  opacity: 1;
}
#scroll_to_pagetop .scroll-trigger img {
  height: auto;
  width: 100%;
}/*# sourceMappingURL=style.css.map */

/* 20251118追記 */
@media (min-width: 768px) {
  footer .copyright-container .content-width {
    justify-content: flex-end;
  }
}
/* 20251118追記ここまで */
