@charset "UTF-8";
/* breakpoint
=============================================== */
/* フォント設定
=============================================== */
/* 可変のフォントサイズを計算
=============================================== */
/* display
=============================================== */
.display-pc {
  display: none;
}
@media screen and (max-width: 1500px) {
  .display-pc {
    display: inline-block;
  }
}

.display-tab {
  display: none;
}
@media screen and (max-width: 1000px) {
  .display-tab {
    display: inline-block;
  }
}

.display-sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .display-sp {
    display: inline-block;
  }
}

@media screen and (max-width: 1500px) {
  .hidden-pc {
    display: none;
  }
}

@media screen and (max-width: 1000px) {
  .hidden-tab {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .hidden-sp {
    display: none;
  }
}

/* style
=============================================== */
body {
  margin: 0 auto;
  max-width: 1920px;
  background-color: #FFF7F7;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #585858;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1500px) {
  body {
    font-size: 18px;
  }
}
@media screen and (max-width: 1000px) {
  body {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  body {
    font-size: 14px;
  }
}

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

.inner {
  margin-inline: auto;
  width: 100%;
  max-width: 1540px;
  padding-inline: 20px;
}
@media screen and (max-width: 800px) {
  .inner {
    padding-inline: 15px;
  }
}

.is-text-red {
  color: #FF6666;
}

.is-bold {
  font-weight: 700;
}

.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;
}

/* アニメーション
----------------------------------------------------------------------*/
.anm-shiny {
  position: relative;
  overflow: hidden;
}
.anm-shiny::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fbfbfb;
  -webkit-animation: shiny 3s ease-in-out infinite;
          animation: shiny 3s ease-in-out infinite;
}

@-webkit-keyframes shiny {
  0% {
    -webkit-transform: scale(0) rotate(90deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(90deg);
    opacity: 0.3;
  }
  81% {
    -webkit-transform: scale(4) rotate(90deg);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(50) rotate(90deg);
    opacity: 0;
  }
}

@keyframes shiny {
  0% {
    -webkit-transform: scale(0) rotate(90deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(90deg);
    opacity: 0.3;
  }
  81% {
    -webkit-transform: scale(4) rotate(90deg);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(50) rotate(90deg);
    opacity: 0;
  }
}
.anm-dokidoki {
  -webkit-animation-name: dokidoki;
          animation-name: dokidoki;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes dokidoki {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  60% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes dokidoki {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  60% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.fv {
  background-color: #FFE2E2;
}
.fv__top {
  position: relative;
}
.fv__top::after {
  position: absolute;
  content: "";
  max-width: 890px;
  width: 50%;
  height: 100%;
  background: url("../img/fv_bg.webp") no-repeat bottom right/cover, white;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1000px) {
  .fv__top::after {
    height: 50%;
    background: url("../img/fv_bg.webp") no-repeat center center/cover;
    border-radius: 0 0 60px 0;
  }
}
.fv__top-content {
  padding: 80px 0;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 120px;
}
@media screen and (max-width: 1600px) {
  .fv__top-content {
    gap: 80px;
  }
}
@media screen and (max-width: 1500px) {
  .fv__top-content {
    padding: 60px 0;
  }
}
@media screen and (max-width: 1000px) {
  .fv__top-content {
    padding: 20px 0;
    -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: 40px;
  }
}
@media screen and (max-width: 800px) {
  .fv__top-content {
    gap: 24px;
  }
}
.fv__top-content--left {
  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;
}
@media screen and (max-width: 1000px) {
  .fv__top-content--left {
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.fv__top-content--right {
  width: 50%;
}
@media screen and (max-width: 1000px) {
  .fv__top-content--right {
    width: 100%;
  }
}
.fv__top-content-lead {
  position: relative;
  display: inline-block;
  font-size: 32px;
  letter-spacing: 0.02;
}
@media screen and (max-width: 1500px) {
  .fv__top-content-lead {
    font-size: 24px;
  }
}
@media screen and (max-width: 1000px) {
  .fv__top-content-lead {
    font-size: 20px;
  }
}
@media screen and (max-width: 800px) {
  .fv__top-content-lead {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .fv__top-content-lead {
    font-size: 14px;
  }
}
.fv__top-content-lead::after {
  position: absolute;
  content: "";
  width: 1.5em;
  aspect-ratio: 1;
  background: url("../img/fv_point.webp") no-repeat center center/contain;
  top: 50%;
  right: 0;
  -webkit-transform: translate(120%, -50%);
          transform: translate(120%, -50%);
}
@media screen and (max-width: 1000px) {
  .fv__top-content-lead::after {
    width: 2em;
  }
}
.fv__top-content-title {
  margin-top: 16px;
  color: #FF6666;
  font-size: 56px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1500px) {
  .fv__top-content-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .fv__top-content-title {
    font-size: 32px;
    line-height: 1.4;
    text-align: left;
  }
}
@media screen and (max-width: 800px) {
  .fv__top-content-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .fv__top-content-title {
    font-size: 20px;
  }
}
.fv__top-content-features {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 1500px) {
  .fv__top-content-features {
    gap: 40px;
  }
}
@media screen and (max-width: 1200px) {
  .fv__top-content-features {
    gap: 32px;
  }
}
@media screen and (max-width: 1200px) {
  .fv__top-content-features {
    -ms-flex-item-align: center;
        align-self: center;
  }
}
@media screen and (max-width: 1000px) {
  .fv__top-content-features {
    gap: 24px;
  }
}
@media screen and (max-width: 800px) {
  .fv__top-content-features {
    gap: 16px;
  }
}
@media screen and (max-width: 600px) {
  .fv__top-content-features {
    gap: 10px;
  }
}
.fv__top-content-features li {
  font-size: 24px;
  width: 7.7em;
  aspect-ratio: 1;
  background-color: #FF6666;
  border: 8px solid white;
  border-radius: 24px;
  -webkit-box-shadow: 4px 4px 8px #fed6d6;
          box-shadow: 4px 4px 8px #fed6d6;
  color: white;
  position: relative;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  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;
}
@media screen and (max-width: 1500px) {
  .fv__top-content-features li {
    font-size: 18px;
    border-width: 4px;
  }
}
@media screen and (max-width: 1200px) {
  .fv__top-content-features li {
    font-size: 16px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .fv__top-content-features li {
    font-size: 14px;
    width: 7em;
    border-radius: 16px;
  }
}
.fv__top-content-features li > div {
  position: relative;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  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: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.fv__top-content-features li > div span {
  line-height: 1;
}
.fv__top-content-features li > div .is-large {
  font-size: 2em;
}
@media screen and (max-width: 1200px) {
  .fv__top-content-features li > div .is-large {
    font-size: 1.5em;
  }
}
@media screen and (max-width: 1000px) {
  .fv__top-content-features li > div .is-large {
    font-size: 1.3em;
  }
}
.fv__top-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;
  font-size: 24px;
}
@media screen and (max-width: 1500px) {
  .fv__top-achievement {
    font-size: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .fv__top-achievement {
    font-size: 18px;
  }
}
@media screen and (max-width: 1000px) {
  .fv__top-achievement {
    font-size: 16px;
  }
}
@media screen and (max-width: 800px) {
  .fv__top-achievement {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .fv__top-achievement {
    font-size: 13px;
  }
}
.fv__top-achievement-lead {
  color: white;
  text-shadow: 2px 2px 4px #ff5555;
}
.fv__top-achievement-main {
  background-color: white;
  border-radius: 16px;
  padding: 8px 32px;
  -webkit-box-shadow: 4px 4px 8px #fed6d6;
          box-shadow: 4px 4px 8px #fed6d6;
  letter-spacing: 0.1em;
}
.fv__top-achievement-main p {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #FFEB66), color-stop(90%, #FFEB66), color-stop(90%, transparent));
  background-image: linear-gradient(transparent 70%, #FFEB66 70%, #FFEB66 90%, transparent 90%);
}
.fv__top-achievement-main .is-large {
  font-size: 1.5em;
}
@media screen and (max-width: 1200px) {
  .fv__top-achievement-main .is-large {
    font-size: 1.2em;
  }
}
.fv__top-achievement-main .is-extraLarge {
  font-size: 2em;
}
@media screen and (max-width: 1200px) {
  .fv__top-achievement-main .is-extraLarge {
    font-size: 1.5em;
  }
}
.fv__bottom {
  position: relative;
  background-color: white;
  padding: 40px 0 10px;
}
.fv__bottom::before {
  position: absolute;
  content: "";
  height: 80%;
  aspect-ratio: 1;
  background: url("../img/fv_book.webp") no-repeat left center/contain;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media screen and (max-width: 1200px) {
  .fv__bottom::before {
    display: none;
  }
}
.fv__bottom::after {
  position: absolute;
  content: "";
  width: 30%;
  aspect-ratio: 1;
  background: url("../img/fv_family.webp") no-repeat bottom right/contain;
  bottom: 0;
  right: 0;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media screen and (max-width: 1200px) {
  .fv__bottom::after {
    bottom: auto;
    top: 0;
  }
}
@media screen and (max-width: 800px) {
  .fv__bottom::after {
    width: 160px;
  }
}
.fv__bottom-left {
  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: 8px;
}
@media screen and (max-width: 600px) {
  .fv__bottom-left {
    width: 100%;
  }
}
.fv__bottom-left .is-arrow {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  position: relative;
}
.fv__bottom-left .is-arrow::after {
  position: absolute;
  content: "";
  width: 1.2em;
  aspect-ratio: 1;
  background: url("../img/icon_arrow.webp") no-repeat center center/contain;
  top: 50%;
  right: 0;
  -webkit-transform: translate(120%, -50%);
          transform: translate(120%, -50%);
}
.fv__bottom-text {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (max-width: 1000px) {
  .fv__bottom-text {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.fv__bottom-text .is-large {
  font-size: 1.5em;
}
.fv__bottom-text .is-marker-yellow {
  background-color: #FFEB66;
  padding: 0.1em 0.4em;
  margin-inline: 0.4em;
  font-weight: 700;
}
.fv__bottom-text:nth-of-type(1) {
  padding-bottom: 20px;
  border-bottom: 2px solid #FFC6C6;
}
.fv__bottom-text:nth-of-type(2) {
  padding-top: 20px;
}
.fv__btnWrap {
  margin-top: 10px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.fv__limited {
  height: 23px;
}
.fv__limited img {
  width: auto;
  height: 100%;
  vertical-align: top;
}
.fv__btn {
  width: 100%;
  height: 105px;
  border-radius: 60px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#51EC6F), to(#06C755));
  background-image: linear-gradient(#51EC6F, #06C755);
  padding: 8px;
}
.fv__btn-inner {
  width: 100%;
  height: 100%;
  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-image: -webkit-gradient(linear, left top, left bottom, from(#06C755), to(#51EC6F));
  background-image: linear-gradient(#06C755, #51EC6F);
  border: 4px solid white;
  border-radius: 120px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.fv__btn-inner:hover {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#019E1C), to(#19DA30));
  background-image: linear-gradient(#019E1C, #19DA30);
  background-blend-mode: multiply;
}
.fv__btn-text {
  position: relative;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1500px) {
  .fv__btn-text {
    font-size: 24px;
  }
}
@media screen and (max-width: 1200px) {
  .fv__btn-text {
    font-size: 20px;
  }
}
.fv__btn-text::after {
  position: absolute;
  content: "";
  width: 1.2em;
  aspect-ratio: 1;
  background: url("../img/icon_line.webp") no-repeat center center/contain;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-120%, -50%);
          transform: translate(-120%, -50%);
}
@media screen and (max-width: 1000px) {
  .fv__btn-text::after {
    top: 5%;
    left: 0;
    -webkit-transform: none;
            transform: none;
  }
}
.fv__btn-note {
  font-size: 16px;
}
@media screen and (max-width: 1500px) {
  .fv__btn-note {
    font-size: 14px;
  }
}

.worries {
  padding: 80px 0;
  background-color: #FFF7F7;
}
@media screen and (max-width: 800px) {
  .worries {
    padding: 40px 0;
  }
}
.worries__title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1500px) {
  .worries__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 1000px) {
  .worries__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .worries__title {
    font-size: 20px;
  }
}
.worries__title .is-underline {
  position: relative;
  display: inline-block;
}
.worries__title .is-underline::before {
  position: absolute;
  content: "";
  width: 0;
  height: 4px;
  background-color: #585858;
  bottom: 0;
  left: 0;
  -webkit-transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
}
.worries__title .is-underline.is-appear::before {
  width: 100%;
}
.worries__list {
  margin-top: 80px;
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
}
@media screen and (max-width: 800px) {
  .worries__list {
    margin-top: 40px;
    padding-bottom: 150px;
  }
}
.worries__list::after {
  position: absolute;
  content: "";
  width: 40%;
  aspect-ratio: 1;
  background: url("../img/worries_img01.webp") no-repeat left bottom/contain;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 1500px) {
  .worries__list::after {
    width: 30%;
    left: 10%;
  }
}
@media screen and (max-width: 1200px) {
  .worries__list::after {
    width: 30%;
    left: 0;
  }
}
@media screen and (max-width: 800px) {
  .worries__list::after {
    width: 180px;
  }
}
.worries__item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.1em 3em;
  background-color: white;
  border-radius: 16px;
  -webkit-box-shadow: 4px 4px 8px #fed6d6;
          box-shadow: 4px 4px 8px #fed6d6;
  position: relative;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}
.worries__item:nth-of-type(1) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.worries__item:nth-of-type(2) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.worries__item:nth-of-type(3) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.worries__item:nth-of-type(4) {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
.is-appear .worries__item {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (max-width: 800px) {
  .worries__item {
    width: 100%;
    padding: 1.1em 2em;
    margin-inline: 0 !important;
    margin-bottom: 20px !important;
  }
}
@media screen and (max-width: 600px) {
  .worries__item {
    font-size: 16px;
    padding: 1em 1.5em;
  }
}
.worries__item::before {
  position: absolute;
  content: "";
  width: 1.9em;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: white;
  -webkit-box-shadow: 4px 4px 8px #fed6d6;
          box-shadow: 4px 4px 8px #fed6d6;
}
@media screen and (max-width: 800px) {
  .worries__item::before {
    display: none;
  }
}
.worries__item::after {
  position: absolute;
  content: "";
  width: 1.2em;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: white;
  -webkit-box-shadow: 4px 4px 8px #fed6d6;
          box-shadow: 4px 4px 8px #fed6d6;
}
@media screen and (max-width: 800px) {
  .worries__item::after {
    display: none;
  }
}
.worries__item:nth-of-type(1) {
  margin-bottom: 40px;
  margin-inline: auto 150px;
}
.worries__item:nth-of-type(1)::before {
  bottom: 0;
  left: 0;
  -webkit-transform: translate(-140%, 50%);
          transform: translate(-140%, 50%);
}
.worries__item:nth-of-type(1)::after {
  bottom: 0;
  left: 0;
  -webkit-transform: translate(-350%, 150%);
          transform: translate(-350%, 150%);
}
.worries__item:nth-of-type(2) {
  margin-bottom: 30px;
  margin-inline: auto 0;
}
.worries__item:nth-of-type(2)::before {
  top: 50%;
  left: 0;
  -webkit-transform: translate(-140%, -50%);
          transform: translate(-140%, -50%);
}
.worries__item:nth-of-type(2)::after {
  top: 50%;
  left: 0;
  -webkit-transform: translate(-350%, -50%);
          transform: translate(-350%, -50%);
}
.worries__item:nth-of-type(3) {
  margin-bottom: 30px;
  margin-inline: auto 150px;
}
.worries__item:nth-of-type(3)::before {
  top: 50%;
  left: 0;
  -webkit-transform: translate(-140%, -50%);
          transform: translate(-140%, -50%);
}
.worries__item:nth-of-type(3)::after {
  top: 50%;
  left: 0;
  -webkit-transform: translate(-350%, -80%);
          transform: translate(-350%, -80%);
}
.worries__item:nth-of-type(4) {
  margin-inline: auto 0;
}
.worries__item:nth-of-type(4)::before {
  top: 50%;
  left: 0;
  -webkit-transform: translate(-140%, -50%);
          transform: translate(-140%, -50%);
}
@media screen and (max-width: 800px) {
  .worries__item:nth-of-type(4)::before {
    display: block;
    top: 100%;
    left: 60%;
    -webkit-transform: translate(-50%, 50%);
            transform: translate(-50%, 50%);
  }
}
.worries__item:nth-of-type(4)::after {
  top: 50%;
  left: 0;
  -webkit-transform: translate(-350%, -120%);
          transform: translate(-350%, -120%);
}
@media screen and (max-width: 800px) {
  .worries__item:nth-of-type(4)::after {
    display: block;
    top: 100%;
    left: 60%;
    -webkit-transform: translate(-200%, 250%);
            transform: translate(-200%, 250%);
  }
}
.worries__solution {
  margin-top: 90px;
  position: relative;
}
.worries__solution::before {
  position: absolute;
  content: "";
  width: 30%;
  min-width: 200px;
  aspect-ratio: 1;
  background: url("../img/worries_img02.webp") no-repeat top right/contain;
  top: 0;
  right: 0;
}
@media screen and (max-width: 800px) {
  .worries__solution::before {
    background-position: bottom right;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
.worries__solution__inner {
  position: relative;
  z-index: 2;
}
.worries__solution p {
  font-size: 32px;
  letter-spacing: 0.08em;
  opacity: 0;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.worries__solution p.is-appear {
  opacity: 1;
}
@media screen and (max-width: 1500px) {
  .worries__solution p {
    font-size: 24px;
  }
}
@media screen and (max-width: 1000px) {
  .worries__solution p {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .worries__solution p {
    font-size: 14px;
  }
}
.worries__solution p .is-large {
  font-size: 1.25em;
}
.worries__solution p .is-marker-yellow {
  background-color: #FFEB66;
  padding: 0.2em 0.5em;
  margin-left: 0.2em;
}
.worries__solution p + p {
  margin-top: 1.5em;
}

.solution {
  padding: 80px 0;
  background-color: #FFE2E2;
  border-radius: 0 0 0 160px;
  position: relative;
}
.solution::after {
  position: absolute;
  z-index: 0;
  content: "";
  width: 30%;
  aspect-ratio: 1;
  background: url("../img/solution_family.webp") no-repeat left top/contain;
  top: 50px;
  left: 0;
}
@media screen and (max-width: 800px) {
  .solution::after {
    top: -20px;
  }
}
@media screen and (max-width: 1400px) {
  .solution {
    padding: 40px 0 80px;
    border-radius: 0 0 0 80px;
  }
}
@media screen and (max-width: 800px) {
  .solution {
    padding: 80px 0 80px;
    border-radius: 0 0 0 50px;
  }
}
.solution__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: 24px;
  position: relative;
  z-index: 2;
}
.solution__title-lead {
  text-align: center;
}
.solution__title-img {
  width: 80%;
  max-width: 880px;
  opacity: 0;
  position: relative;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.solution__title-img.is-appear {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (max-width: 800px) {
  .solution__title-img {
    width: 100%;
  }
}
.solution__content {
  margin-top: 64px;
  background-color: white;
  border-radius: 24px;
  padding: 40px;
}
@media screen and (max-width: 800px) {
  .solution__content {
    margin-top: 20px;
    padding: 20px;
    border-radius: 15px;
  }
}
.solution__content-lead {
  text-align: center;
}
.solution__content-lead.is-marker-yellow {
  margin-top: 16px;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #FFEB66;
  padding: 0.1em 4.5em;
}
.solution__content-lead.is-marker-yellow .is-large {
  font-size: 1.7em;
}
.solution__list {
  margin-top: 40px;
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px 56px;
}
@media screen and (max-width: 1500px) {
  .solution__list {
    gap: 20px;
  }
}
@media screen and (max-width: 800px) {
  .solution__list {
    margin-top: 20px;
  }
}
.solution__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  padding: 20px;
  gap: 28px;
  border-radius: 24px;
  border: 4px solid #FF6666;
  justify-items: center;
  position: relative;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.solution__item.is-appear {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 800px) {
  .solution__item {
    padding: 16px;
    border: 2px solid #FF6666;
    gap: 16px;
  }
}
.solution__item-label {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 94px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#FFD13B), to(#FF6666));
  background-image: linear-gradient(#FFD13B, #FF6666);
  color: white;
  justify-self: center;
  font-size: 16px;
}
@media screen and (max-width: 800px) {
  .solution__item-label {
    width: 80px;
  }
}
@media screen and (max-width: 600px) {
  .solution__item-label {
    width: 60px;
    font-size: 14px;
  }
}
.solution__item-label .is-large {
  font-size: 2em;
  line-height: 1.2;
}
@media screen and (max-width: 800px) {
  .solution__item-label .is-large {
    font-size: 1.6em;
  }
}
@media screen and (max-width: 600px) {
  .solution__item-label .is-large {
    font-size: 1.4em;
  }
}
.solution__item-title {
  color: #FF6666;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 600px) {
  .solution__item-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 800px) {
  .solution__item img {
    width: 80%;
  }
}
@media screen and (max-width: 600px) {
  .solution__item img {
    width: 60%;
  }
}
.solution__item-text {
  font-size: 20px;
}
@media screen and (max-width: 1500px) {
  .solution__item-text {
    font-size: 18px;
  }
}
@media screen and (max-width: 1200px) {
  .solution__item-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 1000px) {
  .solution__item-text {
    font-size: 14px;
  }
}

@-webkit-keyframes floatY {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  20% {
    -webkit-transform: translateY(16px);
            transform: translateY(16px);
  }
  40% {
    -webkit-transform: translateY(-24px);
            transform: translateY(-24px);
  }
  60% {
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
  }
  80% {
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes floatY {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  20% {
    -webkit-transform: translateY(16px);
            transform: translateY(16px);
  }
  40% {
    -webkit-transform: translateY(-24px);
            transform: translateY(-24px);
  }
  60% {
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
  }
  80% {
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.dream {
  padding: 80px 0;
  background-color: #FFF7F7;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .dream {
    padding: 40px 0;
  }
}
.dream__inner {
  max-width: 1200px;
}
.dream__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;
}
.dream__title-lead {
  text-align: center;
}
.dream__title-img {
  margin-top: 28px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 32px;
  position: relative;
}
@media screen and (max-width: 800px) {
  .dream__title-img {
    margin-top: 16px;
    width: 100%;
    height: auto;
  }
}
.dream__title-img::after {
  position: absolute;
  content: "";
  width: 60px;
  aspect-ratio: 1;
  background: url("../img/dream_kirakira.webp") no-repeat center center/contain;
  top: 50%;
  right: 0;
  -webkit-transform: translate(120%, -50%);
          transform: translate(120%, -50%);
}
@media screen and (max-width: 800px) {
  .dream__title-img::after {
    width: 40px;
    top: 0;
    -webkit-transform: translate(20%, -100%);
            transform: translate(20%, -100%);
  }
}
.dream__title-img img {
  height: 100%;
  width: auto;
}
@media screen and (max-width: 800px) {
  .dream__title-img img {
    width: 100%;
    height: auto;
  }
}
.dream__text {
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .dream__text {
    margin-top: 20px;
  }
}
.dream__achievement {
  margin-top: 64px;
}
@media screen and (max-width: 800px) {
  .dream__achievement {
    margin-top: 20px;
  }
}
.dream__achievement-catch {
  position: relative;
  border: 8px solid #FF6666;
  -webkit-box-shadow: 4px 4px 8px #fed6d6, inset 4px 4px 8px #fed6d6;
          box-shadow: 4px 4px 8px #fed6d6, inset 4px 4px 8px #fed6d6;
  border-radius: 24px;
  background-color: white;
  font-size: 32px;
  padding: 1.2em;
}
@media screen and (max-width: 1000px) {
  .dream__achievement-catch {
    font-size: 24px;
    padding: 1em;
    border-radius: 15px;
    border: 4px solid #FF6666;
  }
}
@media screen and (max-width: 800px) {
  .dream__achievement-catch {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .dream__achievement-catch {
    font-size: 18px;
  }
}
.dream__achievement-catch::after {
  position: absolute;
  content: "";
  height: 260%;
  aspect-ratio: 1;
  background: url("../img/dream_family.webp") no-repeat bottom right/contain;
  bottom: 0;
  right: 0;
  -webkit-transform: translate(35%, 65%);
          transform: translate(35%, 65%);
}
@media screen and (max-width: 800px) {
  .dream__achievement-catch::after {
    height: 200%;
    -webkit-transform: translate(30%, 50%);
            transform: translate(30%, 50%);
  }
}
@media screen and (max-width: 600px) {
  .dream__achievement-catch::after {
    height: 90%;
    -webkit-transform: translate(25%, 40%);
            transform: translate(25%, 40%);
  }
}
.dream__achievement-catch p {
  color: #FF6666;
  font-weight: 700;
  text-align: center;
}
.dream__achievement-list {
  margin-top: 64px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media screen and (max-width: 1000px) {
  .dream__achievement-list {
    gap: 20px;
  }
}
@media screen and (max-width: 800px) {
  .dream__achievement-list {
    margin-top: 40px;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 10px;
  }
}
.dream__achievement-item {
  aspect-ratio: 1;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#FFD13B), to(#FF6666));
  background-image: linear-gradient(#FFD13B, #FF6666);
  border-radius: 50%;
  border: 8px solid white;
  -webkit-box-shadow: 4px 4px 8px #fed6d6;
          box-shadow: 4px 4px 8px #fed6d6;
  position: relative;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.dream__achievement-item.is-appear {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 1000px) {
  .dream__achievement-item {
    border: 4px solid white;
  }
}
@media screen and (max-width: 800px) {
  .dream__achievement-item {
    width: 160px;
  }
}
.dream__achievement-item .is-large {
  font-size: 1.2em;
}

.voice {
  background-color: #FFF7F7;
  overflow: hidden;
}
.voice__inner {
  position: relative;
  z-index: 0;
}
.voice__inner::after {
  position: absolute;
  z-index: -1;
  content: "";
  width: 100vw;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#FED6D6), to(transparent));
  background-image: linear-gradient(to bottom, #FED6D6, transparent);
  border-radius: 160px 0 0 0;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1400px) {
  .voice__inner::after {
    border-radius: 80px 0 0 0;
  }
}
@media screen and (max-width: 800px) {
  .voice__inner::after {
    border-radius: 50px 0 0 0;
  }
}
.voice__inner-narrow {
  max-width: 1200px;
  padding: 80px 0;
}
@media screen and (max-width: 800px) {
  .voice__inner-narrow {
    padding: 40px 0;
  }
}
.voice__title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1500px) {
  .voice__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 1000px) {
  .voice__title {
    font-size: 24px;
  }
}
.voice__title .is-underline {
  position: relative;
  display: inline-block;
}
.voice__title .is-underline::before {
  position: absolute;
  content: "";
  width: 0;
  height: 4px;
  background-color: #FF6666;
  bottom: 0;
  left: 0;
  -webkit-transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
}
.voice__title .is-underline.is-appear::before {
  width: 100%;
}
.voice__list {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
@media screen and (max-width: 800px) {
  .voice__list {
    margin-top: 40px;
    gap: 20px;
  }
}
.voice__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  background-color: white;
  -webkit-box-shadow: 4px 4px 8px #fed6d6;
          box-shadow: 4px 4px 8px #fed6d6;
  opacity: 0;
  position: relative;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.voice__item.is-appear {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.voice__item-img {
  width: 100%;
  height: 260px;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .voice__item-img {
    height: 200px;
  }
}
.voice__item-text {
  padding: 16px 20px;
}
.voice__item-name {
  font-size: 16px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 600px) {
  .voice__item-name {
    font-size: 14px;
  }
}
.voice__item-title {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 32px;
  font-weight: 800;
  color: #FF6666;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1000px) {
  .voice__item-title {
    font-size: 24px;
  }
}
.voice__item-title .is-large {
  font-size: 1.2em;
}
.voice__item-title::after {
  position: absolute;
  content: "";
  width: 1.5em;
  aspect-ratio: 1;
  background: url("../img/icon_crup.webp") no-repeat center center/contain;
  top: 50%;
  right: 0;
  -webkit-transform: translate(120%, -50%);
          transform: translate(120%, -50%);
}
.voice__item-comment {
  margin-top: 16px;
  font-size: 16px;
  letter-spacing: 0.08em;
}

.point {
  padding: 80px 0;
  background-color: #FFF7F7;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .point {
    padding: 80px 0 200px;
  }
}
@media screen and (max-width: 800px) {
  .point {
    padding-top: 40px;
  }
}
.point::after {
  position: absolute;
  content: "";
  width: 300px;
  aspect-ratio: 1;
  background: url("../img/point_family.webp") no-repeat left bottom/contain;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 1400px) {
  .point::after {
    width: 230px;
  }
}
.point__lead {
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.08em;
}
.point__list {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
@media screen and (max-width: 1400px) {
  .point__list {
    margin-top: 60px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px 20px;
  }
}
.point__item {
  border: 8px solid #FF6666;
  border-radius: 28px;
  background-color: white;
  height: 300px;
  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;
  position: relative;
  z-index: 0;
  -webkit-box-shadow: 4px 4px 8px #fed6d6;
          box-shadow: 4px 4px 8px #fed6d6;
}
@media screen and (max-width: 1400px) {
  .point__item {
    height: 200px;
    border: 4px solid #FF6666;
  }
}
@media screen and (max-width: 1000px) {
  .point__item {
    height: 160px;
  }
}
@media screen and (max-width: 800px) {
  .point__item {
    height: 140px;
  }
}
.point__item::after {
  position: absolute;
  z-index: -1;
  content: "";
  width: 130px;
  aspect-ratio: 1;
  background-image: conic-gradient(from 270deg, #FF6666 0deg 180deg, transparent 180deg 360deg);
  border-radius: 50%;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 1400px) {
  .point__item::after {
    width: 108px;
  }
}
@media screen and (max-width: 1000px) {
  .point__item::after {
    width: 88px;
  }
}
@media screen and (max-width: 800px) {
  .point__item::after {
    width: 78px;
  }
}
.point__item-label {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 114px;
  aspect-ratio: 1;
  color: #FF6666;
  font-size: 16px;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: white;
  border-radius: 50%;
}
@media screen and (max-width: 1400px) {
  .point__item-label {
    width: 100px;
  }
}
@media screen and (max-width: 1000px) {
  .point__item-label {
    font-size: 14px;
    width: 80px;
  }
}
@media screen and (max-width: 800px) {
  .point__item-label {
    fzs: 12px;
    width: 70px;
  }
}
.point__item-label .is-large {
  font-size: 2.4em;
  line-height: 1.2;
}
@media screen and (max-width: 1400px) {
  .point__item-label .is-large {
    font-size: 2em;
  }
}
@media screen and (max-width: 1000px) {
  .point__item-label .is-large {
    font-size: 1.6em;
  }
}
@media screen and (max-width: 800px) {
  .point__item-label .is-large {
    font-size: 1.4em;
  }
}
.point__item-text {
  color: #FF6666;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.point__item-text.is-appear {
  opacity: 1;
}
@media screen and (max-width: 1400px) {
  .point__item-text {
    font-size: 32px;
  }
}
@media screen and (max-width: 1000px) {
  .point__item-text {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .point__item-text {
    font-size: 20px;
  }
}
.point__text {
  margin-top: 40px;
  text-align: center;
}
.point__message {
  margin-top: 40px;
  width: 100%;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.1em;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #FFEB66));
  background-image: linear-gradient(transparent 70%, #FFEB66 70%);
  background-size: 0 100%;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  background-repeat: no-repeat;
}
.point__message.is-appear {
  background-size: 100% 100%;
}
@media screen and (max-width: 1600px) {
  .point__message {
    font-size: 40px;
  }
}
@media screen and (max-width: 1400px) {
  .point__message {
    font-size: 32px;
  }
}
@media screen and (max-width: 1200px) {
  .point__message {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .point__message {
    margin-top: 20px;
    font-size: 17px;
  }
}
.point__message .is-extraLarge {
  font-size: 2.2em;
  font-weight: 800;
}
@media screen and (max-width: 1400px) {
  .point__message .is-extraLarge {
    font-size: 1.8em;
  }
}

.contents {
  padding: 0 0 80px;
  background-color: #FFF7F7;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .contents {
    padding: 0 0 40px;
  }
}
.contents__inner {
  position: relative;
  z-index: 0;
}
.contents__inner::after {
  position: absolute;
  z-index: -1;
  content: "";
  width: 100vw;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#FED6D6), to(transparent));
  background-image: linear-gradient(to bottom, #FED6D6, transparent);
  border-radius: 0 160px 0 0;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1400px) {
  .contents__inner::after {
    border-radius: 0 80px 0 0;
  }
}
@media screen and (max-width: 800px) {
  .contents__inner::after {
    border-radius: 0 50px 0 0;
  }
}
.contents__inner-narrow {
  max-width: 1200px;
  padding: 80px 0;
}
@media screen and (max-width: 800px) {
  .contents__inner-narrow {
    padding: 40px 0;
  }
}
.contents__title {
  position: relative;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 40px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1500px) {
  .contents__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 1000px) {
  .contents__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .contents__title {
    font-size: 20px;
  }
}
.contents__title::before {
  position: absolute;
  content: "";
  width: 1.5em;
  aspect-ratio: 1;
  background: url("../img/icon_finger.webp") no-repeat center center/contain;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-120%, -50%);
          transform: translate(-120%, -50%);
}
.contents__title::after {
  position: absolute;
  content: "";
  width: 1.5em;
  aspect-ratio: 1;
  background: url("../img/icon_finger.webp") no-repeat center center/contain;
  top: 50%;
  right: 0;
  -webkit-transform: translate(120%, -50%) scale(-1, 1);
          transform: translate(120%, -50%) scale(-1, 1);
}
.contents__list {
  margin-top: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  position: relative;
}
@media screen and (max-width: 800px) {
  .contents__list {
    margin-top: 32px;
    gap: 8px;
  }
}
@media screen and (max-width: 600px) {
  .contents__list {
    padding-bottom: 250px;
  }
}
.contents__list::after {
  position: absolute;
  content: "";
  width: 30%;
  aspect-ratio: 1;
  background: url("../img/contents_book.webp") no-repeat right bottom/contain;
  bottom: 0;
  right: 0;
  -webkit-transform: translate(20%, 20%);
          transform: translate(20%, 20%);
}
@media screen and (max-width: 800px) {
  .contents__list::after {
    width: 20%;
    -webkit-transform: translate(10%, 40%);
            transform: translate(10%, 40%);
  }
}
@media screen and (max-width: 600px) {
  .contents__list::after {
    width: 200px;
    background-position: center center;
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
.contents__item {
  background-color: white;
  padding: 15px 20px;
  border-radius: 16px;
  -webkit-box-shadow: 8px 8px 8px #ff6666;
          box-shadow: 8px 8px 8px #ff6666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  opacity: 0;
  position: relative;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.contents__item.is-appear {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (max-width: 800px) {
  .contents__item {
    padding: 12px 16px;
    gap: 16px;
  }
}
.contents__item-label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 72px;
  aspect-ratio: 1;
  background-color: #FF6666;
  border-radius: 50%;
  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;
  color: white;
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 1500px) {
  .contents__item-label {
    width: 60px;
    font-size: 24px;
  }
}
@media screen and (max-width: 1000px) {
  .contents__item-label {
    width: 48px;
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .contents__item-label {
    width: 40px;
    font-size: 18px;
  }
}
.contents__item-text {
  font-size: 32px;
}
@media screen and (max-width: 1500px) {
  .contents__item-text {
    font-size: 24px;
  }
}
@media screen and (max-width: 1000px) {
  .contents__item-text {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .contents__item-text {
    font-size: 18px;
  }
}
.contents__btnWrap {
  margin-top: 40px;
  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: 16px;
}
.contents__limited {
  height: 30px;
}
.contents__limited img {
  width: auto;
  height: 100%;
}
.contents__btn {
  width: 100%;
  max-width: 1200px;
  height: 120px;
  border-radius: 60px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#51EC6F), to(#06C755));
  background-image: linear-gradient(#51EC6F, #06C755);
  padding: 8px;
}
.contents__btn-inner {
  width: 100%;
  height: 100%;
  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-image: -webkit-gradient(linear, left top, left bottom, from(#06C755), to(#51EC6F));
  background-image: linear-gradient(#06C755, #51EC6F);
  border: 4px solid white;
  border-radius: 120px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.contents__btn-inner:hover {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#019E1C), to(#19DA30));
  background-image: linear-gradient(#019E1C, #19DA30);
  background-blend-mode: multiply;
}
.contents__btn-text {
  position: relative;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1000px) {
  .contents__btn-text {
    font-size: 32px;
  }
}
@media screen and (max-width: 800px) {
  .contents__btn-text {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .contents__btn-text {
    font-size: 20px;
  }
}
.contents__btn-text::after {
  position: absolute;
  content: "";
  width: 1.2em;
  aspect-ratio: 1;
  background: url("../img/icon_line.webp") no-repeat center center/contain;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-120%, -50%);
          transform: translate(-120%, -50%);
}
@media screen and (max-width: 600px) {
  .contents__btn-text::after {
    top: 5%;
    left: 0;
    -webkit-transform: none;
            transform: none;
  }
}
.contents__btn-note {
  font-size: 16px;
}
@media screen and (max-width: 1500px) {
  .contents__btn-note {
    font-size: 14px;
  }
}

.target {
  background-color: #FFF7F7;
  padding-bottom: 120px;
}
@media screen and (max-width: 800px) {
  .target {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 600px) {
  .target {
    padding-bottom: 40px;
  }
}
.target__title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1500px) {
  .target__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 1000px) {
  .target__title {
    font-size: 24px;
  }
}
.target__title .is-underline {
  position: relative;
  display: inline-block;
}
.target__title .is-underline::before {
  position: absolute;
  content: "";
  width: 0;
  height: 4px;
  background-color: #FF6666;
  bottom: 0;
  left: 0;
  -webkit-transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
}
.target__title .is-underline.is-appear::before {
  width: 100%;
}
.target__list {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
@media screen and (max-width: 1000px) {
  .target__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 800px) {
  .target__list {
    margin-top: 40px;
    gap: 20px;
  }
}
@media screen and (max-width: 600px) {
  .target__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.target__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 24px;
  border-radius: 24px;
  overflow: hidden;
  background-color: white;
  -webkit-box-shadow: 4px 4px 8px #fed6d6;
          box-shadow: 4px 4px 8px #fed6d6;
  justify-items: center;
  padding: 20px;
  position: relative;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.target__item.is-appear {
  opacity: 1;
}
.target__item:nth-child(even) {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
@media screen and (max-width: 600px) {
  .target__item:nth-child(even) {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.target__item h3 {
  text-align: center;
}
.target__item img {
  width: auto;
  height: 240px;
}
@media screen and (max-width: 1000px) {
  .target__item img {
    height: 180px;
  }
}
@media screen and (max-width: 800px) {
  .target__item img {
    height: 130px;
  }
}
@media screen and (max-width: 600px) {
  .target__item img {
    height: 100px;
  }
}

.future {
  padding: 80px 0;
  background-color: #FFE2E2;
  border-radius: 0 0 0 160px;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .future {
    padding: 80px 0;
    border-radius: 0 0 0 80px;
  }
}
@media screen and (max-width: 800px) {
  .future {
    padding: 40px 0 80px;
    border-radius: 0 0 0 50px;
  }
}
.future__title {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.08em;
  position: relative;
}
@media screen and (max-width: 1500px) {
  .future__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 1000px) {
  .future__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .future__title {
    font-size: 20px;
  }
}
.future__title::before {
  position: absolute;
  content: "";
  width: 1.5em;
  aspect-ratio: 1;
  background: url("../img/icon_finger.webp") no-repeat center center/contain;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-120%, -50%);
          transform: translate(-120%, -50%);
}
.future__title::after {
  position: absolute;
  content: "";
  width: 1.5em;
  aspect-ratio: 1;
  background: url("../img/icon_finger.webp") no-repeat center center/contain;
  top: 50%;
  right: 0;
  -webkit-transform: translate(120%, -50%) scale(-1, 1);
          transform: translate(120%, -50%) scale(-1, 1);
}
.future .swiper-wrapper {
  margin-top: 40px;
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}
.future .swiper-slide {
  height: auto;
  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;
}
.future .swiper-slide .swiper-slide-item {
  height: 100%;
}
.future .swiper-slide-inner {
  position: relative;
  -webkit-animation: floatY 10s ease-in-out infinite;
          animation: floatY 10s ease-in-out infinite;
}
.future .swiper-slide:nth-child(3n) .swiper-slide-inner {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.future .swiper-slide:nth-child(3n+1) .swiper-slide-inner {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.future .swiper-slide:nth-child(3n+1) .swiper-slide-inner {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.future__list {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 800px) {
  .future__list {
    margin-top: 40px;
  }
}
.future__item {
  background-color: white;
  border-radius: 16px;
  padding: 30px 30px 30px 86px;
  font-size: 32px;
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.future__item.is-appear {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (max-width: 1500px) {
  .future__item {
    font-size: 24px;
    padding: 20px 20px 20px 60px;
  }
}
@media screen and (max-width: 1000px) {
  .future__item {
    font-size: 20px;
    padding: 16px 16px 16px 40px;
    border-radius: 12px;
  }
}
@media screen and (max-width: 600px) {
  .future__item {
    font-size: 16px;
    padding: 12px 12px 12px 40px;
    border-radius: 10px;
  }
}
.future__item::before {
  position: absolute;
  content: "";
  width: 1.2em;
  aspect-ratio: 1;
  background: url("../img/icon_check.webp") no-repeat center center/contain;
  top: 50%;
  left: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1500px) {
  .future__item::before {
    width: 1em;
    left: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .future__item::before {
    left: 16px;
  }
}
@media screen and (max-width: 600px) {
  .future__item::before {
    left: 12px;
  }
}
.future__message {
  margin-top: 40px;
  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;
}
@media screen and (max-width: 800px) {
  .future__message {
    margin-top: 20px;
  }
}
.future__message-lead {
  font-size: 32px;
  text-align: center;
}
@media screen and (max-width: 1500px) {
  .future__message-lead {
    font-size: 24px;
  }
}
@media screen and (max-width: 1000px) {
  .future__message-lead {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .future__message-lead {
    font-size: 16px;
  }
}
.future__message-main {
  margin-top: 24px;
  width: auto;
  height: 72px;
}
@media screen and (max-width: 1400px) {
  .future__message-main {
    height: 50px;
  }
}
@media screen and (max-width: 800px) {
  .future__message-main {
    margin-top: 16px;
    width: 100%;
    height: auto;
  }
}
.future__btnWrap {
  margin-top: 40px;
  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: 16px;
}
.future__limited {
  height: 30px;
}
.future__limited img {
  width: auto;
  height: 100%;
}
.future__btn {
  width: 100%;
  max-width: 1200px;
  height: 120px;
  border-radius: 60px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#51EC6F), to(#06C755));
  background-image: linear-gradient(#51EC6F, #06C755);
  padding: 8px;
}
.future__btn-inner {
  width: 100%;
  height: 100%;
  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-image: -webkit-gradient(linear, left top, left bottom, from(#06C755), to(#51EC6F));
  background-image: linear-gradient(#06C755, #51EC6F);
  border: 4px solid white;
  border-radius: 120px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.future__btn-inner:hover {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#019E1C), to(#19DA30));
  background-image: linear-gradient(#019E1C, #19DA30);
  background-blend-mode: multiply;
}
.future__btn-text {
  position: relative;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1000px) {
  .future__btn-text {
    font-size: 32px;
  }
}
@media screen and (max-width: 800px) {
  .future__btn-text {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .future__btn-text {
    font-size: 20px;
  }
}
.future__btn-text::after {
  position: absolute;
  content: "";
  width: 1.2em;
  aspect-ratio: 1;
  background: url("../img/icon_line.webp") no-repeat center center/contain;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-120%, -50%);
          transform: translate(-120%, -50%);
}
@media screen and (max-width: 600px) {
  .future__btn-text::after {
    top: 5%;
    left: 0;
    -webkit-transform: none;
            transform: none;
  }
}
.future__btn-note {
  font-size: 16px;
}
@media screen and (max-width: 1500px) {
  .future__btn-note {
    font-size: 14px;
  }
}

.profile {
  background-color: #FFF7F7;
  padding: 80px 0;
}
@media screen and (max-width: 800px) {
  .profile {
    padding: 40px 0;
  }
}
.profile__inner {
  max-width: 1200px;
}
.profile__content {
  background-color: white;
  border-radius: 40px;
  padding: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  -webkit-box-shadow: 4px 4px 8px #fed6d6;
          box-shadow: 4px 4px 8px #fed6d6;
}
@media screen and (max-width: 1200px) {
  .profile__content {
    padding: 40px;
  }
}
@media screen and (max-width: 800px) {
  .profile__content {
    padding: 40px;
    border-radius: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
@media screen and (max-width: 600px) {
  .profile__content {
    padding: 20px;
  }
}
.profile__content img {
  width: 45%;
}
@media screen and (max-width: 1000px) {
  .profile__content img {
    width: 30%;
  }
}
@media screen and (max-width: 600px) {
  .profile__content img {
    width: 100%;
  }
}
.profile__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.profile__name {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1000px) {
  .profile__name {
    font-size: 20px;
  }
}
.profile p {
  margin-top: 24px;
  font-size: 16px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 800px) {
  .profile p {
    margin-top: 12px;
  }
}
@media screen and (max-width: 600px) {
  .profile p {
    font-size: 16px;
  }
}

.footer {
  background-color: #FFE2E2;
  width: 100%;
  height: 80px;
  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: 40px;
}
.footer a {
  font-size: 16px;
}/*# sourceMappingURL=style.css.map */