@charset "UTF-8";
:root {
  --primary-color: #182e4c;
  --primary-color-light: #eef6fd;
  --accent-color: #fee902;
  --accent-color-light: #fee302;
  --underline-color: #fee300;
  --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-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;
  }
}

/*-------------------------
    contents-inner
-------------------------*/
.contents-inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .contents-inner {
    max-width: 1000px;
    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;
  }
}

/*-------------------------
    trouble
-------------------------*/
#trouble .trouble__contents {
  background: var(--background-color);
  padding: 40px 0;
}
#trouble .contents-title {
  color: var(--text-color);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  text-align: center;
}
#trouble .trouble__contents-body {
  display: flex;
  flex-direction: column;
  gap: 45px;
  margin-top: 20px;
}
#trouble .trouble__item {
  flex: 1;
  background: var(--primary-color-light);
  border-radius: 16px;
  padding: 30px 20px;
}
#trouble .trouble__item:nth-child(1) {
  position: relative;
}
#trouble .trouble__item:nth-child(1)::after {
  content: '';
  position: absolute;
  bottom: -9%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  width: 25px;
  aspect-ratio: 25/15;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
#trouble .trouble__item-img {
  width: 100%;
  height: auto;
}
#trouble .trouble__item-description {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 15px;
}
#trouble .trouble__item-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 15px;
}

@media screen and (min-width: 1025px) {
  #trouble .trouble__contents {
    padding: 80px 0 100px;
  }
  #trouble .contents-title {
    /* color: var(--text-color); */
    /* font-weight: 700; */
    font-size: 40px;
    /* line-height: 1.3; */
    /* text-align: center; */
  }
  #trouble .trouble__contents-body {
    /* display: flex; */
    flex-direction: row;
    gap: 80px;
    margin-top: 50px;
  }
  #trouble .trouble__item {
    /* background: var(--background-color); */
    /* border-radius: 16px; */
    padding: 28px 32px;
  }
  #trouble .trouble__item:nth-child(1) {
    /* position: relative; */
  }
  #trouble .trouble__item:nth-child(1)::after {
    top: 50%;
    right: -11%;
    bottom: unset;
    left: unset;
    transform: translateY(-50%);
    width: 21px;
    aspect-ratio: 21/35;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
  }
  #trouble .trouble__item-img {
  }
  #trouble .trouble__item-description {
    font-size: 16px;
  }
  #trouble .trouble__item-title {
  }
}

/*-------------------------
    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 .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;
}
/* card */
#reason .card-contents-wrapper {
  position: relative;
  padding-top: 50px;
}
#reason .card-contents-wrapper .tooltip {
  position: absolute;
  top: 7%;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  background: var(--accent-color-light);
  font-size: 14px;
  border: 1px solid var(--primary-color);
  border-radius: 50px;
  padding: 7px 14px;
  margin-bottom: 0;
  z-index: 1;
}
#reason .card-contents-wrapper .tooltip::after {
  background: var(--accent-color-light);
  bottom: -7px;
  width: 12px;
  height: 8px;
}
#reason .card-contents-head {
  padding: 20px 0 10px;
}
#reason .card-contents-title {
  font-size: 14px;
  line-height: 1.3;
}
#reason .card-contents-title .--lg {
  font-size: 20px;
  line-height: 1.4;
}
#reason .card-contents-body {
  padding: 20px 16px 25px;
}
#reason .card-contents__description {
  font-size: 14px;
  line-height: 1.3;
  margin: 20px 0 5px;
}
#reason .card-contents-body .notes {
  margin-top: 0;
}

@media screen and (min-width: 1025px) {
  #reason .reason__contents {
    padding: 0 0 90px;
  }
  #reason .contents-inner {
    max-width: 1200px;
  }
  #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 {
    max-width: 1000px;
    margin: 0 auto;
  }
  #reason .reason__item-body .reason__item-column {
    display: flex;
    align-items: center;
    gap: 60px;
  }
  #reason .reason__item-column picture {
    flex: 1;
  }
  #reason .reason__item-description {
    flex: 1;
    font-size: 18px;
    margin-top: 0;
  }
  #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 {
    grid-template-columns: repeat(4, 1fr);
  }
  #reason .reason__example-item {
    padding: 20px 14px;
  }
  #reason .reason__example-item-title {
    font-size: 26px;
    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;
  }
  /* card */
  #reason .card-contents-wrapper {
    padding-top: 70px;
  }
  #reason .card-contents-wrapper .tooltip {
    top: 9%;
    font-size: 24px;
    padding: 7px 35px;
  }
  #reason .card-contents-wrapper .tooltip::after {
    bottom: -13px;
    width: 21px;
    height: 14px;
  }
  #reason .card-contents-head {
    padding: 40px 0 20px;
  }
  #reason .card-contents-title {
    font-size: 26px;
  }
  #reason .card-contents-title .--lg {
    font-size: 36px;
  }
  #reason .card-contents-body {
    padding: 40px;
  }
  #reason .card-contents__description {
    max-width: 550px;
    font-size: 16px;
    margin: 40px auto 5px;
  }
  #reason .card-contents-body .notes {
    max-width: 550px;
    margin: auto;
  }
}

/*-------------------------
    difference
-------------------------*/
#difference .difference__contents {
  padding: 40px 0 20px;
}
#difference .contents-title {
  margin-bottom: 30px;
}
#difference .difference__contents-img {
}

@media screen and (min-width: 1025px) {
  #difference .difference__contents {
    padding: 80px 0 60px;
  }
  #difference .contents-title {
    margin-bottom: 50px;
  }
  #difference .difference__contents-img {
  }
}

/*-------------------------
    learning-plan
-------------------------*/
#learning-plan .learning-plan__contents {
  padding: 20px 0;
}
#learning-plan .learning-plan__text {
}
#learning-plan .contents-title {
  margin-bottom: 30px;
}
#learning-plan .learning-plan__description {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 20px;
}
#learning-plan .learning-plan__contents-img {
}

@media screen and (min-width: 1025px) {
  #learning-plan .learning-plan__contents {
    padding: 60px 0;
  }
  #learning-plan .learning-plan__column {
    display: flex;
    align-items: center;
    gap: 60px;
  }
  #learning-plan .contents-title {
    text-align: left;
    margin-bottom: 0;
  }
  #learning-plan .learning-plan__description {
    font-size: 18px;
  }
  #learning-plan .learning-plan__column picture {
    flex: 1 0 auto;
  }
  #learning-plan .learning-plan__contents-img {
  }
}

/*-------------------------
    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;
}
#achievement .achievement__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: url('../img/achievement-bg_sp.webp') no-repeat center top / 100%;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  max-width: none;
  padding: 20px 0 0;
}
#achievement .achievement__header {
  width: 90%;
  text-align: center;
}
#achievement .achievement__header-title {
  display: inline-block;
  color: #e5003c;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  border-bottom: 2px solid #e5003c;
  padding: 0 8px 3px;
}
#achievement .achievement__header-num {
  color: #e5003c;
  font-family: 'Zen Old Mincho', serif;
  font-weight: 900;
  font-size: 68px;
  line-height: 1.4;
}
#achievement .achievement__header-num .--sm {
  font-size: 50px;
}
#achievement .achievement__body {
  width: 90%;
  background: #ffffff;
  border: 1px solid #e5003c;
  border-radius: 12px;
  padding: 20px;
}
#achievement .achievement__detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#achievement .achievement__detail-item:not(:first-child) {
  padding-top: 12px;
}
#achievement .achievement__detail-item:not(:last-child) {
  border-bottom: 1px solid #999999;
  padding-bottom: 12px;
}
#achievement .achievement__detail-title {
  color: #333333;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
}
#achievement .achievement__detail-num {
  color: #e5003c;
  font-weight: 600;
  font-size: 38px;
  line-height: 1.5;
}
#achievement .achievement__detail-num .--sm {
  font-size: 32px;
}
#achievement .achievement__notes {
  display: block;
  color: #666666;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.8;
  text-align: left;
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  #achievement .achievement__contents {
    padding: 60px 0 120px;
  }
  #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;
  }
  #achievement .achievement__item {
    flex-direction: row;
    gap: 30px;
    background: url('../img/achievement-bg_pc.webp') no-repeat center / contain;
    width: 100%;
    padding: 50px 100px;
    margin: 0;
  }
  #achievement .achievement__header {
    width: 100%;
    text-align: center;
  }
  #achievement .achievement__header-title {
    font-size: 26px;
    padding: 0 30px 9px;
  }
  #achievement .achievement__header-num {
    font-size: 90px;
  }
  #achievement .achievement__header-num .--sm {
    font-size: 64px;
  }
  #achievement .achievement__body {
    width: 100%;
    padding: 20px 30px;
  }
  #achievement .achievement__detail-item:not(:first-child) {
    padding-top: 12px;
  }
  #achievement .achievement__detail-item:not(:last-child) {
    border-bottom: 1px solid #999999;
    padding-bottom: 12px;
  }
  #achievement .achievement__detail-title {
    font-size: 24px;
  }
}

/*-------------------------
    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;
  }
}
