@charset "UTF-8";

:root {
  --color-primary: #1f3b9e;
  --color-primary-light: #eef6fd;
  --color-primary-dark: #182e4c;
  --color-accent: #fee302;
  --color-background: #ffffff;
  --color-text: #333333;
  --color-text-secondary: #ffffff;
  --color-gray: #f2f2f2;
  --color-red: #e52d2c;
  --color-beige: #f5f2e9;

  --color-orange: #ff820f;
  --color-orange-bg: #fef9e3;
  --color-green: #82c800;
  --color-green-bg: #f5ffe6;
  --color-blue: #27b5f4;
  --color-blue-bg: #eef6fd;

  --shadow: 2px 4px 9px 0px #a3a3a333;
}

/*-------------------------
    utilities
-------------------------*/
.u-pc {
  display: none !important;
}
.u-sp {
  display: block !important;
}
.u-color-primary {
  color: var(--color-primary) !important;
}
.u-color-accent {
  color: var(--color-accent) !important;
}
.u-color-red {
  color: var(--color-red) !important;
}
.u-text-underline {
  background: linear-gradient(transparent 80%, var(--color-accent) 80%);
}
.u-text-bold {
  font-weight: bold;
}
.u-text-align-center {
  text-align: center;
}
.u-text-align-left {
  text-align: left;
}
.u-text-align-right {
  text-align: right;
}
@media (min-width: 768px) {
  .u-pc {
    display: block !important;
  }
  .u-sp {
    display: none !important;
  }
}

/*-------------------------
    contents-inner
  -------------------------*/
.contents-inner {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .contents-inner {
    max-width: 1200px;
  }
}
@media (min-width: 1025px) {
  .contents-inner {
    padding: 0;
  }
}

/*-------------------------
    notes
  -------------------------*/
.notes {
  display: block;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
}

@media (min-width: 1025px) {
  .notes {
    max-width: 1200px;
  }
}

/*-------------------------
    title
  -------------------------*/
/* 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;
  }
}

/*-------------------------
    btn
  -------------------------*/
.md_button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 64px;
  padding: 18px;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: var(--color-primary);
  border-radius: 8px;
  box-shadow: 0 4px 0 #002d6a;
}
.md_button::after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 24px;
  height: 24px;
  content: '';
  background: url('/assets/img/top/play-circle-blu.png') no-repeat center / contain;
  transform: translateY(-50%);
}

@media (min-width: 768px) {
  .md_button {
    max-width: 450px;
    padding: 20px 60px 20px 20px;
    font-size: 20px;
    border-radius: 8px;
    box-shadow: 0 6px 0 #002d6a;
  }
  .md_button::after {
    right: 20px;
    width: 24px;
    height: 24px;
  }
}

/*-------------------------
    tab
  -------------------------*/
.tab [data-tab='tab1'],
.tab [data-tab-panel='tab1'] {
  --tab-color: var(--color-orange);
  --tab-color-bg: var(--color-orange-bg);
}
.tab [data-tab='tab2'],
.tab [data-tab-panel='tab2'] {
  --tab-color: var(--color-green);
  --tab-color-bg: var(--color-green-bg);
}
.tab [data-tab='tab3'],
.tab [data-tab-panel='tab3'] {
  --tab-color: var(--color-blue);
  --tab-color-bg: var(--color-blue-bg);
}
.tab__btn-wrap {
  display: flex;
  gap: 5px;
  align-items: flex-end;
  min-height: 50px;
}
.tab__btn {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  height: 40px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #666666;
  cursor: pointer;
  background: var(--color-gray);
  border: 1px solid #ccc;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
}
.tab__btn.is-active {
  height: 50px;
  font-size: 22px;
  color: var(--color-text-secondary);
  background: var(--tab-color);
  border-color: var(--tab-color);
}
.tab__content-item {
  display: none;
  padding: 28px 16px;
  background: var(--color-background);
  border: 4px solid var(--tab-color);
  border-radius: 0 0 7px 7px;
}
.tab__content-item.is-active {
  display: block;
}
.tab__content-item-title {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--tab-color);
  text-align: center;
}
.tab__content-item-lead {
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media (min-width: 768px) {
  .tab__btn-wrap {
    gap: 30px;
  }
  .tab__btn {
    height: 70px;
    font-size: 28px;
    border-radius: 8px 8px 0 0;
  }
  .tab__btn.is-active {
    height: 80px;
    font-size: 36px;
  }
  .tab__content-item {
    border-width: 6px;
  }
  .tab__content-item-title {
    font-size: 40px;
  }
  .tab__content-item-lead {
    margin-bottom: 10px;
    font-size: 20px;
  }
}
@media (min-width: 1025px) {
  .tab__content-item {
    padding: 50px 80px 60px;
  }
}

/*-------------------------
    splide
  -------------------------*/
.splide__pagination__page {
  width: 8px;
  height: 8px;
  margin: 6px;
  background: var(--color-background);
  border: 1px solid #b3b3b3;
  opacity: 1;
}
.splide__pagination {
  bottom: -1.7em;
}
.splide__pagination__page.is-active {
  background: #0379d6;
  border: none;
}

/* splide__arrow */
.splide__arrow {
  width: 41px;
  height: 41px;
  background: #0014284d;
  border-radius: 0;
  opacity: 0.7;
}
.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: 20px 0 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: 16px;
    height: 16px;
    opacity: 1;
  }
  /* .splide__pagination {
    bottom: 2em;
  } */
  .splide__pagination__page.is-active {
    background: #224087;
  }

  /* splide__arrow */
  .splide__arrow {
    width: 55px;
    height: 55px;
    background: #0014284d;
    border-radius: 0;
    opacity: 0.7;
  }
  .splide__arrow svg {
    width: 23px;
    height: 23px;
    fill: #fff;
  }
  .splide__arrow--next {
    right: 0.3em;
  }
  .splide__arrow--prev {
    left: 0.3em;
  }
}

/*-------------------------
    moving-arrow
  -------------------------*/
.moving-arrow {
  padding: 12px 0 0;
}
.moving-arrow img {
  display: block;
  max-width: 100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .moving-arrow {
    padding: 15px 0 0;
  }
  .moving-arrow img {
    max-width: 150px;
  }
}

/*-------------------------
    top-point
  -------------------------*/
.top-point {
  padding: 30px 0 0;
  background: #182e4c;
}
.top-point .try-content__teacher {
  padding: 0 10px;
}
.top-point .try-sub-head__teacher {
  margin-bottom: 80px;
}
.top-point .p-top-point__block {
  margin-top: 0;
}
.top-point .p-top-point__block:first-of-type {
  margin-top: 50px;
}
.top-point .p-top-point__block + .p-top-point__block {
  margin-top: 80px;
}

@media (min-width: 768px) {
  .top-point {
    padding: 60px 0 0;
  }
  .top-point .try-content__teacher {
    padding: 0 10px;
  }
}

/*-------------------------
    selecting-how-to
  -------------------------*/
.selecting-how-to__contents {
  padding: 40px 0;
}
.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-gray);
  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__head img {
  width: 100%;
}
.selecting-how-to__caption {
  display: block;
  margin-top: 5px;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
  text-align: right;
}
.selecting-how-to__list-box {
  padding: 14px 15px;
  margin: 24px 0;
  background: var(--color-background);
}
.selecting-how-to .list-box__title {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary-dark);
}
.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;
  aspect-ratio: 1/1;
  content: '';
  background: url('/top/assets/images/top-renewal-abtest/icon-check-blue.svg') no-repeat center center / contain;
}
.selecting-how-to .list-box__item:last-of-type {
  justify-content: flex-end;
  font-size: 12px;
}
.selecting-how-to .list-box__item:last-of-type::before {
  content: none;
}
.selecting-how-to__message {
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary-dark);
  text-align: center;
  letter-spacing: 0;
}
.selecting-how-to__notes {
  display: block;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
}

/* accordion */
.selecting-how-to .accordion {
  background: #1f3b9e;
  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 #1f3b9e;
  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: 90px 0;
  }
  .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__head {
    flex: 0 1 calc(380px / 0.9);
  }
  .selecting-how-to__head img {
    width: min(100%, calc(380px / 0.9));
  }
  .selecting-how-to__body {
    flex: 1 1 auto;
  }
  .selecting-how-to__caption {
    margin-top: 5px;
  }
  .selecting-how-to__list-box {
    padding: 18px 32px;
    margin: 0;
  }
  .selecting-how-to__list-box + .notes {
    margin-top: 8px;
  }
  .selecting-how-to .list-box__title {
    font-size: 20px;
  }
  .selecting-how-to .list-box__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .selecting-how-to .list-box__item {
    font-size: 16px;
    line-height: 1.3;
  }
  .selecting-how-to .list-box__item::before {
    display: block;
    width: 16px;
    aspect-ratio: 1/1;
    content: '';
    background: url('/top/assets/images/top-renewal-abtest/icon-check-blue.svg') no-repeat center center / contain;
    /* flex: 0 0 auto; */
  }
  .selecting-how-to .list-box__item:last-of-type {
    font-size: 16px;
  }
  .selecting-how-to .list-box__item:last-of-type::before {
    content: none;
  }
  .selecting-how-to__message {
    margin: 24px 0 10px;
    font-size: 26px;
  }
  .selecting-how-to__notes {
    max-width: 660px;
    margin-inline: auto;
  }
  /* accordion */
  .selecting-how-to .accordion {
    max-width: calc(800px / 0.9);
    margin: 60px auto 0;
  }
  .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;
  }
}

/*-------------------------
    teacher
  -------------------------*/
.teacher__contents {
  padding: 40px 0;
  background: var(--color-primary-dark);
}
.teacher__contents-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.teacher .contents-title {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text-secondary);
}
.teacher__lead {
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text-secondary);
  text-align: center;
}
.teacher__list-item {
  overflow: hidden;
  background: var(--color-background);
  border-radius: 12px;
}
.teacher__list-item-head {
  position: relative;
}
.teacher__list-item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 5px 15px 7px 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary);
  background: linear-gradient(233.87deg, #f0d76f 5.99%, #fef5ce 28.7%, #fff2a9 47.23%, #f0d76f 79.8%, #c68a01 101.35%);
  clip-path: polygon(0 0, 87% 0%, 100% 100%, 0 100%);
}
.teacher__list-item-body {
  padding: 12px;
}
.teacher__list-item-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary);
}
.teacher__list-item-name {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}
.teacher__list-item-description-title {
  margin-bottom: 3px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary);
}
.teacher__list-item-description {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.teacher__notes {
  display: block;
  margin-top: 20px;
  font-size: 10px;
  line-height: 1.5;
  color: var(--color-text-secondary);
}
.teacher__points__title {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text-secondary);
  text-align: center;
}
.teacher__points-body {
  padding: 30px 16px;
  background: var(--color-background);
  border-radius: 8px;
}
.teacher__points-column-head {
  flex: 0 0 calc(50% - 16px);
  padding: 0 0 30px 0;
}
.teacher__points-column-body {
  padding: 30px 0 0 0;
  border-top: 1px dashed #666666;
}
.teacher__points__head-line {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary);
  text-align: center;
}
/* checklist */
.teacher__points-checklist-item {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.teacher__points-checklist-item:not(:last-of-type) {
  margin-bottom: 10px;
}
.teacher__points-checklist-item::before {
  position: absolute;
  top: 3px;
  left: 0;
  display: block;
  width: 18px;
  aspect-ratio: 1/1;
  content: '';
  background: url('/top/assets/images/top-renewal-abtest/icon-check-blue.svg') no-repeat center center / contain;
}
.teacher__points-checklist-item .u-color-primary {
  font-weight: 700;
}
/* wide-target */
.teacher__wide-target {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.teacher__wide-target-item {
  width: calc(50% - 4px);
  padding: 6px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  background: var(--color-primary-light);
}
.teacher__points-description {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
/* btn */
.teacher .try-btn-text__tutor {
  margin-top: 40px;
}
.teacher .btn-process__bottom {
  gap: 18px;
  font-size: 18px;
  line-height: 1.4;
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .teacher__contents {
    padding: 90px 0;
  }
  .top-point .teacher__contents {
    padding: 90px 0 70px;
  }
  .teacher__contents-list {
    gap: 90px;
  }
  .teacher .contents-title {
    font-size: 40px;
  }
  .teacher__lead {
    margin-bottom: 40px;
    font-size: 32px;
  }
  .teacher__list {
    display: flex;
    justify-content: space-between;
  }
  .teacher__list-item {
    max-width: calc(250px / 0.9);
  }
  .teacher__list-item-head {
    position: relative;
  }
  .teacher__list-item-label {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 5px 15px 7px 10px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-primary);
    background: linear-gradient(233.87deg, #f0d76f 5.99%, #fef5ce 28.7%, #fff2a9 47.23%, #f0d76f 79.8%, #c68a01 101.35%);
    clip-path: polygon(0 0, 87% 0%, 100% 100%, 0 100%);
  }
  .teacher__list-item-body {
    padding: 12px;
  }
  .teacher__list-item-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-primary);
  }
  .teacher__list-item-name {
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
  }
  .teacher__list-item-description-title {
    margin-bottom: 3px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-primary);
  }
  .teacher__list-item-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
  }
  .teacher__notes {
    margin-top: 12px;
    text-align: right;
  }
  .teacher__points__title {
    margin-bottom: 28px;
    font-size: 32px;
  }
  .teacher__points-body {
    padding: 40px 60px;
  }
  .teacher__points-column {
    display: flex;
  }
  .teacher__points-column-head {
    flex: 0 0 auto;
    width: 50%;
    padding: 0 40px 0 0;
  }
  .teacher__points-column-body {
    flex: 0 1 auto;
    width: 50%;
    padding: 0 0 0 40px;
    border-top: 0;
    border-left: 1px dashed #666666;
  }
  .teacher__points__head-line {
    font-size: 26px;
  }
  /* checklist */
  .teacher__points-checklist-item {
    padding-left: 26px;
    font-size: 20px;
    line-height: 1.6;
  }
  .teacher__points-checklist-item::before {
    top: 8px;
  }
  /* wide-target */
  .teacher__wide-target-item {
    font-size: 20px;
  }
  .teacher__points-description {
    margin: 0 0 12px;
    font-size: 20px;
  }
  /* btn */
  .teacher .try-btn-text__tutor {
    max-width: 450px;
    margin: 60px auto 0;
  }
  .teacher .btn-process__bottom {
    font-size: 20px;
  }
}

/*-------------------------
    achievement
  -------------------------*/
.achievement__contents {
  padding: 40px 0 0;
}
.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-dark);
  text-align: center;
}
.achievement__lead::before,
.achievement__lead::after {
  width: 3px;
  height: 24px;
  content: '';
  background-color: var(--color-primary-dark);
  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;
}
.achievement__item-img {
  display: block;
  margin: 0 auto;
}
.achievement__area-list {
  padding: 20px;
  margin-top: 12px;
  background: var(--color-beige);
  border-radius: 6px;
}
.achievement__area-list li {
  font-size: 14px;
  line-height: 1.6;
}
.achievement .notes {
  margin-top: 12px;
}

/* tab */
.achievement .tab__content-item {
  padding: 32px 16px;
}
.achievement .tab__content-item-lead {
  padding: 0;
}

/* banner-area */
.achievement .banner_area {
  padding: 0;
}

@media (min-width: 768px) {
  .achievement__contents {
    padding: 90px 0 0;
  }
  .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;
  }
  .achievement__area-list {
    padding: 28px 70px;
  }
  .achievement__area-list li {
    font-size: 14px;
    line-height: 1.6;
  }

  /* tab */
  .achievement .tab__content-item {
    padding: 50px 100px;
  }
  .achievement .tab__content-item-lead {
    margin-bottom: 60px;
  }
}

/*-------------------------
    voice
  -------------------------*/
.voice__contents {
  padding: 40px 0;
}
.voice .contents-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
}
.voice__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-dark);
  text-align: center;
}
.voice__lead::before,
.voice__lead::after {
  width: 3px;
  height: 24px;
  content: '';
  background-color: var(--color-primary-dark);
  border-radius: 20px;
}
.voice__lead::before {
  margin-right: 10px;
  transform: rotate(-28deg);
}
.voice__lead::after {
  margin-left: 10px;
  transform: rotate(28deg);
}
.voice__contents-body {
  margin-top: 24px;
}
.voice__list-item {
  height: auto;
  padding: 20px 36px;
  background: var(--tab-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-orange);
}
.voice__list-item-label.--junior-high {
  background: var(--color-green);
}
.voice__list-item-label.--high {
  background: var(--color-blue);
}
.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;
}

@media (min-width: 768px) {
  .voice__contents {
    padding: 60px 0 80px;
    overflow: hidden;
  }
  .voice .contents-inner {
    /* padding: 60px 0 0; */
  }
  .voice .contents-title {
    font-size: 40px;
  }
  .voice__lead {
    margin-top: 40px;
    font-size: 36px;
  }
  .voice__lead::before,
  .voice__lead::after {
    height: 38px;
  }
  .voice__lead::before {
    margin-right: 20px;
  }
  .voice__lead::after {
    margin-left: 20px;
  }
  .voice__contents-body {
    margin-top: 24px;
  }
  .voice__list {
    display: flex;
    gap: 20px;
    justify-content: space-between;
  }
  .voice__list-item {
    max-width: calc(100% / 3);
    padding: 20px;
  }
  .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-orange);
  }
  .voice__list-item-label.--junior-high {
    background: var(--color-green);
  }
  .voice__list-item-label.--high {
    background: var(--color-blue);
  }
  .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;
  }
}

/* tab */
.voice .tab__content-item {
  padding: 28px 16px 54px;
}

@media (min-width: 768px) {
  .voice .tab__content-item {
    padding: 50px 80px 60px;
  }
}

/* slider */
.voice .splide__track {
  padding: 10px 0;
  margin: 0 -16px;
}

@media (min-width: 1025px) {
  /* md-top.cssの相殺 */
  .voice .splide__slide {
    width: calc(100% / 3 - 16px);
  }
}
@media (min-width: 769px) {
  .voice .splide__track {
    padding: 0;
  }
}
@media (min-width: 768px) {
  .voice .splide__track {
    margin: 0;
  }
  .splide.is-initialized:not(.is-active) .splide__list {
    display: flex;
  }
}

/*-------------------------
    md-course-fee
  -------------------------*/
.md-course-fee .md-course-fee__btn-wrap.u-max-w-450 {
  max-width: 450px;
}
