:root {
  --viewport-width: min(100vw, 2000px);
  --b: calc(var(--viewport-width) / 160);
}

html {
  background: #f1dac1;
}

main {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

* {
  color: #1e2d63;
  font-family: YakuHanJP, "BIZ UDPGothic", sans-serif;
  font-size: max(1.6rem, 14px);
  font-weight: 700;
  line-height: 2.2;
  letter-spacing: 0.05em;
}

a > *,
button > * {
  pointer-events: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

a,
button {
  display: block;
}

span {
  display: inline-block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

span.attention {
  font-size: max(1.2rem, 10px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

span.attention {
  display: block;
}
span.attention > * {
  display: block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
span.attention > * > * {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.btnBox {
  width: 100%;
  z-index: 0;
}
.btnBox .btn {
  position: relative;
  text-align: center;
  max-width: max(68rem, 450px);
  border-radius: max(5rem, 40px);
  background: #ef7965;
  -webkit-box-shadow: 4px 6px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 4px 6px 0 rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-transform 0.5s ease, -webkit-box-shadow 0.5s ease;
  transition: -webkit-transform 0.5s ease, -webkit-box-shadow 0.5s ease;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  transition: transform 0.5s ease, box-shadow 0.5s ease, -webkit-transform 0.5s ease, -webkit-box-shadow 0.5s ease;
}
@media screen and (max-width: 768px) {
  .btnBox .btn {
    max-width: 100%;
  }
}
.btnBox .btn__text {
  color: #fff;
  font-size: max(2.2rem, 18px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.15em;
  padding: max(2rem, 20px) 5%;
}
@media screen and (max-width: 550px) {
  .btnBox .btn__text {
    font-size: 4vw;
  }
}
.btnBox .btn__icon {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 50%;
  right: 5%;
  width: auto;
  height: 55%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  overflow: hidden;
  -webkit-transition: background 0.5s ease;
  transition: background 0.5s ease;
  background: rgba(255, 255, 255, 0.3);
  z-index: 0;
}
.btnBox .btn__icon::before, .btnBox .btn__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.btnBox .btn__icon::before {
  background: rgba(255, 255, 255, 0.7);
}
.btnBox .btn__icon::after {
  background: #fff;
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
  z-index: -2;
}
.btnBox .btn__icon--arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.btnBox .btn__icon--arrow img {
  width: 40%;
}
.btnBox .btn--secondary .btn__supplement {
  position: absolute;
  display: grid;
  place-items: center;
  text-align: center;
  top: 50%;
  left: 0;
  width: auto;
  height: 120%;
  aspect-ratio: 1/1;
  background: #fff;
  border-radius: 50%;
  border: max(0.2rem, 2px) solid #ef7965;
  -webkit-transform: translate(-20%, -50%);
          transform: translate(-20%, -50%);
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 550px) {
  .btnBox .btn--secondary .btn__supplement {
    height: 110%;
  }
}
.btnBox .btn--secondary .btn__supplement span {
  color: #ef7965;
  font-size: max(2.5rem, 16px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}
.btnBox .btn--secondary .btn__supplement span small {
  display: block;
  color: inherit;
  font-size: 0.6em;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 550px) {
  .btnBox .btn--secondary .btn__text {
    font-size: 3.8vw;
  }
}
.btnBox .btn:hover {
  -webkit-transform: translate(4px, 6px);
          transform: translate(4px, 6px);
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.05);
}
.btnBox .btn:hover .btn__icon::before, .btnBox .btn:hover .btn__icon::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.btnBox .btn:hover .btn__icon--arrow {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.btnBox .attention {
  font-size: max(1.2rem, 10px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.cta {
  position: relative;
  background: #f7f7f7;
  z-index: 0;
}
.cta__wrapper {
  padding: max(10rem, 60px) 10%;
}
@media screen and (max-width: 1000px) {
  .cta__wrapper {
    padding: max(10rem, 60px) 0;
  }
}
.cta__supplement {
  display: none;
  position: relative;
  text-align: center;
  padding: max(2rem, 15px) 10%;
  background: #d8e6ea;
  border-radius: max(1.5rem, 10px);
  margin-bottom: max(4rem, 30px);
}
.cta__supplement--visible {
  display: block;
}
.cta__supplement::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: min(-2rem, -20px);
  width: max(2.5rem, 25px);
  height: max(2rem, 20px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #d8e6ea;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.cta__supplement p {
  font-size: max(2.6rem, 16px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.15em;
}
.cta__image {
  width: 100%;
  height: auto;
  aspect-ratio: 25/13;
}
@media screen and (max-width: 768px) {
  .cta__image {
    aspect-ratio: 1/1;
  }
}
.cta__btn {
  text-align: center;
}
@media screen and (max-width: 550px) {
  .cta__btn {
    text-align: left;
  }
}
.cta__btn .btn {
  margin: max(4.5rem, 30px) auto max(1rem, 10px) auto;
}

.section-title {
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#57a4b7), color-stop(25%, #1e2d63), color-stop(75%, #1e2d63), to(#57a4b7));
  background: linear-gradient(to right, #57a4b7, #1e2d63 25%, #1e2d63 75%, #57a4b7);
}
@media screen and (max-width: 550px) {
  .section-title {
    background: -webkit-gradient(linear, left top, right top, from(#57a4b7), color-stop(20%, #1e2d63), color-stop(80%, #1e2d63), to(#57a4b7));
    background: linear-gradient(to right, #57a4b7, #1e2d63 20%, #1e2d63 80%, #57a4b7);
  }
}

.accordion {
  position: relative;
  margin: max(0.5rem, 5px) 0;
  padding: 0 5%;
  border-radius: max(1rem, 10px);
}
.accordion::before, .accordion::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: max(0.2rem, 2px);
  background-image: linear-gradient(to right, #1e2d63 5px, transparent 2px);
  background-size: 6px 2px;
  background-repeat: space;
}
.accordion::before {
  top: min(-0.5rem, -5px);
}
.accordion::after {
  bottom: min(-0.5rem, -5px);
}
.accordion--primary {
  background: rgba(255, 255, 255, 0.2);
}
.accordion--secondary {
  background: rgba(242, 219, 192, 0.4);
}
.accordion__header {
  width: 100%;
  position: relative;
  padding: max(2.5rem, 20px) 0;
}
.accordion__header__inner {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: max(1rem, 10px);
}
.accordion__header p {
  font-size: max(2.4rem, 18px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.accordion__header__arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  width: max(2.2rem, 18px);
  height: max(2.2rem, 18px);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.accordion__header__arrow--line {
  position: absolute;
  background: #1e2d63;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.accordion__header__arrow--line:nth-of-type(1) {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.accordion__header__arrow--line:nth-of-type(2) {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.accordion__body {
  padding: 0 5%;
  -webkit-transition: max-height 0.5s ease, padding 0.5s ease;
  transition: max-height 0.5s ease, padding 0.5s ease;
}
@media screen and (max-width: 550px) {
  .accordion__body {
    padding: 0 2.5%;
  }
}
.accordion.open .accordion__header__arrow span:nth-of-type(2) {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.accordion.open .accordion__body {
  padding: max(8rem, 30px) 5%;
}
@media screen and (max-width: 550px) {
  .accordion.open .accordion__body {
    padding: max(8rem, 30px) 2.5%;
  }
}

.fixedBanner {
  display: none;
}
@media screen and (max-width: 550px) {
  .fixedBanner {
    position: fixed;
    display: block;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    padding: 10px 0;
    background: rgba(30, 45, 99, 0.2);
  }
}
.fixedBanner a {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.fixedBanner a:hover {
  opacity: 0.6;
}

.header {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: max(8rem, 65px);
  padding-left: max(2.5rem, 20px);
  padding-right: max(2.5rem, 20px);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  background: #fff;
  z-index: 999999;
}
@media screen and (max-width: 550px) {
  .header {
    padding-left: 2.5%;
  }
}
.header__inner {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: max(1.5rem, 15px);
}
.header__logo {
  width: max(6.5rem, 65px);
}
.header__supplement {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: max(1rem, 5px);
}
.header__supplement__item {
  font-size: max(1.4rem, 12px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 550px) {
  .header__supplement__item:nth-of-type(2) {
    display: none;
  }
}
.header__supplement__item--border {
  padding: max(0.9rem, 8px) max(2.2rem, 20px);
  border: max(0.1rem, 1px) solid;
  border-radius: max(0.5rem, 5px);
}
.header__nav {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 62.5%;
}
.header__nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
.header__nav__list__item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header__nav__list__item .header__nav__link {
  position: relative;
  font-size: max(1.4rem, 12px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 1300px) {
  .header__nav__list__item .header__nav__link {
    display: none;
  }
}
.header__nav__list__item:not(:first-of-type) .header__nav__link {
  padding-left: max(3.4rem, 20px);
  margin-left: max(3.4rem, 20px);
}
.header__nav__list__item:not(:first-of-type) .header__nav__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: max(0.1rem, 1px);
  height: 100%;
  background-image: linear-gradient(to bottom, #1e2d63 4px, transparent 1px);
  background-size: 1px 5px;
  background-repeat: repeat-y;
}
.header__nav__list__item--cta {
  height: 100%;
  margin-left: max(3.5rem, 20px);
}
@media screen and (max-width: 768px) {
  .header__nav__list__item--cta {
    display: none;
  }
}
.header__nav__list__item--cta .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-items: center;
  width: max(23rem, 200px);
  max-width: unset;
  height: 100%;
}
.header__nav__list__item--cta .btn__text {
  font-size: max(1.4rem, 12px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.15em;
  padding-left: 10%;
}
.header__toggle {
  display: none;
}
@media screen and (max-width: 1300px) {
  .header__toggle {
    position: relative;
    display: block;
    -ms-flex-item-align: center;
    align-self: center;
    width: max(4rem, 30px);
    height: max(2.5rem, 20px);
    margin-left: max(5rem, 10px);
    z-index: 99999;
  }
}
.header__toggle--line {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: #1e2d63;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
}
.header__toggle--line:nth-of-type(1) {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.header__toggle--line:nth-of-type(3) {
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
.header__menu {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.header__menu__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 10%;
  background: #f1dac1;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.header__menu__inner::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 550px) {
  .header__menu__inner {
    padding: 0 5%;
  }
}
.header__menu__list {
  display: grid;
  gap: max(3rem, 20px);
}
.header__menu__list__item .header__menu__link {
  position: relative;
  width: 100%;
  padding-bottom: max(1rem, 10px);
  margin-bottom: max(1rem, 10px);
}
.header__menu__list__item .header__menu__link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: max(0.2rem, 2px);
  background-image: linear-gradient(to right, rgba(30, 45, 99, 0.2) 5px, transparent 2px);
  background-size: 6px 2px;
  background-repeat: space;
}
.header__menu__list__item .header__menu__link__text {
  font-size: max(3rem, 18px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
}
.header__menu__list__item .header__menu__link__icon {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 50%;
  right: 5%;
  width: auto;
  height: 70%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  -webkit-transform: translateY(-75%);
          transform: translateY(-75%);
  overflow: hidden;
  -webkit-transition: background 0.5s ease;
  transition: background 0.5s ease;
  background: #1e2d63;
  z-index: 0;
}
.header__menu__list__item .header__menu__link__icon::before, .header__menu__list__item .header__menu__link__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.header__menu__list__item .header__menu__link__icon::before {
  background: rgba(30, 45, 99, 0.7);
}
.header__menu__list__item .header__menu__link__icon::after {
  background: #1e2d63;
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
  z-index: -2;
}
.header__menu__list__item .header__menu__link__icon--arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.header__menu__list__item .header__menu__link__icon--arrow img {
  width: 40%;
}
.header__menu__list__item--cta .btn {
  margin: 0 auto;
}
.header.active .header__toggle--line:nth-of-type(1) {
  -webkit-transform: translateY(0) rotate(-45deg);
          transform: translateY(0) rotate(-45deg);
}
.header.active .header__toggle--line:nth-of-type(2) {
  opacity: 0;
}
.header.active .header__toggle--line:nth-of-type(3) {
  -webkit-transform: translateY(0) rotate(45deg);
          transform: translateY(0) rotate(45deg);
}
.header.active .header__menu {
  display: block;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.footer {
  background: #fff;
}
.footer__top {
  padding-top: max(2.5rem, 25px);
  padding-bottom: max(2.5rem, 25px);
}
.footer__top__nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: max(3rem, 20px);
}
@media screen and (max-width: 550px) {
  .footer__top__nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.footer__top__nav__list .footer__list__link {
  font-size: max(1.4rem, 12px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.footer__top__nav__list .footer__list__link:hover {
  opacity: 0.6;
}
.footer__top__nav__list .footer__list__item {
  text-align: center;
}
.footer__top__nav__list .footer__list__item--contact {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .footer__top__nav__list .footer__list__item--contact {
    width: 100%;
  }
}
.footer__top__nav__list .footer__list__item--contact .footer__list__link {
  width: 100%;
  padding: max(1.5rem, 15px) max(7rem, 50px);
  border: max(0.1rem, 1px) solid #1e2d63;
  border-radius: max(3rem, 25px);
  -webkit-transition: color 0.5s ease, background 0.5s ease;
  transition: color 0.5s ease, background 0.5s ease;
}
.footer__top__nav__list .footer__list__item--contact .footer__list__link:hover {
  color: #fff;
  background: #1e2d63;
  opacity: 1;
}
.footer__bottom {
  text-align: center;
  padding: max(1rem, 10px) 0;
  background: #1e2d63;
}
.footer__bottom b {
  color: #fff;
  font-family: YakuHanJP, "Manrope", sans-serif;
  font-size: max(1.1rem, 10px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.2em;
}

.hero {
  position: relative;
}
.hero__bg {
  width: 100%;
  height: auto;
  min-height: 700px;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 550px) {
  .hero__bg {
    aspect-ratio: 1/2;
  }
}
.hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-position: 7.5%;
     object-position: 7.5%;
}
@media screen and (max-width: 550px) {
  .hero__bg img {
    -o-object-position: 50%;
       object-position: 50%;
  }
}
.hero__tag {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: max(3rem, 15px);
  left: 0;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 550px) {
  .hero__tag {
    display: none;
  }
}
.hero__tag__button {
  position: relative;
  text-align: center;
  padding: max(1.5rem, 15px) 5%;
  border-radius: max(1rem, 10px) max(1rem, 10px) 0 0;
  background: #1e2d63;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  z-index: 0;
}
.hero__tag__button::before {
  content: "";
  position: absolute;
  inset: 0;
  bottom: -1px;
  background: #fff;
  border-radius: max(1rem, 10px) max(1rem, 10px) 0 0;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transition: border-radius 0.5s ease, -webkit-transform 0.5s ease;
  transition: border-radius 0.5s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, border-radius 0.5s ease;
  transition: transform 0.5s ease, border-radius 0.5s ease, -webkit-transform 0.5s ease;
  z-index: -1;
  pointer-events: none;
}
.hero__tag__button::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  height: 10px;
  background: #fff;
  z-index: -1;
  pointer-events: none;
}
.hero__tag__button__text {
  color: #fff;
  font-size: max(1.8rem, 14px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  -webkit-transition: color 0.5s ease, -webkit-transform 0.5s ease;
  transition: color 0.5s ease, -webkit-transform 0.5s ease;
  transition: color 0.5s ease, transform 0.5s ease;
  transition: color 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}
.hero__tag__button:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.hero__tag__button:hover::before {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
.hero__tag__button:hover .hero__tag__button__text {
  color: #1e2d63;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}

.intro {
  position: relative;
  background: #f1dac1;
  z-index: 0;
}
.intro__wrapper {
  padding-top: max(12rem, 90px);
  padding-bottom: max(8.5rem, 60px);
}
.intro__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.intro__bg img {
  width: 100%;
  height: 100%;
  -webkit-filter: blur(5px);
          filter: blur(5px);
  opacity: 0.32;
}
.intro__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 max(3rem, 30px);
}
@media screen and (max-width: 1000px) {
  .intro__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.intro__content__alto {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  width: max(57.8rem, 450px);
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  outline: max(0.8rem, 8px) solid #fff;
  z-index: 0;
}
@media screen and (max-width: 1000px) {
  .intro__content__alto {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: max(13rem, 30px);
    margin-bottom: max(5rem, 40px);
  }
}
@media screen and (max-width: 550px) {
  .intro__content__alto {
    width: 90%;
    margin: 30px auto 40px auto;
  }
}
.intro__content__alto__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  -webkit-filter: blur(7px);
          filter: blur(7px);
  overflow: hidden;
  z-index: -1;
}
.intro__content__alto__bg img {
  width: 100%;
  height: 100%;
}
.intro__content__alto__inner {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 120%;
  overflow: hidden;
  border-radius: 48.25%;
  text-align: center;
}
.intro__content__alto__inner img {
  width: auto;
  height: 100%;
  -webkit-transform: translateY(10%) translateZ(0);
          transform: translateY(10%) translateZ(0);
  margin: 0 auto;
  -webkit-filter: drop-shadow(13px 13px 30px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(13px 13px 30px rgba(0, 0, 0, 0.3));
}
.intro__content__detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .intro__content__detail {
    display: contents;
  }
}
@media screen and (max-width: 1000px) {
  .intro__content__detail h2 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.intro__content__detail h2 span {
  font-size: max(2.2rem, 18px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.intro__content__detail h2 p {
  font-family: "Marcellus", serif;
  font-size: max(12.3rem, 100px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
}
.intro__content__detail h3 {
  font-size: max(3.6rem, 24px);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-top: max(2rem, 15px);
  margin-bottom: max(4.5rem, 30px);
}
@media screen and (max-width: 1000px) {
  .intro__content__detail h3 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .intro__content__detail h3 br {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .intro__content__detail__price {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
.intro__content__detail__price .supplement {
  font-size: max(2.2rem, 16px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding: max(0.5rem, 5px) max(5.5rem, 30px);
  margin-bottom: max(1rem, 10px);
  background: #fff;
  border-radius: max(5rem, 40px);
}
@media screen and (max-width: 550px) {
  .intro__content__detail__price .supplement {
    width: 100%;
  }
}
.intro__content__detail__price strong {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: last baseline;
      -ms-flex-align: last baseline;
          align-items: last baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: max(0.5rem, 5px);
  font-family: YakuHanJP, "Manrope", sans-serif;
  font-size: max(11rem, 90px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
}
.intro__content__detail__price strong .unit {
  font-family: YakuHanJP, "BIZ UDPGothic", sans-serif;
  font-size: 0.55em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
.intro__content__detail__price .attention {
  margin-top: max(2rem, 15px);
}

.features {
  position: relative;
  z-index: 0;
}
.features .section-title {
  padding: max(3.5rem, 30px) 5%;
}
.features .section-title__logo, .features .section-title__text {
  -webkit-transform: translateY(min(-2rem, -10px));
          transform: translateY(min(-2rem, -10px));
}
.features .section-title__logo {
  color: #fff;
  font-family: "Marcellus", serif;
  font-size: max(7rem, 50px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.features .section-title__text {
  color: #fff;
  font-size: max(3.6rem, 24px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding-left: 8px;
}
.features .section-title__text b {
  color: inherit;
  font-size: 1.56em;
  font-weight: 400;
  line-height: inherit;
  letter-spacing: inherit;
}
.features__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.features__bg img {
  width: 100%;
  height: 100%;
  -o-object-position: bottom;
     object-position: bottom;
}
.features__wrapper {
  margin-top: min(-4rem, -20px);
}
.features__content {
  display: grid;
  row-gap: max(8rem, 50px);
  padding: max(10rem, 50px) 10% max(20rem, 100px);
  background: #fff;
  border-radius: max(3rem, 20px);
  overflow: hidden;
}
@media screen and (max-width: 1300px) {
  .features__content {
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media screen and (max-width: 1000px) {
  .features__content {
    row-gap: max(11rem, 35px);
    padding-left: 10%;
    padding-right: 10%;
  }
}
@media screen and (max-width: 768px) {
  .features__content {
    padding: 50px 10% max(20rem, 50px);
  }
}
.features__content__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: max(8rem, 30px);
}
@media screen and (max-width: 1300px) {
  .features__content__step {
    gap: max(5rem, 15px);
  }
}
@media screen and (max-width: 1000px) {
  .features__content__step {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.features__content__step:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 1000px) {
  .features__content__step:nth-of-type(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.features__content__step .attention {
  font-size: max(1.2rem, 10px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-top: max(2rem, 15px);
}
@media screen and (max-width: 1000px) {
  .features__content__step .attention.pc {
    display: none;
  }
}
.features__content__step .attention.sp {
  display: none;
}
@media screen and (max-width: 1000px) {
  .features__content__step .attention.sp {
    display: block;
  }
}
.features__content__step__text h3 {
  position: relative;
  color: #56A4B7;
  font-size: max(4.2rem, 28px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  padding-bottom: max(2.5rem, 20px);
  margin-bottom: max(2.5rem, 20px);
}
.features__content__step__text h3 sup {
  top: 0;
  color: inherit;
  font-size: 0.3em;
  font-weight: inherit;
  line-height: 1;
  letter-spacing: 0;
  vertical-align: text-top;
}
.features__content__step__text h3::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: max(2.8rem, 23px);
  height: max(0.2rem, 2px);
  background-image: linear-gradient(to right, #1e2d63 5px, transparent 2px);
  background-size: 6px 2px;
  background-repeat: repeat-x;
}
.features__content__step__text h4 {
  font-size: max(2.5rem, 18px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: max(3rem, 15px);
}
.features__content__step__text .supplement {
  position: relative;
  padding: max(1rem, 10px) 5%;
  background: #dfecf0;
  border-radius: max(0.5rem, 5px);
  margin-bottom: max(2rem, 16px);
  font-size: max(1.6rem, 13px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.features__content__step__text .supplement::before {
  content: "";
  position: absolute;
  left: 10%;
  bottom: min(-1.5rem, -12px);
  width: max(1.7rem, 14px);
  height: max(1.6rem, 12px);
  background: #dfecf0;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.features__content__step__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  width: max(56rem, 350px);
}
@media screen and (max-width: 1000px) {
  .features__content__step__image {
    width: 100%;
  }
}
.features__content__step__image .imageBox {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: max(1rem, 10px);
  overflow: hidden;
  z-index: 0;
}
@media screen and (max-width: 1000px) {
  .features__content__step__image .imageBox {
    height: auto;
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 550px) {
  .features__content__step__image .imageBox {
    aspect-ratio: 5/3.5;
  }
}
.features__content__step__image .imageBox__number {
  position: absolute;
  display: grid;
  place-items: center;
  bottom: 0;
  right: 0;
  width: max(6rem, 50px);
  height: auto;
  aspect-ratio: 1/1;
  background: #1e2d63;
  color: #fff;
  font-size: max(3rem, 20px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
}
.features__content__step__image .imageBox img {
  width: 100%;
  height: 100%;
}

.price {
  position: relative;
  background: #f1dac1;
  z-index: 1;
}
.price__bg {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  bottom: 100%;
  left: 0;
  right: 0;
  z-index: -1;
}
.price__bg img {
  -o-object-position: bottom;
     object-position: bottom;
  -webkit-filter: drop-shadow(0 min(-1.5rem, -5px) max(3rem, 3px) #9ca3a5);
          filter: drop-shadow(0 min(-1.5rem, -5px) max(3rem, 3px) #9ca3a5);
}
.price__inner {
  background: #f1dac1;
}
.price__wrapper {
  padding-top: max(10rem, 70px);
  padding-bottom: max(13rem, 70px);
}
.price__title {
  text-align: center;
  margin-bottom: max(5.5rem, 40px);
}
.price__title__supplement {
  font-size: max(3.3rem, 24px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.price__title__text {
  font-size: max(8.3rem, 50px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.price__title__text b {
  color: #56A4B7;
  display: inline-block;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.price__table {
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: max(1.5rem, 5px);
  margin-bottom: max(7rem, 50px);
}
@media screen and (max-width: 1000px) {
  .price__table {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto 1fr;
  }
}
.price__table__item {
  padding: max(2rem, 15px) max(5rem, 30px);
  border-radius: max(1rem, 10px);
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .price__table__item {
    padding: 30px 30px;
  }
}
@media screen and (max-width: 768px) {
  .price__table__item {
    padding: 30px 15px;
  }
}
.price__table__item--title {
  position: relative;
  grid-column: 1/2;
  grid-row: 1/3;
  padding: 0;
  padding-right: max(2rem, 20px);
  z-index: 0;
  border-radius: 0;
  overflow: visible;
}
@media screen and (max-width: 1000px) {
  .price__table__item--title {
    grid-column: 1/3;
    grid-row: 1/2;
    padding-right: 0;
    padding-bottom: max(2rem, 20px);
  }
}
.price__table__item--title::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: max(2rem, 20px);
  height: max(2.5rem, 25px);
  background: #1e2d63;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  z-index: -1;
}
@media screen and (max-width: 1000px) {
  .price__table__item--title::before {
    top: unset;
    left: 50%;
    bottom: 0;
    width: max(2.5rem, 25px);
    height: max(2rem, 20px);
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
            clip-path: polygon(0 0, 50% 100%, 100% 0);
  }
}
.price__table__item--title .price__table__item__inner {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: max(3rem, 20px) max(5rem, 30px);
  background: #1e2d63;
  border-radius: max(1rem, 10px);
  overflow: hidden;
}
.price__table__item--title p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  color: #fff;
  font-size: max(4.4rem, 28px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1000px) {
  .price__table__item--title p {
    font-size: max(7rem, 36px);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (max-width: 550px) {
  .price__table__item--title p {
    font-size: 8vw;
  }
}
.price__table__item--title p span {
  font-size: 0.6em;
}
@media screen and (max-width: 1000px) {
  .price__table__item--title p span {
    font-size: 0.8em;
  }
}
.price__table__item--price1, .price__table__item--price2 {
  display: grid;
  place-items: center;
  text-align: center;
  grid-column: 2/3;
  background: #fff;
}
.price__table__item--price1 .supplement, .price__table__item--price2 .supplement {
  display: block;
  font-size: max(1.7rem, 12px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1000px) {
  .price__table__item--price1 .supplement, .price__table__item--price2 .supplement {
    font-size: max(3rem, 18px);
  }
}
@media screen and (max-width: 550px) {
  .price__table__item--price1 .supplement, .price__table__item--price2 .supplement {
    font-size: 3vw;
  }
}
.price__table__item--price1 b, .price__table__item--price2 b {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: YakuHanJP, "Manrope", sans-serif;
  font-size: max(8.1rem, 34px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 1000px) {
  .price__table__item--price1 b, .price__table__item--price2 b {
    font-size: max(10rem, 50px);
  }
}
@media screen and (max-width: 550px) {
  .price__table__item--price1 b, .price__table__item--price2 b {
    letter-spacing: -0.04em;
    font-size: 10.5vw;
  }
}
.price__table__item--price1 b .unit, .price__table__item--price2 b .unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 0.55em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
.price__table__item--price1 b .unit__inner, .price__table__item--price2 b .unit__inner {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-family: YakuHanJP, "BIZ UDPGothic", sans-serif;
  font-size: inherit;
  line-height: 1;
  letter-spacing: 0;
}
.price__table__item--price1 b .unit__tax, .price__table__item--price2 b .unit__tax {
  font-size: 0.3em;
}
.price__table__item--price1 b .unit__text, .price__table__item--price2 b .unit__text {
  font-size: 1em;
}
.price__table__item--price1 b .unit__span, .price__table__item--price2 b .unit__span {
  font-size: 0.5em;
}
.price__table__item--price1 .attention, .price__table__item--price2 .attention {
  margin-top: max(1rem, 10px);
}
@media screen and (max-width: 550px) {
  .price__table__item--price1 .attention, .price__table__item--price2 .attention {
    font-size: 2vw;
  }
}
.price__table__item--price1 {
  grid-row: 1/2;
}
@media screen and (max-width: 1000px) {
  .price__table__item--price1 {
    grid-row: 2/3;
    grid-column: 1/2;
  }
}
.price__table__item--price2 {
  grid-row: 2/3;
}
@media screen and (max-width: 1000px) {
  .price__table__item--price2 {
    grid-row: 2/3;
    grid-column: 2/3;
  }
}
.price__table__item--arrow {
  grid-column: 3/4;
  grid-row: 1/3;
  padding: 0;
  margin: auto;
}
@media screen and (max-width: 1000px) {
  .price__table__item--arrow {
    grid-column: 1/3;
    grid-row: 3/4;
  }
}
.price__table__item--arrow .arrow {
  width: auto;
  height: max(22rem, 150px);
  aspect-ratio: 27/74;
  -webkit-clip-path: polygon(0% 20%, 60% 20%, 60% 0%, 100% 50%, 60% 100%, 60% 80%, 0% 80%);
          clip-path: polygon(0% 20%, 60% 20%, 60% 0%, 100% 50%, 60% 100%, 60% 80%, 0% 80%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(86, 164, 183, 0)), to(#56A4B7));
  background: linear-gradient(to right, rgba(86, 164, 183, 0), #56A4B7);
}
@media screen and (max-width: 1000px) {
  .price__table__item--arrow .arrow {
    width: max(22rem, 150px);
    height: auto;
    aspect-ratio: 74/27;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(86, 164, 183, 0)), to(#56A4B7));
    background: linear-gradient(to bottom, rgba(86, 164, 183, 0), #56A4B7);
    -webkit-clip-path: polygon(80% 0, 80% 50%, 100% 50%, 50% 100%, 0 50%, 20% 50%, 20% 0);
            clip-path: polygon(80% 0, 80% 50%, 100% 50%, 50% 100%, 0 50%, 20% 50%, 20% 0);
  }
}
@media screen and (max-width: 550px) {
  .price__table__item--arrow .arrow {
    aspect-ratio: 97/27;
  }
}
.price__table__item--final {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  grid-column: 4/5;
  grid-row: 1/3;
  color: #fff;
  background: #1e2d63;
}
@media screen and (max-width: 1000px) {
  .price__table__item--final {
    text-align: center;
    grid-column: 1/3;
    grid-row: 4/5;
  }
}
.price__table__item--final .supplement {
  font-size: max(2.5rem, 16px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1000px) {
  .price__table__item--final .supplement {
    font-size: max(3rem, 18px);
  }
}
.price__table__item--final strong {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-family: YakuHanJP, "Manrope", sans-serif;
  font-size: max(11.7rem, 50px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 1000px) {
  .price__table__item--final strong {
    font-size: max(15rem, 60px);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.price__table__item--final strong .unit {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 0.55em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  margin-left: 5px;
}
@media screen and (max-width: 1300px) {
  .price__table__item--final strong .unit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media screen and (max-width: 1000px) {
  .price__table__item--final strong .unit {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.price__table__item--final strong .unit__inner {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-family: YakuHanJP, "BIZ UDPGothic", sans-serif;
  font-size: inherit;
  line-height: 1;
  letter-spacing: 0;
}
.price__table__item--final strong .unit__tax {
  color: #fff;
  font-size: 0.3em;
}
.price__table__item--final strong .unit__text {
  color: #fff;
  font-size: 1em;
}
.price__table__item--final strong .unit__span {
  font-size: 0.5em;
}
.price__table__item--final strong .unit__ending {
  font-size: 0.6em;
}
.price__accordion__body h3 {
  font-size: max(2rem, 18px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: max(3rem, 25px);
}
.price__accordion__body__content {
  display: grid;
  gap: max(8rem, 50px) max(2rem, 20px);
  grid-template-columns: auto 1fr;
}
@media screen and (max-width: 768px) {
  .price__accordion__body__content {
    row-gap: max(8rem, 30px);
    grid-template-columns: 1fr;
  }
}
.price__accordion__body__content dl {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: max(5rem, 20px) max(2rem, 10px);
}
@media screen and (max-width: 768px) {
  .price__accordion__body__content dl {
    row-gap: max(5rem, 10px);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    grid-column: span 1;
  }
}
.price__accordion__body__content dl h4 {
  font-size: max(2rem, 15px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.price__accordion__body__content dl h4.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .price__accordion__body__content dl h4.sp {
    display: block;
  }
}
.price__accordion__body__content dl h4.pc {
  display: block;
  margin-bottom: max(1rem, 5px);
}
@media screen and (max-width: 768px) {
  .price__accordion__body__content dl h4.pc {
    display: none;
  }
}
.price__accordion__body__content dl dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: max(2rem, 10px);
}
.price__accordion__body__content dl dt .imageBox {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: grid;
  place-items: center;
  width: max(11.2rem, 70px);
  height: auto;
  aspect-ratio: 1/1;
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .price__accordion__body__content dl dt .imageBox {
    width: min(35%, 70px);
  }
}
.price__accordion__body__content dl dt .imageBox img {
  width: 50%;
}
.price__accordion__body__content dl dt .arrow {
  display: inline-block;
  width: max(1.8rem, 12px);
  height: max(2.4rem, 18px);
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: #1e2d63;
}
@media screen and (max-width: 768px) {
  .price__accordion__body__content dl dt .arrow {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .price__accordion__body__content dl dt p {
    display: none;
  }
}
.price__accordion__body__content dl dd p {
  font-size: max(1.6rem, 14px);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.05em;
}

.safety {
  position: relative;
  z-index: 0;
  border-radius: max(3rem, 20px) max(3rem, 20px) 0 0;
  background: #f7f7f7;
  overflow: hidden;
}
.safety__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.safety__bg__inner {
  position: absolute;
  width: 100%;
}
.safety__bg__inner:nth-of-type(1) {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  -webkit-filter: blur(5px);
          filter: blur(5px);
}
.safety__bg__inner:nth-of-type(1) img {
  width: 100%;
  height: 100%;
  -o-object-position: top right;
     object-position: top right;
}
.safety__bg__inner:nth-of-type(2) {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
}
.safety__wrapper {
  padding-top: max(14rem, 70px);
  padding-bottom: max(14rem, 70px);
}
.safety__title {
  text-align: center;
  font-size: max(4rem, 28px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: max(3rem, 15px);
}
.safety__content__inner {
  display: grid;
  gap: max(1.5rem, 5px);
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto 1fr;
  margin-bottom: max(3rem, 20px);
}
@media screen and (max-width: 768px) {
  .safety__content__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
.safety__content__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  position: relative;
  padding: max(4rem, 30px) max(6rem, 20px);
  border-radius: max(1rem, 10px);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  overflow: hidden;
  z-index: 0;
}
@media screen and (max-width: 550px) {
  .safety__content__item {
    padding: max(4rem, 15px) max(6rem, 10px);
  }
}
.safety__content__item__header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: max(2rem, 10px);
  padding-bottom: max(2.5rem, 20px);
  margin-bottom: max(2rem, 15px);
}
@media screen and (max-width: 550px) {
  .safety__content__item__header {
    gap: 2.6vw;
    padding-bottom: 10px;
    margin-bottom: 5px;
  }
}
.safety__content__item__header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: max(0.2rem, 2px);
  background-image: linear-gradient(to right, #1e2d63 5px, transparent 2px);
  background-size: 6px 2px;
  background-repeat: space;
}
.safety__content__item__header__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.safety__content__item__header__text {
  font-size: max(2.3rem, 15px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 550px) {
  .safety__content__item__header__text {
    font-size: 4vw;
  }
}
.safety__content__item__header__text sup {
  top: 0;
  vertical-align: text-top;
  font-size: 0.5em;
}
.safety__content__item__body {
  display: grid;
  place-items: center;
  position: relative;
}
.safety__content__item__body strong {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: max(6.1rem, 28px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.safety__content__item__body strong .number {
  font-family: YakuHanJP, "Manrope", sans-serif;
  font-size: 1.8em;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
}
.safety__content__item:nth-of-type(1) {
  grid-column: 1/2;
}
@media screen and (max-width: 768px) {
  .safety__content__item:nth-of-type(1) {
    grid-column: 1;
  }
}
.safety__content__item:nth-of-type(1) .safety__content__item__header__icon {
  width: max(6.5rem, 40px);
}
@media screen and (max-width: 550px) {
  .safety__content__item:nth-of-type(1) .safety__content__item__header__icon {
    width: 11vw;
  }
}
.safety__content__item:nth-of-type(2) {
  grid-column: 2/3;
}
.safety__content__item:nth-of-type(2) .safety__content__item__header__icon {
  width: max(4.5rem, 25px);
}
@media screen and (max-width: 550px) {
  .safety__content__item:nth-of-type(2) .safety__content__item__header__icon {
    width: 7vw;
  }
}
.safety__content__item:nth-of-type(3) {
  grid-column: 3/4;
}
@media screen and (max-width: 768px) {
  .safety__content__item:nth-of-type(3) {
    grid-column: 1/2;
  }
}
.safety__content__item:nth-of-type(3) .safety__content__item__header__icon {
  width: max(4.4rem, 34px);
}
@media screen and (max-width: 550px) {
  .safety__content__item:nth-of-type(3) .safety__content__item__header__icon {
    width: 9vw;
  }
}
.safety__content__item:nth-of-type(4) {
  grid-column: 1/2;
}
@media screen and (max-width: 768px) {
  .safety__content__item:nth-of-type(4) {
    grid-column: 2/3;
  }
}
.safety__content__item:nth-of-type(4) .safety__content__item__header__icon {
  width: max(8rem, 50px);
}
@media screen and (max-width: 550px) {
  .safety__content__item:nth-of-type(4) .safety__content__item__header__icon {
    width: 12vw;
  }
}
.safety__content__item:nth-of-type(5) {
  grid-column: 2/4;
}
@media screen and (max-width: 768px) {
  .safety__content__item:nth-of-type(5) {
    grid-column: 1/3;
  }
}
.safety__content__item:nth-of-type(5) .safety__content__item__header__icon {
  width: max(8.5rem, 55px);
}
@media screen and (max-width: 550px) {
  .safety__content__item:nth-of-type(5) .safety__content__item__header__icon {
    width: 14vw;
  }
}

.point .section-title {
  position: relative;
  gap: max(5rem, 20px);
  z-index: 0;
}
.point .section-title__image {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  left: 0;
  bottom: 0;
  width: auto;
  height: 140%;
  z-index: 10;
  overflow: hidden;
}
@media screen and (max-width: 550px) {
  .point .section-title__image {
    left: 5%;
  }
}
.point .section-title__image img {
  width: auto;
  height: 95%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transition: -webkit-transform 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55), -webkit-transform 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.point .section-title__text {
  display: inline-block;
  position: relative;
  padding: max(5rem, 30px) 0 max(5rem, 30px) max(20rem, 120px);
}
@media screen and (max-width: 550px) {
  .point .section-title__text {
    padding: 20px 5% 10px 100px;
  }
}
.point .section-title__text span {
  color: #fff;
  font-size: max(3.1rem, 14px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.point .section-title__text b {
  color: #fff;
  font-size: max(5.1rem, 20px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
.point .section-title.active .section-title__image img {
  -webkit-transform: translateY(10%);
          transform: translateY(10%);
}
.point__wrapper {
  padding-top: max(13rem, 70px);
  padding-bottom: max(12rem, 65px);
}
.point__list {
  display: grid;
  row-gap: max(4rem, 30px);
}
.point__list__item {
  display: grid;
  grid-template-columns: 1fr max(57rem, 350px);
}
@media screen and (max-width: 1000px) {
  .point__list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.point__list__item .textBox {
  position: relative;
  padding: max(8rem, 50px) max(7rem, 30px) max(8rem, 50px) max(7rem, 60px);
  background: #fff;
  border-radius: max(1rem, 10px) 0 0 max(1rem, 10px);
}
@media screen and (max-width: 1000px) {
  .point__list__item .textBox {
    padding: max(8rem, 40px) 7.5% max(8rem, 30px);
    border-radius: 0 0 max(1rem, 10px) max(1rem, 10px);
  }
}
.point__list__item .textBox__number {
  position: absolute;
  display: grid;
  place-items: center;
  top: max(2.2rem, 15px);
  left: 0;
  width: max(5.5rem, 50px);
  height: max(5.5rem, 50px);
  -webkit-transform: translateX(-7.5px);
          transform: translateX(-7.5px);
  background: #1e2d63;
  border-radius: max(0.6rem, 6px);
  aspect-ratio: 1/1;
  color: #fff;
  font-family: YakuHanJP, "Manrope", sans-serif;
  font-size: max(2.7rem, 18px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 1000px) {
  .point__list__item .textBox__number {
    top: 0;
    -webkit-transform: translate(-7.5px, -50%);
            transform: translate(-7.5px, -50%);
  }
}
.point__list__item .textBox h3 {
  font-size: max(3rem, 22px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: max(2rem, 15px);
}
@media screen and (max-width: 550px) {
  .point__list__item .textBox p {
    font-size: 14px;
    line-height: 1.75;
  }
}
.point__list__item .textBox p .marker {
  display: inline;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, transparent), color-stop(0%, #faf0c5));
  background: linear-gradient(transparent 40%, #faf0c5 0%);
}
.point__list__item .imageBox {
  width: 100%;
  height: 100%;
  border-radius: 0 max(1rem, 10px) max(1rem, 10px) 0;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .point__list__item .imageBox {
    height: auto;
    aspect-ratio: 16/9;
    border-radius: max(1rem, 10px) max(1rem, 10px) 0 0;
  }
}
.point__list__item .imageBox img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1000px) {
  .point__list__item .imageBox img {
    height: auto;
    aspect-ratio: 16/9;
    -o-object-position: center;
       object-position: center;
  }
}
.point__list__detail {
  width: 90%;
  margin: 0 auto max(5rem, 10px);
}
@media screen and (max-width: 1000px) {
  .point__list__detail {
    width: 100%;
  }
}
.point__list__detail .point__table {
  width: 100%;
  border-collapse: collapse;
  border-radius: max(1rem, 5px);
  outline: max(0.4rem, 2px) solid #fff;
  overflow: hidden;
}
.point__list__detail .point__table .attention {
  font-size: max(1.2rem, 8px);
}
@media screen and (max-width: 550px) {
  .point__list__detail .point__table .attention {
    font-size: 1.4vw;
  }
}
.point__list__detail .point__table__header {
  background: #1e2d63;
  color: #fff;
}
.point__list__detail .point__table__label {
  background: rgba(86, 164, 183, 0.7);
  color: #fff;
}
.point__list__detail .point__table__label--accent {
  background: #fce78e;
  color: #1e2d63;
}
.point__list__detail .point__table tbody {
  background: rgba(255, 255, 255, 0.2);
}
.point__list__detail .point__table tbody tr th,
.point__list__detail .point__table tbody tr td {
  width: 25%;
  height: max(9rem, 70px);
  text-align: center;
  vertical-align: middle;
  padding: max(2.5rem, 20px) 5px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  font-size: max(1.6rem, 12px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: ls50;
}
@media screen and (max-width: 550px) {
  .point__list__detail .point__table tbody tr th,
  .point__list__detail .point__table tbody tr td {
    padding: max(2.5rem, 10px) 5px;
    height: 50px;
    font-size: 2.4vw;
    line-height: 1.2;
  }
}
.point__list__detail > .attention {
  margin-top: max(2rem, 15px);
}
.point__arrow {
  width: max(22.5rem, 180px);
  height: auto;
  margin: max(1.5rem, 15px) auto 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(white));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white);
  aspect-ratio: 74/27;
  -webkit-clip-path: polygon(80% 0, 80% 50%, 100% 50%, 50% 100%, 0 50%, 20% 50%, 20% 0);
          clip-path: polygon(80% 0, 80% 50%, 100% 50%, 50% 100%, 0 50%, 20% 50%, 20% 0);
}
.point__btnBox {
  margin-top: max(11.5rem, 70px);
}
.point__btnBox .btn {
  margin: 0 auto;
}

.length {
  position: relative;
  background: #fff;
  width: 100%;
  z-index: 1;
  margin-bottom: calc(max(66.5rem, 200px) / 2);
}
@media screen and (min-width: 1600px) {
  .length {
    margin-bottom: 16.5vw;
  }
}
.length::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: auto;
  height: max(66.5rem, 200px);
  aspect-ratio: 438/133;
  border-radius: 50%;
  background: #fff;
  border: max(0.8rem, 6px) solid #fff;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  z-index: -1;
  -webkit-box-shadow: inset 0 -17px 30px rgba(156, 163, 165, 0.2);
          box-shadow: inset 0 -17px 30px rgba(156, 163, 165, 0.2);
}
@media screen and (min-width: 1600px) {
  .length::after {
    height: 32vw;
  }
}
.length__title {
  position: relative;
  width: 100%;
  min-height: 300px;
  aspect-ratio: 16/5;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .length__title {
    aspect-ratio: 6/5;
  }
}
.length__title__image {
  width: 100%;
  height: 100%;
}
.length__title__image img {
  width: 100%;
  height: 100%;
  -o-object-position: 45%;
     object-position: 45%;
}
.length__title__text {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: max(45%, 450px);
  padding-bottom: max(4rem, 20px);
  text-align: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 0;
}
@media screen and (max-width: 550px) {
  .length__title__text {
    width: 95%;
    padding-bottom: 15px;
  }
}
.length__title__text::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 100%;
  min-width: 350px;
  height: auto;
  aspect-ratio: 1.2/1;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -30%);
          transform: translate(-50%, -30%);
  background: #1e2d63;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .length__title__text::before {
    aspect-ratio: 1/1;
  }
}
.length__title__text h2 {
  color: #fff;
  font-size: max(4.2rem, 24px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.length__title__text h2 .accent {
  -webkit-text-emphasis-style: filled dot;
          text-emphasis-style: filled dot;
  -webkit-text-emphasis-position: over;
          text-emphasis-position: over;
  -webkit-text-emphasis-color: #fff;
          text-emphasis-color: #fff;
}
.length__wrapper {
  padding-top: max(13rem, 70px);
  padding-bottom: max(10rem, 60px);
}
.length__list__item:not(:last-of-type) {
  margin-bottom: max(12rem, 50px);
}
@media screen and (max-width: 1000px) {
  .length__list__item:nth-of-type(odd) .length__list__item__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .length__list__item:nth-of-type(even) .length__list__item__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.length__list__item__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: max(11.5rem, 30px);
  margin-bottom: max(6rem, 30px);
}
@media screen and (max-width: 1300px) {
  .length__list__item__inner {
    gap: max(7rem, 30px);
  }
}
.length__list__item__inner .imageBox {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  width: max(67rem, 350px);
  height: auto;
  aspect-ratio: 67/49;
  border-radius: max(1rem, 10px);
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .length__list__item__inner .imageBox {
    width: 100%;
    margin: auto;
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 550px) {
  .length__list__item__inner .imageBox {
    aspect-ratio: 67/49;
  }
}
.length__list__item__inner .imageBox img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
}
.length__list__item__inner .textBox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
.length__list__item__inner .textBox__mark {
  position: absolute;
  top: 0;
  right: 0;
  width: max(10rem, 70px);
}
.length__list__item__inner .textBox h3 {
  font-size: max(3rem, 18px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: max(3rem, 20px);
  margin-right: max(10rem, 50px);
}
.length__list__item__inner .textBox p {
  font-size: max(1.6rem, 13px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.1em;
}
.length__list__item__inner .textBox .attention {
  margin-top: max(3rem, 20px);
}
.length__list__item .length__accordion__body .length__body__content:not(:first-of-type) {
  margin-top: max(5rem, 40px);
}
.length__list__item .length__accordion__body .length__body__title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px max(1rem, 10px);
  padding-left: 1.2em;
  font-size: max(2rem, 16px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: max(2rem, 15px);
}
.length__list__item .length__accordion__body .length__body__title::before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 0.7em;
  height: 0.7em;
  aspect-ratio: 1/1;
  background: #56A4B7;
}
.length__list__item .length__accordion__body .length__body__title p {
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
}
.length__list__item .length__accordion__body .length__body__title .supplement {
  color: #fff;
  font-size: 0.6em;
  font-weight: inherit;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding: max(0.5rem, 5px) max(1rem, 10px);
  background: #ef7965;
}
.length__list__item:nth-of-type(1) .length__body__table b {
  color: #56A4B7;
  font-size: max(2rem, 16px);
}
.length__list__item:nth-of-type(1) .length__body__table table {
  width: 100%;
  margin-top: max(1rem, 5px);
  border-collapse: collapse;
  border-radius: max(1rem, 3px);
  outline: max(0.4rem, 3px) solid #56A4B7;
  overflow: hidden;
  background: #fff;
}
.length__list__item:nth-of-type(1) .length__body__table table tr.length__body__section {
  border-top: max(0.3rem, 2px) solid #56A4B7;
}
.length__list__item:nth-of-type(1) .length__body__table table th,
.length__list__item:nth-of-type(1) .length__body__table table td {
  font-size: max(1.4rem, 12px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  padding: max(0.5rem, 5px) max(1rem, 10px);
  border-bottom: max(0.1rem, 1px) solid #56A4B7;
}
@media screen and (max-width: 550px) {
  .length__list__item:nth-of-type(1) .length__body__table table th,
  .length__list__item:nth-of-type(1) .length__body__table table td {
    font-size: 10px;
  }
}
.length__list__item:nth-of-type(1) .length__body__table table th *,
.length__list__item:nth-of-type(1) .length__body__table table td * {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.length__list__item:nth-of-type(1) .length__body__table table th sup,
.length__list__item:nth-of-type(1) .length__body__table table td sup {
  top: 0;
  font-size: 0.6em;
  font-weight: 400;
  vertical-align: text-top;
}
.length__list__item:nth-of-type(1) .length__body__table table th {
  background: #dfecf0;
}
.length__list__item:nth-of-type(1) .length__body__table table th:first-of-type {
  border-right: max(0.3rem, 2px) solid #56A4B7;
}
.length__list__item:nth-of-type(1) .length__body__table table thead th.length__table__exp {
  width: 15%;
  min-width: 100px;
  max-width: max(15%, 100px);
}
@media screen and (max-width: 550px) {
  .length__list__item:nth-of-type(1) .length__body__table table thead th.length__table__exp {
    min-width: 75px;
  }
}
.length__list__item:nth-of-type(1) .length__body__table > .attention {
  margin-top: max(2rem, 15px);
}
.length__list__item:nth-of-type(1) .length__body__table .btnBox {
  margin-top: max(7rem, 40px);
}
.length__list__item:nth-of-type(1) .length__body__table .btnBox .btn {
  margin: 0 auto;
}
.length__list__item:nth-of-type(1) .length__body__content__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: max(10rem, 20px);
}
@media screen and (max-width: 550px) {
  .length__list__item:nth-of-type(1) .length__body__content__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.length__list__item:nth-of-type(1) .length__body__content__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.length__list__item:nth-of-type(1) .length__body__content__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
  width: max(20rem, 65px);
}
@media screen and (max-width: 550px) {
  .length__list__item:nth-of-type(1) .length__body__content__image {
    width: 80%;
  }
}
@media screen and (max-width: 550px) {
  .length__list__item:nth-of-type(1) .length__body__content__image figure {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }
}
@media screen and (max-width: 550px) {
  .length__list__item:nth-of-type(1) .length__body__content__image figure .imageBox {
    width: 30%;
  }
}
.length__list__item:nth-of-type(1) .length__body__content__image figure figcaption {
  color: #56A4B7;
  font-size: max(1.4rem, 10px);
  margin-top: max(1rem, 10px);
}
.length__list__item:nth-of-type(2) .length__accordion__body .imageBox {
  width: 100%;
  height: auto;
  aspect-ratio: 68/39;
  margin-bottom: max(4.5rem, 30px);
}
.length__list__item:nth-of-type(2) .length__accordion__body .imageBox img {
  width: 100%;
  height: 100%;
}
.length__list__item:nth-of-type(3) .length__body__content:nth-of-type(1) {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: max(8rem, 50px) max(3rem, 20px);
}
@media screen and (max-width: 768px) {
  .length__list__item:nth-of-type(3) .length__body__content:nth-of-type(1) {
    grid-template-columns: 1fr;
  }
}
.length__list__item:nth-of-type(3) .length__body__content:nth-of-type(1) .length__body__content__item--long {
  grid-column: 1/3;
}
@media screen and (max-width: 768px) {
  .length__list__item:nth-of-type(3) .length__body__content:nth-of-type(1) .length__body__content__item--long {
    grid-column: unset;
  }
}
.length__list__item:nth-of-type(3) .length__body__content:nth-of-type(1) .length__body__content__item .imageBox {
  margin-bottom: max(2rem, 5px);
}
.length__list__item:nth-of-type(3) .length__body__content:nth-of-type(2) .imageBox {
  margin-bottom: max(2rem, 5px);
  width: 100%;
  height: auto;
  aspect-ratio: 687/323;
}
.length__list__item:nth-of-type(3) .length__body__content:nth-of-type(2) .imageBox img {
  width: 100%;
  height: 100%;
}
.length__btnBox {
  margin-top: max(12rem, 60px);
  background: #fff;
}
.length__btnBox .btn {
  margin: 0 auto;
}

.faq {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.faq__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  opacity: 0.35;
  z-index: -1;
}
.faq__wrapper {
  padding-top: max(10rem, 60px);
  padding-bottom: max(15rem, 100px);
}
.faq__title {
  display: grid;
  gap: max(2.5rem, 20px);
  text-align: center;
}
.faq__title h2 {
  font-size: max(5.6rem, 28px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
.faq__title p {
  font-size: max(2.7rem, 18px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
.faq__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto 1fr;
  gap: max(7rem, 40px) max(6rem, 20px);
  margin-top: max(10rem, 60px);
}
@media screen and (max-width: 768px) {
  .faq__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.faq__list__item {
  display: grid;
  grid-template-columns: max(6rem, 40px) 1fr;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: max(3rem, 20px) max(1.5rem, 10px);
}
.faq__list__item--long {
  grid-column: 1/3;
}
.faq__list__item__question, .faq__list__item__answer {
  display: grid;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  grid-template-columns: subgrid;
  grid-column: span 2;
}
.faq__list__item__question .icon, .faq__list__item__answer .icon {
  display: grid;
  place-items: center;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  font-size: max(2rem, 15px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
.faq__list__item__question .icon {
  color: #fff;
  background: #1e2d63;
}
.faq__list__item__question h3 {
  font-size: max(2.5rem, 17px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.faq__list__item__answer .icon {
  color: #1e2d63;
  border: max(0.2rem, 2px) solid #1e2d63;
}
.faq__list__item__answer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: max(1rem, 5px) max(4.5rem, 20px);
}
.faq__list__item__answer dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.faq__list__item__answer ul {
  list-style-type: disc;
  padding-left: 1em;
}
.faq__list__item__answer ul li {
  position: relative;
  list-style-position: outside;
}
.faq__list__item__answer .attention {
  margin-top: max(1.5rem, 10px);
}

.info {
  position: relative;
  z-index: 0;
}
.info__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.info__bg img {
  width: 100%;
  height: 100%;
  -o-object-position: 7.5%;
     object-position: 7.5%;
}
@media screen and (max-width: 550px) {
  .info__bg img {
    -o-object-position: 50%;
       object-position: 50%;
  }
}
.info__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding-top: max(10.5rem, 70px);
  padding-bottom: max(8rem, 50px);
}
.info__content {
  position: relative;
  display: inline-block;
  max-width: 70%;
  padding: max(7rem, 40px) max(6.5rem, 30px);
  border: max(0.3rem, 3px) solid #fff;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  border-radius: max(1rem, 10px);
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  overflow: hidden;
  z-index: 0;
}
@media screen and (max-width: 1000px) {
  .info__content {
    max-width: 100%;
  }
}
.info__content .info__list {
  display: grid;
  grid-template-columns: auto 1fr;
}
.info__content .info__list dl {
  position: relative;
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
  gap: max(3.5rem, 10px);
}
.info__content .info__list dl:not(:last-of-type) {
  padding-bottom: max(1.5rem, 15px);
  margin-bottom: max(1.5rem, 15px);
}
.info__content .info__list dl:not(:last-of-type)::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: max(0.2rem, 2px);
  background-image: linear-gradient(to right, #1e2d63 5px, transparent 2px);
  background-size: 6px 2px;
  background-repeat: space;
  opacity: 0.2;
}
.info__content .info__list dl dt,
.info__content .info__list dl dd {
  font-size: max(1.3rem, 12px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}/*# sourceMappingURL=style.css.map */