@charset "UTF-8";
/****	---- setting ----
===================================****/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300;400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");
/****	---- general ----
===================================****/
html.lock,
body.lock {
  overflow: hidden;
}

html {
  font-size: 93.75%;
}

@media print, screen and (max-width: 1199px) {
  html {
    font-size: 1.25vw;
  }
}
@media print, screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}
body {
  color: #000;
  font-size: 1.6rem;
  font-family: "Noto Serif JP", serif;
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Kiwi Maru", serif;
  font-family: "PT Sans", sans-serif;
  font-family: "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-family: YakuHanJP_Noto, "Noto Sans JP", sans-serif;
  line-height: 1.8;
  background: #fff;
  word-wrap: break-word;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

figure {
  margin: 0;
}

img {
  width: 100%;
  display: block;
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.2s;
}

a:hover {
  opacity: 0.7;
}

@media print, screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}
sup {
  font-size: 0.75em;
  vertical-align: top;
}

/****	---- js ----
===================================****/
.fadeIn_title,
.fadeIn_lead,
.fadeIn,
.fadeIn_200,
.fadeIn_400,
.fadeIn_600 {
  transition: 0.8s;
  opacity: 0;
  filter: blur(0.6rem);
  transform: translate(0, 6rem);
  -webkit-transform: translate(0, 6rem);
}

.fadeIn_left {
  transition: 1.2s;
  opacity: 0;
  transform: translate(-10rem, 0);
  -webkit-transform: translate(10rem, 0);
}

.fadeIn_right {
  transition: 1.2s;
  opacity: 0;
  transform: translate(10rem, 0);
  -webkit-transform: translate(10rem, 0);
}

.fadeInMove {
  opacity: 1;
  filter: blur(0);
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}

.js-accordion {
  transition: 0.2s;
}

.js-accordion:hover {
  opacity: 0.7;
  cursor: pointer;
}

@media print, screen and (max-width: 767px) {
  .js-accordion:hover {
    opacity: 1;
  }
}
.js-accordionContents {
  display: none;
}

@-webkit-keyframes bounce {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes bounce {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes floating-y {
  0% {
    transform: translateY(-5%);
  }
  100% {
    transform: translateY(5%);
  }
}
@keyframes floating-y {
  0% {
    transform: translateY(-5%);
  }
  100% {
    transform: translateY(5%);
  }
}
@-webkit-keyframes btnArwAnime {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(8px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes btnArwAnime {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(8px);
  }
  100% {
    transform: translateX(0);
  }
}
/****	---- utility ----
===================================****/
.u-pc {
  display: block;
}

@media print, screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}
.u-sp {
  display: none;
}

@media print, screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
}
.u-mb--em {
  margin: 0 0 1em 0;
}

/****	---- layout ----
===================================****/
.l-inner {
  width: 33.5rem;
  margin: 0 auto;
}

.l-content {
  width: 37.5rem;
  background: #fff;
  box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.5);
  margin: 0 0 0 calc((100vw - 37.5rem) * 0.7777777778);
  position: relative;
}

@media print, screen and (max-width: 767px) {
  .l-content {
    margin: 0 auto;
  }
}
.l-main {
  display: block;
  position: relative;
  overflow: hidden;
}

/****	---- component ----
===================================****/
.c-anchor {
  position: absolute;
  top: 0;
}

.feature .c-anchor {
  top: 13.5rem;
}

.c-ttl {
  margin: 0 0 3rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.c-ttl > strong {
  font-weight: bold;
  font-size: 1.7rem;
  line-height: 1.75;
  text-align: center;
}

.c-ttl > strong.--yellow {
  color: #ffed91;
}

.c-ttl > span {
  font-family: "PT Sans", sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-align: center;
  color: #36a3a7;
}

.c-ttl > span.--white {
  color: #fff;
}

.cv-btn {
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  width: 33.5rem;
  height: 6.6rem;
  background: linear-gradient(to bottom, #37cba1 0%, #36a3a7 100%);
  border: 0.6rem solid #37cba1;
  border-radius: 9999px;
  box-sizing: border-box;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.cv-btn.--red {
  letter-spacing: 0.02em;
  background: #f96b55;
  border: 0.6rem solid #f05a46;
}

.cv-btn.--green {
  letter-spacing: 0;
  width: 30rem;
  height: 7.5rem;
  background: url("../img/bg_btn.png") center center/contain no-repeat;
  border: none;
  box-shadow: 0 0 2.4rem #61ff00;
}

.l-pc .cv-btn {
  font-size: min(2.0833333333vw, 40px);
  width: min(34.8958333333vw, 670px);
  height: min(6.875vw, 132px);
  border: min(0.625vw, 12px) solid #37cba1;
}

.l-pc .cv-btn.--red {
  border: min(0.625vw, 12px) solid #f05a46;
}

.l-pc .cv-btn.--green {
  width: min(31.25vw, 600px);
  height: min(7.8125vw, 150px);
  border: none;
}

.cv-btn img {
  filter: drop-shadow(0 0.15rem 0.3rem rgba(0, 0, 0, 0.48));
}

.cv-btn img.--point {
  width: 21.15rem;
}

.cv-btn img.--app {
  width: 12.5rem;
}

.cv-btn > span {
  filter: drop-shadow(0 0.3rem 0.6rem rgba(0, 0, 0, 0.16));
  font-weight: bold;
  font-size: 1.375rem;
  letter-spacing: 0.03em;
  line-height: 1.4;
  text-align: center;
  color: #36a3a7;
  width: 8.35rem;
  height: 3.767915rem;
  background: url("../img/bg_btn_ico_ls.svg") center center/contain no-repeat;
  position: absolute;
  top: -3rem;
  left: 2px;
  animation: floating-y 0.75s ease-in-out infinite alternate-reverse;
}

.cv-btn > span > strong {
  font-size: 1.4em;
}

.cv-btn > span > em {
  font-style: normal;
  font-size: 1.2em;
}

.l-pc .cv-btn > span {
  font-size: min(1.4322916667vw, 27.5px);
  width: min(8.6979166667vw, 167px);
  height: min(3.9249114583vw, 75.3583px);
  top: max(-3.125vw, -60px);
}

.cv-btn::after {
  content: "";
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  width: 1rem;
  height: 1.6rem;
  background: #fff;
  filter: drop-shadow(0 0.15rem 0.3rem rgba(0, 0, 0, 0.48));
  position: absolute;
  top: 0;
  right: 2rem;
  bottom: 0;
  margin: auto;
  -webkit-animation: btnArwAnime 1s ease-in-out infinite alternate-reverse;
  animation: btnArwAnime 1.5s ease-in-out infinite alternate-reverse;
}

.l-pc .cv-btn::after {
  width: min(0.9375vw, 18px);
  height: min(1.0416666667vw, 20px);
  right: min(2.5vw, 48px);
}

.cv-btn:hover {
  opacity: 1;
}

.cv-txt {
  font-size: 1.2rem;
  line-height: 1.4;
  text-align: center;
  margin: 1.5em 0 0 0;
}

.c-btn {
  opacity: 0.75;
  filter: grayscale(100%);
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  width: 33.5rem;
  height: 6.6rem;
  background: linear-gradient(to right, #36979b 0%, #8b9ccb 100%);
  border-radius: 6.6rem;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.c-btn::before,
.c-btn::after {
  content: "";
  position: absolute;
  margin: auto;
  transition: 0.1s;
}

.c-btn::before {
  width: 4.5rem;
  height: 4.5rem;
  background: #fff;
  border-radius: 100%;
  top: 0;
  right: 1rem;
  bottom: 0;
}

.c-btn::after {
  width: 0;
  height: 0;
  border: 0.5rem solid transparent;
  border-left: 0.9rem solid #36a3a7;
  top: 0;
  right: 2.2rem;
  bottom: 0;
}

.c-btn.--pc {
  font-size: 2.424rem;
  font-size: 1.515rem;
  width: auto;
  max-width: 40.6rem;
  max-width: 25.375rem;
  height: 8rem;
  height: 5rem;
  border-radius: 8rem;
  border-radius: 5rem;
}

.c-btn.--pc::before {
  width: 5.455rem;
  width: 3.409375rem;
  height: 5.455rem;
  height: 3.409375rem;
  right: 1.2rem;
  right: 0.75rem;
}

.c-btn.--pc::after {
  border: 0.6rem solid transparent;
  border: 0.375rem solid transparent;
  border-left: 1rem solid #36a3a7;
  border-left: 0.625rem solid #36a3a7;
  right: 2.8rem;
  right: 1.75rem;
}

.c-btn-signup {
  font-weight: bold;
  font-size: 1.7rem;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  width: 33.5rem;
  height: 6.6rem;
  background: linear-gradient(to right, #36979b 0%, #8b9ccb 100%);
  border-radius: 6.6rem;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
  margin: -3rem auto 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.c-btn-signup::before,
.c-btn-signup::after {
  content: "";
  position: absolute;
  margin: auto;
  transition: 0.1s;
}

.c-btn-signup::before {
  width: 4.5rem;
  height: 4.5rem;
  background: #fff;
  border-radius: 100%;
  top: 0;
  right: 1rem;
  bottom: 0;
}

.c-btn-signup::after {
  width: 0;
  height: 0;
  border: 0.5rem solid transparent;
  border-left: 0.9rem solid #36a3a7;
  top: 0;
  right: 2.2rem;
  bottom: 0;
}

.c-btn-signup:hover {
  opacity: 1;
}

.c-btn-signup:hover::before {
  right: 0.5rem;
}

@media print, screen and (max-width: 767px) {
  .c-btn-signup:hover::before {
    right: 1rem;
  }
}
.c-btn-signup:hover::after {
  right: 1.7rem;
}

@media print, screen and (max-width: 767px) {
  .c-btn-signup:hover::after {
    right: 2.2rem;
  }
}
/****	---- pc ----
===================================****/
.l-pc {
  width: 100vw;
  height: 100vh;
  background: url("../img/bg_pc.png") center bottom/100% auto no-repeat;
  position: fixed;
  top: 0;
  left: 0;
}

@media print, screen and (max-width: 767px) {
  .l-pc {
    display: none;
  }
}
.l-pc__content {
  width: calc((100vw - 37.5rem) * 0.7777777778);
  height: 100%;
  position: relative;
}

.l-pc__scroll {
  height: calc(100vh - 150px);
  box-sizing: border-box;
  padding: 130px 30px 75px;
  overflow-x: hidden;
  overflow-y: scroll;
  position: relative;
}

.l-pc__logo {
  width: min(25.2083333333vw, 484px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.l-pc__btn {
  width: 100%;
  position: absolute;
  bottom: 145px;
  left: 0;
}

/****	---- sp ----
===================================****/
.l-sp {
  display: none;
}

@media print, screen and (max-width: 767px) {
  .l-sp {
    width: 100vw;
    height: 9.6rem;
    background: white;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999;
  }
}
@media print, screen and (max-width: 767px) {
  .l-sp__content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
}
/****	---- header ----
===================================****/
.l-header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.l-header__logo {
  width: 8.8rem;
  position: absolute;
  top: 1.5rem;
  right: 1.25rem;
}

.l-header__logo > a {
  display: block;
}

/****	---- main ----
===================================****/
.mv {
  position: relative;
}
.mv img {
  display: block;
  height: auto;
}
.mv-header {
  background-color: white;
  padding: 16px 0;
}
.mv-header__logo {
  margin: 0 auto;
  width: 21%;
}
.mv-main img {
  width: 100%;
}
.mv-bottom {
  padding: 3.4666666667% 0;
  background-color: white;
  container-type: inline-size;
}
.mv-bottom__link {
  display: block;
  width: 90%;
  margin: 0 auto;
  position: relative;
}
.mv-bottom__link img {
  height: auto;
}
.mv-bottom__link.cv {
  width: min(34.8958333333vw, 670px);
}
.mv-bottom__main {
  position: relative;
  width: 100%;
}
@-webkit-keyframes floating-before {
  0% {
    transform: translateY(-55%);
  }
  100% {
    transform: translateY(-45%);
  }
}
@keyframes floating-before {
  0% {
    transform: translateY(-55%);
  }
  100% {
    transform: translateY(-45%);
  }
}
.mv-bottom__before {
  width: 21%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  animation: floating-before 0.75s ease-in-out infinite alternate-reverse;
}
@-webkit-keyframes btnArwAfter {
  0% {
    transform: translate(0, -50%);
  }
  50% {
    transform: translate(8px, -50%);
  }
  100% {
    transform: translate(0, -50%);
  }
}
@keyframes btnArwAfter {
  0% {
    transform: translate(0, -50%);
  }
  50% {
    transform: translate(8px, -50%);
  }
  100% {
    transform: translate(0, -50%);
  }
}
.mv-bottom__after {
  width: 6%;
  position: absolute;
  top: 48%;
  right: 4%;
  transform: translateY(-50%);
  animation: btnArwAfter 1.5s ease-in-out infinite alternate-reverse;
}
.mv-bottom__txt {
  padding: 0 5px;
  margin-top: 23px;
  text-align: center;
  font-size: 2.2388059701cqw;
}

.mv__content {
  height: 56.8rem;
  position: relative;
}

.mv__content::before,
.mv__content::after {
  content: "";
  width: 22.5rem;
  height: 10.3rem;
  background: url("../img/bg_mv_top.png") right top/100% auto no-repeat;
  position: absolute;
  top: 0;
  right: 0;
}

.mv__content::after {
  width: 100%;
  height: 100%;
  background: url("../img/bg_mv.png") center bottom -9.9rem/100% auto no-repeat;
  right: auto;
  left: 0;
}

.mv__copy {
  width: 21.9rem;
  position: absolute;
  top: 2.4rem;
  right: 0;
  left: 0;
  margin: auto;
}

.mv__ttl {
  width: 33.4rem;
  position: absolute;
  top: 6.1rem;
  right: 0;
  left: 0;
  margin: auto;
}

.mv__lead-sup {
  font-size: 0.875rem;
  text-align: center;
  width: 100%;
  position: absolute;
  top: 12.8rem;
  right: 0;
  left: 0;
  margin: auto;
}

.mv__lead {
  width: 20.5rem;
  position: absolute;
  top: 14.6rem;
  right: 0;
  left: 0;
  margin: auto;
}

.mv__img {
  width: 35rem;
  position: absolute;
  top: 8.6rem;
  left: 1rem;
  opacity: 0;
}

.mv__img.on {
  -webkit-animation: bounce 0.6s;
          animation: bounce 0.6s;
}

.mv__list {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 0 2rem;
  position: absolute;
  top: 33.2rem;
  left: 0;
  z-index: 1;
}

.mv__list-item {
  width: 8.5rem;
  position: relative;
  opacity: 0;
}

.mv__list-item.on {
  -webkit-animation: bounce 0.6s;
          animation: bounce 0.6s;
}

.mv__list-txt {
  position: absolute;
  top: 9.5rem;
  right: 0;
  left: 50%;
  transform: translateX(-50%);
}

.mv__list-item:nth-child(1) .mv__list-txt {
  width: 7.5rem;
}

.mv__list-item:nth-child(2) .mv__list-txt {
  width: 9.65rem;
}

.mv__list-item:nth-child(3) .mv__list-txt {
  width: 7.55rem;
}

.mv__txt {
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  width: 100%;
  box-sizing: border-box;
  position: absolute;
  bottom: 6.4em;
  left: 0;
  z-index: 1;
}

.mv__cv {
  height: 9.9rem;
  background: #ffed91;
  box-sizing: border-box;
  padding: 4rem 0 0 0;
  position: relative;
  z-index: 1;
}

.mv__cv-btn {
  width: 100%;
  position: absolute;
  top: -3.8rem;
  left: 0;
}

.mv__cv-txt {
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.4;
  text-align: center;
}

.anniversary {
  height: 47.1rem;
  background: url("../img/bg_anniversary.jpg") center center/cover no-repeat;
  position: relative;
}

.anniversary__bg {
  width: 100%;
  position: absolute;
  top: 5rem;
  left: 0;
}

.anniversary__ttl {
  width: 26.35rem;
  position: absolute;
  top: 3.8rem;
  left: 1rem;
  z-index: 1;
}

.anniversary__img {
  width: 14.25rem;
  position: absolute;
  top: 0.65rem;
  right: 0;
}

.anniversary__txt {
  width: 32.275rem;
  position: absolute;
  top: 12rem;
  right: 0;
  left: 0;
  margin: auto;
}

.anniversary__txt-btn {
  pointer-events: none;
  width: 28rem;
  position: absolute;
  bottom: 11rem;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 1;
}

.anniversary__cv {
  width: 100%;
  height: 6.6rem;
  position: absolute;
  bottom: 5.5rem;
  left: 0;
}

.beginner {
  background: #36a3a7;
  padding: 2rem 0 4rem;
}

.beginner__ico {
  width: 2rem;
  margin: 0 auto 0.5rem;
}

.beginner__txt {
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  margin: -2rem 0 0 0;
}

.beginner__txt > span {
  color: #ffed91;
}

.beginner__list {
  margin: 3rem 0 4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem 0;
}

.beginner__list-item {
  height: 9.2rem;
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
  padding: 0 0 0 16.25rem;
  display: flex;
  align-items: center;
  position: relative;
}

.beginner__list-item:nth-child(even) {
  padding: 0 0 0 3rem;
}

.beginner__list-txt {
  width: 13.65954rem;
}
.beginner__list-txt span {
  margin-top: 5px;
  display: block;
  font-size: 12px;
  text-align: end;
  color: #F16A55;
}

.beginner__list-img {
  width: 15.3rem;
  position: absolute;
  top: -2.5rem;
  left: 0.5rem;
}

.beginner__list-item:nth-child(even) .beginner__list-img {
  right: 0;
  left: auto;
}

.bonus {
  height: 21.8rem;
  background: url("../img/bg_bonus.png") center center/cover no-repeat;
  box-sizing: border-box;
  padding: 4.2rem 0 0 0;
  position: relative;
}

.bonus__ttl {
  font-weight: bold;
  font-size: 1.7rem;
  line-height: 1.4;
  color: #36a3a7;
  margin: 0 0 0.5em 0;
}

.bonus__txt {
  font-size: 1.2rem;
  line-height: 1.6;
}

.bonus__txt > span {
  font-weight: bold;
  color: #36a3a7;
  background: #fff;
}

.bonus__img {
  width: 17.85rem;
  position: absolute;
  right: -2rem;
  bottom: 0;
}

.intro {
  padding: 4rem 0 0 0;
}

.intro__ttl {
  font-weight: bold;
  font-size: 1.7rem;
  line-height: 1.4;
  text-align: center;
  color: #36a3a7;
  margin: 0 0 1em 0;
}

.intro .swiper-wrapper {
  transition-timing-function: linear;
}

.intro__ico figcaption {
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
  color: #36a3a7;
}

.about {
  background: url("../img/bg_about.png") center top/100% auto no-repeat;
  padding: 11rem 0 13.5rem;
  margin: -1rem 0 0 0;
  position: relative;
}

.about::before {
  content: "";
  width: 100%;
  height: 50%;
  background: #e5faf9;
  position: absolute;
  bottom: 0;
  left: 0;
}

.about__hdg {
  margin: 0 0 5rem 0;
}

.about__hdg-ttl {
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.75;
  text-align: center;
  color: #fff;
  height: 3.5rem;
  background: #36a3a7;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about__hdg-txt {
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.6;
  text-align: center;
  color: #36a3a7;
  height: 5rem;
  height: auto;
  background: #fff;
  border: 2px solid #36a3a7;
  box-sizing: border-box;
  padding: 0.25em 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about__txt {
  font-size: 1.2rem;
  line-height: 1.75;
  margin: 0 0 3rem 0;
}

.about__img {
  width: 35.8rem;
  margin: 0 auto;
}

.feature {
  background: url("../img/bg_feature.png") center top/100% auto no-repeat;
  box-sizing: border-box;
  padding: 35rem 0 0 0;
  padding: 19rem 0 4rem;
  margin: -35rem 0 0 0;
  margin: -22rem 0 0 0;
  position: relative;
}

.feature::before {
  content: "";
  width: 100%;
  height: 50%;
  background: #ffed91;
  position: absolute;
  bottom: 0;
  left: 0;
}

.feature__list {
  margin: 0 0 2rem 0;
  position: relative;
}

.feature__list-item {
  border-bottom: 2px solid #fff;
  padding: 2rem 0;
  display: flex;
}

.feature__list-item:first-child {
  padding: 0 0 2rem 0;
}

.feature__list-item:last-child {
  border-bottom: none;
}

.feature__list-img {
  width: 8.5rem;
}

.feature__list-content {
  width: calc(100% - 8.5rem);
  box-sizing: border-box;
  padding: 0 0 0 1.3rem;
}

.feature__list-num {
  font-family: "PT Sans", sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  line-height: 1.4;
  color: #36a3a7;
}

.feature__list-ttl {
  font-weight: bold;
  font-size: 1.7rem;
  line-height: 1.4;
  color: #36a3a7;
  margin: 0 0 0.25em 0;
}

.feature__list-txt {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.feature__list-sup {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin: 0.5em 0 0 0;
}

.feature__list-sup > li {
  text-indent: -1em;
  padding: 0 0 0 1em;
}

.feature__cv {
  position: relative;
}

.gift {
  background: #fff;
  padding: 5rem 0 1.5rem;
}

.gift__container {
  padding: 0 1.5rem;
}

.gift__list {
  border-right: 1px solid #ebebeb;
  border-left: 1px solid #ebebeb;
  margin: -1px 0;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.gift__list-item {
  width: 33.3333333333%;
  height: 8.5rem;
  border: 1px solid #ebebeb;
  box-sizing: border-box;
}

.gift__list-item:nth-child(1) {
  background: url("../img/ico_gift01.png") left -1.05rem top -0.6rem/13.325rem no-repeat;
  background: url("../img/ico_gift01.png") center center/10.9rem no-repeat;
}

.gift__list-item:nth-child(2) {
  background: url("../img/ico_gift02.png") center top -0.1rem/11rem no-repeat;
  background: url("../img/ico_gift02.png") center top -0.5rem/9rem no-repeat;
}

.gift__list-item:nth-child(3) {
  background: url("../img/ico_gift03.png") center top -0.9rem/12.35rem no-repeat;
  background: url("../img/ico_gift03.png") center top -1.2rem/10.1rem no-repeat;
}

.gift__list-item:nth-child(4) {
  background: url("../img/ico_gift04.png") center center/7.04rem no-repeat;
}

.gift__list-item:nth-child(5) {
  background: url("../img/ico_gift05.png") center center/6.72rem no-repeat;
}

.gift__list-item:nth-child(6) {
  background: url("../img/ico_gift06.png") center center/8.24rem no-repeat;
}

.gift__txt {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.75;
  text-align: center;
  margin: 1em 0 0 0;
}

.step {
  background: #f4f2e3;
  padding: 4rem 0 6rem;
}

.step__ttl {
  width: 21.8rem;
  margin: 0 auto 2.25rem;
}

.step__list {
  position: relative;
  z-index: 1;
}

.step__list-item {
  position: relative;
}

.step__list-item:not(:last-child) {
  margin: 0 0 6rem 0;
}

.step__list-item::before {
  content: "";
  width: 4rem;
  height: 4rem;
  background: url("../img/arw_step.svg") center center/contain no-repeat;
  position: absolute;
  top: -5rem;
  right: 0;
  left: 0;
  margin: auto;
}

.step__list-item:first-child::before {
  content: none;
}

.step__list-tag {
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
  color: #fff;
  width: 11.7rem;
  height: 2.9rem;
  background: #36a3a7;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
}

.step__list-content {
  background: #fff;
  border-radius: 2rem;
  padding: 2.7rem 0;
}

.step__list-num {
  font-family: "PT Sans", sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-align: center;
  color: #36a3a7;
}

.step__list-ttl {
  font-weight: bold;
  font-size: 1.7rem;
  line-height: 1.4;
  text-align: center;
}

.step__list-img {
  width: 12.1rem;
  margin: 1.75rem auto 1.25rem;
}

.step__list-item:nth-child(1) .step__list-img {
  width: 7.5rem;
}

.step__list-txt {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: center;
}

.step__list-sup {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: left;
  margin: 1em 0 0 20px;
}

.step__cv {
  margin: -1rem 0 0 0;
}

.step__action {
  display: flex;
  justify-content: center;
}

.step__action-ico {
  width: 15.3rem;
}

.step__action-ico p {
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
  color: #36a3a7;
  width: 10.8rem;
  height: 6.6rem;
  background: #ffed91;
  border-radius: 1.5rem;
  box-sizing: border-box;
  padding: 0.5em 0 0 0;
  margin: 0 auto;
  transform: translateX(-0.2rem);
}

.step__action-ico div {
  margin: -4.8rem 0 0 0;
  position: relative;
}

.step__action-ico figcaption {
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
}

.step__action-ico figcaption > span {
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #36a3a7;
  margin: 0 0 0.5em 0;
  display: block;
}

.media {
  padding: 4rem 0;
}

.media__list {
  margin: -1rem 0 0 0;
}

.media__list-item {
  border-bottom: 1px solid #ebebeb;
  padding: 1.6rem 0;
  display: flex;
  align-items: center;
}

.media__list-date {
  font-size: 1rem;
  width: 7.5rem;
}

.media__list-ttl {
  font-size: 1.2rem;
  width: calc(100% - 7.5rem);
}

.voice {
  background: #e5faf9;
  padding: 4rem 0;
}

.voice__list {
  display: flex;
  flex-direction: column;
  gap: 3rem 0;
}

.voice__list-ico img {
  width: 4.35rem;
  margin: 0 auto;
}

.voice__list-ico figcaption {
  font-size: 1rem;
  text-align: center;
  margin: 0.5em 0 0 0;
}

.voice__list-content {
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
  padding: 1.8rem 2rem;
  margin: 1.8rem 0 0 0;
  position: relative;
}

.voice__list-content::before {
  content: "";
  -webkit-clip-path: polygon(50% 0, 100% 100%, 0 100%);
          clip-path: polygon(50% 0, 100% 100%, 0 100%);
  width: 1.8rem;
  height: 1.2rem;
  background: #fff;
  position: absolute;
  top: -1.1rem;
  right: 0;
  left: 0;
  margin: auto;
}

.voice__list-txt {
  font-size: 1.2rem;
  line-height: 1.4;
}

.mission {
  padding: 4rem 0 5rem;
}

.mission__lead {
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: center;
  margin: 0 0 2em 0;
}

.mission__list {
  padding: 0 1.75rem 0 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem 0;
}

.mission__list-item {
  width: 15.4rem;
}

.mission__list-img > figcaption {
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: center;
  color: #36a3a7;
  margin: -0.5em 0 0 -1em;
}

.movie {
  background: #9cd8b6;
  padding: 3.5rem 0;
}

.movie .js-modal-btn {
  background: none;
  border: none;
  padding: 0;
  position: relative;
}

.movie .js-modal-btn::after {
  content: "";
  width: 3.8rem;
  height: 2.65rem;
  background: url("../img/ico_yt.svg") center center/contain no-repeat;
  position: absolute;
  inset: 0;
  margin: auto;
  opacity: 0.9;
}

.movie .js-modal-btn:hover {
  cursor: pointer;
}

.movie .js-modal-btn > img {
  border-radius: 1rem;
}

.cv {
  padding: 4rem 0;
}

.cv__link {
  font-weight: bold;
  font-size: 1.3rem;
  line-height: 1.75;
  text-align: center;
  margin: 2em 0 0 0;
  position: relative;
  z-index: 1;
}

.cv__link > a {
  color: #36a3a7;
  padding: 0 1.5rem 0 0;
  position: relative;
}

.cv__link > a::before {
  content: "";
  width: 100%;
  height: 2px;
  background: #36a3a7;
  position: absolute;
  bottom: -0.25em;
  left: 0;
}

.cv__link > a::after {
  content: "";
  width: 1.1rem;
  height: 1.1rem;
  background: url("../img/ico_external_turquoise.svg") center center/contain no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.service {
  background: #ebebeb;
  padding: 3rem 0;
}

.service__list {
  position: relative;
}

.service__list-item,
.service__txt {
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.service__list-item > a,
.service__txt > a {
  color: #36a3a7;
  text-decoration: underline;
}

.service__list-item > a:hover,
.service__txt > a:hover {
  text-decoration: none;
  opacity: 1;
}

.service__txt {
  margin: 0 0 1em 0;
}

/****	---- footer ----
===================================****/
.l-footer {
  padding: 0 0 3.5rem 0;
}

@media print, screen and (max-width: 767px) {
  .l-footer {
    padding: 0 0 10.35rem 0;
  }
}
.l-footer__sns {
  border-top: 2px solid #ebebeb;
  border-bottom: 2px solid #ebebeb;
  display: flex;
  justify-content: center;
  gap: 0 1.85rem;
}

.l-footer__sns-btn {
  width: 5rem;
  height: 5rem;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  box-sizing: border-box;
  display: block;
}

.l-footer__sns-btn.--tw {
  background-image: url("../img/ico_sns_x.svg");
}

.l-footer__sns-btn.--fb {
  background-image: url("../img/ico_sns_fb.svg");
  background-size: 3.6rem;
}

.l-footer__logo {
  width: 7.9rem;
  margin: 2rem auto 0;
}

.l-footer__logo > a {
  display: block;
}

.l-footer__list {
  font-size: 1.2rem;
  margin: 1.75rem 0 1.25rem;
  display: flex;
  justify-content: center;
  gap: 0 2em;
}

.l-footer__list-item {
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 1.1666666667;
  color: #36a3a7;
}

.l-footer__list-item > a {
  text-decoration: underline;
  color: #36a3a7;
}

.l-footer__copy {
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.1666666667;
  text-align: center;
  color: #36a3a7;
}

/****	---- end ----
===================================****/
/*# sourceMappingURL=style_20260425.css.map */