@charset "UTF-8";
:root {
  --primary-color: #1f3b9e;
  --primary-color-light: #eef6fd;
  --primary-color-dark: #192963;
  --secondary-color: #1ab2b0;
  --secondary-color-light: #e8f6f6;
  --accent-color: #fee302;
  --accent-color-light: #fff17e;
  --background-color: #ffffff;
  --text-color: #333333;
  --text-color-secondary: #ffffff;
  --color-gray: #999999;
  --color-red: #e52d2c;
  --color-blue: #0379d6;
  --shadow: 0px 4px 4px rgba(120, 154, 179, 0.25);
  --shadow-mini: 2px 4px 9px rgba(70, 115, 175, 0.2);
}
:where(#mainvisual, #walls, #solutions, #reason, #passing-achievement, #voice, #flow, #online) {
  background-color: var(--background-color);
  color: var(--text-color);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-feature-settings: 'palt' on;
}
body {
  background-color: var(--background-color);
}
@media screen and (min-width: 1025px) {
  :where(#mainvisual, #walls, #solutions, #reason, #passing-achievement, #voice, #flow, #online) {
    font-size: 16px;
  }
}
/*-------------------------
    common
-------------------------*/
.pc {
  display: none;
}
.sp {
  display: block;
}
:where(#mainvisual, #walls, #solutions, #reason, #passing-achievement, #voice, #flow, #online) img {
  display: block;
  margin: 0 auto;
}
.u-text-bold {
  font-weight: 700;
}
.u-color-primary {
  color: var(--primary-color);
}
.u-color-secondary {
  color: var(--secondary-color);
}
.u-color-accent {
  color: var(--accent-color);
}
.u-text-underline {
  background: linear-gradient(transparent 80%, var(--accent-color) 80%);
}
.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: 1025px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}
/*-------------------------
    layout-inner
-------------------------*/
.layout-inner {
  width: 90vw;
  max-width: 100%;
  margin: 0 auto;
}
@media only print, screen and (min-width: 768px) {
  .layout-inner {
    width: calc(100% - 60px);
  }
}
@media screen and (min-width: 1025px) {
  .layout-inner {
    max-width: 1200px;
    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;
  }
}
/*-------------------------
    main-visual
-------------------------*/
#mainvisual {
  width: 100%;
  height: auto;
  margin: 0 auto;
  background: var(--background-color);
  overflow-x: hidden;
}
#mainvisual .mainvisual__img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  #mainvisual .mainvisual__img {
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1680px;
    width: calc(1400 / 1000 * (100% - 60px));
    margin: 0;
  }
}
/*-------------------------
    walls
-------------------------*/
#walls .walls__contents {
  position: relative;
  background: var(--background-color);
  padding-top: 30px;
  z-index: 0;
  font-weight: 700;
}
#walls .walls__contents::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url('/course/high/personal-program/img/bg-tile.webp') repeat center center/20px auto;
  opacity: 0.2;
  z-index: -1;
}
#walls .walls__title {
  font-size: 26px;
  line-height: 1.4;
  color: var(--primary-color-dark);
  text-align: center;
  margin-bottom: 23px;
}
#walls .walls__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 95px;
}
#walls .walls__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border: 2px solid var(--primary-color);
  border-radius: 110px;
  background: var(--background-color);
  font-size: 13px;
  line-height: 1.4;
  color: var(--primary-color);
  text-align: center;
}
#walls .walls__item:nth-of-type(3n+1) {
  width: 130px;
  height: 130px;
  grid-column: 1 / 3;
  justify-self: center;
}
#walls .walls__item:nth-of-type(n+2) {
  margin-top: -41px;
}
#walls .walls__item:nth-of-type(3n + 2) {
  justify-self: end;
}
#walls .walls__image {
  max-width: 144px;
  margin: -90px auto 0;
  padding-right: 30px;
  box-sizing: content-box;
}
#walls .walls__lead {
  font-size: 15px;
  text-align: center;
  margin: 28px auto 29px;
}
#walls .walls__arrow {
  display: flex;
  justify-content: center;
  height: 47px;
  overflow: hidden;
}
#walls .walls__arrow::after {
  content: '';
  display: block;
  flex: 1 1 auto;
  border-top: 47px solid transparent;
  border-left: 50vw solid var(--primary-color);
  border-right: 50vw solid var(--primary-color);
}
@media screen and (min-width: 1025px) {
  #walls .walls__contents {
    padding-top: 40px;
  }
  #walls .walls__title {
    font-size: 42px;
    margin-bottom: 24px;
  }
  #walls .walls__list {
  column-gap: 128px;
  }
  #walls .walls__item {
    width: 161px;
    height: 161px;
    font-size: 17px;
  }
  #walls .walls__item:nth-of-type(3n+1) {
    width: 174px;
    height: 174px;
  }
  #walls .walls__item:nth-of-type(n+2) {
    margin-top: -54px;
  }
  #walls .walls__image {
    max-width: none;
    margin-top: -121px;
    padding-right: 39px;
  }
  #walls .walls__lead {
    margin-bottom: 39px;
    font-size: 24px;
  }
  #walls .walls__arrow {
    height: 60px;
    background: linear-gradient(90deg, var(--primary-color) calc(50% - 249px), transparent calc(50% - 249px) calc(50% + 249px), var(--primary-color) calc(50% + 249px));
  }
  #walls .walls__arrow::after {
    flex: 0 1 auto;
    border-top-width: 60px;
    border-left-width: 250px;
    border-right-width: 250px;
  }
}
/*-------------------------
    solutions
-------------------------*/
#solutions .solutions__contents {
  padding: 40px 0 40px;
  background: var(--primary-color);
  color: var(--text-color-secondary);
}
#solutions .solutions__title {
  margin-bottom: 12px;
  padding: 8px 0;
  border-radius: 50px;
  background-color: var(--primary-color-dark);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  color: var(--text-color-secondary);
  text-align: center;
}
#solutions .solutions__proposals {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
}
#solutions .solutions__strong {
  font-size: 24px;
  color: var(--accent-color);
}
#solutions .solutions__results {
  margin-top: 40px;
}
#solutions .solutions__results-head {
  margin-bottom: 11px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
}
#solutions .solutions__results-head::before,
#solutions .solutions__results-head::after {
  content: '';
  display: inline-block;
  width: 30px;
  margin-bottom: -2px;
  border-bottom: 1px solid var(--text-color-secondary);
}
#solutions .solutions__results-head::before {
  margin-right: 4px;
  transform: rotate(45deg);
  transform-origin: right bottom;
}
#solutions .solutions__results-head::after {
  margin-left: 4px;
  transform: rotate(-45deg);
  transform-origin: left bottom;

}
#solutions .solutions__results-list {
  max-width: 338px;
  margin: 0 auto;
  background: var(--background-color);
  border-radius: 8px;
  padding: 26px 16px 30px;
  color: var(--text-color);
}
#solutions .solutions__result:not(:last-of-type) {
  margin-bottom: 16px;
}
#solutions .solutions__result-label {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  text-align: center;
}
#solutions .solutions__result-label::after {
  content: '';
  display: block;
  height: 2px;
  margin: 6px 2px 0;
  background-color: var(--primary-color);
}
#solutions .solutions__result-data {
  position: relative;
  display: inline-block;
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--primary-color);
}
#solutions .solutions__result-data::after {
  content: '';
  position: absolute;
  right: -29px;
  bottom: -6px;
  display: block;
  width: 47px;
  height: 48px;
  background: url('/course/high/personal-program/img/arrow.svg') no-repeat right center / 47px auto;
}
#solutions .solutions__result-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  margin-top: 12px;
  border-radius: 60px;
  background-color: var(--primary-color-light);
  vertical-align: top;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
#solutions .solutions__result-value {
  color: var(--color-red);
}
#solutions .solutions__result-number {
  font-size: 58px;
  letter-spacing: 0;
}
#solutions .solutions__result-data .--fz-sm {
  font-size: 26px;
}
#solutions .solutions__refmark {
  font-weight: 400;
  font-size: 10px;
}
#solutions .notes {
  margin-top: 12px;
  color: var(--text-color-secondary);
}
@media screen and (min-width: 1025px) {
  #solutions .solutions__contents {
    padding: 60px 0 60px;
  }
  #solutions .layout-inner {
    max-width: 1000px;
    margin: 0 auto;
  }
  #solutions .solutions__title {
    width: 800px;
    margin: 0 auto 31px;
    font-size: 32px;
  }
  #solutions .solutions__proposals {
    margin-bottom: 27px;
    font-size: 32px;
  }
  #solutions .solutions__strong {
    font-size: 40px;
  }
  #solutions .solutions__results-head {
    font-size: 32px;
    margin-bottom: 12px;
  }
  #solutions .solutions__results-head::before,
  #solutions .solutions__results-head::after {
  width: 51px;
  margin-bottom: -3px;
  }
  #solutions .solutions__results-head::before {
  margin-right: 8px;
  }
  #solutions .solutions__results-head::after {
  margin-left: 8px;
  }
  #solutions .solutions__results-list {
    display: flex;
    justify-content: space-evenly;
    max-width: none;
    padding: 42px 0 47px;
  }
  #solutions .solutions__result {
    min-width: 450px;
  }
  #solutions .solutions__result:not(:last-of-type) {
    margin-bottom: 0;
    text-align: center;
  }
  #solutions .solutions__result-label {
    font-size: 27px;
  }
  #solutions .solutions__result-label::after {
    margin-top: 7px;
  }
  #solutions .solutions__result-data {
    padding-right: 43px;
    font-size: 51px;
  }
  #solutions .solutions__result-data::after {
    right: 5px;
    bottom: -8px;
    width: 71px;
    height: 72px;
    background-size: 71px auto;
    background-position: right bottom;
  }
  #solutions .solutions__result-type {
    width: 67px;
    height: 67px;
    margin-top: 0;
    margin-bottom: 1px;
    vertical-align: bottom;
    font-size: 21px;
  }
  #solutions .solutions__result-number {
    font-size: 87px;
    line-height: 1;
  }
  #solutions .solutions__result-data .--fz-sm {
    font-size: 39px;
  }
  #solutions .solutions__refmark {
    font-size: 15px;
    line-height: 1.5;
  }
}
/*-------------------------
    reason
-------------------------*/
#reason .reason__contents {
  padding: 40px 0;
  background-color: var(--primary-color-light);
}
#reason .reason__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  text-align: center;
}
#reason .reason__title-strong {
  position: relative;
  display: inline-block;
  width: 194px;
  margin-top: -9px;
  background: linear-gradient(transparent 76%, var(--accent-color) 76% 91%, transparent 91%);
  font-size: 42px;
  color: var(--primary-color);
}
#reason .reason__title-strong::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 4px;
  border-top: 7px solid transparent;
  border-right: 194px solid var(--primary-color-light);
}
#reason .reason__title-strong .--fz-sm {
  font-size: 32px;
}
#reason .reason__list-wrapper {
  padding-top: 39px;
}
#reason .reason__list {
  list-style: none;
}
#reason .reason__item:not(:first-child) {
  margin-top: 45px;
}
#reason .reason__item-head {
  position: relative;
  padding: 22px 0 17px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  background-color: var(--primary-color);
  color: var(--text-color-secondary);
  text-align: center;
}
#reason .reason__item-number-wrapper {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
}
#reason .reason__item-number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 115px;
  height: 32px;
  font-weight: 700;
  font-size: 16px;
  border-radius: 50px;
  background-color: var(--accent-color);
  color: var(--primary-color);
}
#reason .reason__item-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
}
#reason .reason__item-body {
  padding: 20px 20px 24px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  background-color: var(--background-color);

}
#reason .reason__item-concepts {
  margin-bottom: 7px;
}
#reason .reason__concept {
  display: flex;
  flex-direction: column-reverse;
}
#reason .reason__concept:not(:last-of-type) {
  margin-bottom: 20px;
}
#reason .reason__concept-text {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: var(--primary-color);
  text-align: center;
}
#reason .reason__concept-image {
  margin-bottom: 19px;
}
#reason .reason__refmark {
  font-weight: 400;
  font-size: 14px;
}
#reason .notes {
  margin-top: 8px;
}
@media screen and (min-width: 1025px) {
  #reason .reason__contents {
    padding: 0 0 60px;
  }
  #reason .layout-inner {
    max-width: 800px;
  }
  #reason .reason__title {
    padding-top: 60px;
  }
  #reason .reason__title::after {
    bottom: -20px;
    width: 46px;
    height: 22px;
  }
  #reason .reason__item:not(:first-child) {
  margin-top: 82px;
  }
  #reason .reason__item-head {
    padding: 30px 0 20px;
  }
  #reason .reason___item-number-wrapper {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
  }
  #reason .reason__item-number {
    width: 129px;
    height: 38px;
    font-size: 20px;
  }
  #reason .reason__item-title {
    font-size: 32px;
  }
  #reason .reason__item-body {
    padding: 24px 0 33px;
  }
  #reason .reason__item-concepts {
    display: flex;
    gap: 39px;
    width: 680px;
    margin: 0 auto 7px;
  }
  #reason .reason__concept {
    flex-direction: column;
    margin: 0 auto 9px;
  }
  #reason .reason__concept:not(:last-of-type) {
  margin-bottom: 9px;
  }
  #reason .reason__concept-text {
    margin-bottom: 17px;
    font-size: 24px;
  }
  #reason .reason__concept-image {
    margin: auto;
  }
  #reason .reason__item-description {
    text-align: center;
  }
  #reason .reason__refmark {
    font-size: 18px;
  }
  #reason .notes {
    text-align: center;}
}
/*-------------------------
    passing-achievement
-------------------------*/
#passing-achievement .passing-achievement__contents {
  background: linear-gradient(180deg, #D1ECFF 0%, var(--primary-color-light) 100%);
}
#passing-achievement .passing__title {
  position: relative;
  padding-top: 13.0667%;
  margin-bottom: 4.8%;
  z-index: 0;
}
#passing-achievement .passing__title-img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
  #passing-achievement .passing__year {
  display: block;
  font-weight: 700;
  font-size: 5.0667vw;
  line-height: 1;
  text-align: center;
  color: #C8A028;
  filter: drop-shadow(0 0 1.3333vw #fff) drop-shadow(0 0 1.3333vw #fff) drop-shadow(0 0 2.6667vw #fff);
  transform: translateZ(0);
}
#passing-achievement .passing__result {
  display: block;
  margin-top: -2.6667%;
  text-align: center;
  filter: drop-shadow(0 0 1.3333vw #fff) drop-shadow(0 0 1.3333vw #fff) drop-shadow(0 0 2.6667vw #fff);
  transform: translateZ(0);
}
#passing-achievement .passing__value {
  display: inline-block;
  font-weight: 700;
  font-size: 9.3333vw;
  line-height: 1.3;
  letter-spacing: normal;
  background: linear-gradient(0deg, #C8820A 0%, #CF9815 16%, #D6AD1F 35%, #DAB925 53%, #DCBE28 72%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
#passing-achievement .passing__number {
  font-weight: 600;
  font-size: 17.0667vw;
  letter-spacing: -0.06em;
}
#passing-achievement .passing__value-refmark {
  font-size: 2.6667vw;
  line-height: 1.4;
  color: #C8A028;
}
#passing-achievement .passing__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#passing-achievement .passing__list .passing__item {
  position: relative;
}
#passing-achievement .passing__list .passing__item::before,
#passing-achievement .passing__list .passing__item::after {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
}
#passing-achievement .passing__list .passing__item::before {
  top: -48px;
  right: 0;
  width: 75px;
  height: 137px;
  background: url('/course/high/personal-program/img/passing-achievement-sakura_top-right.webp') no-repeat center / 100%;
}
#passing-achievement .passing__list .passing__item::after {
  bottom: -17px;
  left: 0;
  width: 71px;
  height: 70.5px;
  background: url('/course/high/personal-program/img/passing-achievement-sakura_bottom-left.webp') no-repeat center / 100%;
}
#passing-achievement .passing__list .passing__item .layout-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  padding: 20px 20px 17px;
  border-radius: 10px;
  background-image: linear-gradient(0deg, #C8820A 0%, #CF9815 16%, #D6AD1F 35%, #DAB925 53%, #DCBE28 72%);
  z-index: 0;
}
#passing-achievement .passing__list .passing__item .layout-inner::before {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  bottom: 1px;
  right: 1px;
  display: block;
  border-radius: 9px;
  background: var(--background-color);
  z-index: -1;
}
#passing-achievement .passing__list .passing__item .passing__item-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 8px;
  text-align: center;
  background: linear-gradient(0deg, #C8820A 0%, #CF9815 16%, #D6AD1F 35%, #DAB925 53%, #DCBE28 72%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
#passing-achievement .passing__list .passing__item .passing__item-description {
  text-align: center;
  word-break: keep-all;
}
#passing-achievement .passing__refmark {
  font-size: 14px;
  background: linear-gradient(0deg, #C8820A 0%, #CF9815 16%, #D6AD1F 35%, #DAB925 53%, #DCBE28 72%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
#passing-achievement .notes {
  padding: 16px 0;
}
@media screen and (min-width: 768px) {
  #passing-achievement .passing__list-wrapper {
    margin: 0 auto;
    max-width: 1400px;
  }
  #passing-achievement .passing__title {
    padding-top: 5.5vw;
    margin-bottom: 2vw;
  }
    #passing-achievement .passing__year {
    font-size: 2.5vw;
    filter: drop-shadow(0 0 0.357143vw #fff) drop-shadow(0 0 0.357143vw#fff) drop-shadow(0 0 0.714286vw #fff);
  }
  #passing-achievement .passing__result {
    margin-top: -1.357143%;
    filter: drop-shadow(0 0 0.357143vw #fff) drop-shadow(0 0 0.357143vw#fff) drop-shadow(0 0 0.714286vw #fff);
  }
  #passing-achievement .passing__value {
    font-size: 4.5714vw;
  }
  #passing-achievement .passing__number {
    font-size: 8.2857vw;
  }
  #passing-achievement .passing__value-refmark {
    font-size: 1.2143vw;
  }
}
@media screen and (min-width: 1400px) {
  #passing-achievement .passing__title {
    padding-top: 77px;
    margin-bottom: 28px;
  }
    #passing-achievement .passing__year {
    font-size: 35px;
    filter: drop-shadow(0 0 5px #fff) drop-shadow(0 0 5px #fff) drop-shadow(0 0 10px #fff);
  }
  #passing-achievement .passing__result {
    margin-top: -19px;
    filter: drop-shadow(0 0 5px #fff) drop-shadow(0 0 5px #fff) drop-shadow(0 0 10px #fff);
  }
  #passing-achievement .passing__value {
    font-size: 64px;
  }
  #passing-achievement .passing__number {
    font-size: 116px;
  }
  #passing-achievement .passing__value-refmark {
    font-size: 17px;
  }
}
@media screen and (min-width: 1025px) {
  #passing-achievement .passing-achievement__contents {
    padding: 0 0 5px;
  }
  #passing-achievement .layout-inner {
    max-width: 800px;
  }
  #passing-achievement .passing__list {
    gap: 16px;
  }
  #passing-achievement .passing__list .passing__item {
    width: 838px;
    margin: 0 auto;
  }
  #passing-achievement .passing__list .passing__item .layout-inner {
    width: 800px;
    padding: 27px 39px 27px;
  }
  #passing-achievement .passing__list .passing__item .passing__item-title {
    margin-bottom: 12px;
    font-size: 26px;
  }
  #passing-achievement .passing__list .passing__item .passing__item-description {
    font-size: 18px;
  }
  #passing-achievement .passing__refmark {
    font-size: 15px;
  }
}
/*-------------------------
    voice
-------------------------*/
#voice .voice__contents {
  background: var(--primary-color-light);
  padding: 10px 0 40px;
}
#voice .voice__contents .layout-inner {
  position: relative;
}
#voice .voice__title {
  color: var(--primary-color-dark);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 20px;
}
#voice .voice__list {
  display: flex;
}
#voice .voice__list-item {
  padding: 21px min(calc(32 / 375 * 100vw), 32px) 22px;
  box-sizing: border-box;
  height: auto;
  background: var(--background-color);
  border-radius: 8px;
  box-shadow: var(--shadow-mini);
}
#voice .voice__list-item-result {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
}
#voice .voice__list-item-result::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color-dark);
}
#voice .voice__list-item-result-inner {
  text-align: center;
}
#voice .voice__list-item-college {
  font-size: 20px;
  color: var(--primary-color);
}
#voice .voice__list-item-img-wrap {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 0;
}
#voice .voice__list-item-img {
  margin: 0;
  width: 60px;
}
#voice .voice__list-item-img-wrap figcaption {
  margin-top: 0;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-color);
}
#voice .voice__list-item-name {
  font-size: 20px;
  color: var(--primary-color-dark);
}
#voice .voice__list-item-title {
  margin: 1px auto 10px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.31;
  letter-spacing: normal;
  font-feature-settings: normal;
}
#voice .voice__notes {
  display: block;
  font-size: 11px;
  line-height: 1.5;
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  #voice .voice__contents {
    padding: 20px 0 65px;
    overflow: hidden;
  }
  #voice .voice__contents .layout-inner {
    width: 1200px;
  }
  #voice .voice__title {
    font-size: 32px;
    margin-bottom: 25px;
  }
  #voice .voice__list-item-img-wrap figcaption {
    font-size: 14px;
  }
  #voice .voice__notes {
    max-width: 1000px;
    margin: 24px auto 0;
  }
  #voice .voice__list-item {
    border-radius: 10px;
    padding: 26px min(calc(45 / 960 * 100vw), 34px);
  }
  #voice .voice__list-item-description {
    font-size: 14px;
  }
}
/*-------------------------
    splide
-------------------------*/
#voice .splide__track {
  margin: 0 -16px;
}
.splide__pagination__page {
  opacity: 1;
}
.splide__pagination {
  bottom: 1.5em;
}
.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.4em;
}
.splide__arrow--prev {
  left: 0.4em;
}
/* progress-bar */
.splide__progress {
  background: #fff;
  margin-top: 20px;
}
.splide__progress__slide {
  background: #999;
  height: 5px;
  transition: width 0.4s ease;
  width: 0;
}
@media screen and (min-width: 1025px) {
  /* md-top.cssの相殺 */
  #voice .splide__slide {
    width: calc(33.3333% - 16px) !important;
  }
  #voice .splide__track {
    margin: 0;
  }
  .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: 4.2em;
  }
  .splide__arrow--prev {
    left: 4.2em;
  }
}
/*-------------------------
    flow
-------------------------*/
#flow .flow__contents {
  position: relative;
  background: var(--background-color);
  padding: 40px 0;
  z-index: 0;
}
#flow .flow__contents::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url('/course/high/personal-program/img/bg-tile.webp') repeat center center/20px auto;
  opacity: 0.2;
  z-index: -1;
}
#flow .flow__title {
  margin-bottom: 31px;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  text-align: center;
}
#flow .flow__list {
  list-style: none;
}
#flow .flow__item:not(:first-child) {
  margin-top: 29px;
}
#flow .flow__item-head {
  position: relative;
  padding-left: 48px;
}
#flow .flow__item-number {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#flow .flow__item-number .flow__item-number-img {
  width: 38px;
  height: 38px;
}
#flow .flow__item-title {
  min-height: 34px;
  margin: 3px auto;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
}
#flow .flow__item-description {
  font-size: 12px;
  line-height: 1.5;
  padding-left: 48px;
}
#flow .flow__item .flow__item-btn {
  margin: 14px auto -14px;
}
@media screen and (min-width: 1025px) {
  #flow .flow__contents {
    padding: 61px 0 20px;
  }
  #flow .layout-inner {
    max-width: 800px;
    margin: 0 auto;
  }
  #flow .layout-inner .flow__title {
    margin-bottom: 0;
    font-size: 32px;
  }
  #flow .flow__list {
    padding: 33px 0 40px;
  }
  #flow .flow__item:not(:first-child) {
    margin-top: 40px;
  }
  #flow .flow__item-head {
    margin-bottom: 15px;
    padding-left: 77px;
  }
  #flow .flow__item-number .flow__item-number-img {
    width: 60px;
    height: 60px;
  }
  #flow .flow__item-title {
    font-size: 28px;
  }
  #flow .flow__item-description {
    font-size: 18px;
    padding-left: 76px;
  }
  #flow .flow__item .flow__item-btn {
    max-width: 365px;
    margin-top: 10px;
  }
}
/*-------------------------
    online
-------------------------*/
#online .online__contents {
  padding: 40px 0
}
#online .online__title {
  margin: 20px auto;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.4;
  text-align: center;
  color: var(--primary-color);
}
#online .online__image-wrapper {
  max-width: 356px;
  margin: 0 auto;
  overflow: hidden;
}
#online .online__image {
  width: 117.6296%;
  max-width: none;
  transform: translateX(-5.7937%);
}
#online .online__description {
  margin-top: 21px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}
/* tooltip */
#online .tooltip-wrapper {
  padding-bottom: 8px;
}
#online .tooltip-text {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  max-width: 338px;
  margin: 0 auto;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.4;
  border-radius: 8px;
  background-color: var(--color-blue);
  color: var(--text-color-secondary);
  padding: 11px 0;
}
#online .tooltip-text::before {
  content: '';
  position: absolute;
  bottom: -8px;
  width: 20px;
  height: 10px;
  background-color: var(--color-blue);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (min-width: 1025px) {
  #online .online__contents {
    padding: 59px 0 60px;
  }
  #online .layout-inner {
    max-width: 760px;
    margin: 0 auto;
  }
  #online .online__title {
    margin: 51px auto 31px;
    font-size: 33px;
    line-height: 1.2;
  }
  #online .online__image {
  width: 100%;
  transform: none;
  }
  #online .online__description {
    margin-top: 31px;
    font-size: 20px;
  }
  /* tooltip */
  #online .tooltip-text {
    max-width: 700px;
    height: 69px;
    font-size: 28px;
  }
  #online .tooltip-text::before {
    bottom: -19px;
    width: 43px;
    height: 20px;
  }
}
/*-------------------------
    md-faq
-------------------------*/
.md-faq .c-title._h2 {
  color: #1f3b9e;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .md-faq .c-title._h2 {
    font-size: 24px;
  }
}
/*-------------------------
    md-course-services
-------------------------*/
.md-course-services .md-btn-service {
  font-size: 2rem;
}
.md-course-services.md_price-page {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .md-course-services .md-btn-service {
    font-size: 1.7rem;
  }
}
/*-------------------------
    cta
-------------------------*/
.md-contact .notes {
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  .md-contact .notes {
    margin-top: 22px;
  }
}
