@charset "UTF-8";
html {
  font-family: "Noto Sans JP";
  font-size: 62.5%;
  -ms-scroll-snap-type: y proximity;
      scroll-snap-type: y proximity;
  scroll-padding-top: 150px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-x: hidden;
}

body {
  font-size: 1.6rem;
  color: #333333;
  line-height: 1.6;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  display: inline-block;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

.cta {
  /* JSが付けるクラスでpulse開始（これで全CTAが同期できる） */
  /* shineはこれ（ネストなら & 必須） */
}
.cta .cta__wrapper {
  padding: 3.8rem 1.6rem 3.723rem 1.6rem;
  background-color: #E7F3F2;
}
.cta .cta__wrapper .cta__btn {
  max-width: 358px;
  margin: 0 auto;
  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;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#FFB746), to(#F89803));
  background-image: linear-gradient(#FFB746, #F89803);
  padding: 1rem 1.6rem;
  border-radius: 5px;
  position: relative;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: ctaPulse 2.2s ease-in-out infinite;
          animation: ctaPulse 2.2s ease-in-out infinite;
}
.cta .cta__wrapper .cta__btn::before {
  content: "LINE追加で";
  position: absolute;
  top: -27px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #FFFFFF;
  color: #41CA63;
  font-weight: bold;
  line-height: 1.8;
  padding: 0.4rem 2.9rem;
  border-radius: 20px;
  white-space: nowrap;
  border: 1px solid #F89803;
  width: 143px;
  text-align: center;
  z-index: 10;
}
.cta .cta__wrapper .cta__btn::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #F89803 transparent transparent transparent;
  z-index: 9;
}
.cta .cta__wrapper .cta__btn span::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #FFFFFF transparent transparent transparent;
  z-index: 10;
}
.cta .cta__wrapper .cta__btn .cta__text {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  color: #FCF8A0;
}
.cta .cta__wrapper .cta__btn .cta__text span {
  font-size: 1.6rem;
  color: #FFFFFF;
}
.cta .cta__wrapper .cta__btn .cta__image {
  width: 41px;
  -webkit-transform: rotate(11.61deg);
          transform: rotate(11.61deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cta .cta__wrapper .cta__btn .cta__shine-clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
}
.cta .cta__wrapper .cta__btn .cta__shine-clip::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.65) 50%, transparent 100%);
  -webkit-transform: skewX(-25deg);
          transform: skewX(-25deg);
  opacity: 0;
}
.cta .cta__btn.is-pulsing {
  -webkit-animation: ctaPulse 2.2s ease-in-out infinite;
          animation: ctaPulse 2.2s ease-in-out infinite;
}
.cta .cta__btn.is-active .cta__shine-clip::before {
  -webkit-animation: shine 1s ease-in-out forwards;
          animation: shine 1s ease-in-out forwards;
}
.cta .cta__02 {
  padding: 8.5rem 1.6rem 3.723rem 1.6rem;
}
.cta .cta__03 {
  background-color: #FFFDD7;
}
.cta .cta__04 {
  background-color: #F2F2F2;
  padding-top: 4.5rem;
}

@-webkit-keyframes shine {
  0% {
    left: -150%;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    left: 150%;
    opacity: 0;
  }
}

@keyframes shine {
  0% {
    left: -150%;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    left: 150%;
    opacity: 0;
  }
}
@-webkit-keyframes ctaPulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  60% {
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes ctaPulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  60% {
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
#fv {
  background-image: url(../img/fv-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  height: 600px;
}
#fv .fv__title {
  color: #FFFFFF;
  font-weight: bold;
  font-size: 2.4rem;
  padding-top: 10.9rem;
  padding-left: 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: 0.8rem;
}
#fv .fv__title .fv__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
}
#fv .fv__title .fv__top .fv__strong--b {
  color: #333333;
  font-weight: bold;
  font-size: 3.2rem;
  background-color: #FFFFFF;
  height: 51px;
  padding: 0 0.5rem;
}
#fv .fv__title .fv__bottom {
  background-color: #FFFFFF;
  width: 266px;
}
#fv .fv__title .fv__bottom .fv__strong--g {
  font-weight: bold;
  font-size: 3.2rem;
  height: 51px;
  padding: 0 0.5rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#51F2DE), to(#088477));
  background: linear-gradient(#51F2DE, #088477);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#intro .intro__wrapper {
  padding: 2.4rem 1.65rem;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#1EAA9F), to(#14d9be));
  background-image: linear-gradient(#1EAA9F, #14d9be);
}
#intro .intro__wrapper .intro__container {
  background-color: #fff;
  border: 5px solid transparent;
  -o-border-image: linear-gradient(90deg, #E7BB1C, #CF9600, #F2CD1C, #FFF6CB, #F2CD1C, #CF9600, #E7BB1C);
     border-image: -webkit-gradient(linear, left top, right top, from(#E7BB1C), color-stop(#CF9600), color-stop(#F2CD1C), color-stop(#FFF6CB), color-stop(#F2CD1C), color-stop(#CF9600), to(#E7BB1C));
     border-image: linear-gradient(90deg, #E7BB1C, #CF9600, #F2CD1C, #FFF6CB, #F2CD1C, #CF9600, #E7BB1C);
  border-image-slice: 1;
  padding: 2.05rem 1.15rem;
  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.6rem;
  -webkit-box-shadow: 4px 4px 4px rgba(51, 51, 51, 0.25);
          box-shadow: 4px 4px 4px rgba(51, 51, 51, 0.25);
  line-height: 1.8;
}
#intro .intro__wrapper .intro__container .intro__text {
  text-align: center;
}
#intro .intro__wrapper .intro__container .intro__text span {
  font-weight: bold;
}
#intro .intro__wrapper .intro__container .intro__text .intro__accent {
  color: #1EAA9F;
  font-size: 2rem;
  font-weight: bold;
}
#intro .intro__wrapper .intro__container .intro__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
}
#intro .intro__wrapper .intro__container .intro__boxes .intro__box {
  width: 50%;
  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.8rem;
  border: 1px solid #333;
  padding: 0.8rem;
}
#intro .intro__wrapper .intro__container .intro__boxes .intro__box:nth-child(1) img {
  height: 57px;
  -o-object-fit: contain;
     object-fit: contain;
}
#intro .intro__wrapper .intro__container .intro__boxes .intro__box:nth-child(2) img {
  height: 119px;
  -o-object-fit: contain;
     object-fit: contain;
}
#intro .intro__wrapper .intro__container .intro__boxes .intro__box .intro__title {
  font-weight: bold;
  border-bottom: 2px solid #1EAA9F;
}
#intro .intro__wrapper .intro__container .intro__boxes .intro__box .intro__image {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.8rem;
}

#achievement {
  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;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#E7F3F2), to(#FFFFFF));
  background-image: linear-gradient(#E7F3F2, #FFFFFF);
}
#achievement .achievement__title {
  margin-bottom: 2.4rem;
  font-size: 2.4rem;
  font-weight: bold;
  border-bottom: 2px dotted #1EAA9F;
}
#achievement .achievement__swiper--wrap {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  overflow-x: hidden;
  overflow-y: visible;
  padding-bottom: 4.9rem;
}
#achievement .achievement__swiper--wrap .achievement__swiper {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  overflow: visible;
}
#achievement .achievement__swiper--wrap .achievement__swiper .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#achievement .achievement__swiper--wrap .achievement__swiper .swiper-wrapper .swiper-slide {
  width: 256px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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.6rem;
  -webkit-box-shadow: 4px 4px 4px rgba(51, 51, 51, 0.25);
          box-shadow: 4px 4px 4px rgba(51, 51, 51, 0.25);
  background: #fff;
  padding: 0.8rem;
}
#achievement .achievement__swiper--wrap .achievement__swiper .swiper-wrapper .swiper-slide .achievement__video {
  width: 241px;
  height: 489px;
  aspect-ratio: 9/19.5;
  border-radius: 36px;
  background: #000;
  padding: 6px;
}
#achievement .achievement__swiper--wrap .achievement__swiper .swiper-wrapper .swiper-slide .achievement__video video {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  -o-object-fit: cover;
     object-fit: cover;
}
#achievement .achievement__swiper--wrap .achievement__swiper .swiper-wrapper .swiper-slide .achievement__profile {
  width: 100%;
  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;
  gap: 1.6rem;
}
#achievement .achievement__swiper--wrap .achievement__swiper .swiper-wrapper .swiper-slide .achievement__profile .achievement__profile--top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.6rem;
}
#achievement .achievement__swiper--wrap .achievement__swiper .swiper-wrapper .swiper-slide .achievement__profile .achievement__profile--top .achievement__image img {
  width: 108px;
  height: 108px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50px;
}
#achievement .achievement__swiper--wrap .achievement__swiper .swiper-wrapper .swiper-slide .achievement__profile .achievement__profile--top .achievement__text {
  height: 110px;
}
#achievement .achievement__swiper--wrap .achievement__swiper .swiper-wrapper .swiper-slide .achievement__profile .achievement__profile--top .achievement__text span {
  color: #1EAA9F;
  font-size: 2rem;
  font-weight: bold;
}
#achievement .achievement__swiper--wrap .achievement__swiper .swiper-wrapper .swiper-slide .achievement__profile .achievement__profile--bottom .achievement__comment {
  height: 124px;
  background-color: rgba(230, 230, 230, 0.3);
  padding: 1rem 1.5rem;
}
#achievement .achievement__swiper--wrap .achievement__swiper .swiper-wrapper .swiper-slide .achievement__profile .achievement__profile--bottom .achievement__comment span {
  color: #1EAA9F;
  font-weight: bold;
}
#achievement .achievement__next {
  background-color: #17C8B3;
  color: #FFFFFF;
  padding-top: 3.8rem;
  width: 100%;
  text-align: center;
  font-size: 2rem;
  position: relative;
}
#achievement .achievement__next::after {
  content: "";
  position: absolute;
  height: 4.7rem;
  width: 100%;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: #17C8B3;
  left: 0;
  bottom: -4.65rem;
}
#achievement .achievement__next span {
  background-image: radial-gradient(circle at center, #FFFFFF 20%, transparent 20%);
  background-position: top left;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  padding-top: 0.4em;
}

#trouble-01 .trouble-01__next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.4rem;
  background-color: #505050;
  color: #FFFFFF;
  padding-top: 2.8rem;
  padding-bottom: 0.29rem;
  width: 100%;
  text-align: center;
  font-size: 2rem;
  position: relative;
}
#trouble-01 .trouble-01__next::after {
  content: "";
  position: absolute;
  height: 4.7rem;
  width: 100%;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: #505050;
  left: 0;
  bottom: -4.65rem;
  z-index: 2;
}
#trouble-01 .trouble-01__next .trouble-01__text--image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem;
}
#trouble-01 .trouble-01__next .trouble-01__text--image img {
  width: 35px;
}
#trouble-01 .trouble-01__image {
  -webkit-filter: grayscale(80%);
          filter: grayscale(80%);
}
#trouble-01 .trouble-01__lists {
  width: 100%;
  height: 309px;
  background-image: url(../img/trouble-bg_02.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  clip-path: polygon(100% 2%, 100% 90%, 50% 100%, 0 90%, 0 0, 51% 10%);
  margin-top: -5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
  padding-left: 5rem;
  position: relative;
  padding-top: 5.2rem;
  z-index: 2;
}
#trouble-01 .trouble-01__lists li {
  position: relative;
  color: #FFFFFF;
}
#trouble-01 .trouble-01__lists li::before {
  position: absolute;
  content: "";
  top: 7px;
  left: -26px;
  width: 16px;
  height: 16px;
  border: 2px solid #FFFFFF;
}
#trouble-01 .trouble-01__lists li::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 6px;
  top: 11px;
  left: -23px;
  border-left: 2px solid #5AEBD7;
  border-bottom: 2px solid #5AEBD7;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#trouble-01 .trouble-01__lists li span {
  color: #58E5D3;
}
#trouble-01 .trouble-01__strong-w {
  position: relative;
}
#trouble-01 .trouble-01__strong-w p {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 173px;
  height: 57px;
  background-color: #FFFFFF;
  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;
  z-index: 3;
  font-size: 2rem;
}
#trouble-01 .trouble-01__conclusion {
  width: 100%;
  background-image: url(../img/trouble-bg_03.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  margin-top: -5rem;
  padding-top: 8rem;
  padding-bottom: 8.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;
  text-align: center;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
  clip-path: polygon(0% 0%, 50% 5%, 100% 0, 100% 90%, 70% 90%, 50% 100%, 30% 90%, 0 90%);
  letter-spacing: 1px;
}
#trouble-01 .trouble-01__conclusion::before {
  content: "";
  position: absolute;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(179, 179, 179, 0.7);
  z-index: 0;
}
#trouble-01 .trouble-01__conclusion h3 {
  font-size: 2rem;
  z-index: 1;
}
#trouble-01 .trouble-01__conclusion .trouble-01__strong-b {
  background-color: #333333;
  color: #FFFFFF;
  width: 173px;
  height: 57px;
  font-size: 2rem;
  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;
}
#trouble-01 .trouble-01__conclusion p {
  z-index: 1;
  line-height: 1.8;
}
#trouble-01 .trouble-01__conclusion p span {
  color: #FFFFFF;
  font-weight: bold;
  border-bottom: 8px solid #1EAA9F;
}
#trouble-01 .trouble-01__conclusion .trouble-01__woman {
  position: relative;
}
#trouble-01 .trouble-01__conclusion .trouble-01__woman::before {
  content: "";
  position: absolute;
  background-image: url(../img/trouble-woman.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 55px;
  height: 160px;
  top: -50px;
  left: -85px;
}
#trouble-01 .trouble-01__conclusion .trouble-01__man {
  position: relative;
}
#trouble-01 .trouble-01__conclusion .trouble-01__man::before {
  content: "";
  position: absolute;
  background-image: url(../img/trouble-man.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 65px;
  height: 160px;
  bottom: -128px;
  right: -55px;
}

#pitfall {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  gap: 16rem;
  background-color: #E7F3F2;
  margin-top: -7rem;
  padding-top: 7.2rem;
  padding-bottom: 2.4rem;
}
#pitfall .pitfall__top {
  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.8rem;
}
#pitfall .pitfall__top .pitfall__green {
  background-color: #1EAA9F;
  color: #FFFFFF;
  width: 274px;
  height: 41px;
  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;
}
#pitfall .pitfall__top .pitfall__gray {
  font-size: 2.4rem;
  line-height: 1.3;
  position: relative;
}
#pitfall .pitfall__top .pitfall__gray span {
  background-color: #8A8A8A;
  color: #FFFFFF;
  display: inline-block;
  width: 35px;
  height: 35px;
}
#pitfall .pitfall__top .pitfall__gray::after {
  content: "";
  position: absolute;
  background-image: url(../img/pitfall-woman.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 105px;
  height: 110px;
  top: 100px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#pitfall .pitfall__bottom {
  position: relative;
  margin: 0 auto;
}
#pitfall .pitfall__bottom::before {
  content: "";
  position: absolute;
  background-image: url(../img/tooltip_01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 95px;
  height: 50px;
  top: -10px;
  left: 17%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#pitfall .pitfall__bottom::after {
  content: "実際に";
  position: absolute;
  top: -17px;
  left: 17%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#pitfall .pitfall__bottom .pitfall__text span {
  font-weight: bold;
}
#pitfall .pitfall__bottom .pitfall__text .pitfall__g {
  color: #1EAA9F;
}

#trouble-02 {
  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: 2.4rem;
  background-image: url(../img/trouble-bg_04.webp);
  padding: 1.8rem 0.7rem 2.4rem 0.7rem;
  position: relative;
}
#trouble-02::before {
  content: "";
  position: absolute;
  -webkit-filter: grayscale(60%);
          filter: grayscale(60%);
  top: 0;
  left: 0;
  width: 100%;
  height: 984.33px;
  background-color: rgba(179, 179, 179, 0.7);
  z-index: 0;
}
#trouble-02 .trouble-02__title {
  font-size: 2rem;
  line-height: 1.3;
  letter-spacing: 1px;
  width: 250px;
  height: 56px;
  background-color: #FFFFFF;
  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;
  position: relative;
}
#trouble-02 .trouble-02__title::after {
  content: "";
  width: 229px;
  height: 4px;
  display: inline-block;
  background-color: #1EAA9F;
  position: absolute;
  bottom: 7px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#trouble-02 .trouble-02__container {
  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: 2.4rem;
}
#trouble-02 .trouble-02__container .trouble-02__cards {
  width: 375px;
}
#trouble-02 .trouble-02__container .trouble-02__cards .trouble-02__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  overflow: visible;
}
#trouble-02 .trouble-02__container .trouble-02__cards .trouble-02__card:nth-child(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
#trouble-02 .trouble-02__container .trouble-02__cards .trouble-02__card::before {
  content: "";
  position: absolute;
  inset: 0;
  top: 24px;
  height: 142px;
  width: 98%;
  background: #FFFFFF;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 10% 100%);
  z-index: 0;
}
#trouble-02 .trouble-02__container .trouble-02__cards .trouble-02__card::after {
  content: "";
  position: absolute;
  inset: 0;
  top: 28px;
  left: 4px;
  width: 98.5%;
  height: 142px;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 10% 100%);
  background: rgba(0, 0, 0, 0.25);
  z-index: -1;
}
#trouble-02 .trouble-02__container .trouble-02__cards .trouble-02__card .trouble-02__card--image {
  z-index: 1;
  max-width: 167px;
}
#trouble-02 .trouble-02__container .trouble-02__cards .trouble-02__card .trouble-02__card--comment {
  z-index: 1;
  padding-top: 2.5rem;
}
#trouble-02 .trouble-02__container .trouble-02__cards .trouble-02__card .trouble-02__card--comment span {
  font-weight: bold;
}
#trouble-02 .trouble-02__container .trouble-02__message {
  z-index: 1;
  text-align: center;
  letter-spacing: 1px;
  padding: 1rem;
  background-color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
#trouble-02 .trouble-02__container .trouble-02__message span {
  color: #1EAA9F;
  font-weight: bold;
}
#trouble-02 .trouble-02__container .trouble-02__textbook {
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem;
  width: 342px;
  background-color: #FFFFFF;
  padding: 1.17rem 1rem;
  border: 5px solid transparent;
  -o-border-image: linear-gradient(90deg, #E7BB1C, #CF9600, #F2CD1C, #FFF6CB, #F2CD1C, #CF9600, #E7BB1C);
     border-image: -webkit-gradient(linear, left top, right top, from(#E7BB1C), color-stop(#CF9600), color-stop(#F2CD1C), color-stop(#FFF6CB), color-stop(#F2CD1C), color-stop(#CF9600), to(#E7BB1C));
     border-image: linear-gradient(90deg, #E7BB1C, #CF9600, #F2CD1C, #FFF6CB, #F2CD1C, #CF9600, #E7BB1C);
  border-image-slice: 1;
  position: relative;
  margin-top: 4.3rem;
}
#trouble-02 .trouble-02__container .trouble-02__textbook::before {
  content: "";
  position: absolute;
  background-image: url(../img/tooltip_02.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 130px;
  height: 43px;
  top: -26px;
  left: 19%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#trouble-02 .trouble-02__container .trouble-02__textbook::after {
  content: "だからこそ";
  color: #1EAA9F;
  font-weight: bold;
  letter-spacing: 1px;
  position: absolute;
  top: -31px;
  left: 18%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#trouble-02 .trouble-02__container .trouble-02__textbook .trouble-02__textbook--text {
  text-align: center;
}
#trouble-02 .trouble-02__container .trouble-02__textbook .trouble-02__textbook--text span {
  font-weight: bold;
}
#trouble-02 .trouble-02__container .trouble-02__textbook .trouble-02__textbook--text .trouble-02__textbook--text--green {
  color: #1EAA9F;
  font-size: 2rem;
}
#trouble-02 .trouble-02__container .trouble-02__textbook .trouble-02__textbook--image {
  width: 60px;
  -webkit-transform: rotate(11.61deg);
          transform: rotate(11.61deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#textbook {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
  padding: 2.4rem 0 2.4rem 0;
  background-image: url(../img/textbook-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
#textbook .textbook__top {
  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;
  text-align: center;
  font-size: 2rem;
  gap: 0.4rem;
}
#textbook .textbook__top .textbook__top--text:nth-child(3) {
  margin-top: 2.4rem;
}
#textbook .textbook__top .textbook__top--strong span {
  background-color: #1EAA9F;
  color: #FFFFFF;
  padding: 0.5rem 1rem;
}
#textbook .textbook__top .textbook__small {
  font-size: 1.6rem;
}
#textbook .textbook__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
}
#textbook .textbook__items .textbook__item {
  background-color: #EFEFEF;
  border-radius: 0 50px 50px 0;
  padding: 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: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
  -ms-flex-item-align: start;
      align-self: flex-start;
  width: 95%;
}
#textbook .textbook__items .textbook__item:nth-child(2) {
  -ms-flex-item-align: end;
      align-self: flex-end;
  border-radius: 50px 0 0 50px;
}
#textbook .textbook__items .textbook__item .textbook__item--title .textbook__item--en {
  letter-spacing: 1px;
  color: #1EAA9F;
}
#textbook .textbook__items .textbook__item .textbook__item--title .textbook__item--en span {
  font-size: 2.4rem;
}
#textbook .textbook__items .textbook__item .textbook__item--title .textbook__item--jp {
  font-size: 2rem;
  font-weight: bold;
}
#textbook .textbook__items .textbook__item .textbook__item--image {
  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-color: #FFFFFF;
  width: 304px;
  height: 187px;
  margin: 0 auto;
  border-radius: 100px;
}
#textbook .textbook__items .textbook__item .textbook__item--image img {
  height: 164px;
}
#textbook .textbook__items .textbook__item .textbook__item--text {
  padding-left: 0;
}
#textbook .textbook__items .textbook__item .textbook__item--text li {
  list-style: disc;
  margin-left: 1.6rem;
}
#textbook .textbook__items .textbook__item .textbook__item--text li::marker {
  font-size: 0.7em;
  color: #333333;
}
#textbook .textbook__bottom {
  text-align: center;
  padding-left: 1.3rem;
}
#textbook .textbook__bottom .textbook__bottom--text span {
  font-weight: bold;
}
#textbook .textbook__bottom .textbook__bottom--text .textbook__bottom--text--green {
  font-size: 2rem;
  color: #1EAA9F;
}

#input {
  background-color: #EFEFEF;
  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;
  position: relative;
  padding-top: 2rem;
}
#input::after {
  content: "";
  position: absolute;
  height: 3.3rem;
  width: 100%;
  clip-path: polygon(0% 0%, 100% 0, 100% 0, 50% 100%, 0 0);
  background-color: #EFEFEF;
  left: 0;
  bottom: -3.25rem;
}

#roadmap {
  padding-top: 4rem;
  padding-bottom: 5.6rem;
  background-image: linear-gradient(135deg, #1EAA9F 0, #28ECDD 53%, #14d9be 100%);
  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: 1.6rem;
}
#roadmap .roadmap__title {
  background-color: #FFFFFF;
  color: #1EAA9F;
  font-weight: bold;
  font-size: 2.4rem;
  text-align: center;
  width: 176px;
  margin-top: 1.6rem;
}
#roadmap .roadmap__content {
  text-align: center;
  padding: 1.6rem 2.4rem;
  background-color: #FFFFFF;
  position: relative;
  border: 5px solid transparent;
  -o-border-image: linear-gradient(90deg, #E7BB1C, #CF9600, #F2CD1C, #FFF6CB, #F2CD1C, #CF9600, #E7BB1C);
     border-image: -webkit-gradient(linear, left top, right top, from(#E7BB1C), color-stop(#CF9600), color-stop(#F2CD1C), color-stop(#FFF6CB), color-stop(#F2CD1C), color-stop(#CF9600), to(#E7BB1C));
     border-image: linear-gradient(90deg, #E7BB1C, #CF9600, #F2CD1C, #FFF6CB, #F2CD1C, #CF9600, #E7BB1C);
  border-image-slice: 1;
}
#roadmap .roadmap__content::after {
  content: "";
  position: absolute;
  background-image: url(../img/counseling-person.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 195px;
  height: 195px;
  top: 85%;
  left: 76%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#roadmap .roadmap__content .roadmap__text {
  height: 92px;
}
#roadmap .roadmap__content .roadmap__text span {
  font-weight: bold;
  font-size: 2rem;
  color: #1EAA9F;
}
#roadmap .roadmap__content .roadmap__image {
  width: 88px;
  margin-left: 5rem;
}

#counseling {
  padding: 2.4rem 1.5rem 0 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
  background-color: #F2F2F2;
}
#counseling .counseling__title {
  text-align: center;
}
#counseling .counseling__title span {
  font-weight: bold;
  font-size: 2rem;
}
#counseling .counseling__container {
  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.6rem;
}
#counseling .counseling__container .counseling__merit {
  border: 2px solid #1EAA9F;
  background-color: #FFFFFF;
}
#counseling .counseling__container .counseling__merit .counseling__merit--title {
  background-color: #1EAA9F;
  color: #FFFFFF;
  text-align: center;
  font-size: 2rem;
  line-height: 1.3;
  letter-spacing: 1px;
  padding: 1rem;
}
#counseling .counseling__container .counseling__merit .counseling__merit--lists {
  padding: 0.6rem 0.3rem;
}
#counseling .counseling__container .counseling__merit .counseling__merit--lists .counseling__merit--list {
  position: relative;
  padding-left: 34.5px;
}
#counseling .counseling__container .counseling__merit .counseling__merit--lists .counseling__merit--list::before {
  position: absolute;
  content: "";
  top: 7px;
  left: 8.5px;
  width: 16px;
  height: 16px;
  border: 2px solid #333;
}
#counseling .counseling__container .counseling__merit .counseling__merit--lists .counseling__merit--list::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 6px;
  top: 11px;
  left: 11.5px;
  border-left: 2px solid #1EAA9F;
  border-bottom: 2px solid #1EAA9F;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#counseling .counseling__container .counseling__text {
  text-align: center;
}

#why .why__top {
  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;
  background-color: #E7F3F2;
}
#why .why__top .why__title {
  position: relative;
  background-color: #1EAA9F;
  color: #FFFFFF;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 1px;
  height: 4.4rem;
  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;
}
#why .why__top .why__title::after {
  content: "";
  position: absolute;
  height: 3.3rem;
  width: 100%;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: #1EAA9F;
  left: 0;
  bottom: -3.25rem;
  z-index: 2;
}
#why .why__top .why__image {
  margin-bottom: -1.5rem;
  margin-top: 2rem;
}
#why .why__bottom {
  background-image: url(../img/why-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: relative;
  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: 3.7rem 3.2rem;
}
#why .why__bottom::before {
  content: "";
  position: absolute;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(230, 230, 230, 0.7);
  z-index: 0;
}
#why .why__bottom p {
  position: relative;
  z-index: 1;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
  width: 325px;
  padding: 1rem;
  line-height: 1.3;
  letter-spacing: 1px;
}
#why .why__bottom p span {
  color: #1EAA9F;
  font-weight: bold;
}

#ideal-life {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem;
  background-color: #E7F3F2;
}
#ideal-life .ideal-life__top {
  position: relative;
  background-color: #1EAA9F;
  color: #FFFFFF;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 1px;
  height: 7rem;
  text-align: center;
  padding: 1rem 6rem 0 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.4rem;
}
#ideal-life .ideal-life__top span {
  color: #1EAA9F;
  background-color: #FFFFFF;
  font-weight: bold;
  padding-left: 1rem;
  padding-right: 1rem;
}
#ideal-life .ideal-life__top::after {
  content: "";
  position: absolute;
  height: 3.3rem;
  width: 100%;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: #1EAA9F;
  left: 0;
  bottom: -3.25rem;
  z-index: 2;
}
#ideal-life .ideal-life__grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
}
#ideal-life .ideal-life__grid-container .ideal-life__grid-item {
  background-color: #FFFFFF;
  margin-bottom: 1.6rem;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  text-align: center;
}
#ideal-life .ideal-life__grid-container .ideal-life__grid-item .ideal-life__reverse:nth-child(1) {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
#ideal-life .ideal-life__grid-container .ideal-life__grid-item .ideal-life__text {
  font-size: 1.5rem;
  padding: 1rem 0 1rem 0;
}

#review .review__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  height: 83px;
  padding: 0.5rem 0 0.5rem 1.5rem;
  background-color: #1EAA9F;
  color: #FFFFFF;
}
#review .review__title .review__icon {
  max-width: 55px;
}
#review .review__title .review__voice {
  font-size: 2rem;
}
#review .review__title .review__voice .review__strong {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(30%, rgba(252, 248, 160, 0.8)));
  background: linear-gradient(transparent 70%, rgba(252, 248, 160, 0.8) 30%);
}
#review .review__title .review__voice .review__weak {
  font-size: 1.6rem;
}
#review .review__items {
  background-image: url(../img/review-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  padding: 1.6rem 1.5rem 0.9rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
  position: relative;
}
#review .review__items::after {
  content: "";
  position: absolute;
  height: 3.3rem;
  width: 100%;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-image: url(../img/review-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  left: 0;
  bottom: -3.3rem;
  z-index: 2;
}
#review .review__items .review__item-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#review .review__items .review__item-left .review__item--image img {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
#review .review__items .review__item-left .first img {
  -o-object-position: 10% center;
     object-position: 10% center;
}
#review .review__items .review__item-left .third img {
  -o-object-position: 80% center;
     object-position: 80% center;
}
#review .review__items .review__item-left .review__item--text {
  width: 265px;
}
#review .review__items .review__item-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
#review .review__items .review__item-right .review__item--image img {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
#review .review__items .review__item-right .second img {
  -o-object-position: 20% center;
     object-position: 20% center;
}
#review .review__items .review__item-right .review__item--text {
  width: 265px;
}

#step {
  padding: 6.1rem 3.2rem 0 3.2rem;
  background-color: #E7F3F2;
  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: 2.4rem;
}
#step .step__main--title {
  padding: 0.5rem 1rem;
  background-color: #FFFFFF;
  font-size: 2rem;
}
#step .step__main--title span {
  color: #1EAA9F;
}
#step .step__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.2rem;
  padding-left: 1.1rem;
  padding-right: 1.1rem;
  padding-bottom: 2.4rem;
}
#step .step__container .step__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 1rem;
  height: 138px;
}
#step .step__container .step__item .step__icon {
  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: 1rem;
}
#step .step__container .step__item .step__icon .step__number {
  color: #1EAA9F;
}
#step .step__container .step__item .step__icon .step__image {
  width: 77px;
  height: 77px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #FFFFFF;
  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;
  position: relative;
}
#step .step__container .step__item .step__icon .step__image img {
  width: 52px;
  height: 52px;
  -o-object-fit: contain;
     object-fit: contain;
}
#step .step__container .step__item .step__icon .step__image::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 32px;
  background: rgba(85, 85, 85, 0.33);
  top: 90px;
}
#step .step__container .step__item .step__content {
  width: 219px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
}
#step .step__container .step__item .step__content .step__sub--title {
  font-size: 2rem;
  font-weight: bold;
}
#step .step__container .step__item .step__content .step__text {
  background-color: #FFFFFF;
  padding: 1rem;
}
#step .step__container .step__item:nth-child(4) .step__image::after {
  content: none;
}

#faq {
  padding: 2.4rem 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: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
}
#faq .faq__title {
  text-align: center;
  width: 164px;
}
#faq .faq__title .faq__en {
  color: #1EAA9F;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.8;
  border-bottom: 1px solid #1EAA9F;
}
#faq .faq__title .faq__jp {
  font-size: 2.4rem;
  line-height: 1.8;
}
#faq .faq__container {
  display: grid;
  gap: 28px;
  width: 100%;
}
#faq .faq__container .faq__item {
  border: 1px solid #1EAA9F;
  background: #fff;
  padding: 1.6rem 1rem;
}
#faq .faq__container .faq__item .faq__head {
  width: 100%;
  cursor: pointer;
  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;
  position: relative;
}
#faq .faq__container .faq__item .faq__head .faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
}
#faq .faq__container .faq__item .faq__head .faq__question .faq__q {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1EAA9F;
  color: #FFFFFF;
  font-size: 2.4rem;
  display: grid;
  place-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
#faq .faq__container .faq__item .faq__head .faq__question .faq__q--text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -moz-text-align-last: left;
       text-align-last: left;
  color: #333333;
  line-height: 1.8;
}
#faq .faq__container .faq__item .faq__head .faq__icon {
  width: 35px;
  height: 35px;
  position: relative;
}
#faq .faq__container .faq__item .faq__head .faq__icon::before, #faq .faq__container .faq__item .faq__head .faq__icon::after {
  content: "";
  position: absolute;
  background: #1EAA9F;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#faq .faq__container .faq__item .faq__head .faq__icon::before {
  width: 20px;
  height: 3px;
}
#faq .faq__container .faq__item .faq__head .faq__icon::after {
  width: 3px;
  height: 20px;
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: transform 0.35s ease, opacity 0.35s ease;
  transition: transform 0.35s ease, opacity 0.35s ease, -webkit-transform 0.35s ease;
}
#faq .faq__container .faq__item.is-open .faq__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
#faq .faq__container .faq__body {
  display: none;
}
#faq .faq__container .faq__body::before {
  content: "";
  display: block;
  height: 1px;
  background-color: #1EAA9F;
  margin: 1rem 0;
}
#faq .faq__container .faq__body .faq__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
}
#faq .faq__container .faq__body .faq__answer .faq__a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #747474;
  color: #FFFFFF;
  font-size: 2.4rem;
  display: grid;
  place-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
#faq .faq__container .faq__body .faq__answer .faq__a--text {
  text-align: left;
  line-height: 1.8;
}

#closing {
  background-image: url(../img/closing-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: relative;
  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: 2.5rem 4.5rem;
}
#closing::before {
  content: "";
  position: absolute;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(230, 230, 230, 0.7);
  z-index: 0;
}
#closing .closing__message {
  background-color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
  text-align: center;
  width: 325px;
  padding: 1.6rem;
}
#closing .closing__message p {
  padding: 1rem;
  line-height: 1.3;
  letter-spacing: 1px;
}
#closing .closing__message span {
  color: #1EAA9F;
  font-weight: bold;
}
#closing .closing__message .closing__accent {
  background-image: radial-gradient(circle at center, #1EAA9F 20%, transparent 20%);
  background-position: top left;
  background-repeat: repeat-x;
  background-size: 1.05em 0.3em;
  padding-top: 0.4em;
}
#closing .closing__message .closing__strong {
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  color: #1EAA9F;
  isolation: isolate;
}
#closing .closing__message .closing__strong::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  -webkit-text-stroke: 3px #FFFFFF;
  text-stroke: 3px #FFFFFF;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
  z-index: -1;
  top: 10px;
}

footer {
  background-color: #E7F3F2;
}

.js-fadeUp {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 1.6s ease, -webkit-transform 1.6s ease;
  transition: opacity 1.6s ease, -webkit-transform 1.6s ease;
  transition: opacity 1.6s ease, transform 1.6s ease;
  transition: opacity 1.6s ease, transform 1.6s ease, -webkit-transform 1.6s ease;
  will-change: opacity, transform;
}

.js-fadeUp.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-slideX {
  opacity: 0;
  -webkit-transition: opacity 1.6s ease, -webkit-transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 1.6s ease, -webkit-transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 1.6s ease, transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 1.6s ease, transform 1.6s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.js-slideX.from-left {
  -webkit-transform: translateX(-80px);
          transform: translateX(-80px);
}

.js-slideX.from-right {
  -webkit-transform: translateX(80px);
          transform: translateX(80px);
}

.js-slideX.is-show {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}