/* =============================================
幼児向けコース　ランディングページ：共通クラス
============================================= */

.preschool {
  --preschool-black: #292929;
  --preschool-blue: #23bee6;
  --preschool-light-blue: #19b4f8;
  --preschool-deep-blue: #0096bd;
  --preschool-bg-blue: #e0f2f7;
  --preschool-pink: #ed5584;
  --preschool-white: #fff;
  --preschool-yellow: #f7fddc;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--preschool-black);
}

.l-preschool-inner {
  max-width: calc(1200px + 30px * 2);
  width: 100%;
  padding-inline: 30px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .l-preschool-inner {
    padding-inline: 15px;
    max-width: 600px;
  }
}

.l-preschool-narrow-inner {
  max-width: calc(900px + 30px * 2);
  width: 100%;
  padding-inline: 30px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .l-preschool-narrow-inner {
    padding-inline: 15px;
    max-width: 600px;
  }
}

/* モバイル表示 */
.u-mobile {
  display: none;
}

@media (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}

/* デスクトップ表示 */
.u-desktop {
  display: block;
}

@media (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

/* =============================================
幼児向けコース　ランディングページ：共通パーツ
============================================= */

/* セクションタイトル */
.preschool-section-title {
  font-size: 42px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  color: var(--preschool-deep-blue);
  text-shadow: 0px 4px 4px var(--preschool-white);
  line-height: 1.5;
  letter-spacing: 0.04em;
  position: relative;
  display: inline-block;
}

.preschool-section-title::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  width: 192px;
  height: 74px;
  top: 60%;
  transform: translateY(-50%);
  left: -240px;
  z-index: 1;
}

.preschool-section-title::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  width: 192px;
  height: 74px;
  top: 60%;
  transform: translateY(-50%);
  right: -240px;
  z-index: 1;
}

.preschool-section-title--lines::before,
.preschool-section-title--lines::after {
  top: 30%;
}

.preschool-section-title--flag1::before {
  background-image: url(../images/preschool/preschool-flag1-left.webp);
}

.preschool-section-title--flag1::after {
  background-image: url(../images/preschool/preschool-flag1-right.webp);
}

.preschool-section-title--flag2::before {
  background-image: url(../images/preschool/preschool-flag2-left.webp);
}

.preschool-section-title--flag2::after {
  background-image: url(../images/preschool/preschool-flag2-right.webp);
}

@media (max-width: 767px) {
  .preschool-section-title {
    font-size: 24px;
    display: block;
  }

  .preschool-section-title::before {
    width: 101px;
    height: 37px;
    left: calc(50% - 155px);
    top: -22px;
  }

  .preschool-section-title::after {
    width: 101px;
    height: 37px;
    right: calc(50% - 155px);
    top: -22px;
  }
}

/* ボタン */
.preschool-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fa7756;
  border-radius: 100vh;
  box-shadow: 0px 0px 10px #ffb43b;
  color: var(--preschool-white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 17.5px 41.5px 17.5px 22.5px;
  position: relative;
  transition: opacity 0.3s ease-in-out;
}

.preschool-button::after {
  content: "";
  position: absolute;
  background-image: url(../images/preschool/preschool-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  height: 16px;
  top: 54%;
  transform: translateY(-50%);
  right: 22.5px;
  transition: transform 0.3s ease-in-out;
}

@media (max-width: 767px) {
  .preschool-button {
    padding: 15px 52px 15px 37px;
  }

  .preschool-button::after {
    width: 12px;
    height: 12px;
    top: 52%;
    right: 35px;
  }
}

@media (hover: hover) {
  .preschool-button:hover {
    opacity: 0.9;
  }

  .preschool-button:hover::after {
    transform: translate(3px, -50%);
  }
}

/* mv-ボタン */
.preschool-mv-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fa7756;
  border-radius: 100vh;
  box-shadow: 0px 0px 10px #ffb43b;
  color: var(--preschool-white);
  font-weight: 800;
  line-height: 1;
  font-family: "M PLUS Rounded 1c", sans-serif;
  letter-spacing: 0.01em;
  padding: 31px 90px 40px;
  position: relative;
  transition: opacity 0.3s ease-in-out;
}

.preschool-mv-button__text {
  display: block;
  font-size: 42px;
  margin-top: 15px;
  position: relative;
}

.preschool-mv-button__text::after {
  content: "";
  position: absolute;
  background-image: url(../images/preschool/preschool-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 28.75px;
  height: 35px;
  top: 60%;
  transform: translateY(-50%);
  right: -40px;
  transition: transform 0.3s ease-in-out;
}

.preschool-mv-button__span {
  font-size: 25px;
}

.preschool-mv-button__span--desktop {
  display: block;
}

.preschool-mv-button__span--mobile {
  display: none;
}

@media (max-width: 767px) {
  .preschool-mv-button {
    padding: 20px 36px 18px;
  }

  .preschool-mv-button__text {
    font-size: 22px;
    margin-top: 5px;
  }

  .preschool-mv-button__text::after {
    width: 14.6px;
    height: 14.6px;
    top: 60%;
    transform: translateY(-50%);
    right: -18.8px;
  }

  .preschool-mv-button__span {
    font-size: 13.26px;
  }
}

@media (hover: hover) {
  .preschool-mv-button:hover {
    opacity: 0.9;
  }

  .preschool-mv-button:hover .preschool-mv-button__text::after {
    transform: translate(5px, -50%);
  }
}

/* popup */
.c-popup-overlay {
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  cursor: zoom-out;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transform: translateX(110%);
  transition: opacity 0.4s ease-in-out;
}

.c-popup-overlay.is-show {
  opacity: 1;
  visibility: visible;
}

.c-popup {
  background: #fff;
  border-left: solid 4px var(--preschool-blue);
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.1);
  height: 100vh;
  max-width: 720px;
  overflow-y: scroll;
  padding-bottom: 20px;
  position: absolute;
  right: 0;
  transform: translateX(210%);
  transition: transform 0.4s ease-in-out;
  width: 80vw;
  height: 100%;
  text-align: left;
  line-height: 1.7;
}

.c-popup > * {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.is-show,
.is-show .c-popup {
  transform: translateX(0%);
}

.c-popup.is-hide {
  transform: translateX(210%);
}

.c-popup-close {
  background-color: var(--preschool-blue);
  color: #fff;
  font-weight: 700;
  height: 40px;
  left: 0;
  padding: 8px;
  position: sticky;
  top: 0;
  width: 40px;
  margin: 0;
}

.c-popup__overview {
  align-items: center;
  color: #0096bd;
  display: flex;
  font-size: 1.25rem;
  font-weight: 700;
  gap: 20px;
  margin-bottom: 1rem;
  margin-top: 0.625rem;
}

.c-popup__overview-image {
  max-width: 280px;
}

.c-popup__lead {
  font-weight: 700;
}

.c-popup__heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.625rem;
  padding-bottom: 0.25rem;
  background-color: var(--preschool-blue);
  color: #fff;
  padding: 10px 14px;
}

.c-popup__list,
.c-popup__notelist {
  margin-bottom: 0.25rem;
  padding-left: 1.2em;
}

.c-popup__list {
  list-style: decimal;
}

.c-popup__notelist {
  list-style: disc;
}

.c-popup__paragraph {
  margin-top: 0;
  line-height: 1.7;
}

.c-popup__list-item:not(:last-of-type),
.c-popup__notelist-item:not(:last-of-type) {
  margin-bottom: 0.25rem;
}

.c-popup__notelist {
  font-size: 0.625rem;
  margin-top: 0.625rem;
}

@media (max-width: 767px) {
  .c-popup {
    font-size: 0.875rem;
  }

  .c-popup__overview {
    flex-direction: column;
    font-size: 1.125rem;
    gap: 10px;
    margin-bottom: 0.625rem;
  }

  .c-popup__overview-image {
    order: 1;
    max-width: 220px;
  }

  .c-popup__overview-text {
    order: 2;
  }

  .c-popup__heading {
    font-size: 1.125rem;
  }
}

/* セクション背景 */
.preschool-bg {
  position: relative;
}

.preschool-bg--blue {
  background: var(--preschool-bg-blue);
}

.preschool-bg--white {
  background-image: url(../images/preschool/preschool-white-bg.webp);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--preschool-bg-blue);
}

.preschool-bg--white::before {
  content: "";
  position: absolute;
  mask-image: url(../images/preschool/preschool-bg.svg);
  mask-position: top;
  mask-repeat: no-repeat;
  mask-size: cover;
  background-color: var(--preschool-white);
  width: 100%;
  height: 100%;
  max-height: 79px;
  top: -78px;
  left: 0;
}

@media (max-width: 767px) {
  .preschool-bg--white {
    background-image: url(../images/preschool/preschool-white-bg_sp.webp);
    background-position: left 100% top -35px;
  }

  .preschool-bg--white::before {
    mask-image: url(../images/preschool/preschool-bg_sp.svg);
    max-height: 59px;
    top: -58px;
  }
}

/* =============================================
幼児向けコース　ランディングページ　：　MVセクション
============================================= */

.layout-preschool-mv {
  padding-top: 45px;
  padding-bottom: 145px;
}

.preschool-mv {
  position: relative;
}

.preschool-mv::before {
  content: "";
  position: absolute;
  background-image: url(../images/preschool/preschool-mv-bg.webp);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 928px;
  top: 0;
  left: 0;
  z-index: -1;
}

.preschool-mv__inner {
  max-width: calc(930px + 30px * 2);
  width: 100%;
  padding-inline: 30px;
  margin: 0 auto;
  position: relative;
}

.preschool-mv__inner::before {
  content: "";
  position: absolute;
  background: var(--preschool-white);
  border-radius: 50%;
  width: 930px;
  aspect-ratio: 1 / 1;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.preschool-mv__catch-wrap {
  position: relative;
  z-index: 1;
}

.preschool-mv__catch {
  width: 100%;
  max-width: 673px;
  margin-left: auto;
  margin-right: 100px;
}

.preschool-mv__age {
  position: absolute;
  width: 192px;
  aspect-ratio: 1 / 1;
  top: -16px;
  left: 10px;
  z-index: -1;
}

.preschool-mv__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -75px;
  position: relative;
}

.preschool-mv__content::before {
  content: "";
  position: absolute;
  background-image: url(../images/preschool/preschool-mv-image1.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 525px;
  height: 435px;
  top: -75px;
  left: -325px;

  left: calc(50% - clamp(730px, 52vw, 785px));
  width: clamp(30.313rem, 23.289rem + 9.524vw, 32.813rem);
  height: clamp(25rem, 18.854rem + 8.333vw, 27.188rem);
}

.preschool-mv__content::after {
  content: "";
  position: absolute;
  background-image: url(../images/preschool/preschool-mv-image2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 576px;
  height: 535px;
  top: -75px;
  right: -395px;

  right: calc(50% - clamp(765px, 57vw, 860px));
  width: clamp(30.125rem, 13.619rem + 22.381vw, 36rem);
  height: clamp(28rem, 12.723rem + 20.714vw, 33.438rem);
}

.preschool-mv__content-bg {
  position: relative;
}

.preschool-mv__content-bg::before {
  content: "";
  position: absolute;
  background-image: url(../images/preschool/preschool-mv-image3.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -25px;
  left: calc(50% - clamp(590px, 43vw, 645px));
  width: clamp(215px, 102px + 9.524vw, 255px);
  height: clamp(215px, 102px + 9.524vw, 255px);
}

.preschool-mv__content-bg::after {
  content: "";
  position: absolute;
  background-image: url(../images/preschool/preschool-mv-image4.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -40px;
  right: calc(50% - clamp(525px, 39vw, 592px));
  width: clamp(195px, 100px + 7.619vw, 222px);
  height: clamp(195px, 100px + 7.619vw, 222px);
}

.preschool-mv__point {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 30px;
  right: -25px;
  z-index: 1;
}

.preschool-mv__bubble {
  position: absolute;
  width: 216px;
  height: 193px;
  bottom: 95px;
  right: calc(50% - clamp(655px, 51vw, 754px));
  z-index: 1;
}

.preschool-mv__sub-title {
  max-width: 330px;
  width: 100%;
  margin-inline: auto;
}

.preschool-mv__title {
  font-weight: 800;
  font-family: "M PLUS Rounded 1c", sans-serif;
  letter-spacing: 0;
  color: var(--preschool-deep-blue);
  text-align: center;
}

.preschool-mv__main-title-span {
  font-size: 36px;
  line-height: 1.2;
  display: block;
}

.preschool-mv__main-title {
  font-size: 94px;
  line-height: 1;
  display: block;
  margin-top: 10px;
}

.preschool-mv__items {
  margin-top: 55px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-inline: 70px;
}

.preschool-mv__item {
  font-size: 26px;
  font-weight: 800;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1;
  letter-spacing: 0.01em;
  padding-left: 32px;
  color: #000;
  position: relative;
}

.preschool-mv__item::before {
  content: "";
  position: absolute;
  background: #19b4f8;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.preschool-mv__item::after {
  content: "";
  position: absolute;
  background-image: linear-gradient(
    to right,
    #a4dceb,
    #a4dceb 10px,
    transparent 10px,
    transparent 4px
  );
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 18px 2px;
  width: 100%;
  height: 3px;
  top: -16px;
  left: 0;
}

.preschool-mv__item:first-of-type::after {
  display: none;
}

.preschool-mv__item-span {
  color: var(--preschool-pink);
}

.preschool-mv__button-wrap {
  margin-top: 40px;
  margin-right: 50px;
}

@media (max-width: 767px) {
  .layout-preschool-mv {
    padding-top: 27px;
    padding-bottom: 90px;
  }

  .preschool-mv::before {
    background-image: url(../images/preschool/preschool-mv-bg_sp.webp);
  }

  .preschool-mv__inner {
    padding-inline: 0;
  }

  .preschool-mv__inner::before {
    width: 656px;
    top: 22px;
  }

  .preschool-mv__catch-wrap {
    z-index: 10;
    max-width: 375px;
    width: 100%;
    margin-inline: auto;
  }

  .preschool-mv__catch {
    max-width: 375px;
    margin-inline: auto;
  }

  .preschool-mv__age {
    width: 95px;
    top: -24px;
    left: -6px;
  }

  .preschool-mv__content {
    margin-top: -45px;
  }

  .preschool-mv__content::before {
    background-image: url(../images/preschool/preschool-mv-image1_sp.webp);
    width: 185px;
    height: 296px;
    top: 40px;
    left: calc(50% - 215px);
  }

  .preschool-mv__content::after {
    background-image: url(../images/preschool/preschool-mv-image2_sp.webp);
    width: 185px;
    height: 232px;
    top: 110px;
    right: calc(50% - 213px);
  }

  .preschool-mv__content-bg::before {
    display: none;
  }

  .preschool-mv__content-bg::after {
    width: 120px;
    height: 120px;
    bottom: 150px;
    right: -5px;
  }

  .preschool-mv__point {
    width: 102px;
    height: 102px;
    top: 12px;
    right: -28px;
  }

  .preschool-mv__bubble {
    position: absolute;
    width: 215px;
    height: 215px;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%);
    right: auto;
    z-index: 1;
  }

  .preschool-mv__sub-title {
    max-width: 175px;
  }

  .preschool-mv__title {
    margin-top: 6px;
  }

  .preschool-mv__main-title-span {
    font-size: 24.5px;
  }

  .preschool-mv__main-title {
    font-size: 58px;
    margin-top: 4px;
  }

  .preschool-mv__items {
    margin-top: 202px;
    gap: 15px;
    padding-inline: 9px;
  }

  .preschool-mv__item {
    font-size: 18px;
    line-height: 1.5;
    padding-left: 14px;
  }

  .preschool-mv__item::before {
    width: 9px;
    height: 9px;
    top: 8px;
    transform: translateY(0);
  }

  .preschool-mv__item::after {
    background-image: linear-gradient(
      to right,
      #a4dceb,
      #a4dceb 4px,
      transparent 4px,
      transparent 2px
    );
    background-size: 8px 2px;
    top: -10px;
  }

  .preschool-mv__item:first-of-type::after {
    display: none;
  }

  .preschool-mv__button-wrap {
    margin-top: 30px;
    margin-right: 0;
  }
}

/* =============================================
幼児向けコース　ランディングページ　：　特徴セクション
============================================= */

.layout-preschool-features {
  padding-top: 15px;
  padding-bottom: 165px;
}

.preschool-features {
  text-align: center;
  position: relative;
  background: #b1efff;
}

.preschool-features::before {
  content: "";
  position: absolute;
  mask-image: url(../images/preschool/preschool-bg.svg);
  mask-position: top;
  mask-repeat: no-repeat;
  mask-size: cover;
  background-color: #b1efff;
  width: 100%;
  height: 100%;
  max-height: 79px;
  top: -78px;
  left: 0;
}

.preschool-features__content {
  margin-top: 80px;
  position: relative;
}

.preschool-features__content::before {
  content: "";
  position: absolute;
  background-image: url(../images/preschool/preschool-circle1.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 500px;
  aspect-ratio: 1 / 1;
  top: 22%;
  right: -130px;
}

.preschool-features__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: listnum;
  position: relative;
  z-index: 1;
}

.preschool-features__items::before {
  content: "";
  position: absolute;
  background-image: url(../images/preschool/preschool-a.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 122px;
  height: 145px;
  top: -100px;
  right: calc(50% - clamp(660px, 50.7vw, 760px));
}

.preschool-features__items::after {
  content: "";
  position: absolute;
  background-image: url(../images/preschool/preschool-b.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 135px;
  height: 166px;
  bottom: 30px;
  left: calc(50% - clamp(685px, 50.7vw, 760px));
}

.preschool-features__item {
  background: var(--preschool-white);
  border: 3px solid var(--preschool-blue);
  border-radius: 30px;
  padding: 30px 36px 30px 29px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
  position: relative;
}

.preschool-features__item::before {
  counter-increment: listnum;
  content: counter(listnum);
  position: absolute;
  top: -30px;
  left: -16px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  color: var(--preschool-white);
  font-size: 47px;
  font-weight: 700;
  font-family:
    "Helvetica Neue", Helvetica, Arial, "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preschool-features__item::after {
  content: "";
  position: absolute;
  mask-image: url(../images/preschool/preschool-point.svg);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  width: 82px;
  height: 52px;
  top: -55px;
  left: -40px;
}

.preschool-features__item:nth-of-type(1)::before,
.preschool-features__item:nth-of-type(1):after {
  background-color: #f64492;
}

.preschool-features__item:nth-of-type(2)::before,
.preschool-features__item:nth-of-type(2):after {
  background-color: #19b4f8;
}

.preschool-features__item:nth-of-type(3)::before,
.preschool-features__item:nth-of-type(3):after {
  background-color: #2dc719;
}

.preschool-features__item-wrap {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  justify-items: center;
}

.preschool-features__img-wrap {
  position: relative;
  z-index: 1;
}

.preschool-features__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.preschool-features__img--1 {
  max-width: 194px;
  transform: translate(-10px, 10px);
}

.preschool-features__img--2 {
  max-width: 223px;
  transform: translate(0px, 35px);
}

.preschool-features__img--3 {
  max-width: 172px;
  transform: translate(0px, 15px);
}

.preschool-features__img-wrap::before {
  content: "";
  position: absolute;
  background: var(--preschool-bg-blue);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.preschool-features__item-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--preschool-black);
  letter-spacing: 0;
  margin-top: 50px;
  margin-bottom: 0;
}

.preschool-features__item-title-span {
  color: var(--preschool-pink);
}

.preschool-features__item-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  text-align: left;
  margin-top: 20px;
}

.preschool-features__moreover {
  margin-top: 90px;
  display: flex;
  gap: 50px;
  background: var(--preschool-white);
  border-radius: 30px;
  padding: 30px 60px;
  position: relative;
  z-index: 1;
}

.preschool-features__moreover::before {
  content: "";
  position: absolute;
  background-image: url(../images/preschool/preschool-feature-moreover.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 178.38px;
  height: 98px;
  top: -60px;
  left: 0;
}

.preschool-features__moreover::after {
  content: "";
  position: absolute;
  background-image: url(../images/preschool/preschool-c.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 131px;
  height: 160px;
  top: 0px;
  right: calc(50% - clamp(680px, 50vw, 750px));
}

.preschool-features__moreover-text-block {
  max-width: 799px;
  width: 100%;
}

.preschool-features__moreover-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--preschool-black);
  margin-bottom: 0;
  text-align: left;
}

.preschool-features__moreover-title-span {
  background-image: linear-gradient(to bottom, transparent 70%, #f7ea11 30%);
}

.preschool-features__moreover-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--preschool-black);
  text-align: left;
  margin-top: 20px;
}

.preschool-features__moreover-img-wrap {
  max-width: 211px;
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .layout-preschool-features {
    padding-top: 25px;
    padding-bottom: 120px;
  }

  .preschool-features::before {
    mask-image: url(../images/preschool/preschool-bg_sp.svg);
    max-height: 59px;
    top: -58px;
  }

  .preschool-features__content {
    margin-top: 30px;
  }

  .preschool-features__content::before {
    display: none;
  }

  .preschool-features__content::after {
    display: none;
  }

  .preschool-features__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }

  .preschool-features__items::before,
  .preschool-features__items::after {
    display: none;
  }

  .preschool-features__item {
    padding: 24px 23px;
    gap: 0;
  }

  .preschool-features__item::before {
    top: -15px;
    left: -4px;
    width: 60px;
    height: 60px;
    font-size: 38px;
  }

  .preschool-features__item::after {
    width: 65px;
    height: 42px;
    top: -38px;
    left: -12px;
    rotate: 20deg;
  }

  .preschool-features__item-wrap {
    position: relative;
  }

  .preschool-features__item-wrap--a::before {
    content: "";
    position: absolute;
    background-image: url(../images/preschool/preschool-a.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 90px;
    height: 102px;
    top: -98px;
    right: -42px;
    z-index: -1;
  }

  .preschool-features__item-wrap--b::before {
    content: "";
    position: absolute;
    background-image: url(../images/preschool/preschool-b.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 107px;
    height: 121px;
    top: -86px;
    right: -55px;
    z-index: -1;
  }

  .preschool-features__item-wrap--c::before {
    content: "";
    position: absolute;
    background-image: url(../images/preschool/preschool-c.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 107px;
    height: 121px;
    top: -97px;
    right: -46px;
    z-index: -1;
  }

  .preschool-features__img--1 {
    max-width: 195px;
  }

  .preschool-features__img--2 {
    max-width: 223px;
  }

  .preschool-features__img--3 {
    max-width: 165px;
  }

  .preschool-features__item-title {
    font-size: 20px;
    margin-top: 54px;
  }

  .preschool-features__item-text {
    margin-top: 10px;
  }

  .preschool-features__moreover {
    margin-top: 48px;
    flex-direction: column;
    gap: 20px;
    border-radius: 28px;
    padding: 28px 14px 20px;
  }

  .preschool-features__moreover::before {
    width: 128px;
    height: 68.5px;
    top: -38px;
    left: 0;
  }

  .preschool-features__moreover::after {
    display: none;
  }

  .preschool-features__moreover-text-block {
    display: contents;
  }

  .preschool-features__moreover-title {
    font-size: 20px;
    text-align: center;
    order: 1;
  }

  .preschool-features__moreover-text {
    order: 3;
    line-height: 1.7;
    margin-top: 0;
  }

  .preschool-features__moreover-img-wrap {
    max-width: 145px;
    margin-inline: auto;
    order: 2;
  }
}

/* =============================================
幼児向けコース　ランディングページ　：　おすすめポイントセクション
============================================= */

.layout-preschool-point {
  padding-top: 40px;
  padding-bottom: 170px;
}

.preschool-point {
  background: var(--preschool-yellow);
  text-align: center;
  position: relative;
}

.preschool-point::before {
  content: "";
  position: absolute;
  mask-image: url(../images/preschool/preschool-bg.svg);
  mask-position: top;
  mask-repeat: no-repeat;
  mask-size: cover;
  background-color: var(--preschool-yellow);
  width: 100%;
  height: 100%;
  max-height: 79px;
  top: -78px;
  left: 0;
}

.preschool-point__inner {
  position: relative;
  z-index: 1;
}

.preschool-point__inner::before {
  content: "";
  position: absolute;
  background-image: url(../images/preschool/preschool-circle3.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 500px;
  aspect-ratio: 1 / 1;
  top: 63px;
  right: -175px;
  rotate: -55deg;
  z-index: -1;
}

.preschool-point__inner::after {
  content: "";
  position: absolute;
  background-image: url(../images/preschool/preschool-circle2.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 425px;
  aspect-ratio: 1 / 1;
  bottom: -195px;
  left: -165px;
  rotate: 50deg;
  z-index: -1;
}

.preschool-point__content {
  position: relative;
  z-index: 1;
}

.preschool-point__items {
  margin-top: 40px;
  counter-reset: listnum;
  list-style: none;
}

.preschool-point__item {
  border: 4px solid var(--preschool-blue);
  border-radius: 30px;
  background: var(--preschool-white);
  padding: 36px 46px;
  position: relative;
}

.preschool-point__item::before {
  counter-increment: listnum;
  content: counter(listnum);
  position: absolute;
  top: -20px;
  left: -20px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  color: var(--preschool-white);
  font-size: 47px;
  font-weight: 700;
  font-family:
    "Helvetica Neue", Helvetica, Arial, "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preschool-point__item::after {
  content: "";
  position: absolute;
  mask-image: url(../images/preschool/preschool-point.svg);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  width: 82px;
  height: 52px;
  top: -50px;
  left: -40px;
}

.preschool-point__item:nth-of-type(1)::before,
.preschool-point__item:nth-of-type(1):after {
  background-color: #f64492;
}

.preschool-point__item:nth-of-type(2)::before,
.preschool-point__item:nth-of-type(2):after {
  background-color: #19b4f8;
}

.preschool-point__item:nth-of-type(3)::before,
.preschool-point__item:nth-of-type(3):after {
  background-color: #2dc719;
}

.preschool-point__item + .preschool-point__item {
  margin-top: 50px;
}

.preschool-point__item-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 70px;
}

.preschool-point__item-wrap--d::before {
  content: "";
  position: absolute;
  background-image: url(../images/preschool/preschool-d.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 141px;
  height: 154px;
  bottom: -150px;
  right: calc(50% - clamp(680px, 50vw, 750px));
  z-index: -1;
}

.preschool-point__item-wrap--e::before {
  content: "";
  position: absolute;
  background-image: url(../images/preschool/preschool-e.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 121px;
  height: 155px;
  bottom: -80px;
  left: calc(50% - clamp(680px, 52.3vw, 785px));
  z-index: -1;
}

.preschool-point__item-wrap--f::before {
  content: "";
  position: absolute;
  background-image: url(../images/preschool/preschool-f.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 121px;
  height: 155px;
  bottom: -10px;
  right: calc(50% - clamp(680px, 50.3vw, 755px));
  z-index: -1;
}

.preschool-point__sub-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--preschool-deep-blue);
  letter-spacing: 0;
  margin-bottom: 0;
  text-align: left;
}

.preschool-point__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--preschool-black);
  letter-spacing: 0;
  margin-top: 19px;
  text-align: left;
}

.preschool-point__img-wrap {
  max-width: 410px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}

.preschool-point__img {
  aspect-ratio: 410 / 273;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .layout-preschool-point {
    padding-top: 25px;
    padding-bottom: 92px;
  }

  .preschool-point::before {
    mask-image: url(../images/preschool/preschool-bg_sp.svg);
    max-height: 59px;
    top: -58px;
  }

  .preschool-point__inner::before,
  .preschool-point__inner::after {
    display: none;
  }

  .preschool-point__items {
    margin-top: 25px;
  }

  .preschool-point__item {
    border: 2px solid var(--preschool-blue);
    padding: 40px 18px 20px;
  }

  .preschool-point__item::before {
    top: -24px;
    left: -4px;
    width: 60px;
    height: 60px;
    font-size: 38px;
  }

  .preschool-point__item::after {
    width: 65px;
    height: 42px;
    top: -48px;
    left: -12px;
    rotate: 20deg;
  }

  .preschool-point__item-wrap {
    flex-direction: column;
    gap: 30px;
  }

  .preschool-point__item-wrap--d::before {
    width: 108px;
    height: 116px;
    top: -106px;
    right: -50px;
  }

  .preschool-point__item-wrap--e::before {
    width: 107px;
    height: 121px;
    top: -145px;
    left: auto;
    right: -50px;
  }

  .preschool-point__item-wrap--f::before {
    width: 94px;
    height: 110px;
    top: -150px;
    right: -46px;
  }

  .preschool-point__sub-title {
    font-size: 18px;
  }

  .preschool-point__img-wrap {
    margin-inline: auto;
  }
}

/* =============================================
幼児向けコース　ランディングページ　：　教材セクション
============================================= */

.layout-preschool-materials {
  padding-bottom: 150px;
}

.preschool-materials {
  background: #f49ec5;
  position: relative;
}

.preschool-materials::before {
  content: "";
  position: absolute;
  mask-image: url(../images/preschool/preschool-bg.svg);
  mask-position: top;
  mask-repeat: no-repeat;
  mask-size: cover;
  background-color: var(--preschool-bg-blue);
  width: 100%;
  height: 100%;
  max-height: 79px;
  top: -78px;
  left: 0;
}

/* 教材セクション　上 */
.preschool-supervision {
  padding-top: 35px;
  position: relative;
  background-color: var(--preschool-bg-blue);
  text-align: center;
}

.preschool-supervision__inner {
  max-width: calc(1247px + 30px * 2);
  width: 100%;
  padding-inline: 30px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.preschool-supervision__inner::before {
  content: "";
  position: absolute;
  background-image: url(../images/preschool/preschool-material-bg.svg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 93px;
  left: 0;
  z-index: -1;
}

.preschool-supervision__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 142px;
  padding-bottom: 130px;
  width: 100%;
  max-width: 770px;
  margin-inline: auto;
  position: relative;
}

.preschool-supervision__content::before {
  content: "";
  position: absolute;
  background-image: url(../images/preschool/preschool-rainbow.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 250px;
  height: 250px;
  top: -46px;
  left: calc(50% - min(57vw, 745px));
  z-index: -1;
}

.preschool-supervision__content::after {
  content: "";
  position: absolute;
  background-image: url(../images/preschool/preschool-sun.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 171px;
  height: 171px;
  top: -15px;
  right: calc(50% - min(56.5vw, 735px));
  z-index: -1;
}

.preschool-supervision__img-wrap {
  max-width: 154px;
  width: 100%;
  height: auto;
}

.preschool-supervision__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.preschool-supervision__text-wrap {
  margin-top: 30px;
  position: relative;
}

.preschool-supervision__text-wrap::before {
  content: "";
  position: absolute;
  background-image: url(../images/preschool/preschool-house1.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 144px;
  height: 133px;
  bottom: -30px;
  left: -280px;
  z-index: -1;
}

.preschool-supervision__text-wrap::after {
  content: "";
  position: absolute;
  background-image: url(../images/preschool/preschool-house2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 130px;
  height: 171px;
  bottom: -30px;
  right: -235px;
  z-index: -1;
}

.preschool-supervision__sub-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--preschool-black);
  letter-spacing: 0;
  margin-bottom: 0;
}

.preschool-supervision__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0;
  margin-top: 18px;
  text-align: left;
}

.preschool-supervision__text-span {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 18px;
  text-align: center;
}

/* 教材セクション　下 */
.preschool-example {
  padding-top: 234px;
  margin-top: -130px;
  position: relative;
  z-index: 1;
}

.preschool-example::before {
  content: "";
  position: absolute;
  background-image: url(../images/preschool/preschool-material-bg-pink.webp);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  max-height: 234px;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.preschool-example__content {
  background: #f49ec5;
}

.preschool-example__inner {
  max-width: calc(980px + 30px * 2);
  width: 100%;
  padding-inline: 30px;
  margin: 0 auto;
}

.preschool-example__slider {
  margin-top: -10px;
  margin-inline: auto;
  max-width: 760px;
  position: relative;
}

.preschool-example__img-wrap {
  border-radius: 20px;
  overflow: hidden;
}

.preschool-example__img {
  aspect-ratio: 760 / 571;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* slick デフォルトのCSS上書き */
.preschool-example__slick-wrapper .slick-list {
  padding-bottom: 20px !important;
}

.preschool-example__prev.slick-prev,
.preschool-example__next.slick-next {
  border: none;
  cursor: pointer;
  width: 90.5px;
  height: 90.5px;
  padding: 0;
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  z-index: 10;
}

.preschool-example__prev.slick-prev {
  left: -115px;
}

.preschool-example__next.slick-next {
  right: -115px;
}

.preschool-example__prev.slick-prev::before,
.preschool-example__next.slick-next::before {
  content: "";
}

.preschool-example__prev.slick-prev::after {
  content: "";
  background-image: url(../images/preschool/preschool-slider-prev-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  height: 100%;
  width: 100%;
}

.preschool-example__next.slick-next::after {
  content: "";
  background-image: url(../images/preschool/preschool-slider-next-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  height: 100%;
  width: 100%;
}

.preschool-example__dots .slick-dots {
  margin: 0;
  padding: 0;
  text-align: center;
}

.preschool-example__dots .slick-dots li {
  display: inline-block;
  margin-inline: 5px;
  width: 9px;
  height: 9px;
}

.preschool-example__dots .slick-dots li button {
  position: relative;
}

.preschool-example__dots .slick-dots li button::before {
  content: "";
  position: absolute;
  background: var(--preschool-white);
  opacity: 1;
  border-radius: 50%;
  cursor: pointer;
  width: 9px;
  height: 9px;
  padding: 0;
}

.preschool-example__dots .slick-dots li.slick-active button::before {
  background-color: #18f0ff;
}

.slick-dots button {
  font-size: 0;
}

@media (max-width: 767px) {
  .layout-preschool-materials {
    padding-bottom: 45px;
  }

  .preschool-materials::before {
    mask-image: url(../images/preschool/preschool-bg_sp.svg);
    max-height: 59px;
    top: -58px;
  }

  /* 教材セクション　上 */
  .preschool-supervision {
    padding-top: 30px;
  }

  .preschool-supervision__inner::before {
    top: 135px;
  }

  .preschool-supervision__content {
    margin-top: 80px;
    padding: 30px 0px 148px;
  }

  .preschool-supervision__content::before {
    width: 137px;
    height: 137px;
    top: -145px;
    left: -50px;
  }

  .preschool-supervision__content::after {
    width: 120px;
    height: 120px;
    top: -145px;
    right: -75px;
  }

  .preschool-supervision__img-wrap {
    max-width: 96px;
  }

  .preschool-supervision__text-wrap {
    margin-top: 18px;
  }

  .preschool-supervision__text-wrap::before {
    width: 97px;
    height: 94px;
    bottom: -112px;
    left: -12px;
  }

  .preschool-supervision__text-wrap::after {
    width: 83px;
    height: 110px;
    bottom: -105px;
    right: 5px;
  }

  .preschool-supervision__sub-title {
    font-size: 18px;
  }

  .preschool-supervision__text {
    line-height: 1.7;
    margin-top: 10px;
  }

  .preschool-supervision__text-span {
    text-align: left;
  }

  /* 教材セクション　下 */
  .preschool-example {
    padding-top: 69px;
    margin-top: -50px;
  }

  .preschool-example::before {
    background-image: url(../images/preschool/preschool-material-bg-pink_sp.webp);
    max-height: 69px;
  }

  .preschool-example__content {
    padding-bottom: 50px;
  }

  .preschool-example__inner {
    padding-inline: 15px;
  }

  .preschool-example__slider {
    margin-top: 0;
  }

  .preschool-example__img-wrap {
    border-radius: 6.5px;
  }

  /* slick デフォルトのCSS上書き */
  .preschool-example__slick-wrapper .slick-list {
    padding-bottom: 10px !important;
  }

  .preschool-example__prev.slick-prev,
  .preschool-example__next.slick-next {
    width: 30px;
    height: 30px;
    position: absolute;
    top: auto;
    bottom: -30px;
    transform: translateY(0);
  }

  .preschool-example__prev.slick-prev {
    left: 18%;
  }

  .preschool-example__next.slick-next {
    right: 18%;
  }
}

/* =============================================
小学生向けコース　ランディングページ　：　priceセクション
============================================= */

.layout-preschool-price {
  padding-top: 20px;
  padding-bottom: 160px;
}

.preschool-price {
  text-align: center;
  background-color: var(--preschool-yellow);
  position: relative;
}

.preschool-price::before {
  content: "";
  position: absolute;
  mask-image: url(../images/preschool/preschool-bg.svg);
  mask-position: top;
  mask-repeat: no-repeat;
  mask-size: cover;
  background-color: var(--preschool-yellow);
  width: 100%;
  height: 100%;
  max-height: 79px;
  top: -78px;
  left: 0;
  z-index: 1;
}

.preschool-price__bg {
  position: relative;
}

.preschool-price__bg::before {
  content: "";
  position: absolute;
  background-image: url(../images/preschool/preschool-star2-left.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 288px;
  height: 690px;
  top: 10px;
  left: 0;
  z-index: -1;
}

.preschool-price__bg::after {
  content: "";
  position: absolute;
  background-image: url(../images/preschool/preschool-star2-right.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 320px;
  height: 690px;
  top: 10px;
  right: 0;
  z-index: -1;
}

.preschool-price__lists {
  margin-top: 50px;
}

.preschool-price__list {
  background: var(--preschool-white);
  border-radius: 20px;
  position: relative;
}

.preschool-price__list + .preschool-price__list {
  margin-top: 40px;
}

.preschool-price__list-title {
  background-color: var(--preschool-light-blue);
  border-radius: 20px 20px 0 0;
  color: var(--preschool-white);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
  padding: 8px 24px;
  margin-bottom: 0;
  text-align: center;
}

.preschool-price__content {
  padding: 50px 0 40px;
}

.preschool-price__items {
  display: flex;
  column-gap: 32px;
  max-width: 900px;
  margin-inline: auto;
}

.preschool-price__item {
  background-color: var(--preschool-white);
  border: 3px solid var(--preschool-light-blue);
  border-radius: 20px;
  padding: 26px 30px;
  width: 50%;
}

.preschool-price__item--popular {
  border: 3px solid var(--preschool-pink);
}

.preschool-price__list:first-of-type .preschool-price__item:first-of-type {
  position: relative;
}

.preschool-price__list:first-of-type
  .preschool-price__item:first-of-type::before {
  content: "";
  position: absolute;
  background-image: url(../images/preschool/preschool-crown.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 130px;
  height: 130px;
  top: -35px;
  left: -40px;
}

.preschool-price__item-type {
  color: var(--preschool-deep-blue);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.preschool-price__item--popular .preschool-price__item-type {
  color: var(--preschool-pink);
}

.preschool-price__item-price {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.8;
  margin-top: 15px;
  text-align: center;
}

.preschool-price__item-price-big {
  font-size: 50px;
  margin-left: 4px;
  margin-right: 4px;
  line-height: 1;
}

.preschool-price__item-price-small {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  margin-top: 0;
}

.preschool-price__item-button {
  margin-top: 8px;
  display: flex;
  justify-content: center;
}

.preschool-price__item-lines {
  margin-top: 10px;
}

.preschool-price__item-line {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  column-gap: 40px;
  border-bottom: 1px solid #d6d6d6;
  padding: 8px 4px 15px 10px;
  text-align: left;
}

.preschool-price__item-line-label {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  max-width: 179px;
  width: 100%;
}

.preschool-price__item-line-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  max-width: 132px;
  width: 100%;
  margin-top: 0;
}

.preschool-price__item-line-text-big {
  font-family: "Arial", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  margin-left: 5px;
  margin-right: 5px;
}

.preschool-price__item-line-text-big.preschool-price__item-line-text-big--no-left-blank {
  margin-left: 0;
}

.preschool-price__premium-box {
  background: var(--preschool-white);
  border: 3px solid var(--preschool-blue);
  border-radius: 20px;
  margin-top: 30px;
  max-width: 900px;
  margin-inline: auto;
  padding: 15px 18px;
}

.preschool-price__premium-title {
  border-bottom: 1px solid #d6d6d6;
  color: var(--preschool-deep-blue);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 10px;
  text-align: center;
}

.preschool-price__premium-title-big {
  font-size: 18px;
}

.preschool-price__premium-content {
  display: flex;
  align-items: center;
  margin-inline: auto;
  margin-top: 15px;
  max-width: 786px;
}

.preschool-price__premium-img-text {
  display: flex;
  align-items: center;
  column-gap: 15px;
  max-width: 382px;
  width: 100%;
}

.preschool-price__premium-img-wrap {
  max-width: 64px;
  width: 100%;
}

.preschool-price__premium-plan-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--preschool-black);
}

.preschool-price__premium-price-wrap {
  margin-left: 16px;
  max-width: 196px;
  width: 100%;
}

.preschool-price__premium-price-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--preschool-black);
  display: flex;
  align-items: flex-end;
  gap: 3px;
}

.preschool-price__premium-price-text-big {
  font-family: "Arial", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.preschool-price__premium-price-small {
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: -2px;
  text-align: center;
}

.preschool-price__premium-button {
  margin-inline: auto;
  max-width: 186px;
  width: 100%;
}

.preschool-price__premium-button-link {
  border: 1px solid var(--preschool-deep-blue);
  border-radius: 30px;
  color: var(--preschool-deep-blue);
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  padding: 10px 30px;
  text-align: center;
  width: 100%;
  white-space: nowrap;
  transition:
    background-color 0.3s ease-in-out,
    color 0.3s ease-in-out;
}

@media (hover: hover) {
  .preschool-price__premium-button-link:hover {
    background-color: var(--preschool-deep-blue);
    color: var(--preschool-white);
  }
}

@media (max-width: 767px) {
  .layout-preschool-price {
    padding-bottom: 130px;
  }

  .preschool-price::before {
    mask-image: url(../images/preschool/preschool-bg_sp.svg);
    max-height: 59px;
    top: -58px;
  }

  .preschool-price__bg::before {
    background-image: url(../images/preschool/preschool-star2-left_sp.webp);
    width: 45px;
    height: 106px;
    top: 15px;
    left: 0;
  }

  .preschool-price__bg::after {
    background-image: url(../images/preschool/preschool-star2-right_sp.webp);
    width: 45px;
    height: 106px;
    top: 15px;
    right: 0;
  }

  .preschool-price__inner {
    position: relative;
  }

  .preschool-price__inner::before {
    content: "";
    position: absolute;
    background-image: url(../images/preschool/preschool-star3-left_sp.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 76.8px;
    height: 47.4px;
    bottom: -60px;
    left: -15px;
  }

  .preschool-price__inner::after {
    content: "";
    position: absolute;
    background-image: url(../images/preschool/preschool-star3-right_sp.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 76.8px;
    height: 47.4px;
    bottom: -60px;
    right: -15px;
  }

  .preschool-price__lists {
    margin-top: 30px;
  }

  .preschool-price__list {
    border-radius: 10px;
  }

  .preschool-price__list + .preschool-price__list {
    margin-top: 30px;
  }

  .preschool-price__list-title {
    border-radius: 10px 10px 0 0;
    font-size: 22px;
    padding: 10px 10px;
  }

  .preschool-price__content {
    padding: 20px 15px;
    position: relative;
  }

  .preschool-price__items {
    flex-direction: column;
    row-gap: 20px;
  }

  .preschool-price__item {
    border: 2px solid var(--preschool-light-blue);
    border-radius: 15.5px;
    padding: 18px 15px;
    width: 100%;
  }

  .preschool-price__item--popular {
    border: 2px solid var(--preschool-pink);
  }

  .preschool-price__list:first-of-type
    .preschool-price__item:first-of-type::before {
    width: 100px;
    height: 100px;
    left: -30px;
    top: -20px;
  }

  .preschool-price__item-price {
    font-size: 16px;
    margin-top: 10px;
  }

  .preschool-price__item-price-big {
    font-size: 38px;
    margin-left: 3px;
    margin-right: 3px;
  }

  .preschool-price__item-price-small {
    font-size: 14px;
  }

  .preschool-price__item-button {
    margin-top: 8px;
  }

  .preschool-price__item-lines {
    margin-top: 6px;
  }

  .preschool-price__item-line {
    column-gap: 12px;
    padding: 8px 4px 8px 8px;
  }

  .preschool-price__item-line-label {
    max-width: 139px;
  }

  .preschool-price__item-line-text {
    font-size: 14px;
    max-width: 120px;
  }

  .preschool-price__item-line-text-big {
    font-size: 22px;
    margin-left: 4px;
    margin-right: 4px;
  }

  .preschool-price__premium-box {
    border: 2px solid var(--preschool-blue);
    padding: 12px 15px;
    margin-top: 20px;
  }

  .preschool-price__premium-title {
    font-size: 16px;
    line-height: 1.5;
    padding-bottom: 8px;
  }

  .preschool-price__premium-title-big {
    font-size: 16px;
  }

  .preschool-price__premium-content {
    flex-direction: column;
    margin-top: 10px;
  }

  .preschool-price__premium-img-text {
    display: flex;
    column-gap: 10px;
    max-width: 281px;
    background: var(--preschool-bg-blue);
    border-radius: 5px;
    padding: 5px 23px;
  }

  .preschool-price__premium-img-wrap {
    max-width: 43.5px;
  }

  .preschool-price__premium-plan-text {
    font-size: 14px;
    text-align: left;
  }

  .preschool-price__premium-price-wrap {
    margin-left: 0;
    max-width: 190px;
    margin-top: 8px;
  }

  .preschool-price__premium-price-text {
    font-size: 16px;
    gap: 2.5px;
  }

  .preschool-price__premium-price-text-big {
    font-size: 38px;
  }

  .preschool-price__premium-price-small {
    font-size: 14px;
    margin-top: -2px;
  }

  .preschool-price__premium-button {
    margin-top: 10px;
    margin-inline: auto;
    max-width: 281px;
    width: 100%;
  }

  .preschool-price__premium-button-link {
    font-size: 16px;
  }
}

/* =============================================
幼児向けコース　ランディングページ　：　voiceセクション
============================================= */

.layout-preschool-voice {
  padding-top: 30px;
  padding-bottom: 135px;
}

.preschool-voice {
  text-align: center;
  position: relative;
}

.preschool-voice::before {
  content: "";
  position: absolute;
  mask-image: url(../images/preschool/preschool-bg.svg);
  mask-position: top;
  mask-repeat: no-repeat;
  mask-size: cover;
  background-color: var(--preschool-bg-blue);
  width: 100%;
  height: 100%;
  max-height: 79px;
  top: -78px;
  left: 0;
}

.preschool-voice__content {
  margin-top: 50px;
  position: relative;
}

.preschool-voice__content::before {
  content: "";
  position: absolute;
  background-image: url(../images/preschool/preschool-circle1.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 500px;
  height: 500px;
  top: -125px;
  right: -215px;
  rotate: -20deg;
  z-index: -1;
}

.preschool-voice__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.preschool-voice__item {
  display: grid;
  grid-gap: 0;
  gap: 0;
  grid-template-rows: subgrid;
  grid-row: span 4;
  background: var(--preschool-white);
  border-radius: 20px;
  padding: 20px;
  text-align: left;
}

.preschool-voice__badges {
  display: flex;
  gap: 3px;
}

.preschool-voice__badge {
  background: var(--preschool-blue);
  border-radius: 5px;
  display: inline-block;
  color: var(--preschool-white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  padding: 3px 10px 5px;
}

.preschool-voice__img-wrap {
  margin-top: 3px;
}

.preschool-voice__img {
  aspect-ratio: 344/157;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preschool-voice__name {
  background: var(--preschool-deep-blue);
  color: var(--preschool-white);
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  text-align: center;
}

.preschool-voice__sub-title {
  color: var(--preschool-deep-blue);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  margin-top: 20px;
  margin-bottom: 0;
  text-align: left;
}

.preschool-voice__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 10px;
}

.preschool-voice__button-wrap {
  margin-top: 20px;
}

.preschool-voice__button {
  background-color: var(--preschool-white);
  border: 1px solid var(--preschool-deep-blue);
  border-radius: 100vh;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--preschool-deep-blue);
  padding: 9px 20px;
  text-align: center;
  transition: background-color 0.3s ease;
  width: 100%;
}

@media (hover: hover) {
  .preschool-voice__button:hover {
    background-color: var(--preschool-deep-blue);
    color: var(--preschool-white);
  }
}

@media (max-width: 767px) {
  .layout-preschool-voice {
    padding-top: 20px;
    padding-bottom: 120px;
  }

  .preschool-voice::before {
    mask-image: url(../images/preschool/preschool-bg_sp.svg);
    max-height: 59px;
    top: -58px;
  }

  .preschool-voice__content {
    margin-top: 30px;
  }

  .preschool-voice__content::before {
    display: none;
  }

  .preschool-voice__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .preschool-voice__item {
    padding: 20px 22px;
  }

  .preschool-voice__badges {
    display: flex;
    gap: 3px;
  }

  .preschool-voice__img-wrap {
    margin-top: 5px;
  }

  .preschool-voice__img {
    aspect-ratio: 305/157;
  }

  .preschool-voice__button-wrap {
    margin-top: 20px;
  }
}

/* =============================================
幼児向けコース　ランディングページ　：　teacherセクション
============================================= */

.layout-preschool-teacher {
  padding-top: 25px;
}

.preschool-teacher {
  overflow: hidden;
  text-align: center;
  position: relative;
  z-index: 1;
}

.preschool-teacher__inner {
  max-width: 1296px;
  padding-inline: 30px;
  margin-inline: auto;
}

.preschool-teacher__text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 50px;
}

.preschool-teacher__img-wrap {
  margin-top: 65px;
}

.preschool-teacher__img {
  aspect-ratio: 1227/457;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.preschool-teacher__items {
  display: flex;
  column-gap: 24px;
  max-width: 1200px;
  width: 100%;
  margin-top: 95px;
  margin-inline: auto;
}

.preschool-teacher__item {
  background-color: #fff;
  border: 3px solid var(--preschool-blue);
  border-radius: 20px;
  padding: 10px 20px 20px;
  text-align: left;
}

.preschool-teacher__item-title {
  color: #0096bd;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0;
  text-align: left;
  margin-bottom: 0;
}

.preschool-teacher__item-flex {
  display: flex;
  align-items: center;
  column-gap: 19px;
  margin-top: 12px;
}

.preschool-teacher__item-movie-wrap {
  max-width: 277.73px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.preschool-teacher__item-movie {
  aspect-ratio: 277.73/176.12;
  height: 100%;
  width: inherit;
}

.preschool-teacher__item-text-wrapper {
  max-width: 247.73px;
  width: 100%;
}

.preschool-teacher__item-text-wrap + .preschool-teacher__item-text-wrap {
  margin-top: 14px;
}

.preschool-teacher__item-text-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.preschool-teacher__item-text-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 2px;
}

@media (max-width: 767px) {
  .layout-preschool-teacher {
    padding-top: 40px;
  }

  .preschool-teacher__inner {
    padding-inline: 15px;
    max-width: 600px;
  }

  .preschool-teacher__text {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 30px;
    text-align: left;
  }

  .preschool-teacher__img-wrap {
    margin-top: 30px;
  }

  .preschool-teacher__img {
    aspect-ratio: 344/234;
  }

  .preschool-teacher__items {
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
  }

  .preschool-teacher__item {
    border: 2px solid var(--preschool-blue);
    border-radius: 9px;
    padding: 8px 17px 8px;
  }

  .preschool-teacher__item-title {
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
  }

  .preschool-teacher__item-flex {
    flex-direction: column;
    gap: 0;
    margin-top: 5px;
  }

  .preschool-teacher__item-movie-wrap {
    max-width: 154px;
    border-radius: 4px;
  }

  .preschool-teacher__item-text-wrapper {
    max-width: 100%;
    padding-top: 7px;
    border-top: 1px solid var(--preschool-deep-blue);
  }

  .preschool-teacher__item-text-wrap + .preschool-teacher__item-text-wrap {
    margin-top: 5px;
  }

  .preschool-teacher__item-text-text {
    margin-top: 0;
  }
}

/* =============================================
幼児向けコース　ランディングページ　：　faqセクション
============================================= */

.layout-preschool-faq {
  padding-top: 186px;
  padding-bottom: 60px;
}

.preschool-faq {
  position: relative;
  margin-top: -63px;
  text-align: center;
}

.preschool-faq::before {
  content: "";
  position: absolute;
  mask-image: url(../images/preschool/preschool-faq-bg.svg);
  mask-position: top;
  mask-repeat: no-repeat;
  mask-size: cover;
  z-index: 0;
  background: var(--preschool-yellow);
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 100%;
}

.preschool-faq__content {
  margin-top: 45px;
  position: relative;
}

.preschool-faq__item + .preschool-faq__item {
  margin-top: 15px;
}

.preschool-faq__question {
  font-weight: 700;
  color: var(--preschool-white);
  background: var(--preschool-light-blue);
  padding: 10px 30px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  border: 3px solid var(--preschool-light-blue);
  transition: border-radius 0.2s ease-in-out;
  text-align: left;
}

.preschool-faq__question::-webkit-details-marker {
  display: none;
}

@media (hover: hover) {
  .preschool-faq__question:hover {
    cursor: pointer;
  }
}

.preschool-faq__question.is-opened {
  border-radius: 10px 10px 0 0;
}

.preschool-faq__question-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.preschool-faq__question-span {
  display: inline-block;
  font-size: 40px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1;
  white-space: nowrap;
}

.preschool-faq__question-text {
  font-size: 16px;
}

.preschool-faq__answer-text {
  border: 3px solid var(--preschool-light-blue);
  background: var(--preschool-white);
  border-radius: 0 0 10px 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--preschool-black);
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  text-align: left;
}

.preschool-faq__answer-span {
  font-size: 40px;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--preschool-pink);
  line-height: 1;
  white-space: nowrap;
}

.preschool-faq__question-btn {
  background-image: url(../images/preschool/preschool-faq-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 13px;
  height: 19.5px;
  transition: transform 0.2s ease-in-out;
  transform: rotate(180deg);
}

.preschool-faq__item[open] .preschool-faq__question-btn {
  transform: rotate(0);
}

.preschool-faq__item[open] .preschool-faq__question {
  border-radius: 10px 10px 0 0;
}

@media (max-width: 767px) {
  .layout-preschool-faq {
    padding-top: 85px;
    padding-bottom: 60px;
  }

  .preschool-faq {
    position: relative;
    margin-top: 45px;
    text-align: center;
  }

  .preschool-faq::before {
    mask-image: url(../images/preschool/preschool-faq-bg_sp.svg);
  }

  .preschool-faq__content {
    margin-top: 30px;
  }

  .preschool-faq__item + .preschool-faq__item {
    margin-top: 11px;
  }

  .preschool-faq__question {
    padding: 10px 15px;
  }

  .preschool-faq__question-left {
    gap: 10px;
    align-items: flex-start;
  }

  .preschool-faq__question-span {
    font-size: 24px;
  }

  .preschool-faq__question-text {
    display: block;
    max-width: 85%;
  }

  .preschool-faq__answer-text {
    border: 2px solid var(--preschool-light-blue);
    padding: 15px;
    align-items: flex-start;
    gap: 10px;
  }

  .preschool-faq__answer-span {
    font-size: 30px;
  }

  .preschool-faq__question-btn {
    width: 14px;
    height: 9px;
  }
}
