@charset "UTF-8";
/* breakpoint
=============================================== */
/* フォント設定
=============================================== */
/* 可変のフォントサイズを計算
=============================================== */
/* style
=============================================== */
html {
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 500px) {
  html {
    font-size: 13.3333333333px;
  }
}
@media screen and (min-width: 1000px) {
  html {
    font-size: 10px;
  }
}

body {
  margin: 0 auto;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #455C7B;
  line-height: 1.2;
}

img {
  width: 100%;
  height: auto;
}

.fsz-06 {
  font-size: 0.6em;
}

.fsz-08 {
  font-size: 0.8em;
}

.fsz-12 {
  font-size: 1.2em;
}

.fsz-14 {
  font-size: 1.4em;
}

.fsz-15 {
  font-size: 1.5em;
}

.fsz-16 {
  font-size: 1.6em;
}

.fsz-18 {
  font-size: 1.8em;
}

.fsz-20 {
  font-size: 2em;
}

.lpBg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, right bottom, from(#CCEAF9), color-stop(#FFF6F7), color-stop(50%), to(#CCD8FE));
  background: linear-gradient(to right bottom, #CCEAF9 0%, #FFF6F7, 50%, #CCD8FE 100%);
}
.lpBg__content {
  display: none;
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(-10%, -50%);
          transform: translate(-10%, -50%);
  width: 470px;
}
@media screen and (min-width: 1000px) {
  .lpBg__content {
    display: block;
  }
}
@media screen and (min-width: 1400px) {
  .lpBg__content {
    -webkit-transform: translate(-20%, -50%);
            transform: translate(-20%, -50%);
  }
}
.lpBg__content .note {
  display: inline-block;
  width: 100%;
  position: absolute;
  bottom: 40px;
  left: 0;
  color: white;
  font-size: 14px;
  text-align: center;
  line-height: 1;
}
.lpBg__button {
  width: 395px;
  height: 79px;
  border-radius: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-gradient(linear, left top, right top, from(#FD6068), color-stop(#F51B4A), to(#FD6068));
  background: linear-gradient(to right, #FD6068, #F51B4A, #FD6068);
  background-size: 200% 100%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-position: 100% 100%;
  border: 1px solid white;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
          box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
  position: absolute;
  bottom: 70px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: 10;
  -webkit-transition: 0.3 background-position ease, 0.1s -webkit-transform ease;
  transition: 0.3 background-position ease, 0.1s -webkit-transform ease;
  transition: 0.1s transform ease, 0.3 background-position ease;
  transition: 0.1s transform ease, 0.3 background-position ease, 0.1s -webkit-transform ease;
}
.lpBg__button:hover {
  background-position: 0 100%;
  -webkit-transform: translate(-50%, 1px);
          transform: translate(-50%, 1px);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.lpBg__button span {
  color: white;
  font-weight: bold;
  font-size: 25px;
  line-height: 1;
  letter-spacing: 0.2rem;
}
.lpBg__button img {
  position: absolute;
  top: 50%;
  right: 21px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 37px;
  aspect-ratio: 1;
}

.lpWrapper {
  width: 100%;
  max-width: 500px;
  position: relative;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 1000px) {
  .lpWrapper {
    width: 375px;
    left: 50%;
    -webkit-transform: translate(10%);
            transform: translate(10%);
  }
}
@media screen and (min-width: 1400px) {
  .lpWrapper {
    -webkit-transform: translate(20%);
            transform: translate(20%);
  }
}

.mv {
  position: relative;
}
.mv__title {
  position: absolute;
  top: 20%;
  left: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
}
.mv__title .main {
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.mv__title .main .text {
  height: 6rem;
  padding-left: 1rem;
  font-size: 5rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  background-color: white;
  padding-bottom: 0.5rem;
  clip-path: inset(0 100% 0 0);
  -webkit-transition: clip-path 0.6s ease-in-out;
  transition: clip-path 0.6s ease-in-out;
}
.mv__title .main .text01 {
  width: 25.5rem;
  -webkit-transform: matrix(0.98, -0.17, -0.03, 1, 0, 0) translateY(0.1rem);
          transform: matrix(0.98, -0.17, -0.03, 1, 0, 0) translateY(0.1rem);
  letter-spacing: -0.5rem;
}
.mv__title .main .text02 {
  width: 21rem;
  -webkit-transform: matrix(0.98, -0.17, -0.03, 1, 0, 0);
          transform: matrix(0.98, -0.17, -0.03, 1, 0, 0);
  letter-spacing: -0.4rem;
}
.mv__title .main .text03 {
  width: 24.5rem;
  -webkit-transform: matrix(0.98, -0.17, -0.03, 1, 0, 0) translateY(-0.1rem);
          transform: matrix(0.98, -0.17, -0.03, 1, 0, 0) translateY(-0.1rem);
  letter-spacing: -0.4rem;
}
.mv__title .main .text03 .is-red {
  color: #FB5162;
}
.mv__title .main.is-appear .anm {
  clip-path: inset(0 0 0 0);
}
.mv__title .main.is-appear .text {
  clip-path: inset(0 0 0 0);
}
.mv__title .sub {
  margin-top: 2rem;
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.mv__title .sub .text {
  padding-left: 1rem;
  font-size: 5rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  background-color: #455C7B;
  padding-bottom: 0.5rem;
  clip-path: inset(0 100% 0 0);
  -webkit-transition: clip-path 0.6s ease-in-out;
  transition: clip-path 0.6s ease-in-out;
  color: white;
}
.mv__title .sub .text01 {
  font-size: 2.5rem;
  width: 14.5rem;
  height: 3.8rem;
  -webkit-transform: matrix(0.98, -0.17, -0.03, 1, 0, 0) translateY(0.1rem);
          transform: matrix(0.98, -0.17, -0.03, 1, 0, 0) translateY(0.1rem);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.mv__title .sub .text02 {
  margin-top: 0.5rem;
  font-size: 3rem;
  width: 21rem;
  height: 5rem;
  gap: 5rem;
  -webkit-transform: matrix(0.98, -0.17, -0.03, 1, 0, 0);
          transform: matrix(0.98, -0.17, -0.03, 1, 0, 0);
  letter-spacing: -0.05rem;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.mv__title .sub.is-appear .text {
  clip-path: inset(0 0 0 0);
}
.mv__logo {
  position: absolute;
  width: 120px;
  top: 0;
  left: 5px;
}
.mv__button {
  margin-inline: auto;
  width: 30rem;
  height: 6rem;
  border-radius: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.3rem;
  background: -webkit-gradient(linear, left top, right top, from(#FD6068), color-stop(#F51B4A), to(#FD6068));
  background: linear-gradient(to right, #FD6068, #F51B4A, #FD6068);
  background-size: 200% 100%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-position: 100% 100%;
  border: 1px solid white;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
          box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: 10;
  -webkit-transition: 0.3 background-position ease, 0.1s -webkit-transform ease;
  transition: 0.3 background-position ease, 0.1s -webkit-transform ease;
  transition: 0.1s transform ease, 0.3 background-position ease;
  transition: 0.1s transform ease, 0.3 background-position ease, 0.1s -webkit-transform ease;
  -webkit-animation-name: btn_animation_mv;
          animation-name: btn_animation_mv;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
@-webkit-keyframes btn_animation_mv {
  0% {
    -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
            box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
    bottom: 0px;
  }
  10% {
    -webkit-box-shadow: 2px 0 4px rgba(0, 0, 0, 0.15);
            box-shadow: 2px 0 4px rgba(0, 0, 0, 0.15);
    bottom: -2px;
  }
  20% {
    -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
            box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
    bottom: 0px;
  }
  30% {
    -webkit-box-shadow: 2px 0 4px rgba(0, 0, 0, 0.15);
            box-shadow: 2px 0 4px rgba(0, 0, 0, 0.15);
    bottom: -2px;
  }
  40% {
    -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
            box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
    bottom: 0px;
  }
}
@keyframes btn_animation_mv {
  0% {
    -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
            box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
    bottom: 0px;
  }
  10% {
    -webkit-box-shadow: 2px 0 4px rgba(0, 0, 0, 0.15);
            box-shadow: 2px 0 4px rgba(0, 0, 0, 0.15);
    bottom: -2px;
  }
  20% {
    -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
            box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
    bottom: 0px;
  }
  30% {
    -webkit-box-shadow: 2px 0 4px rgba(0, 0, 0, 0.15);
            box-shadow: 2px 0 4px rgba(0, 0, 0, 0.15);
    bottom: -2px;
  }
  40% {
    -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
            box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
    bottom: 0px;
  }
}
.mv__button:hover {
  -webkit-animation: none;
          animation: none;
  background-position: 0 100%;
  -webkit-transform: translate(-50%, 2px);
          transform: translate(-50%, 2px);
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.mv__button span {
  color: white;
  font-weight: bold;
  font-size: 1.6em;
  line-height: 1;
  letter-spacing: 0.2rem;
}
.mv__button img {
  position: absolute;
  top: 1.6rem;
  right: 2.6rem;
  width: 2.8rem;
  aspect-ratio: 1;
}

/* voice
----------------------------------------------------------------------*/
.voice {
  margin-top: -11%;
  position: relative;
}
.voice__inner {
  padding-inline: 2rem;
  position: absolute;
  top: 7.7rem;
  left: 0;
  width: 100%;
}
.voice__title {
  text-align: center;
}
.voice__title-text01 {
  font-size: 2rem;
  font-weight: bold;
}
.voice__title-text01 .is-red {
  color: #FB5162;
  font-size: 2.2rem;
}
.voice__title-text02 {
  margin-top: 8px;
  font-size: 1.9rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.voice__title-text02 .item {
  color: white;
  background-color: #51B1C7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-size: 1.4rem;
  font-weight: bold;
  white-space: nowrap;
  padding-inline: 9px 11px;
  height: 3rem;
  border-radius: 1.5rem;
}
.voice__title-text02 .item.is-home .icon {
  width: 1.3rem;
}
.voice__title-text02 .item.is-pc .icon {
  width: 1.8rem;
}
.voice__title-text02 .item.is-money .icon {
  width: 1.4rem;
}
.voice__content {
  margin-top: 2rem;
}
.voice__content-head {
  overflow: hidden;
}
.voice__content-head.is-appear .bubble {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.voice__content-head .bubble {
  position: relative;
  -webkit-transform: translateY(101%);
          transform: translateY(101%);
  -webkit-transition: 0.4s -webkit-transform ease-in-out;
  transition: 0.4s -webkit-transform ease-in-out;
  transition: 0.4s transform ease-in-out;
  transition: 0.4s transform ease-in-out, 0.4s -webkit-transform ease-in-out;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.voice__content-head .bubble span {
  display: block;
  position: absolute;
  top: 10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 2.3rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-style: italic;
  white-space: nowrap;
}
.voice__slider {
  margin-top: 1rem;
  overflow: hidden;
  padding-bottom: 2.6rem;
  position: relative;
}
.voice__slider .swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.4rem;
}
.voice__slider .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  width: 0.6rem;
  height: 0.6rem;
  background-color: white;
  margin: 0;
}
.voice__slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #FB5162;
}
.voice__slide {
  border-radius: 1rem;
  overflow: hidden;
}
.voice__slide-head {
  background-color: #455C7B;
  padding: 0.9rem 1.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.voice__slide-head .no {
  background-color: white;
  color: #FB5162;
  font-size: 2rem;
  font-weight: bold;
  padding-inline: 1.1rem;
  border-radius: 0.5rem;
}
.voice__slide-head .name {
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 2.3rem;
  font-weight: bold;
  color: white;
  text-align: center;
}
.voice__slide-body {
  background-color: white;
  position: relative;
}
.voice__slide-img {
  width: 63.2835820896%;
  margin-left: auto;
  display: block;
}
.voice__slide-before {
  position: absolute;
  width: 46.2686567164%;
  top: 13%;
  left: 1.6rem;
}
.voice__slide-before .label {
  position: absolute;
  width: 4.5rem;
  top: 0;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.voice__slide-before .text {
  position: absolute;
  top: 0;
  left: 0;
  height: 80%;
  width: 97%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  text-align: center;
}
.voice__slide-after {
  position: absolute;
  top: 54%;
  left: 1.6rem;
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 3px;
}
.voice__slide-after .label {
  position: absolute;
  width: 3.4rem;
  top: 0;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.voice__slide-after .text {
  font-size: 1.6rem;
  color: white;
  font-weight: bold;
  line-height: 1;
  padding: 0.6rem 1.6rem;
  background-image: -webkit-gradient(linear, left top, right top, from(#50BCCE), to(#058AB0));
  background-image: linear-gradient(to right, #50BCCE 0%, #058AB0 100%);
  display: inline-block;
}

/* about
----------------------------------------------------------------------*/
.about {
  margin-top: -9%;
  position: relative;
}
.about__head {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #DDEEFF));
  background-image: linear-gradient(to bottom, transparent 50%, #DDEEFF 50%);
}
.about__inner {
  padding-inline: 2rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#DDEEFF), to(#D4DEFF));
  background-image: linear-gradient(to bottom, #DDEEFF 0%, #D4DEFF 100%);
}
.about__content {
  border: 2px solid #FB5162;
  border-radius: 1rem 0 1rem 0;
  background-color: white;
  padding-block: 2rem 3.2rem;
}
.about__text {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 2.2rem;
  position: relative;
  z-index: 1;
}
.about__text::after {
  position: absolute;
  content: "";
  width: 6.4rem;
  aspect-ratio: 1;
  background: url("../img/about_arrow.webp") no-repeat center center/contain;
  left: 3.9rem;
  bottom: -5.9rem;
}
.about__text > span {
  display: block;
  width: 100%;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.01rem;
  line-height: 2.2;
  position: relative;
}
.about__text > span::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to right, #455C7B 0, #455C7B 2px, transparent 2px, transparent 2px);
  background-size: 4px 1px;
  background-repeat: repeat-x;
  opacity: 0.3;
}
.about__text > span .marker {
  padding-inline: 0.2rem;
  display: inline-block;
  position: relative;
}
.about__text > span .marker::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 80%;
  top: 10%;
  left: 0;
  background-color: rgba(213, 247, 225, 0.7);
  z-index: -1;
  clip-path: inset(0 100% 0 0);
  -webkit-transition: clip-path 0.6s ease;
  transition: clip-path 0.6s ease;
}
.about__text > span .marker.marker01::after {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.about__text > span .marker.marker02::after {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.about__text.is-appear .marker::after {
  clip-path: inset(0 0 0 0);
}
.about__message {
  margin-top: 3.7rem;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.01em;
}
.about__message .is-red {
  color: #FB5162;
}
.about__img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10.4rem;
}

/* point
----------------------------------------------------------------------*/
.point {
  background-image: radial-gradient(circle, #F7DEDD 0%, #CBEAFA 100%);
  position: relative;
  padding-bottom: 5rem;
}
.point__inner {
  padding-inline: 2rem;
}
.point__head {
  padding-block: 3.2rem 6.7rem;
}
.point__head-img {
  width: 16.7rem;
  position: absolute;
  top: 0.4rem;
  right: 1.3rem;
}
.point__title {
  position: relative;
  z-index: 2;
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.1rem;
}
.point__title.is-appear .point__title-text01 .text,
.point__title.is-appear .point__title-text02 .text {
  clip-path: inset(0 0 0 0);
}
.point__title-text01 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
  background-color: white;
  -webkit-box-shadow: 4px 4px 0px #FE4B6F;
          box-shadow: 4px 4px 0px #FE4B6F;
  padding-inline: 0.5rem 1rem;
  height: 4.4rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.point__title-text01 .text {
  clip-path: inset(0 100% 0 0);
  -webkit-transition: clip-path 0.6s ease;
  transition: clip-path 0.6s ease;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.point__title-text02 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
  background-color: white;
  -webkit-box-shadow: 4px 4px 0px #FE4B6F;
          box-shadow: 4px 4px 0px #FE4B6F;
  padding-inline: 0.5rem 1rem;
  height: 4.4rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.point__title-text02 .text {
  clip-path: inset(0 100% 0 0);
  -webkit-transition: clip-path 0.6s ease;
  transition: clip-path 0.6s ease;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.point__body {
  position: relative;
  z-index: 2;
}
.point__item {
  background-color: white;
  position: relative;
  -webkit-box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.1);
  padding-bottom: 2rem;
}
.point__item.is02 {
  margin-top: 7.3rem;
}
.point__item-head {
  position: absolute;
  left: 0;
  top: -4.7rem;
}
.point__pop {
  padding-top: 5rem;
  font-size: 1.6rem;
  color: #6EB8C6;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.2rem;
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(2rem);
          transform: translateY(2rem);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}
.point__pop.is-appear {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.point__item-title {
  margin-top: 1rem;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  font-size: 2rem;
  font-weight: bold;
}
.point__item-title .is-red {
  color: #FB5162;
}
.point__item-title-text01 {
  font-size: 1.5em;
}
.point__item-title-text01 .is-red {
  color: #FB5162;
  font-size: 2rem;
}
.point__item-title-text01 .is-small {
  font-size: 1.5rem;
}
.point__item-title-text02 {
  font-size: 2.5rem;
}
.point__item-list {
  padding: 2.8rem 2rem 2rem;
}
.point__item-list.is-appear .text {
  opacity: 1;
}
.point__item-list-item {
  padding-right: 2rem;
  background-color: #FFF6F7;
  height: 5rem;
  padding-left: 5.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.1;
  border-bottom: 1px dashed rgba(251, 81, 98, 0.3);
  position: relative;
}
.point__item-list-item .text {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.point__item-list-item .text.is-text01 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.point__item-list-item .text.is-text02 {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.point__item-list-item .text.is-text03 {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.point__item-list-item .text.is-text04 {
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}
.point__item-list-item .text.is-text05 {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
.point__item-list-item .text.is-text06 {
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}
.point__item-list-item .text.is-text07 {
  -webkit-transition-delay: 2.2s;
          transition-delay: 2.2s;
}
.point__item-list-item::before {
  position: absolute;
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background: url("../img/icon_checkbox.webp") no-repeat center center/contain;
  top: 50%;
  left: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.point__item-list-item .icon {
  width: 2.7rem;
}
.point__item-img {
  margin-bottom: 1rem;
  position: relative;
}
.point__item-img .mock {
  position: absolute;
  top: -4rem;
  left: -4.3rem;
  width: 21.9rem;
}
.point__slider {
  margin-top: 2rem;
  overflow: hidden;
  position: relative;
  padding-bottom: 2.6rem;
  padding-inline: 2rem;
}
.point__slider .swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.4rem;
}
.point__slider .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  width: 0.6rem;
  height: 0.6rem;
  background-color: #F5F5F5;
  margin: 0;
}
.point__slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #FB5162;
}
.point__slider .swiper-button-prev,
.point__slider .swiper-button-next {
  width: 2rem;
  height: 2rem;
  padding: 0;
  margin: 0;
}
.point__slider .swiper-button-prev .swiper-navigation-icon,
.point__slider .swiper-button-next .swiper-navigation-icon {
  display: none;
}
.point__slider .swiper-button-prev::after,
.point__slider .swiper-button-next::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin: 0;
  padding: 0;
}
.point__slider .swiper-button-prev {
  top: 46%;
  left: 1rem;
}
.point__slider .swiper-button-prev::after {
  background-image: url("../img/slider_prev.webp");
}
.point__slider .swiper-button-next {
  top: 46%;
  right: 1rem;
}
.point__slider .swiper-button-next::after {
  background-image: url("../img/slider_next.webp");
}
.point__slide {
  border: 1px solid #455C7B;
  border-radius: 1rem 0 1rem 0;
  padding: 2rem;
  position: relative;
}
.point__slide img {
  position: absolute;
  width: 9.4rem;
  height: auto;
  top: 2rem;
  left: 2rem;
}
.point__slide .text01 {
  padding-top: 1rem;
  width: 14rem;
  margin-left: auto;
}
.point__slide .text01 .name {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  padding-bottom: 0.6rem;
}
.point__slide .text01 .text {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  line-height: 2.2;
  position: relative;
  white-space: nowrap;
}
.point__slide .text01 .text::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to right, #455C7B 0, #455C7B 2px, transparent 2px, transparent 2px);
  background-size: 4px 1px;
  background-repeat: repeat-x;
  opacity: 0.3;
}
.point__slide .text01 .text .marker {
  padding-inline: 0.2rem;
  display: inline-block;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, transparent), color-stop(10%, rgba(240, 254, 202, 0.7)), color-stop(90%, rgba(240, 254, 202, 0.7)), color-stop(90%, transparent));
  background-image: linear-gradient(to bottom, transparent 10%, rgba(240, 254, 202, 0.7) 10%, rgba(240, 254, 202, 0.7) 90%, transparent 90%);
  font-weight: bold;
}
.point__slide .text02 .text {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  line-height: 2.2;
  position: relative;
  white-space: nowrap;
}
.point__slide .text02 .text::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to right, #455C7B 0, #455C7B 2px, transparent 2px, transparent 2px);
  background-size: 4px 1px;
  background-repeat: repeat-x;
  opacity: 0.3;
}
.point__slide .text02 .text .marker {
  padding-inline: 0.2rem;
  display: inline-block;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, transparent), color-stop(10%, rgba(240, 254, 202, 0.7)), color-stop(90%, rgba(240, 254, 202, 0.7)), color-stop(90%, transparent));
  background-image: linear-gradient(to bottom, transparent 10%, rgba(240, 254, 202, 0.7) 10%, rgba(240, 254, 202, 0.7) 90%, transparent 90%);
  font-weight: bold;
}
.point__slide .text02 .text .is-red {
  color: #FB5162;
  font-weight: bold;
}
.point__arrow {
  margin-block: 2.5rem 1.5rem;
  margin-inline: auto;
  width: 10.7rem;
  position: relative;
}
.point__arrow .woman {
  position: absolute;
  width: 8.9rem;
  top: 0;
  right: 0;
  -webkit-transform: translate(100%, -1.7rem);
          transform: translate(100%, -1.7rem);
}
.point__button {
  margin-inline: auto;
  width: 30rem;
  height: 6rem;
  border-radius: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.3rem;
  background: -webkit-gradient(linear, left top, right top, from(#FD6068), color-stop(#F51B4A), to(#FD6068));
  background: linear-gradient(to right, #FD6068, #F51B4A, #FD6068);
  background-size: 200% 100%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-position: 100% 100%;
  border: 1px solid white;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
          box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 10;
  -webkit-transition: 0.3 background-position ease, 0.1s -webkit-transform ease;
  transition: 0.3 background-position ease, 0.1s -webkit-transform ease;
  transition: 0.1s transform ease, 0.3 background-position ease;
  transition: 0.1s transform ease, 0.3 background-position ease, 0.1s -webkit-transform ease;
  -webkit-animation-name: btn_animation;
          animation-name: btn_animation;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
@-webkit-keyframes btn_animation {
  0% {
    -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
            box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
    top: 0px;
  }
  10% {
    -webkit-box-shadow: 2px 0 4px rgba(0, 0, 0, 0.15);
            box-shadow: 2px 0 4px rgba(0, 0, 0, 0.15);
    top: 2px;
  }
  20% {
    -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
            box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
    top: 0px;
  }
  30% {
    -webkit-box-shadow: 2px 0 4px rgba(0, 0, 0, 0.15);
            box-shadow: 2px 0 4px rgba(0, 0, 0, 0.15);
    top: 2px;
  }
  40% {
    -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
            box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
    top: 0px;
  }
}
@keyframes btn_animation {
  0% {
    -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
            box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
    top: 0px;
  }
  10% {
    -webkit-box-shadow: 2px 0 4px rgba(0, 0, 0, 0.15);
            box-shadow: 2px 0 4px rgba(0, 0, 0, 0.15);
    top: 2px;
  }
  20% {
    -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
            box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
    top: 0px;
  }
  30% {
    -webkit-box-shadow: 2px 0 4px rgba(0, 0, 0, 0.15);
            box-shadow: 2px 0 4px rgba(0, 0, 0, 0.15);
    top: 2px;
  }
  40% {
    -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
            box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
    top: 0px;
  }
}
.point__button:hover {
  background-position: 0 100%;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.point__button span {
  color: white;
  font-weight: bold;
  font-size: 1.6em;
  line-height: 1;
}
.point__button img {
  width: 2.8rem;
  aspect-ratio: 1;
}

/* worries
----------------------------------------------------------------------*/
.worries {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#C8EEED), to(#CEE8F5));
  background-image: linear-gradient(to bottom, #C8EEED 0%, #CEE8F5 100%);
  padding-bottom: 3rem;
}
.worries__list {
  margin-top: 2rem;
  padding-inline: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.worries__item {
  position: relative;
  height: 5rem;
  background-color: white;
  font-size: 16px;
  font-weight: bold;
  padding-left: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.05);
  border-radius: 0.5rem;
  opacity: 0;
  -webkit-transform: translateY(2rem);
          transform: translateY(2rem);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.worries__item.is-appear {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.worries__item:before {
  content: "";
  position: absolute;
  left: 2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background: url("../img/icon_worrie.webp") no-repeat center center/contain;
}
.worries__img {
  margin-top: 2rem;
}

/* support
----------------------------------------------------------------------*/
.support__head {
  padding: 2rem;
  background-color: #FFBBC2;
  position: relative;
}
.support__head-img {
  position: absolute;
  width: 11.1rem;
  bottom: 0;
  right: 1.4rem;
}
.support__pop {
  color: white;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.1rem;
}
.support__title {
  margin-top: 1.7rem;
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.5rem;
}
.support__title > span {
  height: 3rem;
  background-color: white;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  font-weight: bold;
  padding-inline: 1rem;
}
.support__title > span .is-red {
  color: #FB5162;
  font-size: 2rem;
}
.support__body {
  padding-block: 8rem 5rem;
  padding-inline: 2rem;
  background-color: white;
  background-image: linear-gradient(#F1F1F6 1px, transparent 1px), linear-gradient(90deg, #F1F1F6 1px, transparent 1px);
  background-size: 13px 13px;
}
.support__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6.5rem;
}
.support__item {
  position: relative;
  border: 2px solid #455C7B;
  border-radius: 1rem;
  background-color: white;
  padding: 8rem 2rem 2rem;
}
.support__item.is-environment {
  padding-top: 5.6rem;
  padding-bottom: 6.6rem;
}
.support__item.is-environment::after {
  position: absolute;
  content: "";
  width: 22.5rem;
  height: 14.2rem;
  background: url("../img/support_img.webp") no-repeat center center/contain;
  bottom: 0;
  left: -0.6rem;
}
.support__item-title {
  width: 30.3rem;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.support__item-title .text {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -52%);
          transform: translate(-50%, -52%);
  white-space: nowrap;
}
.support__type {
  background-color: #F3F8FF;
  border-radius: 1rem;
  position: relative;
  padding: 3.6rem 2rem 2rem;
}
.support__type:nth-of-type(2) {
  margin-top: 3.8rem;
}
.support__type::after {
  position: absolute;
  content: "";
  width: 5.6rem;
  height: 5.6rem;
  background: url("../img/star.webp") no-repeat center center/contain;
  top: 0;
  left: 0;
  -webkit-transform: translate(5%, -58%);
          transform: translate(5%, -58%);
}
.support__type-title {
  width: 17.1rem;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -41%);
          transform: translate(-50%, -41%);
}
.support__type-title span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -74%);
          transform: translate(-50%, -74%);
  color: white;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
}
.support__type-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.support__type-item {
  background-color: white;
  border-radius: 0.5rem;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.9rem;
  padding: 2rem 1rem;
}
.support__type-item img {
  width: auto;
  height: 2.1rem;
}
.support__type-item span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.2rem;
  white-space: nowrap;
}
.support__type-item span.is-small {
  font-size: 1.4rem;
}
.is-work .support__type-item span {
  letter-spacing: 0;
}
.support__type-etc {
  margin-top: 1em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: block;
  text-align: right;
  font-size: 16px;
  font-weight: 400;
}
.support__environment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.3rem;
}
.support__environment li {
  padding: 1rem 1.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.8rem;
  -webkit-box-shadow: 4px 4px 0px #FE4B6F;
          box-shadow: 4px 4px 0px #FE4B6F;
  border: 1px solid #FE4B6F;
}
.support__environment li img {
  width: 7.2rem;
}
.support__environment li span {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}
.support__environment-bubble {
  margin-top: 1.9rem;
  width: 19.6rem;
  display: block;
  margin-left: auto;
  position: relative;
}
.support__environment-bubble span {
  display: inline-block;
  position: absolute;
  color: white;
  font-size: 16px;
  line-height: 1;
  top: 25%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  white-space: nowrap;
  font-weight: bold;
}

/* faq
----------------------------------------------------------------------*/
.faq {
  background-color: #FCF6F5;
}
.faq__inner {
  padding: 5rem 2rem 6rem;
}
.faq__title {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.faq__title .sub {
  font-size: 16px;
  font-weight: bold;
  color: #FB5162;
  line-height: 1;
}
.faq__title .main {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}
.faq__list {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.faq__item {
  background-color: white;
  padding: 2.7rem 2rem 0;
  border-radius: 1rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  padding-bottom: 2.3rem;
  position: relative;
}
.faq__question::before {
  position: absolute;
  content: "";
  width: 1rem;
  height: 1px;
  background-color: #242E57;
  top: 32%;
  right: 0;
}
.faq__question::after {
  position: absolute;
  content: "";
  width: 1rem;
  height: 1px;
  background-color: #242E57;
  top: 32%;
  right: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.is-open .faq__question::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.faq__question img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 4rem;
}
.faq__question .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #242E57;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.2;
  padding-right: 2rem;
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s max-height ease;
  transition: 0.3s max-height ease;
}
.is-open .faq__answer {
  max-height: 1000px;
}
.faq__answer-inner {
  padding-block: 2rem 2.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.5rem;
  opacity: 0;
  -webkit-transition: 0.3s opacity ease;
  transition: 0.3s opacity ease;
  position: relative;
}
.faq__answer-inner::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, #97CBFB 0, #97CBFB 2px, transparent 2px, transparent 2px);
  background-size: 4px 1px;
  background-repeat: repeat-x;
}
.is-open .faq__answer-inner {
  opacity: 1;
}
.faq__answer img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 4rem;
}
.faq__answer .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.6rem;
  line-height: 1.3;
}

.footer {
  background-color: #FCF6F5;
  padding-block: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  font-size: 1.4rem;
}/*# sourceMappingURL=style.css.map */