@charset "UTF-8";
:root {
  --primary-color: #1f3b9e;
  --primary-color-light: #eef6fd;
  --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: 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;
}
@media screen and (min-width: 1025px) {
  body {
    font-size: 16px;
  }
}
/*-------------------------
    common
-------------------------*/
.pc {
  display: none;
}
.sp {
  display: block;
}
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: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
@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;
  }
}
/*-------------------------
    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;
}
/* --gray */
.card-contents.--gray .card-contents-head {
  background: var(--color-gray);
}
.card-contents.--gray .card-contents-body {
  background: var(--background-color);
  border: solid 1px var(--color-gray);
}
/* --red */
.card-contents.--red .card-contents-head {
  background: var(--color-red);
}
.card-contents.--red .card-contents-body {
  background: var(--background-color);
  border: solid 1px var(--color-red);
}
/* --green */
.card-contents.--green .card-contents-head {
  background: var(--secondary-color);
}
.card-contents.--green .card-contents-body {
  background: var(--secondary-color-light);
  border: none;
}
@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;
  }
}
/*-------------------------
    button
-------------------------*/
.button-wrapper {
  max-width: 222px;
  margin: 0 auto;
}
.button {
  position: relative;
  display: block;
  background: var(--primary-color);
  color: var(--text-color-secondary);
  width: 100%;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  padding: 10px 20px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.button::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%) rotate(180deg);
  background: url('../img/arrow.svg') no-repeat center center/contain;
  width: 16px;
  height: 16px;
}
.button.is-open::after {
  transform: translateY(-50%) rotate(0);
}
@media screen and (min-width: 1025px) {
  .button-wrapper {
    max-width: 500px;
  }
  .button {
    font-size: 28px;
    padding: 15px 48px 15px 32px;
  }
  .button::after {
    width: 24px;
    height: 24px;
  }
}
/*-------------------------
    main-visual
-------------------------*/
#mainvisual {
  width: 100%;
  height: auto;
  margin: 0 auto;
  background: var(--background-color);
}
#mainvisual .layout-inner {
  padding: 0;
}
/*-------------------------
    overview
-------------------------*/
#overview .overview__contents {
  position: relative;
  padding: 50px 0;
}
#overview .overview__contents::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url('../img/bg-tile.webp') repeat center center/20px auto;
  opacity: 0.2;
  z-index: -1;
}
#overview .overview__head {
  margin: 0 auto;
}
#overview .overview__title {
  margin-bottom: 10px;
}
#overview .overview__lead {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 24px;
}
#overview .overview__main {
  border: 1px solid var(--primary-color);
  padding: 15px;
  margin-bottom: 24px;
}
#overview .overview__main-graph-title {
  position: relative;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  background: var(--accent-color-light);
  text-align: center;
  padding: 15px 10px;
  margin-bottom: 25px;
}
#overview .overview__main-graph-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 20px;
  height: 10px;
  background: var(--accent-color-light);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
#overview .overview__main-graph {
  max-width: 205px;
}
#overview .overview__main .notes {
  margin-top: 10px;
}
#overview .overview__main-title {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  border-bottom: 1px solid var(--primary-color);
  padding-bottom: 10px;
  margin-top: 30px;
}
#overview .overview__main-description {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 15px;
}
/* card */
#overview .card-contents-wrapper {
  margin-top: 15px;
}
#overview .card-contents-wrapper .overview__main-description {
  display: flex;
  align-items: center;
  flex: 1;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  margin-top: 0;
}
/* --column */
#overview .card-contents-wrapper.--column {
  gap: 13px;
}
#overview .card-contents-wrapper.--column .card-contents {
  display: flex;
  flex-direction: column;
}
#overview .card-contents-wrapper.--column .card-contents-head {
  min-height: 36px;
  padding: 4px 0;
}
#overview .card-contents-wrapper.--column .card-contents-title {
  font-size: 12px;
  line-height: 1.2;
}
#overview .card-contents-wrapper.--column .card-contents-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex: 1;
  padding: 8px 10px;
}
/* policy */
.overview__policy .card-contents:not(:first-child) {
  margin-top: 15px;
}
.overview__policy .card-contents-head .card-contents-title {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}
.overview__policy .card-contents-head .card-contents-title .u-color-accent {
  font-size: 20px;
}
.overview__policy .card-contents-body {
  padding: 15px 12px;
}
.overview__policy-box {
  background: var(--background-color);
  box-shadow: var(--shadow);
  padding: 10px;
}
.overview__policy-box .overview__policy-list .overview__policy-item {
  text-indent: -1rem;
  padding-left: 1rem;
}
.overview__policy-box .overview__policy-list .overview__policy-item:not(:first-child) {
  margin-top: 10px;
}
.overview__policy-box .overview__policy-list .overview__policy-item .overview__policy-title {
  font-weight: 700;
  font-size: 12px;
  line-height: 1.4;
}
.overview__policy-box .overview__policy-list .overview__policy-item .overview__policy-description {
  font-weight: 400;
  font-size: 10px;
  line-height: 1.4;
}
.overview__policy-box .notes {
  line-height: 1.3;
}
.overview__policy-message {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
  margin-top: 10px;
  letter-spacing: 0;
}
@media screen and (min-width: 1025px) {
  #overview .overview__contents {
    padding: 70px 0;
  }
  #overview .layout-inner {
    max-width: 1000px;
  }
  #overview .overview__lead {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 50px;
  }
  #overview .overview__main {
    padding: 50px 100px;
    margin-bottom: 50px;
  }
  #overview .overview__main-graph-title {
    font-weight: 700;
    font-size: 30px;
    max-width: 600px;
    padding: 15px 60px;
    margin: 0 auto 31px;
  }
  #overview .overview__main-graph-title::after {
    bottom: -18px;
    width: 25px;
    height: 20px;
  }
  #overview .overview__main-graph {
    max-width: 246px;
  }
  #overview .overview__main .notes {
    text-align: center;
    margin-top: 16px;
  }
  #overview .overview__main-title {
    font-size: 30px;
    margin-top: 45px;
  }
  #overview .overview__main-description {
    font-size: 16px;
    margin-top: 25px;
  }
  /* card */
  #overview .card-contents-wrapper {
    margin-top: 25px;
  }
  #overview .card-contents-wrapper .overview__main-description {
    font-size: 16px;
  }
  /* --column */
  #overview .card-contents-wrapper.--column {
    gap: 24px;
  }
  #overview .card-contents-wrapper.--column .card-contents-head {
    min-height: 44px;
    padding: 10px 0;
  }
  #overview .card-contents-wrapper.--column .card-contents-title {
    font-size: 20px;
  }
  #overview .card-contents-wrapper.--column .card-contents-body {
    gap: 15px;
    padding: 20px;
  }
  /* policy */
  #overview .overview__policy .card-contents-head .card-contents-title {
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
    font-size: 20px;
  }
  #overview .overview__policy .card-contents-head .card-contents-title .u-color-accent {
    font-size: 30px;
  }
  #overview .overview__policy .card-contents-body {
    padding: 30px 30px 20px;
  }
  #overview .overview__policy-box {
    padding: 30px 40px;
  }
  #overview .overview__policy-box .overview__policy-list .overview__policy-item:not(:first-child) {
    margin-top: 14px;
  }
  #overview .overview__policy-box .overview__policy-list .overview__policy-item .overview__policy-title {
    font-size: 16px;
    line-height: 1.6;
  }
  #overview .overview__policy-box .overview__policy-list .overview__policy-item .overview__policy-description {
    font-size: 14px;
    line-height: 1.6;
  }
  #overview .overview__policy-box .notes {
    text-align: left;
    line-height: 1.5;
  }
  #overview .overview__policy-message {
    font-size: 27px;
    margin-top: 20px;
  }
}
/*-------------------------
    passing-achievement
-------------------------*/
#passing-achievement .passing-achievement__contents {
  background: var(--primary-color-light);
  padding: 24px 0 25px;
}
#passing-achievement .passing__list-wrapper {
  transform: translateY(-15px);
}
#passing-achievement .passing__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#passing-achievement .passing__list .passing__item {
  display: flex;
  flex-direction: column;
  background: var(--background-color);
  box-shadow: var(--shadow);
  border-radius: 10px;
  padding: 30px 20px;
}
#passing-achievement .passing__list .passing__item .passing__item-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 15px;
}
#passing-achievement .passing__list .passing__item .passing__item-title::after,
#passing-achievement .passing__list .passing__item .passing__item-title::before {
  content: '';
  display: inline-block;
  background: url('../img/icon-cherry-blossom.svg') no-repeat center center/contain;
  width: 26px;
  height: 27px;
}
#passing-achievement .passing__list .passing__item .passing__item-title::after {
  transform: scaleX(-1);
}
#passing-achievement .passing__list .passing__item .passing__item-description {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
}
#passing-achievement .notes {
  margin-top: 12px;
}
@media screen and (min-width: 1025px) {
  #passing-achievement .passing-achievement__contents {
    padding: 0 0 5px;
  }
  #passing-achievement .layout-inner {
    max-width: 760px;
  }
  #passing-achievement .passing__list-wrapper {
    transform: translateY(-55px);
  }
  #passing-achievement .passing__list {
    gap: 16px;
  }
  #passing-achievement .passing__list .passing__item {
    padding: 30px 40px;
  }
  #passing-achievement .notes {
    margin-top: 16px;
  }
}
/*-------------------------
    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(--color-blue);
  width: 35px;
  height: 35px;
  border-radius: 50%;
}
#reason .reason__item-head .reason__item-title {
  font-weight: 700;
  font-size: 20px;
  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 .u-color-primary {
  font-size: 24px;
}
/* detail */
#reason .reason__detail-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
#reason .reason__detail-item {
  background: #f2f2f2;
  padding: 15px 20px;
}
#reason .reason__detail-item-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 10px;
}
#reason .reason__detail-item-title img {
  width: 37px;
  flex: 0 0 auto;
  margin: 0;
}
#reason .reason__detail-item-description {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
}
#reason .reason__detail-item-example {
  background: var(--background-color);
  padding: 10px;
  margin-top: 15px;
}
#reason .reason__detail-item-example .reason__detail-item-description {
  font-size: 14px;
  line-height: 1.4;
}
#reason .reason__detail-item-example .notes {
  margin-top: 7px;
}
#reason .notes {
  margin-top: 5px;
}
/* point02
-------------------------*/
#reason .reason__item:nth-child(2) .reason__item-description {
  margin-top: 20px;
}
/* card */
#reason .reason__item:nth-child(2) .card-contents-wrapper.--pc-column {
  gap: 20px;
}
#reason .reason__item:nth-child(2) .card-contents .card-contents-head .card-contents-title {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
}
#reason .reason__item:nth-child(2) .card-contents .card-contents-head .card-contents-title span {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
}
#reason .reason__item:nth-child(2) .card-contents .card-contents-body {
  padding: 15px 20px;
}
#reason .card-contents .card-contents-body .card-contents__university-name {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  border: 1px solid var(--color-gray);
  padding: 5px 0;
  margin-bottom: 10px;
}
#reason .card-contents .card-contents-body .card-contents__university-name::before {
  content: '';
  background: url('../img/icon-school.svg') no-repeat center center/contain;
  width: 36px;
  height: 42px;
}
#reason .card-contents .card-contents-body .card-contents__point {
  display: flex;
  align-items: stretch;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
}
#reason .card-contents .card-contents-body .card-contents__point-title {
  color: var(--text-color-secondary);
  background: var(--color-blue);
  padding: 20px 15.5px;
}
#reason .card-contents .card-contents-body .card-contents__point-description {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
  background: var(--primary-color-light);
  padding: 10px;
  flex: 1;
}
/* point03
-------------------------*/
#reason .reason__item:nth-child(3) .reason__item-description {
  padding: 10px 0;
}
#reason .reason__item:nth-child(3) .reason__item-difference-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  text-align: center;
  padding: 20px 0;
}
/* card */
#reason .reason__item:nth-child(3) .card-contents .card-contents-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  padding: 10px;
}
#reason .reason__item:nth-child(3) .card-contents .card-contents-body .card-contents__description {
  font-weight: 700;
  font-size: 12px;
  line-height: 1.4;
}
@media screen and (min-width: 1025px) {
  #reason .reason__contents {
    padding: 0 0 90px;
  }
  #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: 34px;
  }
  #reason .reason__item-head .reason__item-title sub {
    font-size: 18px;
  }
  #reason .reason__item-head .reason__item-title .u-color-primary {
    font-size: 40px;
  }
  #reason .reason__item-body {
    max-width: 1000px;
    margin: 0 auto;
  }
  /* detail */
  #reason .reason__detail-list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
  }
  #reason .reason__detail-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
    padding: 30px 24px;
  }
  #reason .reason__detail-item-text {
    flex: 1;
  }
  #reason .reason__detail-item-title {
    gap: 15px;
    font-size: 27px;
    margin-bottom: 19px;
  }
  #reason .reason__detail-item-title img {
    width: 45px;
  }
  #reason .reason__detail-item-description {
    line-height: 1.4;
  }
  #reason .reason__detail-item-example {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 136px;
    padding: 10px 20px;
    margin-top: 0;
  }
  #reason .reason__detail-item-example .reason__detail-item-description {
    font-size: 14px;
    line-height: 1.4;
  }
  #reason .notes {
    margin-top: 5px;
  }
  #reason .reason__item-description {
    text-align: center;
  }
  /* point02
-------------------------*/
  #reason .reason__item:nth-child(2) .reason__item-description {
    margin-top: 40px;
  }
  /* card */
  #reason .reason__item:nth-child(2) .card-contents-wrapper.--pc-column {
    gap: 24px;
  }
  #reason .reason__item:nth-child(2) .card-contents .card-contents-head .card-contents-title {
    font-size: 20px;
  }
  #reason .reason__item:nth-child(2) .card-contents .card-contents-head .card-contents-title span {
    font-size: 27px;
  }
  #reason .reason__item:nth-child(2) .card-contents .card-contents-body {
    padding: 30px 24px;
  }
  #reason .card-contents .card-contents-body .card-contents__university-name {
    font-size: 20px;
    padding: 20px 0;
    margin-bottom: 15px;
  }
  #reason .card-contents .card-contents-body .card-contents__university-name::before {
    width: 45px;
    height: 54px;
  }
  #reason .card-contents .card-contents-body .card-contents__point {
    font-size: 20px;
  }
  #reason .card-contents .card-contents-body .card-contents__point-title {
    padding: 37px 18px;
  }
  /* point03
-------------------------*/
  #reason .reason__item:nth-child(3) .reason__item-description {
    padding: 15px 0;
  }
  #reason .reason__item:nth-child(3) .notes {
    text-align: right;
  }
  #reason .reason__item:nth-child(3) .reason__item-difference-title {
    font-size: 27px;
    padding: 25px 0;
  }
  /* card */
  #reason .reason__item:nth-child(3) .card-contents .card-contents-body {
    gap: 16px;
    padding: 30px 24px;
  }
  #reason .reason__item:nth-child(3) .card-contents .card-contents-body .card-contents__description {
    font-size: 20px;
    text-align: center;
  }
}
/*-------------------------
    possible
-------------------------*/
#possible .possible__contents {
  background: var(--primary-color);
  padding: 40px 0 20px;
}
#possible .possible__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: var(--text-color-secondary);
  text-align: center;
  margin-bottom: 24px;
}
#possible .possible__item {
  background: var(--background-color);
  border-radius: 5px;
  padding: 15px;
}
#possible .possible__item:not(:first-child) {
  margin-top: 15px;
}
#possible .possible__item-head {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
#possible .possible__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: 15px;
  background: var(--color-blue);
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
#possible .possible__item-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
}
#possible .possible__item-body {
  padding-left: 35px;
}
#possible .possible__item-description {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
}
#possible .possible__arrow {
  position: relative;
  background: #d1ecff;
  height: 38px;
}
#possible .possible__arrow::after {
  content: '';
  position: absolute;
  left: 50%;
  top: -1px;
  transform: translateX(-50%);
  width: 100%;
  height: 36px;
  background: var(--primary-color);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (min-width: 1025px) {
  #possible .possible__contents {
    padding: 40px 0 30px;
  }
  #possible .layout-inner {
    max-width: 760px;
    margin: 0 auto;
  }
  #possible .possible__title {
    font-size: 32px;
  }
  #possible .possible__item {
    padding: 32px 40px;
  }
  #possible .possible__item:not(:first-child) {
    margin-top: 24px;
  }
  #possible .possible__item-head {
    align-items: center;
    margin-bottom: 15px;
  }
  #possible .possible__item-number {
    font-size: 20px;
    width: 30px;
    height: 30px;
  }
  #possible .possible__item-title {
    font-size: 26px;
  }
  #possible .possible__item-body {
    padding-left: 40px;
  }
  #possible .possible__item-description {
    font-size: 16px;
  }
  #possible .possible__arrow {
    height: 69px;
  }
  #possible .possible__arrow::after {
    top: -1px;
    width: 100%;
    height: 60px;
  }
}
/*-------------------------
    support
-------------------------*/
#support .support__contents {
  padding: 60px 0 40px;
}
/* card */
#support .card-contents-head {
  position: relative;
  padding: 20px 0 10px;
}
#support .card-contents-title {
  font-weight: 700;
  font-size: 18px;
}
#support .card-contents-body {
  padding: 25px 20px;
}
#support .support__list {
  margin-bottom: 20px;
}
#support .support__item:not(:first-child) {
  margin-top: 20px;
}
#support .support__item-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
#support .support__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: 16px;
  background: var(--primary-color);
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
#support .support__item-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
}
#support .support__item-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#support .support__item-description {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
}
#support .support__message {
  font-weight: 700;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
  color: var(--primary-color);
  background: var(--accent-color-light);
  padding: 10px;
}
/* tooltip */
#support .tooltip-wrapper {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
}
#support .tooltip-text {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 203px;
  height: 35px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 30px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  margin: 0 auto 12px;
  padding: 0 5px;
}
#support .tooltip-text::before {
  content: '';
  position: absolute;
  bottom: -7px;
  width: 20px;
  height: 10px;
  background-color: var(--accent-color);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (min-width: 1025px) {
  #support .support__contents {
    padding: 82px 0 70px;
  }
  #support .layout-inner {
    max-width: 760px;
    margin: 0 auto;
  }
  /* card */
  #support .card-contents-head {
    padding: 30px 0 15px;
  }
  #support .card-contents-title {
    font-size: 30px;
  }
  #support .card-contents-body {
    padding: 40px;
  }
  #support .support__list {
    margin-bottom: 30px;
  }
  #support .support__item:not(:first-child) {
    margin-top: 30px;
  }
  #support .support__item-head {
    gap: 6px;
    margin-bottom: 15px;
  }
  #support .support__item-number {
    font-size: 22px;
    width: 35px;
    height: 35px;
  }
  #support .support__item-title {
    font-size: 27px;
  }
  #support .support__item-body {
    flex-direction: row;
    align-items: center;
    gap: 30px;
    padding-left: 41px;
  }
  #support .support__item-description {
    font-size: 16px;
  }
  #support .support__message {
    font-size: 20px;
    padding: 15px;
  }
  /* tooltip */
  #support .tooltip-wrapper {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
  }
  #support .tooltip-text {
    width: 276px;
    height: 40px;
    font-size: 22px;
  }
  #support .tooltip-text::before {
    bottom: -7px;
    width: 20px;
    height: 10px;
  }
}
/*-------------------------
    voice
-------------------------*/
#voice .voice__contents {
  background: var(--primary-color);
  padding: 40px 0;
}
#voice .voice__contents .layout-inner {
  position: relative;
}
#voice .voice__title {
  color: var(--text-color-secondary);
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  margin-bottom: 24px;
}
#voice .voice__list {
  display: flex;
}
#voice .voice__list-item {
  background: var(--background-color);
  border-radius: 8px;
  padding: 24px min(calc(32 / 960 * 100vw), 32px);
  box-sizing: border-box;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
#voice .voice__list-item-img-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#voice .voice__list-item-img-wrap figcaption {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  margin: 0;
}
#voice .voice__list-item-img-wrap figcaption .--lg {
  font-size: 24px;
}
#voice .voice__list-item-description {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
  margin-top: 20px;
}
#voice .voice__notes {
  display: block;
  color: var(--text-color-secondary);
  font-weight: 400;
  font-size: 11px;
  line-height: 1.5;
  text-align: left;
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  #voice .voice__contents {
    overflow: hidden;
  }
  #voice .voice__title {
    font-size: 32px;
    margin-bottom: 30px;
  }
  #voice .voice__title--text {
    font-size: 44px;
  }
  #voice .voice__list {
    display: flex;
  }
  #voice .voice__notes {
    text-align: right;
    margin-top: 30px;
  }
  #voice .voice__list-item {
    border-radius: 10px;
    padding: 26px min(calc(45 / 960 * 100vw), 34px);
  }
}
/*-------------------------
    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: 30px;
}
.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;
  }
}
/*-------------------------
    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;
  }
}
/*-------------------------
    flow
-------------------------*/
#flow .flow__contents {
  background: #f2f2f2;
  padding: 40px 0;
}
#flow .possible__title {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 24px;
}
#flow .flow__list {
  list-style: none;
  background: var(--background-color);
  border-radius: 10px;
  padding: 25px 20px;
}
#flow .flow__item:not(:first-child) {
  margin-top: 20px;
}
#flow .flow__item-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
#flow .flow__item-number {
  flex: 0 0 auto;
}
#flow .flow__item-number .flow__item-number-img {
  width: 38px;
  height: 38px;
}
#flow .flow__item-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
}
#flow .flow__item-description {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  padding-left: 48px;
  letter-spacing: 0.6px;
}
#flow .flow__item .flow__item-btn {
  margin-top: 15px;
}
@media screen and (min-width: 1025px) {
  #flow .flow__contents {
    padding: 70px 0;
  }
  #flow .layout-inner {
    max-width: 760px;
    margin: 0 auto;
  }
  #flow .layout-inner .possible__title {
    font-size: 32px;
  }
  #flow .flow__list {
    padding: 40px;
  }
  #flow .flow__item:not(:first-child) {
    margin-top: 30px;
  }
  #flow .flow__item-title {
    font-size: 22px;
  }
  #flow .flow__item-description {
    font-size: 16px;
  }
  #flow .flow__item .flow__item-btn {
    max-width: 365px;
    margin-top: 10px;
  }
}
/*-------------------------
    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;
  }
}
/*-------------------------
    accordion-contents
-------------------------*/
.js-accordionContents {
  position: relative;
  max-height: 240px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.js-accordionContents.is-open {
  max-height: 3000px;
}
.js-accordionContents::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #fff, transparent 30%);
}
.js-accordionContents.is-open::before {
  content: none;
}
@media screen and (min-width: 1025px) {
  .js-accordionContents {
    max-height: 350px;
  }
}
