/* =============================================
小学生向けコース　ランディングページ：共通クラス
============================================= */

.elementary-school {
  --elementary-school-black: #292929;
  --elementary-school-blue: #23bee6;
  --elementary-school-deep-blue: #0096bd;
  --elementary-school-bg-blue: #e0f2f7;
  --elementary-school-pink: #ed5584;
  --elementary-school-white: #fff;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--elementary-school-black);
}

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

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

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

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

/* セクション上下の余白 */
.layout-elementary-school {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (max-width: 767px) {
  .layout-elementary-school {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

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

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

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

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

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

/* セクションタイトル */
.elementary-school-section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--elementary-school-black);
  line-height: 1.5;
  letter-spacing: 0;
  position: relative;
  display: inline-block;
}

.elementary-school-section-title::before {
  content: "";
  position: absolute;
  background-image: url(../images/elementary-school/elementary-school-blue-line.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 4.5px;
  height: 81px;
  rotate: -40deg;
  bottom: -12px;
  left: -60px;
}

.elementary-school-section-title::after {
  content: "";
  position: absolute;
  background-image: url(../images/elementary-school/elementary-school-blue-line.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 4.5px;
  height: 81px;
  rotate: 40deg;
  bottom: -12px;
  right: -60px;
}

.elementary-school-section__title-span {
  display: block;
  font-size: 26px;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .elementary-school-section-title {
    font-size: 22px;
  }

  .elementary-school-section-title::before {
    background-image: url(../images/elementary-school/elementary-school-blue-line_sp.webp);
    width: 4px;
    height: 35px;
    left: -20px;
    bottom: -5px;
  }

  .elementary-school-section-title::after {
    background-image: url(../images/elementary-school/elementary-school-blue-line_sp.webp);
    width: 4px;
    height: 35px;
    right: -20px;
    bottom: -5px;
  }

  .elementary-school-section__title-span {
    font-size: 18px;
  }
}

/* ボタン */
.elementary-school-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fa7756;
  border-radius: 100vh;
  box-shadow: 0px 0px 10px #ffb43b;
  color: var(--elementary-school-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;
}

.elementary-school-button::after {
  content: "";
  position: absolute;
  background-image: url(../images/elementary-school/elementary-school-cta-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) {
  .elementary-school-button {
    padding: 15px 52px 15px 37px;
  }

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

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

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

/* mv-ボタン */
.elementary-school-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(--elementary-school-white);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  padding: 31px 47px 40px;
  position: relative;
  transition: opacity 0.3s ease-in-out;
}

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

.elementary-school-mv-button__text::after {
  content: "";
  position: absolute;
  background-image: url(../images/elementary-school/elementary-school-cta-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;
}

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

.elementary-school-mv-button__span--desktop {
  display: block;
}

.elementary-school-mv-button__span--mobile {
  display: none;
}

@media (max-width: 767px) {
  .elementary-school-mv-button {
    padding: 15px 23px 18px;
  }

  .elementary-school-mv-button__text {
    font-size: 22px;
    margin-top: 10px;
  }

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

  .elementary-school-mv-button__span {
    font-size: 15px;
  }

  .elementary-school-mv-button__span--desktop {
    display: none;
  }

  .elementary-school-mv-button__span--mobile {
    display: block;
  }
}

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

  .elementary-school-mv-button:hover .elementary-school-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(--elementary-school-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(--elementary-school-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: var(--elementary-school-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;
  }
}

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

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

.elementary-school-bg--white {
  background: var(--elementary-school-white);
}

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

.elementary-school-mv {
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 10px;
  position: relative;
  min-height: 780px;
}

.elementary-school-mv--lower {
  background-image: url(../images/elementary-school/elementary-lower-mv-bg.webp);
}

.elementary-school-mv--upper {
  background-image: url(../images/elementary-school/elementary-upper-mv-bg.webp);
}

.elementary-school-mv::before {
  content: "";
  position: absolute;
  background: url(../images/elementary-school/elementary-school-circle1.webp)
    no-repeat center center;
  background-size: contain;
  width: 146px;
  height: 232px;
  top: max(365px, 29vw);
  left: 0;
}

.elementary-school-mv::after {
  content: "";
  position: absolute;
  background: url(../images/elementary-school/elementary-school-circle2.webp)
    no-repeat center center;
  background-size: contain;
  width: 300px;
  height: 409px;
  top: max(365px, 29vw);
  right: 0;
}

.elementary-school-mv__inner {
  max-width: calc(875px + 30px * 2);
  width: 100%;
  padding-inline: 30px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.elementary-school-mv__catch {
  width: 100%;
  max-width: 780px;
  margin: 20px auto;
}

.elementary-school-mv--upper .elementary-school-mv__catch {
  margin: 40px auto 20px;
}

.elementary-school-mv__catch img {
  margin-inline: auto;
  z-index: 2;
  position: relative;
}

.elementary-school-mv__content {
  position: relative;
  max-width: 780px;
  width: 100%;
  background: var(--elementary-school-white);
  border-radius: 30px;
  padding: 60px 45px 40px;
  margin-top: 25px;
}

.elementary-school-mv__sub-title {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 602px;
  width: 100%;
  z-index: 10;
}

.elementary-school-mv--upper .elementary-school-mv__sub-title {
  top: -24px;
  max-width: 612px;
}

.elementary-school-features__sub-span {
  position: relative;
}

.elementary-school-mv__sub-span::before {
  z-index: -1;
  border-radius: 50%;
  background-color: var(--elementary-school-blue);
  color: var(--elementary-school-white);
  content: "";
  display: inline-block;
}

.elementary-school-mv__title-wrap {
  margin-top: 3px;
  padding-bottom: 18px;
  border-bottom: 4px solid var(--elementary-school-deep-blue);
}

.elementary-school-mv__main-title {
  color: var(--elementary-school-deep-blue);
  font-size: 40px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  text-align: center;
  line-height: 1.2;
  font-weight: 800;
}

.elementary-school-mv__main-span-large {
  font-size: 60px;
}

.elementary-school-mv__main-span-pink {
  color: var(--elementary-school-pink);
}

.elementary-school-mv__main-title-text {
  margin: 0;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  text-align: center;
}

.elementary-school-mv__main-title-line {
  display: block;
}

.elementary-school-mv__main-title-line--top {
  font-size: clamp(20px, 3.2vw, 36px);
  color: var(--elementary-school-pink);
}

.elementary-school-mv__main-title-line--bottom {
  margin-top: 6px;
  font-size: clamp(30px, 5.2vw, 56px);
  color: var(--elementary-school-blue);
}

.elementary-school-mv__main-title-accent {
  color: var(--elementary-school-blue);
}

.elementary-school-mv__point {
  position: absolute;
  top: -30px;
  z-index: 1;
  right: -50px;
  width: 140px;
  height: 140px;
}

@media (max-width: 1380px) {
  .elementary-school-mv__point {
    right: -38px;
  }
}

.elementary-school-mv__items {
  margin-top: 30px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.elementary-school-mv__items--high-school,
.elementary-school-mv__items--junior-high-school {
  padding-left: 15px;
  padding-right: 15px;
}

.elementary-school-mv__item {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.01em;
  padding-left: 32px;
  color: var(--elementary-school-black);
  position: relative;
}

.elementary-school-mv__item::before {
  content: "";
  position: absolute;
  background-image: url(../images/elementary-school/elementary-school-mv-check.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 22px;
  height: 19px;
  top: 0.5lh;
  transform: translateY(-50%);
  left: 0;
}

.elementary-school-mv__item::after {
  content: "";
  position: absolute;
  background-image: linear-gradient(
    to right,
    var(--elementary-school-black),
    var(--elementary-school-black) 6px,
    transparent 6px,
    transparent 4px
  );
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 10px 2px;
  width: 100%;
  height: 1px;
  top: -16px;
  left: 0;
}

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

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

.elementary-school-mv__button-wrap {
  margin-top: 30px;
}

@media (max-width: 767px) {
  .elementary-school-mv {
    aspect-ratio: 375 / 298;
    padding-top: clamp(145px, 64px + 21.382vw, 210px);
    min-height: unset;
    background-size: contain;
  }

  .elementary-school-mv--upper {
    padding-top: clamp(154px, 64px + 21.382vw, 210px);
  }

  .elementary-school-mv--lower {
    background-image: url(../images/elementary-school/elementary-lower-mv-bg_sp.webp);
  }

  .elementary-school-mv--upper {
    background-image: url(../images/elementary-school/elementary-upper-mv-bg_sp.webp);
  }

  .elementary-school-mv::before {
    display: none;
  }

  .elementary-school-mv::after {
    content: "";
    position: absolute;
    background: url(../images/elementary-school/elementary-school-circle2.webp)
      no-repeat center center;
    background-size: contain;
    width: 125px;
    height: 198.5px;
    top: 535px;
    right: -5px;
  }

  .elementary-school-mv__inner {
    padding-inline: 15px;
  }

  .elementary-school-mv__catch {
    max-width: 290px;
    padding-right: 20px;
    margin-bottom: -10px;
  }

  .elementary-school-mv--upper .elementary-school-mv__catch {
    max-width: 296px;
    padding: 0;
    margin-bottom: -8px;
  }

  .elementary-school-mv__content {
    padding: 23px 14px 15px;
    margin-top: 35px;
    position: relative;
    z-index: 1;
    max-width: 600px;
  }

  .elementary-school-mv__sub-title {
    top: -26px;
    padding-inline: 10px;
    max-width: 375px;
  }

  .elementary-school-mv--upper .elementary-school-mv__sub-title {
    padding-inline: 0;
  }

  .elementary-school-mv__title-wrap {
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--elementary-school-deep-blue);
    margin-inline: auto;
  }

  .elementary-school-mv__main-title {
    font-size: 20px;
  }

  .elementary-school-mv__main-span-large {
    font-size: 28px;
  }

  .elementary-school-mv__point {
    top: -100px;
    right: calc(50% - 202px);
    width: 100px;
    height: 100px;
  }

  .elementary-school-mv--upper .elementary-school-mv__point {
    top: -145px;
    right: calc(50% - 188px);
  }

  .elementary-school-mv__items {
    margin-top: 15px;
    padding-left: 12px;
    padding-right: 12px;
    gap: 14px;
  }

  .elementary-school-mv__item {
    font-size: 16px;
    padding-left: 19.5px;
  }

  .elementary-school-mv__item::before {
    width: 15px;
    height: 23px;
  }

  .elementary-school-mv__item::after {
    background-image: linear-gradient(
      to right,
      var(--elementary-school-black),
      var(--elementary-school-black) 2px,
      transparent 2px,
      transparent 2px
    );
    background-size: 4px 2px;
    top: -10px;
  }

  .elementary-school-mv__button-wrap {
    margin-top: 12px;
  }
}

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

.layout-elementary-school-features {
  padding-top: 64px;
  padding-bottom: 80px;
}

.elementary-school-features {
  text-align: center;
}

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

.elementary-school-features__content::before {
  content: "";
  position: absolute;
  background: url(../images/elementary-school/elementary-school-circle3.webp)
    no-repeat center center;
  background-size: contain;
  width: 500px;
  aspect-ratio: 1 / 1;
  top: -140px;
  left: -215px;
}

.elementary-school-features__content::after {
  content: "";
  position: absolute;
  background: url(../images/elementary-school/elementary-school-circle4.webp)
    no-repeat center center;
  background-size: contain;
  width: 600px;
  aspect-ratio: 1 / 1;
  bottom: -300px;
  right: -315px;
}

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

.elementary-school-features__item {
  background: var(--elementary-school-white);
  border: 3px solid var(--elementary-school-blue);
  border-radius: 30px;
  padding: 30px 36px 30px 29px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  justify-items: center;
  position: relative;
}

.elementary-school-features__item::before {
  counter-increment: listnum;
  content: counter(listnum);
  position: absolute;
  top: -30px;
  left: -16px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background-color: var(--elementary-school-blue);
  color: var(--elementary-school-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;
}

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

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

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

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

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

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

.elementary-school-features__img--5 {
  max-width: 220px;
  transform: translate(0px, 15px);
}

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

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

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

.elementary-school-features__item-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  text-align: left;
}

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

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

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

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

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

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

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

@media (max-width: 767px) {
  .layout-elementary-school-features {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .elementary-school-features__content {
    margin-top: 30px;
  }

  .elementary-school-features__content::before {
    display: none;
  }

  .elementary-school-features__content::after {
    display: none;
  }

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

  .elementary-school-features__item {
    border: 2px solid var(--elementary-school-blue);
    padding: 26px 25px;
    gap: 0;
  }

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

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

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

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

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

  .elementary-school-features__img--5 {
    max-width: 220px;
  }

  .elementary-school-features__item-title {
    font-size: 20px;
    margin-top: 36px;
  }

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

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

  .elementary-school-features__moreover::before {
    width: 128px;
    height: 68.5px;
    top: -30px;
    left: 0;
  }

  .elementary-school-features__moreover-text-block {
    display: contents;
  }

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

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

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

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

.elementary-school-point {
  background: var(--elementary-school-white);
  text-align: center;
  border-radius: 80px;
}

.elementary-school-point__items {
  margin-top: 60px;
  counter-reset: listnum;
  list-style: none;
}

.elementary-school-point__item {
  border: 4px solid var(--elementary-school-blue);
  border-radius: 30px;
  padding: 36px 46px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  position: relative;
}

.elementary-school-point__item::before {
  counter-increment: listnum;
  content: counter(listnum);
  position: absolute;
  top: -20px;
  left: -20px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background-color: var(--elementary-school-blue);
  color: var(--elementary-school-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;
}

.elementary-school-point__item::after {
  content: "";
  position: absolute;
  background-image: url(../images/elementary-school/elementary-school-point.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 82px;
  height: 52px;
  top: -44px;
  left: -40px;
}

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

.elementary-school-point__text-block {
  max-width: 660px;
  width: 100%;
}

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

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

.elementary-school-point__img-wrap {
  max-width: 410px;
  width: 100%;
  height: auto;
}

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

@media (max-width: 767px) {
  .elementary-school-point {
    border-radius: 30px;
  }

  .elementary-school-point__items {
    margin-top: 50px;
  }

  .elementary-school-point__item {
    border: 2px solid var(--elementary-school-blue);
    padding: 40px 20px 20px;
    flex-direction: column;
  }

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

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

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

  .elementary-school-point__img-wrap {
    margin-inline: auto;
  }
}

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

/* 教材セクション　上 */
.elementary-school-supervision {
  padding-top: 82px;
  position: relative;
  text-align: center;
}

.elementary-school-supervision__content {
  background: #fff;
  border-radius: 40px 40px 0 0;
  margin-top: 45px;
  padding: 50px 213px 135px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

.elementary-school-supervision__text-wrap {
  margin-top: 30px;
}

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

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

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

/* 教材セクション　下 */
.elementary-school-example {
  padding-top: 181px;
  margin-top: -145px;
  position: relative;
  z-index: 1;
}

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

.elementary-school-example__content {
  background: var(--elementary-school-deep-blue);
  padding-bottom: 50px;
}

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

.elementary-school-example__sub-title {
  color: var(--elementary-school-white);
  font-size: 24px;
  margin-bottom: 30px;
  position: relative;
}

.elementary-school-example__slider-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 778px;
  margin-inline: auto;
}

.elementary-school-example__slider-filter-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--elementary-school-white);
  border: 1px solid #d8d8d8;
  border-radius: 100vh;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: #6d6d6d;
  /* max-width: 383px;
  width: 100%; */
  padding: 10px 50px 10px 20px;
  min-width: 320px;
  cursor: pointer;
  position: relative;
  transition:
    border 0.3s ease,
    color 0.3s ease;
}

@media (hover: hover) {
  .elementary-school-example__slider-filter-button:hover {
    border: 1px solid var(--elementary-school-pink);
    color: var(--elementary-school-pink);
  }
}

.elementary-school-example__slider-filter-button::after {
  content: "";
  position: absolute;
  background: #6d6d6d;
  mask-image: url(../images/elementary-school/plus-icon.svg);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  right: 14px;
}

.elementary-school-example__slider-filter-button.elementary-school-example__slider-filter-button--active {
  background-color: #fff3f7;
  border: 1px solid var(--elementary-school-pink);
  color: var(--elementary-school-pink);
}

.elementary-school-example__slider-filter-button.elementary-school-example__slider-filter-button--active::after {
  content: "";
  position: absolute;
  background: var(--elementary-school-pink);
  mask-image: url(../images/elementary-school/elementary-school-check.svg);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  width: 20px;
  height: 17px;
  top: 50%;
  transform: translateY(-50%);
  right: 14px;
}

.elementary-school-example__descriptions {
  max-width: 700px;
  margin-inline: auto;
  margin-top: 40px;
  background: #ffffff1c;
  padding: 12px 14px;
  border-radius: 10px;
  border: solid 1px var(--elementary-school-white);
  color: var(--elementary-school-white);
}

.elementary-school-example__description {
  display: none;
  line-height: 1.8;
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

.elementary-school-example__description.is-active {
  display: block;
}

.elementary-school-example__slider {
  margin-top: 30px;
  margin-inline: auto;
  max-width: 700px;
  position: relative;
}

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

.elementary-school-example__img {
  aspect-ratio: 1500 / 1125;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.elementary-school-example__slider {
  position: relative;
}

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

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

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

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

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

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

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

.elementary-school-example__dots .slick-dots {
  margin: 0;
  padding: 0;
  text-align: center;
  bottom: -14px;
}

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

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

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

.elementary-school-example__dots .slick-dots li.slick-active button::before {
  background-color: #ed5584;
}

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

@media (max-width: 767px) {
  /* 教材セクション　上 */
  .elementary-school-supervision {
    padding-top: 80px;
  }

  .elementary-school-supervision__content {
    border-radius: 30px 30px 0 0;
    margin-top: 5px;
    padding: 30px 15px 80px;
  }

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

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

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

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

  .elementary-school-supervision__text-span {
    text-align: left;
  }

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

  .elementary-school-example::before {
    background-image: url(../images/elementary-school/elementary-school-materials-bg_sp.webp);
    max-height: 60px;
  }

  .elementary-school-example__content {
    padding-bottom: 50px;
  }

  .elementary-school-example__inner {
    padding-inline: 15px;
  }

  .elementary-school-example__sub-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .elementary-school-example__slider-filters {
    gap: 5px;
  }

  .elementary-school-example__slider-filter-button {
    font-size: 16px;
    min-width: 240px;
    padding: 6px 35px 6px 10px;
  }

  .elementary-school-example__slider-filter-button::after {
    width: 14px;
    height: 14px;
    right: 10px;
  }

  .elementary-school-example__slider-filter-button.elementary-school-example__slider-filter-button--active::after {
    width: 14.7px;
    height: 12px;
    right: 10px;
  }

  .elementary-school-example__descriptions {
    margin-top: 50px;
    border-radius: 6.5px;
  }

  .elementary-school-example__slider {
    margin-top: 16px;
  }

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

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

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

  .elementary-school-example__prev.slick-prev {
    left: 40px;
  }

  .elementary-school-example__next.slick-next {
    right: 40px;
  }

  .elementary-school-example__dots .slick-dots {
    bottom: -25px;
    width: calc(100% - 140px);
    left: 50%;
    transform: translateX(-50%);
  }
}

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

.elementary-school-price {
  text-align: center;
}

.elementary-school-price__lists {
  margin-top: 45px;
}

.elementary-school-price__list {
  background: var(--elementary-school-bg-blue);
  border-radius: 20px;
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.elementary-school-price__premium-button-link {
  border: 1px solid var(--elementary-school-deep-blue);
  border-radius: 30px;
  color: var(--elementary-school-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) {
  .elementary-school-price__premium-button-link:hover {
    background-color: var(--elementary-school-deep-blue);
    color: var(--elementary-school-white);
  }
}

@media (max-width: 767px) {
  .elementary-school-price__lists {
    margin-top: 30px;
  }

  .elementary-school-price__list {
    border-radius: 10px;
  }

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

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

  .elementary-school-price__content {
    padding: 20px 15px;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.elementary-school-voice {
  background: var(--elementary-school-bg-blue);
  border-radius: 80px;
  text-align: center;
}

.elementary-school-voice__content {
  margin-top: 50px;
}

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 767px) {
  .elementary-school-voice {
    border-radius: 30px;
  }

  .elementary-school-voice__content {
    margin-top: 30px;
  }

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

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

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

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

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

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

.elementary-school-teacher {
  overflow: hidden;
  text-align: center;
}

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

.elementary-school-teacher__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 45px;
}

.elementary-school-teacher__img-wrap {
  margin-top: 50px;
}

.elementary-school-teacher__img {
  aspect-ratio: 1236/439;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

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

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

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

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

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

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

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

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

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

@media (max-width: 767px) {
  .elementary-school-teacher__inner {
    padding-inline: 0px;
  }

  .elementary-school-teacher__text {
    font-size: 16px;
    line-height: 1.7;
    margin-top: 30px;
    text-align: left;
    padding-inline: 15px;
    max-width: 600px;
    margin-inline: auto;
  }

  .elementary-school-teacher__img-wrap {
    margin-top: 20px;
  }

  .elementary-school-teacher__img {
    aspect-ratio: 375/203;
  }

  .elementary-school-teacher__items {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    padding-inline: 15px;
    max-width: 600px;
    margin-inline: auto;
  }

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

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

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

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

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

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

  .elementary-school-teacher__item-text-text {
    margin-top: 0;
  }
}

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

.elementary-school-faq {
  background: var(--elementary-school-bg-blue);
  text-align: center;
  border-radius: 80px 80px 0 0;
}

.elementary-school-faq__content {
  margin-top: 45px;
}

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 767px) {
  .elementary-school-faq {
    border-radius: 30px 30px 0 0;
  }

  .elementary-school-faq__content {
    margin-top: 20px;
  }

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

  .elementary-school-faq__question {
    padding: 10px 15px;
  }

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

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

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

  .elementary-school-faq__answer-text {
    border: 2px solid var(--elementary-school-deep-blue);
    padding: 15px;
    align-items: flex-start;
  }

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

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