@charset "UTF-8";
:root {
  --color-primary: #1f3b9e;
  --color-primary-light: #eef6fd;
  --color-primary-dark: #0379d6;
  --color-secondary: #27b5f5;
  --color-secondary-light: #d1ecff;
  --color-accent: #fee302;
  --color-bg: #ffffff;
  --color-text: #333333;
  --color-text-secondary: #ffffff;

  --color-elementary: #faaf2d;
  --color-elementary-light: #fef9e3;
  --color-junior-high: #97d000;
  --color-junior-high-light: #f0fee3;
  --color-high: #27b5f4;
  --color-high-light: #eef6fd;

  --shadow: 2px 4px 9px 0px #a3a3a333;
}
body {
  font-size: 14px;
  font-weight: 400;
  font-feature-settings: 'palt';
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
}
:where(.main-visual, .score, .curriculum, .price, .selecting-how-to, .voice, .achievement, .flow) img {
  display: block;
  margin: auto;
}

@media screen and (min-width: 768px) {
  :where(.main-visual, .score, .curriculum, .price, .selecting-how-to, .voice, .achievement, .flow) {
    zoom: calc(1 / 0.9);
  }
}

@media (min-width: 1025px) {
  body {
    font-size: 16px;
  }
}

/*-------------------------
    layout
-------------------------*/
.l-inner {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .l-inner {
    padding: 0 20px;
  }
}

@media (min-width: 1204px) {
  .l-inner {
    padding: 0;
  }
}

/*-------------------------
    utility
-------------------------*/

/* display */
.u-pc {
  display: none !important;
}
.u-sp {
  display: block !important;
}
.u-visuallyhidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}

@media (min-width: 768px) {
  .u-pc {
    display: block !important;
  }
  .u-sp {
    display: none !important;
  }
}

/* text */
.u-text-center {
  text-align: center;
}
.u-text-left {
  text-align: left;
}
.u-text-right {
  text-align: right;
}

/* font */
.u-font-bold {
  font-weight: 700;
}

/* color */
.u-color-primary {
  color: var(--color-primary);
}
.u-color-accent {
  color: var(--color-accent);
}

/* width */
.u-max-w-1200 {
  max-width: 1200px;
}
.u-max-w-1100 {
  max-width: 1100px;
}
.u-max-w-1000 {
  max-width: 1000px;
}
.u-max-w-700 {
  max-width: 700px;
}

/* --------------------------------
  main-visual
-------------------------------- */
.main-visual .l-inner {
  padding: 0;
}
.main-visual__inner {
  display: flex;
  justify-content: center;
  width: 100%;
  overflow-x: hidden;
}
.main-visual__img img {
  width: 100%;
}
.main-visual__img {
  width: 100%;
}
@media (min-width: 768px) {
  .main-visual__img {
    max-width: calc(1080 * var(--base-font, 1) / 10);
  }
}

/* moving-arrow */
.main-visual .moving-arrow {
  padding: 12px 0 0;
  background: #def6ff;
}
.main-visual .moving-arrow img {
  display: block;
  max-width: 100px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  /* moving-arrow */
  .main-visual .moving-arrow {
    padding: 15px 0 0;
  }
  .main-visual .moving-arrow img {
    max-width: 150px;
  }
}

/*-------------------------
    注釈
-------------------------*/
.notes {
  display: block;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
}

@media (min-width: 1025px) {
  .notes {
    max-width: 1200px;
  }
}

/*-------------------------
    見出し
-------------------------*/
/* contents-title */
.contents-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary);
  text-align: center;
}

@media (min-width: 768px) {
  .contents-title {
    font-size: 40px;
  }
}

/*-------------------------
    tab
-------------------------*/
.tab [data-tab='tab1'],
.tab [data-tab-panel='tab1'] {
  --tab-color: var(--color-elementary);
  --tab-color-bg: var(--color-elementary-light);
}
.tab [data-tab='tab2'],
.tab [data-tab-panel='tab2'] {
  --tab-color: var(--color-junior-high);
  --tab-color-bg: var(--color-junior-high-light);
}
.tab [data-tab='tab3'],
.tab [data-tab-panel='tab3'] {
  --tab-color: var(--color-high);
  --tab-color-bg: var(--color-high-light);
}
.tab__btn-wrap {
  display: flex;
  gap: 5px;
  align-items: flex-end;
  justify-content: space-between;
  height: 57px;
}
.tab button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 35px;
  /* padding: 10px 0; */
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  color: #fff;
  cursor: pointer;
  outline: none;
  background: var(--tab-color);
  border: 1px solid var(--tab-color);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  transition: 0.3s;
}
.tab button.is-active {
  height: 100%;
  /* padding: 18px 0; */
  font-size: 20px;
  border-color: var(--tab-color);
}
.tab__content-item {
  display: none;
  padding: 36px 16px;
  background: var(--color-bg);
  border: 4px solid var(--tab-color);
}
.tab__content-item.is-active {
  display: block;
}
.tab__content-item-title {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary);
  text-align: center;
}

@media (min-width: 768px) {
  .tab__btn-wrap {
    gap: 10px;
    height: 78px;
  }
  .tab button {
    height: 56px;
    /* padding: 15px 0; */
    font-size: 20px;
    border-radius: 8px 8px 0px 0px;
  }
  .tab button.is-active {
    font-size: 24px;
  }
  .tab__content-item-title {
    font-size: 32px;
  }
}
@media (min-width: 1025px) {
  .tab__content-item {
    padding: 56px;
  }
}

/*-------------------------
    splide
-------------------------*/
.splide__pagination__page {
  width: 10px;
  height: 10px;
  margin: 0;
  background: var(--color-bg);
  opacity: 1;
}
.splide__pagination {
  bottom: -1.7em;
  gap: 16px;
}
.splide__pagination__page.is-active {
  background: var(--color-secondary);
}

/* splide__arrow */
.splide__arrow {
  width: 41px;
  height: 41px;
  background: var(--color-secondary);
  border: 1px solid #fff;
  border-radius: 50%;
  opacity: 1;
}
.splide__arrow svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}
.splide__arrow--next {
  right: -0.5em;
}
.splide__arrow--prev {
  left: -0.5em;
}

/* progress-bar */
.splide__progress {
  margin: 23px 16px 0;
  background: #fff;
  border-radius: 20px;
}
.splide__progress__slide {
  width: 0;
  height: 5px;
  background: #999999;
  border-radius: 20px;
  transition: width 400ms ease;
}

@media (min-width: 768px) {
  .splide__pagination__page {
    width: 13px;
    height: 13px;
    opacity: 1;
  }
  .splide__pagination {
    bottom: -2em;
    gap: 21px;
  }

  /* splide__arrow */
  .splide__arrow {
    width: 40px;
    height: 40px;
  }
  .splide__arrow svg {
    width: 18px;
    height: 18px;
    fill: #fff;
  }
  .splide__arrow--next {
    right: 5em;
  }
  .splide__arrow--prev {
    left: 5em;
  }
}

/*-------------------------
    CTA
-------------------------*/
.md-contact .u-bg-lightblue2 {
  background: #def6ff !important;
}
.c-tel-btn-common__title {
  position: absolute;
  top: -13px;
  left: 50%;
  padding: 4px 16px;
  font-size: 4.3vw;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  background: #e52d2c;
  border-radius: 50px;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .c-tel-btn-common__title {
    font-size: 1.6rem;
  }
}
.c-tel-btn-common__number {
  top: 46%;
}
.c-tel-btn-common:has(.c-tel-btn-common__text) .c-tel-btn-common__number {
  top: 36%;
}
.c-tel-btn__arrow {
  top: 46%;
}
.c-tel-btn-common:has(.c-tel-btn-common__text) .c-tel-btn__arrow {
  top: 36%;
}
.c-tel-btn__icon._sp {
  top: 48%;
}
.c-tel-btn-common:has(.c-tel-btn-common__text) .c-tel-btn__icon._sp {
  top: 38%;
}

/*-------------------------
    voice
-------------------------*/
.voice__contents {
  padding: 40px 0;
  background: var(--color-secondary-light);
}
.voice .l-inner {
  padding: 0 16px;
}
.voice__title {
  position: relative;
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary);
  text-align: center;
}
.voice__title--emp {
  display: inline-block;
  padding: 0 5px;
  margin: 5px 0;
  font-size: 32px;
  line-height: 1.4;
  background: #fff53c;
}
.voice__list-item {
  height: auto;
  padding: 20px 24px;
  background: var(--color-bg);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.voice__list-item-label {
  padding: 4px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text-secondary);
  text-align: center;
  background: var(--color-primary);
}
.voice__list-item-label.--elementary {
  background: var(--color-elementary);
}
.voice__list-item-label.--junior-high {
  background: var(--color-junior-high);
}
.voice__list-item-label.--high {
  background: var(--color-high);
}
.voice__list-item picture img {
  margin-bottom: 12px;
}
.voice__list-item-title {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary);
}
.voice__list-item-name {
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
}
.voice__list-item-name .--lg {
  font-size: 20px;
}
.voice__list-item-description {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}
.voice__notes {
  display: block;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .voice__contents {
    padding: 60px 0;
    overflow: hidden;
  }
  .voice .l-inner {
    padding: 0;
  }
  .voice__title {
    margin-bottom: 40px;
    font-size: 26px;
  }
  .voice__title--emp {
    padding: 0 13px;
    margin: 0 5px;
    font-size: 42px;
  }
  .voice__list-item {
    max-width: calc(100% / 3);
    height: auto;
    padding: 20px 24px;
    background: var(--color-bg);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  .voice__list-item-label {
    padding: 4px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-text-secondary);
    text-align: center;
    background: var(--color-primary);
  }
  .voice__list-item-label.--elementary {
    background: var(--color-elementary);
  }
  .voice__list-item-label.--junior-high {
    background: var(--color-junior-high);
  }
  .voice__list-item-label.--high {
    background: var(--color-high);
  }
  .voice__list-item picture img {
    margin-bottom: 12px;
  }
  .voice__list-item-title {
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-primary);
  }
  .voice__list-item-name {
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
  }
  .voice__list-item-name .--lg {
    font-size: 20px;
  }
  .voice__list-item-description {
    font-size: 14px;
    line-height: 1.6;
  }
  .voice__notes {
    display: block;
    margin-top: 50px;
  }
}

/* スライダー */
.voice .splide__track {
  padding: 10px 0;
  margin: 0 -16px;
}

@media (min-width: 1025px) {
  /* md-top.cssの相殺 */
  .voice .splide__slide {
    width: calc(100% / 3 - 16px) !important;
  }
}

@media (min-width: 768px) {
  .voice .splide__track {
    margin: 0;
  }
}

/*-------------------------
    price
-------------------------*/
.price__contents {
  padding: 40px 0;
}
.price__lead {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text);
  text-align: center;
}
.price__contents-body {
  padding: 24px;
  margin-top: 24px;
  background: #def6ff;
}
.price__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
}
.price__head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  color: #fff;
  background: #27b5f5;
}
.price__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}
.price__badge {
  position: absolute;
  right: 10px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  color: var(--color-primary);
  background: #fff;
  border-radius: 30px;
}
.price__body {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: center;
  padding: 4px 20px;
  text-align: center;
  background: var(--color-bg);
}
.price__value {
  font-size: 16px;
  font-weight: 700;
  color: #ff4b00;
}
.price__num {
  font-size: 36px;
  line-height: 1;
}
.price__note {
  font-size: 10px;
  color: var(--color-text);
}
.price__text {
  font-size: 16px;
  font-weight: 700;
}
.price__text-num {
  font-size: 22px;
}
.price__discount {
  font-size: 16px;
  font-weight: 700;
  color: #ff4b00;
}
.price__subnote {
  position: absolute;
  right: 10px;
  bottom: 5px;
  font-size: 10px;
}
.price__plus {
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-primary);
  text-align: center;
}
.price__footnote {
  margin-top: 10px;
  font-size: 10px;
  line-height: 1.5;
}

/* PC */
@media (min-width: 768px) {
  .price__contents {
    padding: 60px 0;
  }
  .price__lead {
    font-size: 24px;
  }
  .price__contents-body {
    padding: 40px 35px;
    margin-top: 40px;
  }
  .price__list {
    flex-direction: row;
    gap: 6px;
    justify-content: space-between;
  }
  .price__item {
    display: flex;
    flex: 1;
    flex-direction: column;
    margin: 0;
  }
  .price__plus {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
  }
  .price__head {
    padding: 3px 10px;
  }
  .price__title {
    font-size: 24px;
  }
  .price__badge {
    padding: 2px 6px;
  }
  .price__body {
    flex: 1;
    flex-direction: column;
    align-items: center;
    padding: 13px 25px 25px;
  }
  .price__value {
    font-size: 26px;
  }
  .price__value .price__num {
    font-size: 58px;
  }
  .price__text {
    font-size: 24px;
  }
  .price__text-num {
    font-size: 30px;
  }
  .price__discount {
    font-size: 26px;
  }
  .price__discount .price__num {
    font-size: 50px;
  }
  .price__footnote {
    margin-top: 24px;
  }
}

/*-------------------------
    selecting-how-to
-------------------------*/
.selecting-how-to__contents {
  padding: 20px 0 40px;
}
.selecting-how-to .contents-title {
  margin-bottom: 24px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
}
.selecting-how-to__lead {
  margin-bottom: 56px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.selecting-how-to__list {
  display: flex;
  flex-direction: column;
  gap: 123.5px;
}
.selecting-how-to__item:first-of-type {
  position: relative;
}
.selecting-how-to__item:first-of-type::after {
  position: absolute;
  bottom: -70px;
  left: 50%;
  width: 45px;
  height: 31px;
  content: '';
  background: var(--color-primary);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translateX(-50%);
}
.selecting-how-to__item-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 16px 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text-secondary);
  background: var(--color-primary-dark);
  border-radius: 12px 12px 0px 0px;
}
.selecting-how-to__item-title .--label {
  position: absolute;
  top: -18px;
  right: 0;
  left: 0;
  z-index: 1;
  align-items: baseline;
  width: 113px;
  height: auto;
  padding: 5px 30px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary);
  background: var(--color-accent);
  border-radius: 100px;
}
.selecting-how-to__item-body {
  padding: 28px 20px;
  background: var(--color-high-light);
  border-radius: 0 0 12px 12px;
}
.selecting-how-to__item-body-text {
  margin-bottom: 24px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0;
}
.selecting-how-to__item-body-text .u-color-primary {
  font-size: 20px;
}
.selecting-how-to__item-body picture + .notes {
  margin-top: 5px;
}
.selecting-how-to__list-box {
  padding: 14px 15px;
  margin: 24px 0 0;
  background: var(--color-bg);
}
.selecting-how-to__list-box + .notes {
  margin-top: 8px;
}
.selecting-how-to .list-box__title {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary);
}
.selecting-how-to .list-box__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.selecting-how-to .list-box__item {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}
.selecting-how-to .list-box__item::before {
  display: block;
  width: 16px;
  height: 16px;
  content: '';
  background: var(--color-primary) url('../img/icon-check.svg') no-repeat center center;
  background-size: 8.8px 6px;
  border-radius: 50%;
}
.selecting-how-to .list-box__item-etc {
  justify-content: flex-end;
  font-size: 12px;
}
.selecting-how-to .list-box__item-etc::before {
  content: none;
}
.selecting-how-to__message {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary);
  text-align: center;
  letter-spacing: 0;
}

/* accordion */
.selecting-how-to .accordion {
  margin: 24px auto 0;
  background: var(--color-primary);
  border-radius: 4px;
  box-shadow: 4px 4px 4px 0px #00000040;
}
.selecting-how-to .accordion summary {
  position: relative;
  display: block;
  padding: 16px 42px 16px 20px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  text-align: center;
  cursor: pointer;
}
.selecting-how-to .accordion summary::-webkit-details-marker {
  display: none;
}
.selecting-how-to .accordion summary::before,
.selecting-how-to .accordion summary::after {
  position: absolute;
  top: 35%;
  right: calc(1em + 5px);
  width: 2px;
  height: 18px;
  content: '';
  background-color: #fff;
}
.selecting-how-to .accordion summary::before {
  rotate: 90deg;
}
.selecting-how-to .accordion summary::after {
  transition: rotate 0.3s;
}
.selecting-how-to .accordion[open] summary::after {
  rotate: 90deg;
}
.selecting-how-to .accordion .accordion__contents {
  padding: 20px 16px;
  margin: 0;
  background-color: #fff;
  border: 1px solid var(--color-primary);
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    transform 0.5s,
    opacity 0.5s;
}
.selecting-how-to .accordion[open] .accordion__contents {
  opacity: 1;
  transform: none;
}
.selecting-how-to .accordion .accordion__img {
  width: 100%;
  margin-bottom: 15px;
}
.selecting-how-to .accordion .accordion__description {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.6;
  color: #333333;
}

@media (min-width: 768px) {
  .selecting-how-to__contents {
    padding: 40px 0 60px;
  }
  .selecting-how-to .contents-title {
    margin-bottom: 20px;
    font-size: 40px;
  }
  .selecting-how-to__lead {
    margin-bottom: 88px;
    font-size: 32px;
  }
  .selecting-how-to__list {
    display: flex;
    flex-direction: column;
    gap: 123.5px;
  }
  .selecting-how-to__item:first-of-type {
    position: relative;
  }
  .selecting-how-to__item:first-of-type::after {
    width: 70px;
    height: 36px;
  }
  .selecting-how-to__item-title {
    padding: 30px 20px 22px;
    font-size: 32px;
  }
  .selecting-how-to__item-title .--label {
    top: -23px;
    width: 139px;
    font-size: 24px;
  }
  .selecting-how-to__item-body {
    padding: 40px 60px;
  }
  .selecting-how-to__item-body-text {
    margin-bottom: 30px;
    font-size: 24px;
    text-align: left;
  }
  .selecting-how-to__item-body-text .u-color-primary {
    font-size: 32px;
  }
  .selecting-how-to__column {
    display: flex;
    flex-direction: row-reverse;
    gap: 50px;
  }
  .selecting-how-to__body {
    flex: 1;
  }
  .selecting-how-to__item-body picture + .notes {
    margin-top: 5px;
  }
  .selecting-how-to__list-box {
    padding: 18px 15px;
    margin: 0;
  }
  .selecting-how-to .list-box__title {
    font-size: 20px;
  }
  .selecting-how-to .list-box__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .selecting-how-to .list-box__item {
    width: calc(50% - 4px);
    font-size: 16px;
  }
  .selecting-how-to .list-box__item::before {
    flex: 0 0 auto;
  }
  .selecting-how-to .list-box__item-etc {
    justify-content: flex-end;
    font-size: 12px;
  }
  .selecting-how-to .list-box__item-etc::before {
    content: none;
  }
  .selecting-how-to__message {
    margin-top: 24px;
    font-size: 26px;
  }
  /* accordion */
  .selecting-how-to .accordion {
    max-width: calc(800px / 0.9);
    margin-top: 60px;
  }
  .selecting-how-to .accordion summary {
    padding: 20px 80px;
    font-size: 24px;
  }
  .selecting-how-to .accordion summary::-webkit-details-marker {
    display: none;
  }
  .selecting-how-to .accordion summary::before,
  .selecting-how-to .accordion summary::after {
    top: 36%;
    right: calc(1em + 30px);
    width: 3px;
    height: 24px;
  }
  .selecting-how-to .accordion[open] summary::after {
    rotate: 90deg;
  }
  .selecting-how-to .accordion .accordion__contents {
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 30px 40px;
  }
  .selecting-how-to .accordion picture {
    flex: 0 0 auto;
  }
  .selecting-how-to .accordion .accordion__img {
    max-width: 400px;
    margin: 0;
  }
  .selecting-how-to .accordion .accordion__description {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
  }
}

/* --------------------------------
  score
-------------------------------- */
.score__area {
  position: relative;
  background-color: var(--color-secondary-light);
}
.score__area-inner {
  display: flex;
  flex-direction: column;
}
/* ttl */
.score__title {
  position: relative;
  padding: 20px 0;
  margin-bottom: 40px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.26;
  color: #fff;
  text-align: center;
  background: var(--color-secondary);
}
.score__title::after {
  position: absolute;
  bottom: -19px;
  left: 50%;
  width: 32px;
  height: 20px;
  content: '';
  background: var(--color-secondary);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translateX(-50%);
}
.score__title--sm {
  font-size: 18px;
}
.score__title--lg {
  font-size: 32px;
}
/* copy */
.score__copy {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
  text-align: center;
}
.score__title--sm {
  font-size: 18px;
}
.score__copy--lg {
  font-size: 32px;
}
.score__copy-decoration {
  display: flex;
  align-items: end;
  justify-content: center;
}
.score__copy-decoration::before,
.score__copy-decoration::after {
  width: 2px;
  height: 35px;
  content: '';
  background-color: var(--color-primary);
}
.score__copy-decoration::before {
  margin-right: 20px;
  transform: rotate(-28deg);
}
.score__copy-decoration::after {
  margin-left: 20px;
  transform: rotate(28deg);
}
/* card */
.score__card-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}
.score__card-item img {
  display: block;
  margin: 0 auto;
}
/* note */
.score__note {
  font-size: 10px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 767.98px) {
  .score__area {
    padding-bottom: 40px;
  }
  .score__area-inner {
    gap: 20px;
  }
}

@media (min-width: 768px) {
  .score__area {
    padding-bottom: 60px;
  }
  .score__area-inner {
    gap: 20px;
  }
  /* ttl */
  .score__title {
    padding: 40px 0;
    margin-bottom: 70px;
    font-size: 32px;
  }
  .score__title::after {
    bottom: -29px;
    width: 60px;
    height: 30px;
  }
  .score__title--sm {
    font-size: 26px;
  }
  .score__title--lg {
    font-size: 42px;
  }
  /* copy */
  .score__copy {
    font-size: 32px;
  }
  .score__title--sm {
    font-size: 28px;
  }
  .score__copy--lg {
    font-size: 42px;
  }
  /* card */
  .score__card-wrapper {
    display: flex;
    gap: 27px;
    margin-top: 20px;
  }
  /* note */
  .score__note {
    margin-top: 40px;
  }
}

/*-------------------------
    curriculum
-------------------------*/
.curriculum__contents {
  padding: 40px 0;
}
.curriculum .contents-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}
.curriculum__lead {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text);
  text-align: center;
}
.curriculum__contents-body {
  margin-top: 24px;
}
.curriculum__tab-panel-inner {
  max-width: 800px;
  margin: 0 auto;
}
.curriculum__cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.curriculum__card {
  padding: 20px;
  background: var(--tab-color-bg);
}
.curriculum__card-title {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary);
}
.curriculum__card-num {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  line-height: 1;
  color: #fff;
  background: var(--tab-color);
  border-radius: 2px;
}
.curriculum__card-column {
  display: flex;
  flex-direction: column-reverse;
}
.curriculum__card-lead {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary);
  text-align: center;
}
.curriculum__card-description {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
}
.curriculum__card-caption {
  max-width: 520px;
  margin: 6px auto 0;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  text-align: right;
}
.curriculum__card-point {
  padding: 16px;
  margin-top: 20px;
  background: var(--color-bg);
}
.curriculum__card-point-title {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 16px;
  color: var(--color-primary);
}
.curriculum__card-point-title::before {
  width: 20px;
  height: 20px;
  content: '';
  background: var(--tab-color) url('../img/icon-check.svg') no-repeat center center;
  background-size: 11px 8px;
  border-radius: 50%;
}
.curriculum__card-point-description {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
}
.curriculum__card-text::before {
  background: var(--tab-color);
  border-radius: 50%;
  transform: translateY(-50%);
}

@media (min-width: 768px) {
  .curriculum__contents {
    padding: 60px 0 100px;
  }
  .curriculum .contents-title {
    font-size: 40px;
  }
  .curriculum__lead {
    /* margin-top: 40px; */
    font-size: 24px;
  }
  .curriculum__contents-body {
    margin-top: 40px;
  }
  .curriculum__cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .curriculum__card {
    padding: 40px 50px;
  }
  .curriculum__card-lead {
    margin-top: 0;
    font-size: 20px;
    text-align: left;
  }
  .curriculum__card-description {
    font-size: 16px;
  }
  .curriculum__card-img-wrap {
    flex: 0 0 260px;
  }
  .curriculum__card-column {
    flex-direction: row;
    gap: 40px;
  }
  .curriculum__card-text::before {
    width: 12px;
    height: 12px;
  }
}

@media (min-width: 1025px) {
  .curriculum .contents-title {
    font-size: 42px;
  }
  .curriculum .contents-title::before,
  .curriculum .contents-title::after {
    width: 3px;
    height: 85px;
  }
  .curriculum .contents-title::before {
    margin-top: 18px;
    margin-right: 28px;
  }
  .curriculum .contents-title::after {
    margin-top: 18px;
    margin-left: 28px;
  }
}

/* --------------------------------
  result
-------------------------------- */
.result__area {
  background-color: #fff;
}
.result__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.result__heading {
  position: relative;
  display: flex;
  justify-content: center;
  color: #fff;
  background-color: #ff6ba0;
  border-radius: 8px;
}
.result__heading::before {
  position: absolute;
  bottom: -12px;
  width: 22px;
  height: 14px;
  content: '';
  background-color: #ff6ba0;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.result .result_image {
  width: 100%;
}
.result .result_image img {
  width: 100%;
}
.result .banner_area {
  width: 100%;
  padding: 0;
}

@media (max-width: 767.98px) {
  .result__area {
    padding-top: 40px;
  }
  .result__heading {
    width: 100%;
    padding: 10px 23.5px;
    margin-bottom: 10px;
    font-size: 16px;
  }
  .result .result_image {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
  .result .banner_area {
    width: 100vw;
    max-width: none;
    margin: 0 calc(50% - 50vw);
  }
}

@media (min-width: 768px) {
  .result__area {
    padding: 60px 0;
  }
  .result__inner {
    gap: 46px;
  }
  .result__heading {
    width: 700px;
    padding: 20px;
    font-size: 30px;
    border-radius: 16px;
  }
  .result__heading::before {
    bottom: -17px;
    width: 30px;
    height: 18px;
  }
}

/*-------------------------
    achievement
-------------------------*/
.achievement__inner {
  padding: 20px 0 40px;
}
.achievement .contents-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
}
.achievement__lead {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary);
  text-align: center;
}
.achievement__lead::before,
.achievement__lead::after {
  width: 2px;
  height: 20px;
  content: '';
  background-color: var(--color-primary);
  border-radius: 20px;
}
.achievement__lead::before {
  margin-right: 10px;
  transform: rotate(-28deg);
}
.achievement__lead::after {
  margin-left: 10px;
  transform: rotate(28deg);
}
.achievement__contents-body {
  margin-top: 24px;
}

@media (min-width: 768px) {
  .achievement__inner {
    padding: 40px 0 60px;
  }
  .achievement .contents-title {
    font-size: 40px;
  }
  .achievement__lead {
    margin-top: 40px;
    font-size: 36px;
  }
  .achievement__lead::before,
  .achievement__lead::after {
    height: 38px;
  }
  .achievement__lead::before {
    margin-right: 20px;
  }
  .achievement__lead::after {
    margin-left: 20px;
  }
  .achievement__contents-body {
    margin-top: 24px;
  }
}

/*-------------------------
    flow
-------------------------*/
.flow__inner {
  padding: 20px 0 40px;
}
.flow .contents-title {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary);
}
.flow__item:not(:first-child) {
  padding-top: 24px;
}
.flow__item:not(:last-child) {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-primary);
}
.flow__item-title {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary);
}
.flow__item-title .flow__item-title-label {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 45px;
  aspect-ratio: 1/1;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-primary);
  text-align: center;
  background: var(--color-accent);
  border-radius: 50%;
}
.flow__item-title .flow__item-title-label .--num {
  font-size: 18px;
}
.flow__item-description {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}
/* flow__cta */
.flow .md-contact {
  padding-top: 15px;
  background: var(--color-bg);
}

@media (min-width: 768px) {
  .flow__inner {
    padding: 40px 0 60px;
  }
  .flow .contents-title {
    font-size: 40px;
  }
  .flow__item-title {
    font-size: 28px;
  }
  .flow__item-title .flow__item-title-label {
    width: 70px;
    font-size: 13px;
  }
  .flow__item-title .flow__item-title-label .--num {
    font-size: 30px;
  }
  .flow__item-description {
    font-size: 16px;
  }
  /* flow__cta */
  .flow .md-contact {
    padding-top: 30px;
  }
}

/*-------------------------
    faq
-------------------------*/
.md-faq .faq-course {
  background-color: var(--color-primary-light);
}
.md-faq .l-container._middle {
  max-width: 1200px;
}
.md-faq a {
  color: var(--color-primary-dark);
}
.md-faq .c-title._h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary);
  text-align: center;
}
.md-faq .md-toggle__btn--has-icon {
  font-weight: 700;
}

@media (any-hover: hover) {
  .md-faq a:hover {
    text-decoration: underline;
  }
}
@media (min-width: 769px) {
  .faq-course .p-section__inner {
    padding: 80px 0;
  }
}
@media (min-width: 768px) {
  .md-faq .c-title._h2 {
    font-size: 40px;
  }
  .md-faq .p-section.faq-course {
    padding: 60px 10px 85px;
  }
}
