@charset "UTF-8";
html {
  font-size: 0.667vw;
}

@media (max-width: 767px) {
  html {
    font-size: 2.488vw;
  }
}
body {
  color: #333;
  line-height: 1;
  font-family: "Noto Serif JP", serif;
}

.pc_n {
  display: none;
}
@media (max-width: 767px) {
  .pc_n {
    display: block;
  }
}

.sp_n {
  display: block;
}
@media (max-width: 767px) {
  .sp_n {
    display: none;
  }
}

img {
  width: 100%;
  object-fit: cover;
}

a {
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.7;
}

.wrap {
  overflow: hidden;
}

.cta__button {
  position: relative;
  left: -2rem;
  width: 62.3rem;
  height: 6.1rem;
  background: linear-gradient(180deg, #FF9C2D 23%, #DE862D 85%);
  display: flex;
  align-items: center;
  font-size: 1.9rem;
  letter-spacing: 0.2em;
  color: #fff;
  padding-left: 25.9rem;
  position: relative;
  font-family: "Noto Sans JP";
}
@media (max-width: 767px) {
  .cta__button {
    width: 33.8rem;
    height: 7.9rem;
    margin-left: auto;
    margin-right: auto;
    left: auto;
    font-size: 2rem;
    text-align: center;
    padding-left: 0;
    justify-content: center;
    letter-spacing: normal;
  }
}
.cta__button::after {
  content: "";
  position: absolute;
  background: url(../img/mail.png) no-repeat center center/cover;
  width: 2.7rem;
  height: 1.8rem;
  top: 50%;
  transform: translateY(-50%);
  left: 17.1rem;
}
@media (max-width: 767px) {
  .cta__button::after {
    width: 3.4rem;
    height: 2.3rem;
    left: 2.1rem;
  }
}
.cta__button::before {
  position: absolute;
  content: "";
  background: url(../img/next.png) no-repeat center center/cover;
  width: 0.8rem;
  height: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  right: 2.9rem;
}
@media (max-width: 767px) {
  .cta__button::before {
    width: 1.4rem;
    height: 2.1rem;
  }
}

.header {
  margin-left: 8.3rem;
  margin-right: 11rem;
  padding-top: 3.2rem;
}

.header__logo {
  width: 22.5rem;
}

.header__nav {
  margin-top: -0.5rem;
}

.header__nav-list {
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
}

.header__nav-item {
  position: relative;
}
.header__nav-item:last-of-type a {
  padding-right: 0;
}
.header__nav-item::after {
  content: "";
  position: absolute;
  width: 0.1rem;
  height: 1.6rem;
  background-color: #000;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.header__nav-link {
  font-size: 1.2rem;
  font-weight: 400;
  color: #000;
  padding-left: 1.5rem;
  padding-right: 2.2rem;
  margin-top: 0;
  font-family: "Noto Sans JP", sans-serif;
}

.header-sp {
  height: 5.5rem;
  background-color: #264278;
  top: 0;
  position: fixed;
  width: 100%;
  left: 0;
  z-index: 10000;
}

.header-sp__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 99999;
}

.header-sp__logo {
  width: 12rem;
}

.header-sp__hamburger-button {
  width: 2.3rem;
  height: 1.6rem;
  position: relative;
  top: -0.6rem;
}
.header-sp__hamburger-button::after {
  content: "MENU";
  position: absolute;
  color: #FFF;
  text-align: center;
  font-family: Montserrat;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.04rem;
  bottom: -1.6rem;
  left: -0.2rem;
}
.header-sp__hamburger-button span {
  position: absolute;
  background-color: #fff;
  width: 100%;
  height: 0.1rem;
  transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease, bottom 0.3s ease;
}
.header-sp__hamburger-button span:nth-of-type(1) {
  top: 0;
}
.header-sp__hamburger-button span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header-sp__hamburger-button span:nth-of-type(3) {
  bottom: 0;
}

/* Drawer (SP) */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1000;
}

.drawer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5.5rem;
  padding-left: 2rem;
  padding-right: 1.6rem;
}

.drawer__title {
  color: #9AA7BD;
  font-family: Montserrat;
  font-size: 1.1rem;
  letter-spacing: 0.2rem;
}

/* 追加のクローズボタンは使わない（ハンバーガーをXに） */
.drawer__list {
  margin-top: 5.4rem;
  margin-left: 3.8rem;
  margin-right: 3.7rem;
}

.drawer__item {
  position: relative;
}
.drawer__item::after {
  content: "";
  position: absolute;
  width: 1.6rem;
  height: 0.845rem;
  background: url(../img/sp-line.png) no-repeat center center/cover;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 1;
}
.drawer__item:nth-of-type(n+2) {
  margin-top: 4.4rem;
}
.drawer__item:nth-of-type(6) {
  margin-top: 10.2rem;
  position: relative;
}
.drawer__item:nth-of-type(6)::before {
  content: "";
  position: absolute;
  width: 34.8rem;
  height: 0.1rem;
  background-color: #fff;
  left: 50%;
  transform: translateX(-50%);
  top: -5.5rem;
}
.drawer__item span {
  font-family: Montserrat;
}

.drawer__item a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #fff;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
}

.drawer__divider {
  height: 0.1rem;
  margin: 2.2rem 2.4rem;
  background: rgba(255, 255, 255, 0.24);
}

/* Panel that slides from right */
.drawer__panel {
  /* not in DOM; we use nav.drawer directly */
}

.drawer__container {
  position: absolute;
  top: 0;
  right: -100%;
  width: 100vw;
  max-width: none;
  background: #333232;
  transition: right 0.35s ease;
  box-shadow: -10px 0 20px rgba(0, 0, 0, 0.2);
  padding-bottom: 5.4rem;
}

.sp-page_top {
  position: fixed;
  width: 5.5rem;
  height: 5.5rem;
  right: 1rem;
  bottom: 6.4rem;
  z-index: 9999;
}

.sp-page_contact {
  width: 100%;
  height: 5.5rem;
  background-color: #1457D1;
  display: flex;
  align-items: center;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.08rem;
  position: absolute;
  bottom: 0;
  z-index: 99999;
}
@media (min-width: 768px) {
  .sp-page_contact {
    display: none;
  }
}

/* Open state */
.is-drawer-open {
  overflow: hidden;
}

.is-drawer-open .header-sp__hamburger-button span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.is-drawer-open .header-sp__hamburger-button span:nth-of-type(2) {
  opacity: 0;
}

.is-drawer-open .header-sp__hamburger-button span:nth-of-type(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.is-drawer-open .drawer {
  pointer-events: auto;
}

.is-drawer-open .drawer::before {
  opacity: 1;
}

.is-drawer-open .drawer__container {
  right: 0;
}

@media (min-width: 768px) {
  .drawer {
    display: none;
  }
}
.sp-page_contact {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-left: 16rem;
}
.sp-page_contact::after {
  content: "";
  position: absolute;
  background: url(../img/sp-mail.png) no-repeat center center/cover;
  top: 50%;
  transform: translateY(-50%);
  width: 2.1rem;
  height: 1.6962rem;
  left: 12rem;
}

.footer {
  background-color: #264278;
  padding-top: 3rem;
  padding-bottom: 4.3rem;
}
@media (max-width: 767px) {
  .footer {
    padding-top: 4rem;
    margin-bottom: 5.1rem;
  }
}

.footer__nav-list {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .footer__nav-list {
    flex-direction: column;
    gap: 2.1rem;
  }
}

.footer__nav-item {
  position: relative;
}
.footer__nav-item:last-of-type::after {
  display: none;
}
.footer__nav-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.1rem;
  height: 1.6rem;
  background-color: #fff;
}

.footer__nav-link {
  padding-left: 1.9rem;
  padding-right: 1.6rem;
  color: #fff;
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 767px) {
  .footer__nav-link {
    font-size: 1.4rem;
  }
}

.footer__copyright {
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  font-weight: 400;
  margin-top: 4.2rem;
  font-family: "Noto Sans JP", sans-serif;
}

.footer__logo-sp {
  width: 16.1rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.9rem;
}

.fv {
  margin-top: 2.3rem;
  margin-left: 6.1rem;
  margin-right: 6.7rem;
  position: relative;
}
@media (max-width: 767px) {
  .fv {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: 5.5rem;
  }
}
.fv::after {
  content: "";
  position: absolute;
  background: url(../img/bg_1@2x.png) no-repeat center center/cover;
  width: 150rem;
  height: 132.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  top: 21.5rem;
}
@media (max-width: 767px) {
  .fv::after {
    background: url(../img/bg-sp.jpg) no-repeat center center/cover;
    top: 91.5rem;
    height: 88.5rem;
  }
}

.fv__inner {
  position: relative;
  z-index: 4;
}
@media (max-width: 767px) {
  .fv__inner {
    height: 31.1rem;
  }
}

.fv__content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 15rem;
  width: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  .fv__content {
    top: 10.3rem;
  }
}

.fv__title {
  width: 82.7rem;
  margin-left: auto;
  margin-right: auto;
}

.fv__text-title {
  color: #FFF;
  text-align: center;
  text-shadow: 0 0 10px rgba(45, 44, 44, 0.8);
  font-family: "Noto Serif JP";
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.fv__text-description {
  color: #FFF;
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  font-family: "Noto Serif JP";
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 2.3rem;
}

.cta {
  width: 70.2rem;
  background-color: #fff;
  padding-top: 4.5rem;
  padding-bottom: 3.9rem;
  padding-left: 6rem;
  padding-right: 5.9rem;
  margin-top: -17.7rem;
  margin-left: auto;
  margin-right: auto;
  z-index: 2;
  position: relative;
  z-index: 4;
}
@media (max-width: 767px) {
  .cta {
    margin-top: 0;
    width: 100%;
    padding-top: 1.7rem;
    padding-left: 0;
    padding-right: 0;
  }
}

.cta__list {
  display: grid;
  gap: 1.4rem 1.8rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .cta__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.36rem;
    padding-left: 3.3rem;
    padding-right: 3.2rem;
  }
}

.cta__item {
  height: 8.4rem;
  border: 1px solid #264278;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #264278;
  text-align: center;
  line-height: 1.2;
  font-family: "Noto Serif JP", serif;
}
.cta__item:nth-of-type(n+3) {
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .cta__item {
    height: 4.7rem;
    font-size: 1.4rem;
  }
}

.cta__text {
  margin-top: 3.8rem;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #264278;
  text-align: center;
  line-height: 1.7058823529;
  position: relative;
  font-family: "Noto Sans JP";
}
@media (max-width: 767px) {
  .cta__text {
    font-size: 1.2rem;
    letter-spacing: normal;
    margin-top: 1.66rem;
    line-height: normal;
  }
}
.cta__text::after {
  content: "";
  position: absolute;
  height: 0.1rem;
  width: 61.8rem;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1.5rem;
  background: #264278;
}
@media (max-width: 767px) {
  .cta__text::after {
    display: none;
  }
}

.cta-button {
  margin-top: 4.8rem;
}
@media (max-width: 767px) {
  .cta-button {
    margin-top: 1.4rem;
  }
}

.intro {
  margin-top: 5.8rem;
  text-align: center;
  color: #264278;
  font-size: 2.8rem;
  line-height: 1.8928571429;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  position: relative;
  z-index: 4;
}
@media (max-width: 767px) {
  .intro {
    font-size: 2rem;
    line-height: normal;
    margin-top: -0.9rem;
    color: #264278;
  }
}

.concerns {
  margin-top: 4.3rem;
  position: relative;
  z-index: 4;
}
@media (max-width: 767px) {
  .concerns {
    margin-top: 3rem;
  }
}

.concerns__title {
  width: 81.1rem;
  height: 7.1rem;
  background-color: rgba(38, 66, 120, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 2.1rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  margin-left: auto;
  margin-right: auto;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 767px) {
  .concerns__title {
    width: 35.6rem;
    height: 8rem;
    font-size: 2rem;
    letter-spacing: 0.1rem;
  }
}

.concerns__text {
  background: rgba(239, 239, 239, 0.7);
  height: 24rem;
  width: 81.1rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.3181818182;
  letter-spacing: 0.18em;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #264278;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 767px) {
  .concerns__text {
    width: 35.6rem;
    height: 25rem;
    font-size: 2rem;
    letter-spacing: 0.1rem;
    line-height: normal;
  }
}

.about {
  background: url(../img/about-bg.png) no-repeat center center/cover;
  padding-top: 17.8rem;
  padding-bottom: 6.5rem;
}
@media (max-width: 767px) {
  .about {
    padding-top: 4.6rem;
  }
}

.about__inner {
  display: flex;
  gap: 5.3rem;
  max-width: 98.1rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .about__inner {
    flex-direction: column;
    gap: 2.5rem;
  }
}

.about__image {
  width: 28.4rem;
}
@media (max-width: 767px) {
  .about__image {
    order: 2;
    margin-left: auto;
    margin-right: auto;
    width: 21.4rem;
    z-index: 3;
  }
}

.about__content {
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .about__content {
    order: 1;
    z-index: 3;
    margin-top: 0;
  }
}

.about__title {
  width: 57.2rem;
  height: 5.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
  font-size: 1.9rem;
  letter-spacing: 0.18em;
  font-family: "Noto Serif JP", serif;
  background-color: #C9E1F6;
}
@media (max-width: 767px) {
  .about__title {
    width: 35.6rem;
    height: 8rem;
    font-size: 1.6rem;
    line-height: normal;
    background-color: #fff;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

.about__text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8125;
  letter-spacing: 0.12em;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .about__text {
    width: 35.6rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.4rem;
    text-align: center;
    line-height: 2;
  }
}

.reason {
  padding-top: 8.9rem;
  padding-bottom: 27rem;
  background: url(../img/bg01@2x.png) no-repeat center center/cover;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .reason {
    margin-top: 0;
    padding-top: 2.7rem;
    padding-bottom: 14rem;
  }
}

.reason__inner {
  max-width: 108rem;
  margin-left: auto;
  margin-right: auto;
}

.reason__header {
  text-align: center;
}

.reason__header-image {
  width: 8.1rem;
  height: 2.4rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .reason__header-image {
    width: 8.9rem;
    height: 2.6rem;
  }
}
.reason__header-image img {
  height: 100%;
}

.reason__title {
  font-size: 3.9rem;
  font-weight: 600;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  margin-top: 1.4rem;
}
@media (max-width: 767px) {
  .reason__title {
    font-size: 2rem;
    line-height: normal;
    margin-top: 0.4rem;
    letter-spacing: 0.1rem;
  }
}

.reason__list {
  margin-top: 10.4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10rem 8.3rem;
}
@media (max-width: 767px) {
  .reason__list {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 4.9rem;
    margin-left: 2.9rem;
    margin-right: 2.9rem;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 767px) {
  .reason__item:nth-of-type(n+2) {
    margin-top: 4.2rem;
  }
}
.reason__item:nth-of-type(1) .reason__item-title {
  gap: 3.1rem;
}
@media (max-width: 767px) {
  .reason__item:nth-of-type(1) .reason__item-title {
    gap: 2.5rem;
  }
}
.reason__item:nth-of-type(2) .reason__item-title {
  gap: 2.5rem;
}
@media (max-width: 767px) {
  .reason__item:nth-of-type(2) .reason__item-text {
    margin-top: 1.5rem;
    margin-right: 1.5rem;
  }
}
.reason__item:nth-of-type(3) .reason__item-title {
  gap: 3.7rem;
  padding-bottom: 3.7rem;
}
@media (max-width: 767px) {
  .reason__item:nth-of-type(3) .reason__item-title {
    padding-bottom: 1.7rem;
    gap: 2.7rem;
  }
}
.reason__item:nth-of-type(3) .reason__item-text {
  padding-left: 2.7rem;
}
@media (max-width: 767px) {
  .reason__item:nth-of-type(3) .reason__item-text {
    margin-top: 2.5rem;
    padding-left: 1rem;
  }
}
@media (max-width: 767px) {
  .reason__item:nth-of-type(4) {
    margin-top: 5.4rem;
    padding-bottom: 1.2rem;
  }
}
.reason__item:nth-of-type(4) .reason__item-title {
  padding-bottom: 3.7rem;
  gap: 5.6rem;
}
@media (max-width: 767px) {
  .reason__item:nth-of-type(4) .reason__item-title {
    gap: 2.7rem;
    padding-bottom: 1.4rem;
  }
}
.reason__item:nth-of-type(4) .reason__item-text {
  padding-left: 1.5rem;
}
@media (max-width: 767px) {
  .reason__item:nth-of-type(4) .reason__item-text {
    padding-left: 1.1rem;
    padding-right: 0.8rem;
    margin-top: 1.5rem;
  }
}
.reason__item:nth-of-type(5) {
  position: relative;
  top: 2rem;
}
@media (max-width: 767px) {
  .reason__item:nth-of-type(5) {
    margin-top: 1.2rem;
  }
}
.reason__item:nth-of-type(5) .reason__item-title {
  gap: 3.2rem;
  padding-bottom: 4.3rem;
}
@media (max-width: 767px) {
  .reason__item:nth-of-type(5) .reason__item-title {
    padding-bottom: 1.3rem;
    gap: 2.7rem;
  }
}
.reason__item:nth-of-type(5) .reason__item-text {
  padding-left: 2.1rem;
}
@media (max-width: 767px) {
  .reason__item:nth-of-type(5) .reason__item-text {
    margin-top: 2.4rem;
    padding-left: 1.1rem;
  }
}
.reason__item:nth-of-type(6) {
  position: relative;
  top: 2rem;
}
@media (max-width: 767px) {
  .reason__item:nth-of-type(6) {
    margin-top: 5.6rem;
  }
}
.reason__item:nth-of-type(6) .reason__item-title {
  padding-bottom: 4.3rem;
  gap: 2.2rem;
}
@media (max-width: 767px) {
  .reason__item:nth-of-type(6) .reason__item-title {
    padding-bottom: 1.3rem;
    gap: 2.7rem;
  }
}
.reason__item:nth-of-type(6) .reason__item-text {
  padding-left: 1.5rem;
}
@media (max-width: 767px) {
  .reason__item:nth-of-type(6) .reason__item-text {
    margin-top: 1.8rem;
    padding-left: 1rem;
  }
}

.reason__item-title {
  font-size: 2.2rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.18em;
  font-family: "Noto Serif JP", serif;
  display: flex;
  align-items: center;
  padding-bottom: 5.2rem;
  border-bottom: 1px solid #fff;
  padding-left: 2.1rem;
}
@media (max-width: 767px) {
  .reason__item-title {
    font-size: 2rem;
    padding-bottom: 1.4rem;
    padding-left: 0.9rem;
    letter-spacing: 0.1rem;
  }
}
.reason__item-title img {
  width: 5rem;
  height: 5rem;
}
@media (max-width: 767px) {
  .reason__item-title img {
    width: 2.9rem;
    height: 2.9rem;
  }
}

.reason__item-text {
  font-size: 2.2rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.3181818182;
  letter-spacing: 0.18em;
  margin-top: 3.4rem;
  font-family: "Noto Serif JP", serif;
  padding-left: 0.7rem;
}
@media (max-width: 767px) {
  .reason__item-text {
    font-size: 1.4rem;
    line-height: normal;
    letter-spacing: 0.07rem;
    margin-top: 0.9rem;
    padding-left: 0.9rem;
  }
}

.reason02 {
  padding-top: 24.5rem;
  background: linear-gradient(0deg, #FFF 0%, #D2EEFB 100%);
  margin-top: -11.8rem;
  padding-bottom: 24rem;
}
@media (max-width: 767px) {
  .reason02 {
    padding-top: 19.7rem;
    padding-bottom: 13.2rem;
  }
}

.reason02__content {
  width: 95.4rem;
  height: 43.5rem;
  background: #FFF;
  box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.09);
  margin-left: auto;
  margin-right: auto;
  padding-top: 8rem;
  padding-left: 34.5rem;
  position: relative;
}
@media (max-width: 767px) {
  .reason02__content {
    width: 39.2rem;
    padding-left: 2.2rem;
    padding-right: 1.8rem;
    height: auto;
    padding-top: 3rem;
    padding-bottom: 4.3rem;
  }
}

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

@media (min-width: 768px) {
  .reson02_span02 {
    display: none;
  }
}
@media (max-width: 767px) {
  .reson02_span02 {
    font-size: 2.4rem;
  }
}

@media (max-width: 767px) {
  .reason02_span03 {
    display: none !important;
  }
}

.reason02__image {
  position: absolute;
  width: 33.1rem;
  height: 49.7rem;
  top: -10.1rem;
  left: -5.3rem;
}
@media (max-width: 767px) {
  .reason02__image {
    width: 14.8rem;
    height: 22.1rem;
    left: 0;
    top: -5.8rem;
  }
}
.reason02__image img {
  height: 100%;
}

.reason02__title {
  color: #264278;
  font-weight: 500;
  line-height: 1.6428571429;
  font-size: 2.8rem;
  font-family: "Noto Serif JP", serif;
  position: relative;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .reason02__title {
    font-size: 1.8rem;
    padding-left: 14.6rem;
    line-height: 1.7;
  }
}
.reason02__title::after {
  content: "";
  position: absolute;
  width: 58.8rem;
  height: 0.1rem;
  background-color: #264278;
  left: 0;
  bottom: -2.8rem;
}
@media (max-width: 767px) {
  .reason02__title::after {
    width: 20.1rem;
    height: 0.1rem;
    right: 0.3rem;
    bottom: -3rem;
    left: auto;
  }
}

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

@media (max-width: 767px) {
  .reason02_span02 {
    font-size: 2.4rem;
  }
}

.reason02__text {
  font-size: 1.6rem;
  line-height: 1.8125;
  margin-top: 6.8rem;
  letter-spacing: 0.18em;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 767px) {
  .reason02__text {
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0.07rem;
    margin-top: 6.2rem;
  }
}

.strength {
  padding-bottom: 9.3rem;
  margin-top: -9.8rem;
}
@media (max-width: 767px) {
  .strength {
    padding-bottom: 13.3rem;
  }
}

.strength__inner {
  max-width: 84rem;
  margin-left: auto;
  margin-right: auto;
}

.strength__title {
  font-size: 5.1rem;
  letter-spacing: 0.18em;
  color: #264278;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .strength__title {
    font-size: 3.6rem;
  }
}
.strength__title::after {
  content: "";
  position: absolute;
  width: 32.5rem;
  height: 2rem;
  background-color: #d9efea;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .strength__title::after {
    width: 22.4rem;
    height: 1.3rem;
  }
}
.strength__title span {
  font-size: 7rem;
}
@media (max-width: 767px) {
  .strength__title span {
    font-size: 6.4rem;
  }
}

.strength__text {
  margin-top: 3.8rem;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8125;
  letter-spacing: 0.18em;
}
@media (max-width: 767px) {
  .strength__text {
    font-size: 1.5rem;
    line-height: 173%;
    letter-spacing: 0.075rem;
    margin-top: 4.2rem;
  }
}

.strength__list {
  margin-top: 2.7rem;
}

.strength__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 33.5rem;
  position: relative;
}
@media (max-width: 767px) {
  .strength__item {
    flex-direction: column;
    gap: 3.3rem;
  }
}
@media (max-width: 767px) {
  .strength__item:nth-of-type(4) {
    gap: 4.9rem;
  }
}
.strength__item:nth-of-type(4) .strength__content {
  position: relative;
  left: 7.6rem;
}
@media (max-width: 767px) {
  .strength__item:nth-of-type(4) .strength__content {
    left: auto;
  }
}
.strength__item:nth-of-type(n+2) {
  margin-top: 3.4rem;
}
@media (max-width: 767px) {
  .strength__item:nth-of-type(n+2) {
    margin-top: 12.3rem;
  }
}
.strength__item::after {
  content: "";
  position: absolute;
  background: url(../img/bg02.jpg) no-repeat center center/cover;
  width: 95.7rem;
  height: 33.5rem;
  z-index: -1;
  left: -33rem;
}
@media (max-width: 767px) {
  .strength__item::after {
    width: 39.8rem;
    height: 34.6rem;
    left: -2.3rem;
    top: 5.8rem;
  }
}

@media (max-width: 767px) {
  .strength__content {
    order: 1;
    width: 28rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.strength__item--reverse::after {
  right: -33rem;
  left: auto;
}
@media (max-width: 767px) {
  .strength__item--reverse::after {
    right: auto;
    left: -2.3rem;
  }
}

.strength__item-title {
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.7692307692;
  font-family: "Noto Serif JP", serif;
  color: #264278;
}
@media (max-width: 767px) {
  .strength__item-title {
    font-size: 2.4rem;
    line-height: 1.4583333333;
    letter-spacing: 0.12rem;
  }
}

.strength__item-text {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.18em;
  color: #264278;
  margin-top: 2.7rem;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .strength__item-text {
    font-size: 2rem;
    line-height: 1.4;
    margin-top: 2.1rem;
    white-space: normal;
    letter-spacing: 0.1rem;
  }
}

.strength__image {
  width: 45.1rem;
  height: 24.6rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .strength__image {
    width: 23.4rem;
    height: 15.6rem;
  }
}
.strength__image img {
  height: 100%;
}

.cta--button {
  background: url(../img/cta-bg@2x-100.jpg) no-repeat center center/cover;
  padding-top: 8.5rem;
  padding-bottom: 8.3rem;
}
@media (max-width: 767px) {
  .cta--button {
    padding-top: 7.5rem;
    padding-bottom: 9.4rem;
  }
}

.cta--button-text {
  font-size: 2.5rem;
  text-align: center;
  font-weight: 600;
  color: white;
  letter-spacing: 0.18em;
  line-height: 1.48;
}
@media (max-width: 767px) {
  .cta--button-text {
    font-size: 2rem;
    letter-spacing: 0.1rem;
    line-height: normal;
  }
}

.cta-button--white {
  margin-top: 5.3rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  left: -0.2rem;
}
@media (max-width: 767px) {
  .cta-button--white {
    margin-top: 2.2rem;
  }
}

.flow {
  padding-top: 14.3rem;
  padding-bottom: 12.3rem;
  background-color: #e9f7fc;
  position: relative;
  z-index: 3;
}
@media (min-width: 768px) {
  .flow {
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 92%);
  }
}
@media (max-width: 767px) {
  .flow {
    padding-top: 3.8rem;
    padding-bottom: 5.4rem;
  }
}

.flow__inner {
  max-width: 100.8rem;
  margin-left: auto;
  margin-right: auto;
}

.flow__header {
  text-align: center;
}

.flow__logo {
  width: 6.2rem;
  height: 2.4rem;
  margin-left: auto;
  margin-right: auto;
}
.flow__logo img {
  height: 100%;
}

.flow__title {
  margin-top: 1.3rem;
  font-size: 3.9rem;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: #264278;
}
@media (max-width: 767px) {
  .flow__title {
    font-size: 2rem;
    letter-spacing: 0.1rem;
  }
}

.flow__list {
  margin-top: 13.6rem;
  position: relative;
  left: 0.5rem;
}
@media (max-width: 767px) {
  .flow__list {
    margin-top: 3.5rem;
    margin-left: 2.7rem;
    margin-right: 2.7rem;
  }
}

.flow__item-inner {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .flow__item-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 3.3rem;
    width: 67%;
  }
}

.flow__item {
  height: 22.8rem;
  display: flex;
  background: url(../img/bg.png) no-repeat center center/cover;
  padding-left: 5.6rem;
  align-items: center;
  position: relative;
}
@media (max-width: 767px) {
  .flow__item {
    background: url(../img/bg-sp02.png) no-repeat center center/cover;
    height: 18.3rem;
    padding-left: 1.8rem;
    justify-content: space-between;
    gap: 0;
    padding-right: 2.3rem;
    align-items: flex-start;
  }
}
.flow__item:nth-of-type(1) {
  z-index: 8;
}
.flow__item:nth-of-type(1) .flow__image {
  margin-left: 15.1rem;
  position: relative;
  top: -1.8rem;
}
.flow__item:nth-of-type(2) {
  z-index: 7;
}
.flow__item:nth-of-type(2) .flow__image {
  margin-left: 8.3rem;
  position: relative;
  top: -1.8rem;
}
.flow__item:nth-of-type(3) {
  z-index: 6;
}
.flow__item:nth-of-type(3) .flow__image {
  margin-left: 17.2rem;
  position: relative;
  top: -1.8rem;
}
.flow__item:nth-of-type(4) {
  z-index: 5;
}
.flow__item:nth-of-type(4) .flow__image {
  margin-left: 1.2rem;
  position: relative;
  top: -1.8rem;
}
.flow__item:nth-of-type(5) {
  z-index: 4;
}
.flow__item:nth-of-type(5) .flow__image {
  margin-left: 10.5rem;
  position: relative;
  top: -1.8rem;
}
.flow__item:nth-of-type(6) {
  z-index: 3;
}
@media (min-width: 768px) {
  .flow__item:nth-of-type(6) {
    background: url(../img/bg2@2x.png) no-repeat center center/cover;
  }
}
.flow__item:nth-of-type(6) .flow__image {
  margin-left: 15.2rem;
  position: relative;
  top: -1.8rem;
}
.flow__item:nth-of-type(7) {
  z-index: 2;
}
.flow__item:nth-of-type(7) .flow__image {
  margin-left: 21.8rem;
  position: relative;
  top: -1.8rem;
}
.flow__item:nth-of-type(n+2) {
  margin-top: -4rem;
}
@media (max-width: 767px) {
  .flow__item:nth-of-type(n+2) {
    margin-top: -4.1rem;
  }
}

.flow__item--last {
  background: url(../img/bg03@2x.png) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .flow__item--last {
    width: 33.3rem;
    height: 14rem;
    background: #264278;
  }
}
.flow__item--last .flow__step {
  background-color: #fff;
  color: #264278;
}
.flow__item--last .flow__item-title, .flow__item--last .flow__item-text {
  color: white;
}
.flow__item--last .flow__item-title::after {
  background-color: #fff;
}

.flow__step {
  width: 12.6rem;
  height: 4.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  background-color: #264278;
  border-radius: 2.5rem;
  position: relative;
  top: -1.5rem;
}
@media (max-width: 767px) {
  .flow__step {
    width: 8.3rem;
    height: 3.2rem;
    font-size: 1.6rem;
  }
}

.flow__content {
  margin-left: 5.3rem;
  position: relative;
  top: -2.1rem;
}
@media (max-width: 767px) {
  .flow__content {
    margin-left: 0;
    width: 100%;
    top: auto;
  }
}

.flow__item-title {
  font-size: 3.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #264278;
  position: relative;
}
@media (max-width: 767px) {
  .flow__item-title {
    font-size: 2rem;
    letter-spacing: 0.1rem;
  }
}
.flow__item-title::after {
  content: "";
  position: absolute;
  width: 36.5rem;
  height: 0.1rem;
  background-color: #264278;
  bottom: -1.5rem;
  left: 0;
}
@media (max-width: 767px) {
  .flow__item-title::after {
    width: 19.4rem;
    bottom: -0.6rem;
  }
}

.flow__item-text {
  font-size: 2.2rem;
  font-weight: 500;
  color: #264278;
  letter-spacing: 0.04em;
  margin-top: 4.1rem;
}
@media (max-width: 767px) {
  .flow__item-text {
    font-size: 1.5rem;
    line-height: 1.6rem;
    margin-top: 1.7rem;
    width: 100%;
    text-align: center;
  }
}

.flow__image {
  width: 31.5rem;
  height: 18.6rem;
}
@media (max-width: 767px) {
  .flow__image {
    margin-left: 0 !important;
    width: 10.1rem;
    height: 8.4rem;
    margin-top: 5.3rem;
  }
}
.flow__image img {
  height: 100%;
}

.price {
  padding-top: 23.7rem;
  padding-bottom: 8.3rem;
  margin-top: -15.1rem;
  background: url(../img/bg05@2x.png) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .price {
    padding-top: 19.7rem;
    padding-bottom: 3.8rem;
  }
}

.price__inner {
  max-width: 93rem;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  padding-top: 6.8rem;
  padding-bottom: 9.6rem;
  text-align: center;
}
@media (max-width: 767px) {
  .price__inner {
    padding-top: 3.1rem;
    margin-left: 2.7rem;
    position: relative;
    margin-right: 2.7rem;
    box-shadow: 0 4px 8px 3px rgba(0, 0, 0, 0.1);
  }
}

.price__logo {
  width: 5.3rem;
  margin-left: auto;
  margin-right: auto;
}
.price__logo img {
  height: 100%;
}

.price__title {
  font-size: 3.9rem;
  letter-spacing: 0.22em;
  font-weight: 600;
  margin-top: 1.7rem;
  color: #264278;
  text-align: center;
}
@media (max-width: 767px) {
  .price__title {
    font-size: 2rem;
    letter-spacing: 0.1rem;
    margin-top: 1.2rem;
  }
}

.price__text {
  font-size: 2.3rem;
  text-align: center;
  color: #264278;
  font-weight: 500;
  letter-spacing: 0.18em;
  margin-top: 7rem;
}
@media (max-width: 767px) {
  .price__text {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-top: 2.2rem;
    letter-spacing: 0.08rem;
  }
}

.price__note {
  font-size: 1.8rem;
  letter-spacing: 0.18em;
  text-align: center;
  font-weight: 500;
  color: #264278;
  margin-top: 1.2rem;
}
@media (max-width: 767px) {
  .price__note {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    bottom: 4.2rem;
    width: 100%;
    text-align: left;
    line-height: 1.7rem;
    padding-left: 4.4rem;
    letter-spacing: 0.06rem;
  }
}

.price__fee {
  margin-top: 6.4rem;
  max-width: 67.8rem;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #264278;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 11.7rem;
  color: #264278;
  font-size: 2.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
}
@media (max-width: 767px) {
  .price__fee {
    margin-left: 4.2rem;
    margin-right: 4.2rem;
    margin-top: 1.8rem;
    font-size: 2rem;
    line-height: 4.2rem;
    position: relative;
    height: 10.8rem;
  }
  .price__fee::after {
    content: "";
    position: absolute;
    width: 23rem;
    height: 0.06rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #264278;
  }
}

.qa {
  padding-top: 9rem;
  padding-bottom: 12.8rem;
}
@media (max-width: 767px) {
  .qa {
    padding-top: 3.2rem;
    padding-bottom: 9.8rem;
  }
}

.qa__inner {
  max-width: 93rem;
  margin-left: auto;
  margin-right: auto;
}

.qa__header {
  text-align: center;
}

.qa__logo {
  width: 10.3rem;
  margin-left: auto;
  margin-right: auto;
}

.qa__title {
  font-size: 3.9rem;
  letter-spacing: 0.22em;
  text-align: center;
  color: #264278;
  margin-top: 1.3rem;
}
@media (max-width: 767px) {
  .qa__title {
    font-size: 2rem;
    letter-spacing: 0.1rem;
  }
}

.qa__list {
  margin-top: 5.8rem;
}
@media (max-width: 767px) {
  .qa__list {
    margin-top: 2.1rem;
    margin-left: 2.9rem;
    margin-right: 2.7rem;
  }
}

.qa__item:nth-of-type(n+2) {
  margin-top: 1.1rem;
}
@media (max-width: 767px) {
  .qa__item:nth-of-type(n+2) {
    margin-top: 2rem;
  }
}

.qa__question {
  background-color: rgba(224, 227, 232, 0.8);
  padding-top: 1.8rem;
  padding-bottom: 1.8rem;
  border-radius: 0.4rem;
  padding-left: 2.1rem;
  color: #333;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 767px) {
  .qa__question {
    padding-left: 2.6rem;
    font-size: 1.6rem;
    line-height: 1.875;
    letter-spacing: 0.08rem;
  }
}
.qa__question::after {
  content: "";
  position: absolute;
  background: url(../img/qa-line.png) no-repeat center center/cover;
  width: 1.9rem;
  height: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  right: 3.5rem;
  transition: transform 0.2s ease;
}
@media (max-width: 767px) {
  .qa__question::after {
    top: 79%;
    right: 2.1rem;
  }
}
.qa__question span {
  font-size: 3.9rem;
  display: inline-block;
  margin-right: 2.8rem;
  color: #264278;
}
@media (max-width: 767px) {
  .qa__question span {
    font-size: 2.4rem;
    margin-right: 2.7rem;
  }
}

.qa__answer {
  background-color: rgba(38, 66, 120, 0.8);
  padding-top: 2.4rem;
  padding-bottom: 2.8rem;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.18em;
  border-radius: 0.4rem;
  padding-left: 9.1rem;
  padding-right: 9.1rem;
  line-height: 2.0714285714;
}
@media (max-width: 767px) {
  .qa__answer {
    padding-top: 3.4rem;
    padding-bottom: 3.2rem;
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: center;
  }
}

.qa__question {
  cursor: pointer;
  user-select: none;
}

.qa__item.is-open .qa__question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.qa__item.is-open .qa__question::after {
  transform: translateY(-50%) rotate(180deg);
}

.cta02 {
  background: url(../img/cta-bg@2x-100.jpg) no-repeat center center/cover;
  padding-top: 8rem;
  padding-bottom: 10rem;
}
@media (max-width: 767px) {
  .cta02 {
    padding-top: 4rem;
    padding-bottom: 6.6rem;
  }
}

.cta02__text {
  font-size: 3.7rem;
  text-align: center;
  color: #fff;
  letter-spacing: 0.18em;
  font-weight: 600;
}
@media (max-width: 767px) {
  .cta02__text {
    font-size: 2rem;
    line-height: normal;
    letter-spacing: 0.1rem;
  }
}

.cta-button--white02 {
  margin-top: 7.1rem;
  margin-left: auto;
  margin-right: auto;
  left: 0px;
}
@media (max-width: 767px) {
  .cta-button--white02 {
    margin-top: 4.2rem;
  }
}

.contact {
  padding-top: 6.1rem;
  padding-bottom: 6.7rem;
  background: url(../img/contact-bg@2x-100.jpg) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .contact {
    background: #fff;
    padding-top: 6.8rem;
    background: #F4F4F4;
    padding-bottom: 2rem;
  }
}

.contact__header {
  margin-bottom: 6.6rem;
  position: relative;
}
@media (max-width: 767px) {
  .contact__header {
    margin-bottom: 4.3rem;
  }
}
.contact__header::after {
  content: "";
  position: absolute;
  background: url(../img/person01@2x.png) no-repeat center center/cover;
  width: 12.2rem;
  height: 10rem;
  top: -2rem;
  left: -4.5rem;
}
@media (max-width: 767px) {
  .contact__header::after {
    display: none;
  }
}
.contact__header::before {
  position: absolute;
  content: "";
  width: 12.2rem;
  height: 10rem;
  background: url(../img/person02@2x.png) no-repeat center center/cover;
  right: -2.2rem;
  top: -2.1rem;
}
@media (max-width: 767px) {
  .contact__header::before {
    display: none;
  }
}

.contact__logo {
  width: 10.2rem;
  height: 2.4rem;
  margin-left: auto;
  margin-right: auto;
}
.contact__logo img {
  height: 100%;
}

.contact__title {
  font-size: 3.9rem;
  text-align: center;
  letter-spacing: 0.1em;
  color: #264278;
}
@media (max-width: 767px) {
  .contact__title {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 0.9rem;
  }
}

.contact__form {
  background-color: #fff;
  box-shadow: 7px 7px 10px rgba(0, 0, 0, 0.15);
  border-radius: 1rem;
  max-width: 85.6rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 5.2rem;
  padding-bottom: 5.6rem;
  padding-left: 11.8rem;
  padding-right: 11.5rem;
}
@media (max-width: 767px) {
  .contact__form {
    padding-left: 1.8rem;
    padding-right: 2.1rem;
    padding-top: 0;
    background-color: #F4F4F4;
    box-shadow: none;
  }
}

@media (max-width: 767px) {
  .contact__form-list {
    margin-top: 5.1rem;
  }
}

.contact__form-item:nth-of-type(n+2) {
  margin-top: 4.7rem;
}
@media (max-width: 767px) {
  .contact__form-item:nth-of-type(n+2) {
    margin-top: 1.6rem;
  }
}
.contact__form-item:nth-of-type(4) {
  margin-top: 2.5rem;
}
.contact__form-item:nth-of-type(5) {
  margin-top: 2.5rem;
}
.contact__form-item:last-of-type {
  margin-top: 5.3rem;
}
@media (max-width: 767px) {
  .contact__form-item:last-of-type {
    margin-top: 2.9rem;
  }
}

.contact__label {
  font-size: 1.4rem;
  font-weight: 400;
  color: #4d4d4d;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 767px) {
  .contact__label {
    font-size: 1.6rem;
  }
}
.contact__label span {
  color: #ed1c24;
}

.contact__input-wrapper {
  margin-top: 0.9rem;
}
@media (max-width: 767px) {
  .contact__input-wrapper {
    position: relative;
  }
}
.contact__input-wrapper input {
  width: 100%;
  height: 5.5rem;
  border: 1px solid #b3b3b3;
  border-radius: 1rem;
  display: inline-block;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .contact__input-wrapper input {
    height: 5.1rem;
    border-radius: 0.4rem;
  }
}
.contact__input-wrapper textarea {
  height: 22.8rem;
  border-radius: 1rem;
  width: 100%;
  padding: 1rem;
}
@media (max-width: 767px) {
  .contact__input-wrapper textarea {
    height: 16.3rem;
    border-radius: 0.4rem;
  }
}

.contact__note {
  font-size: 1.4rem;
  color: #808080;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 0.6rem;
  padding-left: 4rem;
}

.contact__note--phone {
  text-align: right;
}

.contact__checkbox-list {
  padding-left: 3.3rem;
  padding-top: 0.8rem;
}
@media (max-width: 767px) {
  .contact__checkbox-list {
    padding-top: 2rem;
    padding-left: 1.3rem;
  }
}
.contact__checkbox-list label {
  display: flex;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  color: #4d4d4d;
  gap: 1.2rem;
}
@media (max-width: 767px) {
  .contact__checkbox-list label {
    font-size: 1.6rem;
    gap: 0.6rem;
  }
}
.contact__checkbox-list label:nth-of-type(n+2) {
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .contact__checkbox-list label:nth-of-type(n+2) {
    margin-top: 0.9rem;
  }
}
.contact__checkbox-list label input {
  width: 1.3rem;
  height: 1.3rem;
}

@media (max-width: 767px) {
  .contact__note--checkbox {
    position: absolute;
    top: -2.8rem;
    left: 6rem;
    font-size: 1.3rem;
  }
}

.contact__privacy {
  text-align: center;
  font-size: 1.4rem;
  color: #4d4d4d;
  margin-top: 3.1rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 767px) {
  .contact__privacy {
    font-size: 1.5rem;
    margin-top: 1.5rem;
  }
}

.contact__privacy-link {
  text-decoration: underline;
  color: #0042a0;
  font-family: "Noto Sans JP", sans-serif;
}

.contact__submit {
  width: 34.7rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #4d4d4d;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 5rem;
  margin-left: auto;
  margin-right: auto;
  border: none;
  transition: 0.3s;
  cursor: pointer;
}
.contact__submit:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .contact__submit {
    width: 21.2rem;
    height: 5.3rem;
    font-size: 1.6rem;
    margin-top: 3.2rem;
  }
}

.header-sp {
  height: 5.5rem;
}

.header-sp__inner {
  height: 5.5rem;
  display: flex;
  align-items: center;
  padding-left: 1.8rem;
  padding-right: 1.6rem;
  background-color: #1E3C5B;
}

.page-contact {
  position: fixed;
  right: 0;
  bottom: 17.1rem;
  z-index: 999999;
}
@media (max-width: 767px) {
  .page-contact {
    display: none;
  }
}
.page-contact a {
  background-color: #002daf;
  width: 7.7rem;
  height: 24.8rem;
  color: #fff;
  font-size: 1.7rem;
  writing-mode: vertical-rl;
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  align-items: center;
  z-index: 99999;
  position: relative;
  letter-spacing: 0.12em;
  position: relative;
  padding-top: 6.4rem;
}
.page-contact a::after {
  content: "";
  position: absolute;
  background: url(../img/pc-mail@2x.png) no-repeat center center/cover;
  width: 2.6rem;
  height: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  top: 2.5rem;
}

.e-mail .contact__note, .phone .contact__note {
  padding-left: 0;
}

.privacy-policy {
  margin: clamp(16px, 4vw, 40px) auto;
  padding: clamp(10px, 2vw, 16px);
}
@media (max-width: 767px) {
  .privacy-policy {
    padding-top: 10rem;
  }
}
.privacy-policy__container {
  background: #fff;
}
.privacy-policy__header {
  margin-bottom: 2.4rem;
}
.privacy-policy__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  color: #072334;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin-bottom: 1.2rem;
}
@media (max-width: 767px) {
  .privacy-policy__title {
    font-size: 2.2rem;
  }
}
.privacy-policy__intro {
  font-size: 1.6rem;
  line-height: 1.9;
  color: #333;
}
.privacy-policy__section {
  padding: 2.4rem 0;
  border-top: 1px solid #eee;
}
.privacy-policy__section:first-of-type {
  border-top: none;
  padding-top: 0;
}
.privacy-policy__section-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #072334;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}
@media (max-width: 767px) {
  .privacy-policy__section-title {
    font-size: 1.8rem;
  }
}
.privacy-policy__text {
  font-size: 1.6rem;
  line-height: 1.9;
  color: #333;
}
.privacy-policy__list, .privacy-policy__sub-list, .privacy-policy__sub-sub-list {
  margin: 0;
  padding-left: 1.6em;
}
.privacy-policy__list {
  list-style: decimal;
}
.privacy-policy__list > li + li {
  margin-top: 0.8em;
}
.privacy-policy__sub-list {
  list-style: lower-alpha;
}
.privacy-policy__sub-list > li + li {
  margin-top: 0.6em;
}
.privacy-policy__sub-sub-list {
  list-style: disc;
}
.privacy-policy__sub-sub-list > li + li {
  margin-top: 0.4em;
}
.privacy-policy__contact-info {
  font-size: 1.6rem;
  line-height: 1.9;
  margin-top: 1.2rem;
}
.privacy-policy__end {
  text-align: right;
  margin-top: 2.4rem;
  font-size: 1.4rem;
  color: #666;
}

.privacy-policy__container {
  max-width: 110rem;
  margin-left: auto;
  margin-right: auto;
}

.privacy-policy__list, .privacy-policy__list {
  margin-top: 2rem;
  list-style-type: disc;
}
.privacy-policy__list li, .privacy-policy__list li {
  font-size: 1.6rem;
}

.privacy-policy__section-content li {
  font-size: 1.6rem;
  line-height: 1.6;
}
.privacy-policy__sub-list {
  margin-top: 2rem;
}
.privacy-policy__list span {
  display: inline-block;
  margin-right: 1rem;
  color: #002daf;
}

.privacy-policy__list-item li {
  display: block;
}

.privacy-policy__sub-sub-list {
  margin-top: 2rem;
}

.privacy-policy__sub-sub-list-item li {
  display: flex;
}/*# sourceMappingURL=style.css.map */