@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  zoom: 0.9; /* 初期表示を90%相当に */
}
@media screen and (min-width: 751px) {
  html {
    height: 100%;
    min-height: 100vh;
    background: url("../img/pc_bg.webp") top center/cover no-repeat fixed;
  }
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
section[id],
div[id] {
  scroll-margin-top: calc(var(--header-height, 56px) + 8px);
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: #000;
  background: #fff;
}
@media screen and (max-width: 750px) {
  body {
    width: 100%;
    max-width: 660px;
    margin: 0 auto;
    min-height: 100vh;
  }
}
@media screen and (min-width: 751px) {
  body {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 600px;
    min-height: 100vh;
    margin: 0 auto;
    overflow-y: auto;
    overflow-x: hidden;
  }
}

img {
  width: 100%;
}

picture {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pc-side-nav {
  position: fixed;
  left: max(12px, (50vw - 220px - min(61.3333333333vw, 368px)) / 2);
  bottom: 40px;
  z-index: 5;
  width: min(61.3333333333vw, 368px);
  padding: min(5.3333333333vw, 32px);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
}
@media screen and (min-width: 1400px) {
  .pc-side-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s;
  }
}
.pc-side-nav__list {
  margin: 0;
  margin-top: 30px;
  padding: 0;
  list-style: none;
}
.pc-side-nav__logo {
  width: min(49.3333333333vw, 296px);
  margin-left: auto;
  margin-right: auto;
}
.pc-side-nav__link {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  color: #000;
  text-decoration: underline;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
}
.pc-side-nav__link::before {
  content: "";
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  background: url("../img/icon_arrow_2.webp") center/contain no-repeat;
}
.pc-side-nav__link:hover, .pc-side-nav__link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pc-side-nav__item + .pc-side-nav__item {
  margin-top: 20px;
}

.pc-line-share {
  display: none;
  position: fixed;
  top: 50px;
  right: 100px;
  z-index: 6;
  text-align: center;
}
@media screen and (min-width: 1400px) {
  .pc-line-share {
    display: block;
  }
}
.pc-line-share iframe {
  transform: scale(1.6);
  transform-origin: center center;
}

.pc-side-cta {
  display: grid;
  gap: 12px;
  position: fixed;
  right: max(12px, (50vw - 220px - min(58.6666666667vw, 352px)) / 2);
  bottom: 50px;
  z-index: 6;
  width: min(58.6666666667vw, 352px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
}
@media screen and (min-width: 1400px) {
  .pc-side-cta {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s;
  }
}
.pc-side-cta__link {
  display: block;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
  transform: translateZ(0);
  transition: transform 0.18s ease, filter 0.18s ease;
}
.pc-side-cta__link:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}
.pc-side-cta__link:focus-visible {
  outline: 3px solid rgba(30, 58, 95, 0.75);
  outline-offset: 4px;
}
.pc-side-cta__link img {
  display: block;
  width: 100%;
  height: auto;
}

.btn.btn--web,
.btn.btn--form,
.btn.btn--briefing {
  transform: translateZ(0);
  transition: transform 0.18s ease, filter 0.18s ease;
}
.btn.btn--web:hover,
.btn.btn--form:hover,
.btn.btn--briefing:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}
.btn.btn--web:focus-visible,
.btn.btn--form:focus-visible,
.btn.btn--briefing:focus-visible {
  outline: 3px solid rgba(30, 58, 95, 0.75);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .pc-side-nav,
  .pc-side-cta,
  .pc-side-cta__link,
  .btn.btn--web,
  .btn.btn--form,
  .btn.btn--briefing {
    transition: none !important;
    transform: none !important;
  }
}
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  padding: 4vw;
  transition: transform 0.25s ease;
}
.header--hidden {
  transform: translateY(-100%);
}
@media screen and (min-width: 751px) {
  .header {
    margin: 0 auto;
    padding: 30px;
    width: 100%;
    max-width: 600px;
    transition: transform 0.25s ease;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-100%);
  }
  .header.header--pc-visible {
    position: sticky;
    transform: translateY(0);
  }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .header__inner {
    max-width: 660px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 751px) {
  .header__inner {
    max-width: 600px;
    margin: 0 auto;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 1.0666666667vw;
}
@media screen and (min-width: 751px) {
  .header__logo {
    width: 320px;
    gap: min(1.0666666667vw, 6.4px);
  }
}
.header__logo-img {
  display: block;
  width: 56vw;
  object-fit: contain;
}
.header__logo-text {
  font-family: "Shin Go Pro", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 2.1333333333vw;
  font-weight: bold;
}
@media screen and (min-width: 751px) {
  .header__logo-text {
    font-size: min(2.1333333333vw, 12.8px);
  }
}
.header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 12vw;
  height: 8vw;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
@media screen and (min-width: 751px) {
  .header__hamburger {
    width: 60px;
    height: 35px;
  }
}
.header__hamburger--open {
  position: relative;
  justify-content: center;
}
.header__hamburger--open .header__hamburger-line {
  position: absolute;
  top: 50%;
  left: 0;
  margin: 0;
  background: #333;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.header__hamburger--open .header__hamburger-line:nth-child(1) {
  transform: translateY(-50%) rotate(45deg);
}
.header__hamburger--open .header__hamburger-line:nth-child(2) {
  opacity: 0;
  pointer-events: none;
}
.header__hamburger--open .header__hamburger-line:nth-child(3) {
  transform: translateY(-50%) rotate(-45deg);
}
.header__hamburger-line {
  display: block;
  width: 101%;
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
@media screen and (min-width: 751px) {
  .header__hamburger-line {
    width: 100%;
    height: 3px;
  }
}
@media screen and (min-width: 751px) {
  .header__hamburger--open .header__hamburger-line {
    width: 100%;
  }
}
.header__drawer-clip {
  position: fixed;
  top: var(--header-height, 56px);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 660px;
  height: 105vh;
  overflow: hidden;
  pointer-events: none;
  z-index: 99;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.header__drawer-clip:has(.header__drawer[aria-hidden=false]) {
  pointer-events: auto;
}
@media screen and (min-width: 751px) {
  .header__drawer-clip {
    max-width: 600px;
  }
}
.header__drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease-out, visibility 0.4s ease-out;
}
.header__drawer-clip:has(.header__drawer[aria-hidden=false]) .header__drawer-backdrop {
  opacity: 1;
  visibility: visible;
}
.header__drawer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out, visibility 0.4s ease-out;
  pointer-events: auto;
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  border-top: 2px solid #c1c1c1;
}
.header__drawer[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.header__nav-item {
  border-bottom: 1px solid #c1c1c1;
}
.header__nav-item:last-child {
  border-bottom: none;
}
.header__nav-link {
  display: flex;
  align-items: baseline;
  width: 100%;
  font-size: 5.0666666667vw;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  padding: 4vw 6.6666666667vw;
  border: none;
  background: linear-gradient(to bottom, #f5f5f5, #e8e8e8);
  text-align: left;
  transition: background 0.2s ease;
}
.header__nav-link::after {
  content: "";
  flex-shrink: 0;
  align-self: center;
  width: 6.6666666667vw;
  height: 6.6666666667vw;
  background-image: url("../img/icon_arrow_2.webp");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 6.6666666667vw;
}
@media screen and (min-width: 751px) {
  .header__nav-link::after {
    width: 45px;
    height: 46px;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.header__nav-link:hover, .header__nav-link:focus {
  background: linear-gradient(to bottom, #ebebeb, #e0e0e0);
}
@media screen and (min-width: 751px) {
  .header__nav-link {
    position: relative;
    font-size: min(3.7333333333vw, 22.4px);
    padding: min(2.6666666667vw, 16px) min(5.3333333333vw, 32px) min(4vw, 24px) min(5.3333333333vw, 32px);
    gap: min(2.6666666667vw, 16px);
  }
}
.header__drawer-cta {
  width: 88vw;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5.3333333333vw;
}
@media screen and (min-width: 751px) {
  .header__drawer-cta {
    margin-top: 40px;
    width: 420px;
  }
}
.header__drawer-line {
  text-align: center;
  margin-top: 8vw;
}
.header__drawer-line iframe {
  transform: scale(1.6);
  transform-origin: center center;
}
@media screen and (min-width: 751px) {
  .header__drawer-line {
    margin-top: 40px;
  }
  .header__drawer-line iframe {
    margin-left: 0;
  }
}
.header__drawer-btn {
  display: inline-block;
}
.header__drawer-btn + .header__drawer-btn {
  margin-top: 2.6666666667vw;
}
@media screen and (min-width: 751px) {
  .header__drawer-btn + .header__drawer-btn {
    margin-top: 20px;
  }
}
.main {
  background: #fff;
}
@media screen and (max-width: 750px) {
  .main {
    max-width: 660px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 751px) {
  .main {
    max-width: 600px;
    margin: 0 auto;
  }
}

.hero {
  position: relative;
}
.hero__kv {
  position: relative;
}
.hero__kv::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: min(1.3333333333vw, 8px);
  width: min(34.6666666667vw, 208px);
  height: min(42.6666666667vw, 256px);
  background-image: url("../img/hero_03.webp");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 5;
}
@media screen and (max-width: 750px) {
  .hero__kv::after {
    bottom: 0;
    right: 1.3333333333vw;
  }
}
.hero__kv-img {
  position: relative;
  z-index: 2;
}
.hero__slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
  /* html の zoom: 0.9 を打ち消し、Splide の寸法計算を正しくする */
  zoom: 1.111111; /* 1 / 0.9 */
}
.hero__slider .splide__track,
.hero__slider .splide__list,
.hero__slider .splide__slide {
  height: 100%;
}
.hero__slider .splide__slide picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero__slider .splide__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__slider .splide__pagination {
  bottom: 8px;
}
.hero__slider .splide__pagination__page.is-active {
  background: #b21c2a;
}
.hero__cta-block {
  position: absolute;
  width: min(88vw, 528px);
  bottom: -13vw;
  left: 50%;
  transform: translateX(-50%);
}
.hero__cta-block .btn {
  display: inline-block;
}
.hero__cta-block .btn + .btn {
  margin-top: min(2.1333333333vw, 12.8px);
}
@media screen and (min-width: 751px) {
  .hero__cta-block {
    bottom: -80px;
  }
}

.flow {
  margin-top: -150px;
}
.flow__timeline-txt {
  margin-left: min(5.3333333333vw, 32px);
  margin-right: min(5.3333333333vw, 32px);
  font-size: min(3.0666666667vw, 18.4px);
}

.cta-block {
  margin: min(6.6666666667vw, 40px) 0;
  position: relative;
  padding-top: min(13.3333333333vw, 80px);
  padding-bottom: min(13.3333333333vw, 80px);
  background-color: #fffc00;
  background-origin: content-box;
  background-clip: content-box;
}
.cta-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: min(13.3333333333vw, 80px);
  background: #fffc00;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  pointer-events: none;
  z-index: 1;
}
.cta-block::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 0;
  display: block;
  width: 100%;
  height: min(13.3333333333vw, 80px);
  background: #fffc00;
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  pointer-events: none;
  z-index: 1;
}
.cta-block .btn {
  display: block;
  width: min(88vw, 528px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
.cta-block .btn--web {
  margin-bottom: -30px;
}
.cta-block .btn--form {
  margin-top: -100px;
}
@media screen and (max-width: 750px) {
  .cta-block .btn--form {
    margin-top: -15vw;
  }
}
.cta-block .btn + .btn {
  margin-top: min(2.1333333333vw, 12.8px);
}

.dream__recommend-list {
  width: min(88vw, 528px);
  margin: 0 auto;
}
.dream__reasons {
  margin-top: min(6.6666666667vw, 40px);
}
.dream__reasons-title {
  width: min(82.6666666667vw, 496px);
  margin-left: auto;
  margin-right: auto;
}
.dream__reason {
  width: min(88vw, 528px);
  margin-left: auto;
  margin-right: auto;
}
.dream__reason--01 {
  margin-top: -50px;
}
@media screen and (max-width: 750px) {
  .dream__reason--01 {
    margin-top: -8vw;
  }
}
.dream__reason + .dream__reason {
  margin-top: min(5.3333333333vw, 32px);
}

.voice__ttl {
  width: min(62.6666666667vw, 376px);
  margin-left: auto;
  margin-right: auto;
}
.voice__ttl-subtitle {
  width: min(69.3333333333vw, 416px);
  margin-left: auto;
  margin-right: auto;
  margin-top: 5px;
}
.voice__area + .voice__area {
  margin-top: min(10.6666666667vw, 64px);
}
.voice__thumb {
  margin-top: min(5.3333333333vw, 32px);
}
.voice__thumb-num {
  width: min(28vw, 168px);
  margin-left: auto;
  margin-right: auto;
}
.voice__thumb-img {
  width: 100%;
}
.voice__thumb-img--01 {
  margin-top: -10px;
}
.voice__thumb-img--02 {
  margin-top: 20px;
}
.voice__thumb-txt {
  width: min(77.3333333333vw, 464px);
  margin-top: min(5.3333333333vw, 32px);
  margin-left: auto;
  margin-right: auto;
}
.voice__item {
  margin-top: min(5.3333333333vw, 32px);
}
.voice__item + .voice__item {
  margin-top: min(6.6666666667vw, 40px);
}
.voice__question-icon {
  width: min(9.3333333333vw, 56px);
  margin-left: auto;
  margin-right: auto;
}
.voice__item-ttl {
  width: min(77.3333333333vw, 464px);
  margin-top: min(2.6666666667vw, 16px);
  margin-left: auto;
  margin-right: auto;
}
.voice__item-ttl--01 {
  width: min(69.3333333333vw, 416px);
}
.voice__item-ttl--02 {
  width: min(81.3333333333vw, 488px);
}
.voice__item-ttl--03 {
  width: min(88vw, 528px);
}
.voice__item-ttl--04 {
  width: min(89.3333333333vw, 536px);
}
.voice__item-ttl--05 {
  width: min(76vw, 456px);
}
.voice__item-ttl--06 {
  width: min(77.3333333333vw, 464px);
}
.voice__item-ttl--07 {
  width: min(89.3333333333vw, 536px);
}
.voice__item-text {
  width: min(81.3333333333vw, 488px);
  margin-top: min(5.3333333333vw, 32px);
  margin-left: auto;
  margin-right: auto;
}
.voice__item-img {
  width: min(82.6666666667vw, 496px);
  margin-top: min(2.6666666667vw, 16px);
  margin-left: auto;
  margin-right: auto;
}

.merit__ttl {
  width: min(62.6666666667vw, 376px);
  margin: 0 auto;
}
.merit__ttl--02 {
  width: min(73.3333333333vw, 440px);
}
.merit__ttl-subtitle {
  width: min(76vw, 456px);
  margin-left: auto;
  margin-right: auto;
  margin-top: min(2.6666666667vw, 16px);
}
.merit__ttl-subtitle--02 {
  width: min(88vw, 528px);
}
.merit__area {
  margin-top: min(4vw, 24px);
}
.merit__area + .merit__area {
  margin-top: min(10.6666666667vw, 64px);
}
.merit__area + .merit__heading {
  margin-top: min(8vw, 48px);
}
.merit__item {
  width: min(89.3333333333vw, 536px);
  margin-left: auto;
  margin-right: auto;
}
.merit__item + .merit__item {
  margin-top: min(4vw, 24px);
}
.merit__item-ttl {
  width: min(77.3333333333vw, 464px);
  margin-left: auto;
  margin-right: auto;
}
.merit__item-text {
  width: min(81.3333333333vw, 488px);
}

@media (prefers-reduced-motion: reduce) {
  .hero__slider .splide__list {
    transition: none !important;
  }
}
.faq {
  margin-top: min(9.3333333333vw, 56px);
}
.faq__heading {
  margin: 0 0 3.2vw;
}
@media screen and (min-width: 751px) {
  .faq__heading {
    margin-bottom: min(3.2vw, 19.2px);
  }
}
.faq__heading-img {
  display: block;
  margin: 0 auto;
  width: min(48vw, 288px);
}
.faq__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.faq__question {
  margin: 0;
  border-bottom: 2px solid #c1c1c1;
}
.faq__question:first-child {
  border-top: 2px solid #c1c1c1;
}
.faq__question-btn {
  display: flex;
  align-items: baseline;
  width: 100%;
  margin: 0;
  padding: min(2.6666666667vw, 16px) min(5.3333333333vw, 32px) min(4vw, 24px) min(5.3333333333vw, 32px);
  border: none;
  background: linear-gradient(to bottom, #f5f5f5, #e8e8e8);
  color: #000;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  gap: min(2.6666666667vw, 16px);
}
.faq__question-btn--multiline {
  align-items: center;
}
.faq__label {
  flex-shrink: 0;
  font-weight: bold;
  font-size: min(6.9333333333vw, 41.6px);
  line-height: 1;
}
.faq__label--q {
  color: #000;
}
.faq__label--a {
  color: #000;
  margin-right: 0.15em;
}
.faq__question-text {
  flex: 1;
  font-size: min(5.3333333333vw, 32px);
  line-height: 1.3;
}
.faq__toggle {
  flex-shrink: 0;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: min(6.6666666667vw, 40px);
  height: min(6.6666666667vw, 40px);
  border-radius: 50%;
  background: #1f7c8a;
  color: #fff;
  font-size: 0;
  font-weight: normal;
  line-height: 1;
}
.faq__toggle::after {
  content: "";
  display: block;
  width: 50%;
  height: 5px;
  background: #fff;
  border-radius: 1px;
}
@media screen and (max-width: 750px) {
  .faq__toggle::after {
    height: 3px;
  }
}
.faq__question:not(.faq__question--open) .faq__toggle::after {
  display: none;
}
.faq__question:not(.faq__question--open) .faq__toggle::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(#fff, #fff) center/50% 5px no-repeat, linear-gradient(#fff, #fff) center/5px 50% no-repeat;
}
@media screen and (max-width: 750px) {
  .faq__question:not(.faq__question--open) .faq__toggle::before {
    background: linear-gradient(#fff, #fff) center/50% 3px no-repeat, linear-gradient(#fff, #fff) center/3px 50% no-repeat;
  }
}
.faq__answer {
  margin: 0;
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.4s ease-out, border-width 0.2s ease-out;
  border-top: none;
  overflow: hidden;
}
.faq__question:not(.faq__question--open) + .faq__answer {
  grid-template-rows: 0fr;
  border-width: 0;
}
.faq__question:not(.faq__question--open) + .faq__answer .faq__answer-inner {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.faq__answer-inner {
  min-height: 0;
  overflow: hidden;
  background: #fff;
  opacity: 1;
  transition: opacity 0.4s ease-out, visibility 0s linear 0.4s;
}
.faq__question.faq__question--open + .faq__answer .faq__answer-inner {
  transition: opacity 0.4s ease-out;
}
.faq__answer-main {
  display: flex;
  align-items: flex-start;
  gap: min(2.6666666667vw, 16px);
  padding: min(6.6666666667vw, 40px) min(5.3333333333vw, 32px);
}
.faq__answer-inner:has(.faq__fee-notes) .faq__answer-main {
  padding-bottom: 0;
}
.faq__answer-content {
  flex: 1;
  min-width: 0;
}
.faq__answer-intro {
  margin: 0 0 1.6vw;
  font-size: min(4.2666666667vw, 25.6px);
  line-height: 1.7;
  color: #000;
}
.faq__answer-body {
  padding-left: 0;
}
.faq__answer-section {
  font-size: min(4.2666666667vw, 25.6px);
  line-height: 1.7;
  color: #000;
}
.faq__answer-section:last-child {
  margin-bottom: 0;
}
.faq__answer-heading {
  font-weight: bold;
  color: #000;
}
.faq__fee-list {
  margin-top: 10px;
  padding-left: 0;
  list-style: none;
  line-height: 1.7;
}
.faq__fee-item {
  margin: 0 0 1.0666666667vw;
  font-size: min(4.2666666667vw, 25.6px);
}
@media screen and (min-width: 751px) {
  .faq__fee-item {
    margin-bottom: min(1.0666666667vw, 6.4px);
  }
}
.faq__fee-item:last-child {
  margin-bottom: 0;
}
.faq__fee-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  column-gap: 1.0666666667vw;
  align-items: center;
}
@media screen and (min-width: 751px) {
  .faq__fee-row {
    column-gap: min(1.0666666667vw, 6.4px);
  }
}
.faq__fee-leader {
  display: flex;
  align-items: center;
}
.faq__fee-leader::before {
  content: "";
  display: block;
  width: 100%;
  border-bottom: 2px dotted #000;
}
.faq__fee-amount {
  text-align: right;
  white-space: nowrap;
}
.faq__fee-sub {
  font-size: min(2.9333333333vw, 17.6px);
  line-height: 1;
  color: #000;
  font-feature-settings: "palt";
}
.faq__fee-sub--right {
  text-align: right;
}
.faq__fee-total {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
  font-weight: bold;
  font-size: min(4.2666666667vw, 25.6px);
}
.faq__fee-notes {
  margin: 2.1333333333vw 0 0;
  padding: 0;
  list-style: none;
  line-height: 1.7;
}
@media screen and (min-width: 751px) {
  .faq__fee-notes {
    margin-top: min(2.1333333333vw, 12.8px);
  }
}
.faq__fee-notes li {
  font-size: min(3.2vw, 19.2px);
  text-indent: -1em;
  padding-left: 1em;
}
.faq__fee-notes li:last-child {
  margin-bottom: 0;
}
.faq__answer-inner:has(.faq__fee-notes) .faq__fee-notes {
  padding: 0 min(5.3333333333vw, 32px) min(6.6666666667vw, 40px);
}
.faq__link-list {
  margin-top: min(5.3333333333vw, 32px);
  padding: 0;
  list-style: none;
}
.faq__link-list + .faq__answer-section {
  margin-top: min(5.3333333333vw, 32px);
}
.faq__link-item {
  margin: 0 0 1.3333333333vw;
  text-align: right;
}
.faq__link-item:last-child {
  margin-bottom: 0;
}
.faq__link {
  display: inline-block;
  border-bottom: 1px solid #000;
  color: #000;
  font-size: min(3.4666666667vw, 20.8px);
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}
.faq__link::after {
  content: "›";
  flex-shrink: 0;
  font-size: min(4.5333333333vw, 27.2px);
  line-height: 1;
  color: #1f7789;
  margin-left: 5px;
}
.faq__cta {
  margin-top: min(8vw, 48px);
  margin-bottom: min(16vw, 96px);
  text-align: center;
}
.faq__cta a {
  display: inline-block;
  border-bottom: 1px solid #000;
  color: #000;
  font-size: min(4.8vw, 28.8px);
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}
.faq__cta a::after {
  content: "›";
  flex-shrink: 0;
  font-size: min(6.6666666667vw, 40px);
  line-height: 1;
  color: #1f7789;
  margin-left: 5px;
}

.footer {
  background: #fff;
}
.footer__sns {
  text-align: center;
}
.footer__sns iframe {
  height: 70px !important;
  margin-left: auto;
  margin-right: auto;
  transform: scale(1.6);
  transform-origin: center center;
}
@media screen and (max-width: 768px) {
  .footer__sns iframe {
    height: 55px !important;
  }
}
.footer__map iframe {
  display: block;
  width: min(88vw, 528px);
  height: min(49.3333333333vw, 296px);
  margin-left: auto;
  margin-right: auto;
  border: 0;
}
.footer__body {
  margin: min(8vw, 48px) auto;
  text-align: center;
}
.footer__head {
  width: min(73.3333333333vw, 440px);
  margin-left: auto;
  margin-right: auto;
}
.footer__address {
  margin-top: min(4vw, 24px);
  font-style: normal;
  font-size: min(3.7333333333vw, 22.4px);
  line-height: 1.8;
}
.footer__address a {
  color: inherit;
  text-decoration: none;
}
.footer__address a:hover, .footer__address a:focus-visible {
  text-decoration: underline;
}
.footer__bottom {
  background: #2d6fa1;
  padding: min(4vw, 24px) 0;
  text-align: center;
}
.footer__copy {
  display: block;
  color: #fff;
  font-size: min(3.7333333333vw, 22.4px);
  line-height: 1.4;
}

/*# sourceMappingURL=style.css.map */
