@charset "UTF-8";
:root {
  --primary-color: #182e4c;
  --primary-color-light: #eef6fd;
  --accent-color: #fee902;
  --accent-color-light: #fee302;
  --underline-color: #fee300;
  --underline-color-pink: #F9BFCE;
  --background-color: #ffffff;
  --text-color: #333333;
  --text-color-secondary: #ffffff;
  --color-gray: #cccccc;
  --color-red: #e52d2c;
  --color-blue: #1f3b9e;
  --shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.25);
}
body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
}
main img {
  display: block;
  margin: auto;
}
@media screen and (min-width: 1025px) {
  body {
    font-size: 16px;
  }
}
/*-------------------------
    common
-------------------------*/
.pc {
  display: none !important;
}
.sp {
  display: block !important;
}
.u-color-primary {
  color: var(--primary-color);
}
.u-color-accent {
  color: var(--accent-color);
}
.u-color-red {
  color: var(--color-red);
}
.u-color-blue {
  color: var(--color-blue);
}
.u-text-underline {
  background: linear-gradient(transparent 80%, var(--underline-color) 80%);
}
.u-text-underline-pink {
  background: linear-gradient(transparent 80%, var(--underline-color-pink) 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 screen and (min-width: 768px) {
  .pc {
    display: block !important;
  }
  .sp {
    display: none !important;
  }
}

/* ========================================
    splide
========================================= */
.student-voice .splide__track{
  padding: 10px;
  padding-bottom: 42px;
  box-sizing: border-box;
}
.student-voice img{
  margin: 0;
}
.splide__pagination__page {
  opacity: 1;
}
.splide__pagination {
  bottom: 5em;
}
.splide__pagination__page.is-active {
  background: #224087;
}

/* splide__arrow */
.splide__arrow {
  background: #0014284d;
  border-radius: 0;
  height: 41px;
  opacity: 1;
  width: 41px;
}
.splide__arrow svg {
  fill: #fff;
  height: 18px;
  width: 18px;
}
.splide__arrow--next {
  right: 0.4em;
}
.splide__arrow--prev {
  left: 0.4em;
}

/* progress-bar */
.splide__progress {
  background-color: #CCCCCC;
  margin: 23px 16px 0;
  overflow: hidden;
}

.splide__progress__slide {
  background: #1F3B9E;
  height: 5px;
  transition: width 400ms ease;
  width: 0;
}

@media only screen and (min-width: 769px) {
  /* zoomの相殺 */
  .teacher-introduction__contents .splide__track {
    transform: scale(1.1111);
    transform-origin: center center;
    padding: 50px 0 10px;
  }
}

@media only screen and (min-width: 768px) {
  .student-voice .splide__track{
    padding-bottom: 12px;
  }
  .splide__progress {
    margin: 47px 16px 0;
  }
  .splide__track{
    padding-bottom: 12px;
  }
  .splide__pagination__page {
    opacity: 1;
  }
  .splide__pagination {
    bottom: 2em;
  }
  .splide__pagination__page.is-active {
    background: #224087;
  }

  /* splide__arrow */
  .splide__arrow {
    background: #0014284d;
    border-radius: 0;
    height: 41px;
    opacity: 0.7;
    width: 41px;
  }
  .splide__arrow svg {
    fill: #fff;
    height: 18px;
    width: 18px;
  }
  .splide__arrow--next {
    right: 0.2em;
  }
  .splide__arrow--prev {
    left: 0.2em;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  /* splide__arrow */
  .splide__arrow--next {
    right: 1.6em;
  }
  .splide__arrow--prev {
    left: 1.6em;
  }
}


/*-------------------------
    contents-inner
-------------------------*/
.contents-inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .contents-inner {
    max-width: 1080px;
    padding: 0;
  }
}

/*-------------------------
    notes
-------------------------*/
.notes {
  display: block;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.5;
}
@media screen and (min-width: 1025px) {
  .notes {
    max-width: 1200px;
  }
}

/*-------------------------
    見出し
-------------------------*/
/* contents-title */
.contents-title {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contents-title {
    font-size: 40px;
  }
}

/* tooltip */
.tooltip {
  position: relative;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.5px;
  background: var(--primary-color-light);
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 25px;
}
.tooltip::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 22px;
  height: 12px;
  background: var(--primary-color-light);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

@media screen and (min-width: 1025px) {
  .tooltip {
    font-size: 28px;
    padding: 15px;
    margin-bottom: 50px;
  }
  .tooltip::after {
    bottom: -18px;
    width: 32px;
    height: 20px;
  }
}

/*-------------------------
    card-contents
-------------------------*/
.card-contents-wrapper.--column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.card-contents-wrapper.--pc-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.card-contents {
  display: flex;
  flex-direction: column;
}
.card-contents-head {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary-color);
  padding: 10px 0;
  text-align: center;
}
.card-contents-title {
  color: var(--text-color-secondary);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}
.card-contents-body {
  display: block;
  background: var(--background-color);
  border: solid 1px var(--primary-color);
  padding: 20px;
}
/* --radius */
.card-contents.--radius .card-contents-head {
  border-radius: 6px 6px 0 0;
}
.card-contents.--radius .card-contents-body {
  border-radius: 0 0 6px 6px;
}
@media screen and (min-width: 1025px) {
  .card-contents-wrapper.--pc-column {
    grid-template-columns: 1fr 1fr;
  }
  .card-contents-title {
    font-size: 24px;
  }
  .card-contents-body {
    padding: 24px;
  }
  /* --radius */
  .card-contents.--radius .card-contents-head {
    border-radius: 8px 8px 0 0;
  }
  .card-contents.--radius .card-contents-body {
    border-radius: 0 0 8px 8px;
  }
}

/*-------------------------
    CTA
-------------------------*/
.md-contact {
  background: var(--primary-color-light);
  padding: 33px 0;
}
#achievement + .md-contact {
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .md-contact {
    padding: 40px 0 50px;
  }
  #achievement + .md-contact {
    padding-bottom: 80px;
  }
}

/*-------------------------
    main-visual
-------------------------*/
.md_main-visual {
  background-color: #192963;
}
.md_main-visual--text {
  color: #ffff;
  font-weight: 700;
  font-size: 2.7rem;
  line-height: 39.1px;
  padding: 24px 20px;
}
.md_main-visual > div {
  flex-direction: column;
  align-items: flex-start;
}
.md_main-visual .contents-inner {
  padding: 0;
}
.md_d-flex {
  display: flex;
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
  .md_main-visual--text {
    margin: auto;
  }
}

@media (min-width: 769px) {
  .sl\:w50per {
    width: 50%;
  }
}

@media screen and (min-width: 768px) {
  .md_main-visual .contents-inner {
    max-width: 1200px;
  }
  .md_main-visual--text {
    font-size: min(calc(32 / 1200 * 100vw), 32px);
  }
  .md_main-visual > div {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/*-------------------------
    eiken_container
-------------------------*/
.eiken_container {
  max-width: 1200px;
  margin: 0 auto;
}
.eiken_container .upchar {
  vertical-align: super;
  font-size: 12px;
}
.eiken_container .madeato {
  font-size: 14px;
}
.eiken_container #remaining-day-count {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  padding: 0 4px;
}
.eiken_container .remaining-day-count-num {
  color: #e6003d;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  background: #fff;
  border-radius: 3px;
  padding: 3px 2px;
  text-shadow: none;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 1023px) {
  .eiken_container {
    width: 100%;
  }
  .eiken_container .remaining-day-count-num {
    font-size: 28px;
  }
}
.eiken_counter {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: initial;
  padding: 8px 0;
  background: linear-gradient(180deg, #ffc8c7 0%, #CB0021 100%);
  border: solid #fff 2px;
  border-radius: 6px;
  text-align: center;
  font-size: 19px;
  font-weight: 540;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .eiken_counter {
    font-size: 16px;
  }
}
.eiken_note {
  margin-top: 8px;
  font-size: 10px;
}

/*-------------------------
    reason
-------------------------*/
#reason .reason__contents {
  padding: 0 0 40px;
}
#reason .reason__title {
  position: relative;
  background: var(--primary-color);
  color: var(--text-color-secondary);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.26;
  text-align: center;
  padding: 14px 0 17px;
  margin-bottom: 9px;
}
#reason .reason__title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  width: 26px;
  height: 16px;
  background: var(--primary-color);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
#reason .reason__title .--lg {
  font-size: 26px;
}
#reason .reason__title .--lg .num {
  font-size: 38px;
  line-height: 1;
}
#reason .reason__list-wrapper {
  padding: 20px 0 0;
}
#reason .reason__item:not(:first-child) {
  margin-top: 40px;
}
#reason .reason__item-head {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
#reason .reason__item-head .reason__item-number {
  font-family: Roboto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  color: var(--text-color-secondary);
  font-weight: 700;
  font-size: 21px;
  background: var(--primary-color);
  width: 35px;
  height: 35px;
  border-radius: 50%;
}
#reason .reason__item-head .reason__item-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
}
#reason .reason__item-head .reason__item-title sub {
  font-weight: 400;
  font-size: 14px;
}
#reason .reason__item-head .reason__item-title span {
  font-size: 23px;
}
#reason .reason__item-description {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 20px;
}
#reason .reason__item-point {
  background: #F9F9F9;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  padding: 15px 10px;
  margin-top: 20px;
}
#reason .reason__item-point span {
  color: var(--color-blue);
}
#reason .notes {
  margin-top: 5px;
}

/* example */
#reason .reason__example-title {
  display: block;
  position: relative;
  padding: 0 5.5em;
  color: var(--color-blue);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.3;
  text-align: center;
  margin-top: 20px;
}
#reason .reason__example-title::before,
#reason .reason__example-title::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  width: 30%;
  height: 2px;
  background-color: var(--color-blue);
}
#reason .reason__example-title::before {
  left: 0;
}
#reason .reason__example-title::after {
  right: 0;
}
#reason .reason__example-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}
#reason .reason__example-item {
  background: var(--primary-color-light);
  padding: 12px;
}
#reason .reason__example-item-title {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 4px;
}
#reason .reason__example-item-title img {
  width: 18px;
  flex: 0 0 auto;
  margin: 0;
}
#reason .reason__example-item-description {
  display: flex;
  align-items: center;
  gap: 3px;
  font-weight: 700;
  font-size: 10px;
  line-height: 1.3;
}
#reason .reason__example-item-description::before {
  content: '';
  background: url('../img/icon-check.svg') no-repeat center center / contain;
  width: 10px;
  aspect-ratio: 10/13;
}

/* custom */
#reason .reason__custom-title {
  display: block;
  position: relative;
  padding: 0 2.5em;
  color: var(--color-blue);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.3;
  text-align: center;
  margin-top: 20px;
}
#reason .reason__custom-title::before,
#reason .reason__custom-title::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  width: 13%;
  height: 2px;
  background-color: var(--color-blue);
}
#reason .reason__custom-title::before {
  left: 0;
}
#reason .reason__custom-title::after {
  right: 0;
}
#reason .reason__custom-container {
  background: #F9F9F9;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px;
  margin-top: 15px;
}
#reason .reason__custom-subtitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
#reason .reason__custom-lead {
  font-size: 14px;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0;
}
#reason .reason__custom-item {
  background: #FFFFFF;
  padding: 20px 16px;
}
#reason .reason__custom-item:first-of-type {
  margin-bottom: 35px;
}
#reason .reason__custom-item-unit{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
#reason .reason__custom-item-unit:first-of-type {
  margin-bottom: 40px;
}
#reason .reason__custom-item-unit:first-of-type::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 10px;
  background: #999999;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
}
#reason .reason__custom-item-unit-title {
  font-size: 16px;
  font-weight: 600;
}
#reason .reason__custom-item-title {
  font-weight: bold;
  font-size: 18px;
  border-bottom: 1px solid #1F3B9E;
  text-align: center;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
#reason .reason__custom-item-description {
  margin-bottom: 15px;
}

/* case */
#reason .reason__case {
  background: #F9F9F9;
  text-align: center;
  padding: 30px 16px;
  margin-top: 40px;
}
#reason .reason__case-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
#reason .reason__case-lead {
  font-size: 12px;
  margin-bottom: 20px;
}
#reason .reason__case-table {
  overflow-x: auto;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
}
#reason .reason__case-table::-webkit-scrollbar {
  height: 4px;
}
#reason .reason__case-table::-webkit-scrollbar-track {
  background: #eee;
}
#reason .reason__case-table::-webkit-scrollbar-thumb {
  background: #aaa;
  border: none;
}
#reason .reason__case-table::-webkit-scrollbar-thumb:hover {
  background: #999;
}
#reason .reason__case-table table {
  text-align: center;
  width: 380px;
  margin: 0 auto;
  border-collapse: collapse;
  border-spacing: 0;
}
#reason .reason__case-table table td,
#reason .reason__case-table table th {
  border: 2px solid #FFFFFF;
}
#reason .reason__case-table table th {
  white-space: nowrap;
}
#reason .row_head {
  background: #999999;
}
#reason .row_head {
  color: #FFFFFF;
}
#reason .row_head th {
  height: 42px;
  border-top: none !important;
  line-height: 1.2;
  font-size: 10px;
}
#reason .row_head th:first-of-type {
  visibility: hidden;
  border-left: none !important;
}
#reason .row_head th:last-of-type {
  border-right: none !important;
}
#reason .row_juniorhigh {
  background: #ffecdc;
}
#reason .row_juniorhigh th {
  background: #FF922E66;
  font-size: 12px;
  padding: 0 11px;
  height: 120px;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
}
#reason .row_high {
  background: #DAF6EA;
}
#reason .row_high th {
  background: #3BB97D66;
  font-size: 12px;
  padding: 0 11px;
  height: 120px;
  border-left: none !important;
  border-right: none !important;
}
#reason .row_university {
  background: #DCF1FF;
}
#reason .row_university th {
  background: #249BD966;
  font-size: 12px;
  padding: 0 11px;
  height: 120px;
  border-bottom: none !important;
  border-left: none !important;
  border-right: none !important;
}
#reason td.cell_school {
  white-space: nowrap;
  font-size: 10px;
  padding: 0 12px;
  height: 60px;
  border-left: none !important;
}
#reason td.cell_score {
  white-space: nowrap;
  font-size: 10px;
}
#reason .cell_score-small {
  font-size: 6px;
}
#reason td.cell_content {
  font-size: 10px;
  text-align: left;
  padding: 0 11.1px;
  line-height: 1.3;
  border-right: none !important;
}
#reason .row_university:last-of-type td {
  border-bottom: none !important;
}
#reason .reason__case-table-note {
  text-align: left;
  margin: 20px auto 0;
  font-size: 10px;
}

@media screen and (min-width: 1025px) {
  #reason .reason__contents {
    padding: 0 0 90px;
  }
  #reason .contents-inner {
    max-width: 1080px;
  }
  #reason .reason__title {
    font-size: 30px;
    padding: 40px 0;
    margin-bottom: 15px;
  }
  #reason .reason__title::after {
    bottom: -20px;
    width: 46px;
    height: 22px;
  }
  #reason .reason__title .--lg {
    font-size: 42px;
  }
  #reason .reason__title .--lg .num {
    font-size: 63px;
  }
  #reason .reason__list-wrapper {
    padding: 70px 0 0;
  }
  #reason .reason__item:not(:first-child) {
    margin-top: 70px;
  }
  #reason .reason__item-head {
    gap: 32px;
    margin-bottom: 40px;
  }
  #reason .reason__item-head .reason__item-number {
    font-size: 42px;
    width: 72px;
    height: 72px;
  }
  #reason .reason__item-head .reason__item-title {
    font-size: 32px;
  }
  #reason .reason__item-head .reason__item-title sub {
    font-size: 18px;
  }
  #reason .reason__item-head .reason__item-title span {
    font-size: 40px;
  }
  #reason .reason__item-body .reason__item-column {
    display: flex;
    align-items: center;
    gap: 60px;
  }
  #reason .reason__item-text {
    flex: 1;
  }
  #reason .reason__item-description {
    flex: 1;
    font-size: 18px;
    margin-top: 0;
  }
  #reason .reason__item-point {
    font-size: 16px;
    margin-top: 25px;
  }
  #reason .notes {
    margin-top: 10px;
  }

  /* example */
  #reason .reason__example-title {
    padding: 0 12em;
    font-size: 32px;
    margin-top: 50px;
  }
  #reason .reason__example-title::before,
  #reason .reason__example-title::after {
    width: 38%;
  }
  #reason .reason__example-title::before {
    left: 0;
  }
  #reason .reason__example-title::after {
    right: 0;
  }
  #reason .reason__example-list {
    margin-top: 30px;
    grid-template-columns: repeat(4, 1fr);
  }
  #reason .reason__example-item {
    padding: 20px 14px;
  }
  #reason .reason__example-item-title {
    font-size: 20px;
    margin-bottom: 8px;
  }
  #reason .reason__example-item-title img {
    width: 26px;
  }
  #reason .reason__example-item-description {
    font-size: 15px;
  }
  #reason .reason__example-item-description::before {
    width: 16px;
    aspect-ratio: 16/21;
  }

  /* custom */
  #reason .reason__custom-title {
    padding: 0 9em;
    font-size: 32px;
    margin-top: 50px;
  }
  #reason .reason__custom-title::before,
  #reason .reason__custom-title::after {
    width: 29%;
  }
  #reason .reason__custom-title::before {
    left: 0;
  }
  #reason .reason__custom-title::after {
    right: 0;
  }
  #reason .reason__custom-container {
    margin-top: 30px;
    padding: 40px 0px;
  }
  #reason .reason__custom-subtitle {
    font-size: 30px;
    margin-bottom: 20px;
  }
  #reason .reason__custom-lead {
    font-size: 16px;
    margin-bottom: 40px;
  }
  #reason .reason__custom-item {
    display: flex;
    align-items: center;
    width: 100%; 
    max-width: 880px;
    padding: 50px 80px;
    gap: 50px;
  }
  #reason .reason__custom-item:first-of-type {
    margin-bottom: 70px;
  }
  #reason .reason__custom-item-unit {
    position: relative;
    gap: 20px;
    flex: 1;
  }
  #reason .reason__custom-item-unit:first-of-type {
    margin-bottom: 0px;
  }
  #reason .reason__custom-item-unit:first-of-type::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 30px;
    background: #999999;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    right: -30px;
    left: unset;
    bottom: unset;
    top: 50%;
    transform: translateY(-50%);
  }
  #reason .reason__custom-item-unit-title {
    font-size: 26px;
  }
  #reason .reason__custom-item-title {
    font-size: 26px;
    text-align: left;
    margin-bottom: 20px;
    padding-bottom: 5px;
  }
  #reason .reason__custom-item-description {
    font-size: 18px;
    margin-bottom: 0;
  }

  /* case */
  #reason .reason__case {
    padding: 80px 0;
    margin-top: 60px;
  }
  #reason .reason__case-title {
    font-size: 36px;
    margin-bottom: 15px;
  }
  #reason .reason__case-lead {
    font-size: 16px;
    margin-bottom: 50px;
  }
  #reason .reason__case-table table {
    width: 880px;
    margin: 0 auto;
  }
  #reason .reason__case-table table th {
    font-size: 16px;
    padding: 0 20px;
  }
  #reason .row_head th {
    height: 44px;
  }
  #reason .row_juniorhigh th {
    padding: 0 25px;
    height: 173px;
  }
  #reason .row_high th {
    padding: 0 25px;
    height: 173px;
  }
  #reason .row_university th {
    padding: 0 25px;
    height: 173px;
  }
  #reason td.cell_school {
    font-size: 16px;
    padding: 0 12px;
    height: 85.5px;
  }
  #reason td.cell_score {
    font-size: 16px;
  }
  #reason .cell_score-small {
    font-size: 16px;
  }
  #reason td.cell_content {
    font-size: 14px;
  }
  #reason .reason__case-table-note {
    text-align: right;
    width: 880px;
    margin: 20px auto 0;
    font-size: 12px;
  }
}

/*-------------------------
    teacher-introduction
-------------------------*/
.teacher-introduction {
  margin-top: 50px;
}
.teacher-introduction img {
  margin: 0;
}
.teacher-introduction .contents-inner {
  position: relative;
  padding: 0;
}
.teacher-introduction__title--text {
  color: #182E4C;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.teacher-introduction__contents {
  margin: 0 -16px 40px;
}
.teacher-introduction__contents .teacher-introduction__title {
  font-size: 24px;
  font-weight: 700;
  color: #182E4C;
  text-align: center;
  margin-bottom: 16px;
}
.c-bg-blue {
  font-size: 14px;
  background-color: #1F3B9E;
  color: #fff;
  padding: 2.5px 8px;
  border-radius: 3px;
  font-weight: bold;
}
.teacher--lg {
  font-size: 26px;
}
.teacher__list-item {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  text-align: left;
  padding: 20px 12px;
  box-shadow: 2px 4px 9px 0px #A3A3A333;
  border-radius: 8px;
  border: 1px solid #CCCCCC;
  gap: 15px
}
.teacher__list-item-caption {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 15px;
}
.teacher__list-item-category {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.teacher__list-item-img {
  width: 7.5rem;
  height: 7.5rem;
}
.teacher__list-item-title {
  color: #333333;
  font-size: 14px;
  font-weight: bold;
  margin-top: 16px;
}
.teacher__list-item-name {
  font-size: 14px;
  font-weight: bold;
}
.teacher__list-item-achievement-wrap {
  display: flex;
  align-items:flex-start;
  margin-top: 15px;
  gap: 7px;
  margin-top: 10px;
}
.teacher__list-item-achievement-title {
  font-size: 20px;
  font-weight: bold;
  border-bottom: 1px solid #CCCCCC;
}
.teacher__list-item-achievement-wrap-title {
  font-size: 14px;
  font-weight: bold;
  color: #916757;
  background-color: #F8F3EB;
  padding: 4px 7px;
  border-radius: 3px;
  text-align: center;
  flex: 0 0 5.2em;
}
.teacher__list-item-achievement-wrap-text {
  flex: 1;
  letter-spacing: 0;
  line-height: 1.4em;
}
.teacher__list-item-achievement-note {
  font-size: 10px;
  margin-top: 15px;
}
.teacher__list-item-possible,
.teacher__list-item-what {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #EEF6FD;
  gap: 10px;
  padding: 12px;
}
.teacher__list-item-what {
  margin-top: 15px;
}
.teacher__list-item-possible-title,
.teacher__list-item-what-title {
  width: 100%;
  border-bottom: 1px #666666 solid;
  font-size: 16px;
  text-align: center;
  font-weight: bold;
}
.teacher__list-item-possible-description,
.teacher__list-item-what-description {
  flex: 1;
  letter-spacing: 0;
  line-height: 1.4em;
}
.teacher-introduction__note {
  text-align: left;
  margin-left: 16px;
  margin-top: 23px;
  font-size: 10px;
}

@media only screen and (min-width: 768px) {
  .teacher-introduction {
    margin-top: 60px;
  }
  .teacher-introduction__contents {
    overflow: hidden;
    margin-bottom: 72px;
  }
  .teacher-introduction__contents .teacher-introduction__title {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .teacher-introduction__contents .teacher-introduction__title--text {
    font-size: 44px;
  }
  .c-bg-blue {
    font-size: 16px;
    background-color: #1F3B9E;
    color: #fff;
    padding: 2.5px 8px;
    border-radius: 3px;
    font-weight: bold;
  }
  .teacher--lg {
    font-size: 26px;
  }
  .teacher__list-item {
    background-color: #fff;
    text-align: left;
    padding: 32px 40px;
    flex-direction: row;
    gap: 40px;
  }
  .teacher__list-item-introduction {
    flex: 0 0 calc(49% - 40px); 
    min-width:0;
  }
  .teacher__list-item-achievement-wrap-title {
    font-size: 16px;
    flex: 0 0 5.1em;
  }
  .teacher__list-item-img {
    width: 100px;
    height: 100px;
  }
  .teacher__list-item-title {
    color: #1F3B9E;
    font-size: 18px;
    font-weight: bold;
    margin-top: 16px;
  }
  .teacher__list-item-name {
    font-size: 14px;
    font-weight: bold;
  }
  .teacher__list-item-possible,
  .teacher__list-item-what {
    padding: 20px;
    background-color: #EEF6FD;
  }
  .teacher__list-item-what {
    margin-top: 15px;
  }
  .teacher__list-item-possible-title,
  .teacher__list-item-what-title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
  }
  .teacher-introduction__note {
    text-align: left;
    margin-top: 40px;
  }
}

/*-------------------------
    student-voice
-------------------------*/
.main-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .main-section {
    padding: 0 20px;
  }
}
@media only screen and (min-width: 769px) {
  .main-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
}
.student-voice__contents {
  margin-top: 30px;
  padding-bottom: 40px;
}
.student-voice__title {
  text-align: center;
  margin-bottom: 6px;
}
.student-voice__title--text {
  font-size: 24px;
  font-weight: 700;
  color: #182E4C;
}
.voice--lg {
  font-size: 20px;
}
.u-fw_bold {
  font-weight: bold;
}
.voice__list-item {
  text-align: left;
  border: 1px #CCCCCC solid;
  border-radius: 8px;
  padding: 24px 32px;
  box-shadow: 2px 4px 9px 0px #4673AF33;
}
.voice__list-item-img {
  width: 6rem;
  height: 6rem;
}
.voice__list-item-img-wrap {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #182E4C;
}
.voice__list-item-name {
  font-size: 14px;
  font-weight: bold;
}
.voice__list-item-title {
  font-size: 16px;
  font-weight: bold;
  margin-top: 15px;
  color: #182E4C;
}
.voice__list-item-description {
  margin-top: 15px;
  line-height: 1.6em;
}
.student-voice__note {
  font-size: 10px;
  text-align: left;
  padding: 0 7.25%;
}

@media only screen and (min-width: 768px) {
  .student-voice__contents {
    margin-top: 50px;
  }
  .student-voice__title {
    margin-bottom: 15px;
  }
  .student-voice__title--text {
    font-size: 32px;
  }
  .voice--lg {
    font-size: 33px;
  }
  .u-fw_bold {
    font-weight: bold;
  }
  .splide.is-initialized:not(.is-active) .voice__list {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
  .voice__list-item {
    padding: 40px 50px;
  }
  .voice__list-item-img {
    width: 100px;
    height: 100px;
  }
  .voice__list-item-img-wrap {
    gap: 40px;
  }
  .voice__list-item-name {
    font-size: 20px;
  }
  .voice__list-item-title {
    font-size: 20px;
    margin-top: 0;
  }
  .voice__list-item-description {
    margin-top: 20px;
    line-height: 1.6em;
  }
  .student-voice__note {
    font-size: 12px;
    text-align: right;
    padding: 0 10px;
  }
}

/*-------------------------
    achievement
-------------------------*/
#achievement .achievement__contents {
  padding: 20px 0 40px;
}
#achievement .contents-title {
  color: #e5003c;
}
#achievement .achievement__description {
  color: #333333;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 14px;
}

@media screen and (min-width: 768px) {
  #achievement .achievement__contents {
    padding: 60px 0;
  }
  #achievement .achievement__description {
    font-size: 18px;
    margin: 20px 0 40px;
    text-align: center;
  }
}

@media screen and (min-width: 1025px) {
  #achievement .contents-inner {
    max-width: 1000px;
  }
}

/*-------------------------
    learn-beginning
-------------------------*/
#learn-beginning .learn-beginning__contents {
  padding: 0 0 80px;
}
#learn-beginning .learn-beginning__column {
  background: #FFF5F5;
  border-radius: 8px;
}
#learn-beginning .learn-beginning__text {
  padding: 30px 16px;
}
#learn-beginning .learn-beginning__head p {
  font-size: 16px;
  font-weight: bold;
}
#learn-beginning .learn-beginning__head h2 {
  font-size: 20px;
  letter-spacing: 0;
}
#learn-beginning .learn-beginning__description {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0;
  margin-top: 15px;
}

@media screen and (min-width: 1025px) {
  #learn-beginning .learn-beginning__contents {
    padding: 40px 0 100px;
  }
  #learn-beginning .learn-beginning__column {
    display: flex;
    align-items: center;
    gap: 50px;
    border-radius: 10px;
  }
  #learn-beginning .learn-beginning__text {
    padding: 0 50px 0 0;
  }
  #learn-beginning .learn-beginning__head p {
    font-size: 20px;
  }
  #learn-beginning .learn-beginning__head h2 {
    font-size: 32px;
  }
  #learn-beginning .learn-beginning__description {
    font-size: 16px;
    margin-top: 20px;
  }
  #learn-beginning .learn-beginning__contents-img {
    max-width: 401px;
  }
}

/*-------------------------
    learning-support
-------------------------*/
#learning-support .learning-support__contents {
  position: relative;
  background: var(--primary-color);
  padding: 50px 0 30px;
}
#learning-support .tooltip {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--background-color);
  border: 2px solid var(--primary-color);
  padding: 9px 30px;
  width: 260px;
}
#learning-support .tooltip::after {
  background: var(--background-color);
}
#learning-support .learning-support__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#learning-support .learning-support__list-item {
  position: relative;
  display: block;
  background: var(--background-color);
  border-radius: 16px;
  padding: 30px 20px;
}
#learning-support .learning-support__list-item-img-wrap {
  width: 100%;
  text-align: center;
  margin-top: 24px;
}
#learning-support .learning-support__list-item-text-wrap {
  margin-top: 20px;
}
#learning-support .learning-support__list-item-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: (--text-color);
  font-size: 24px;
  line-height: 1.4;
  text-align: center;
  margin-top: 6px;
}
#learning-support .learning-support__list-item-title--label {
  background: #D7EAFC;
  color: var(--primary-color);
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
  padding: 4px 7px;
}
#learning-support .learning-support__list-item-title--sub {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}
#learning-support .learning-support__list-item-description {
  font-size: 14px;
  line-height: 1.6;
}
#learning-support .notes {
  margin-top: 10px;
}
@media screen and (min-width: 1025px) {
  #learning-support .learning-support__contents {
    padding: 80px 0;
  }
  #learning-support .contents-inner {
    max-width: 800px;
  }
  #learning-support .tooltip {
    width: 380px;
  }
  #learning-support .tooltip::after {
    background: var(--background-color);
  }
  #learning-support .learning-support__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  #learning-support .learning-support__list-item {
    padding: 45px;
  }
  #learning-support .learning-support__list-item-img-wrap {
    width: 100%;
    text-align: center;
    margin-top: 24px;
  }
  #learning-support .learning-support__list-item-text-wrap {
    /* margin-top: 24px; */
  }
  #learning-support .learning-support__list-item-title {
    justify-content: start;
    text-align: left;
    margin-top: 12px;
    line-height: 1.3;
  }
  #learning-support .learning-support__list-item-title--label {
    font-size: 16px;
    padding: 4px 10px;
  }
  #learning-support .learning-support__list-item-title--sub {
    font-size: 16px;
    text-align: left;
  }
  #learning-support .learning-support__list-item-description {
    font-size: 16px;
    line-height: 1.5;
  }
  #learning-support .notes {
    margin-top: 12px;
  }
  #learning-support .contents-column {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }
  #learning-support .contents-column-left,
  #learning-support .contents-column-right {
    flex: 1;
  }
}

/*-------------------------
    flow
-------------------------*/
#flow .flow__contents {
  padding: 40px 0;
}
#flow .contents-title {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary-color);
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  border-radius: 12px 12px 0px 0px;
  padding: 17px 0;
}
#flow .flow__contents-body {
  border: 2px solid var(--primary-color);
  border-radius: 0 0 12px 12px;
  padding: 30px 20px;
}
#flow .flow__item:not(:first-child) {
  padding-top: 30px;
}
#flow .flow__item:not(:last-child) {
  border-bottom: 1px solid var(--primary-color);
  padding-bottom: 30px;
}
#flow .flow__item-title {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
}
#flow .flow__item-title span {
  display: inline-block;
  background: #fee302;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
  padding: 6px 12px;
  border-radius: 4px;
  line-height: 1;
}
#flow .flow__item-description {
  color: #333333;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  margin-top: 12px;
}
#flow .flow__item-notes {
  color: #666666;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.5;
  margin-top: 5px;
}
/* flow__cta */
#flow .flow__cta-wrap {
  margin-top: 12px;
}

@media screen and (min-width: 768px) {
  #flow .flow__contents {
    padding: 80px 0 40px;
  }
  #flow .contents-inner {
    max-width: 700px;
  }
  #flow .contents-title {
    font-size: 30px;
    padding: 20px 0;
  }
  #flow .flow__contents-body {
    padding: 40px;
  }
  #flow .flow__item-title {
    font-size: 28px;
  }
  #flow .flow__item-title span {
    font-size: 18px;
    line-height: 1.6;
    padding: 5px 20px;
  }
  /* flow__cta */
  #flow .flow__cta-wrap {
    max-width: 540px;
    margin: 12px auto 0;
  }
}

/*-------------------------
    faq
-------------------------*/
.md-faq .faq-course {
  background-color: var(--primary-color-light);
}
.md-faq .l-container._middle {
  max-width: 1000px;
}
.md-faq a {
  color: #1d7ad2;
}
.md-faq .c-title._h2 {
  color: #1f3b9e;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  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 screen and (min-width: 769px) {
  .faq-course .p-section__inner {
    padding: 80px 0;
  }
}
@media screen and (min-width: 768px) {
  .md-faq .c-title._h2 {
    font-size: 40px;
  }
}
