@charset "UTF-8";
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: unset;
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

/* add */
a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: unset;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* px to rem functions start 
rem(Xpx)でコンパイル時にremへ変換

各ファイル内で1行目に
@use "variable" as var;
を入れた後、
font-size: var.rem(●px);
と記述することでpx→rem自動変換する。
*/
.en {
  font-family: "Chakra Petch", serif;
}

.al-center {
  text-align: center;
}

.al-right {
  text-align: right;
}

.bold {
  font-weight: bold;
}

.underline_blue {
  background: linear-gradient(transparent 60%, #dfedf0 60%);
}

.underline_yellow {
  background: linear-gradient(transparent 60%, #fffa77 60%);
}

.fc_primary {
  color: #4313ba;
}

.fc_red {
  color: #ed4801;
}

.bg_blue {
  background: #f4f8f8;
}

.border_dot {
  border-bottom: 3px dotted;
}

.text_emphasis {
  background: #f2f3ff;
  font-weight: bold;
  color: #4313ba;
  padding: 0.4em 0.6em;
  line-height: 1;
}

.caution {
  font-size: 0.8125rem;
  display: block;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .caution {
    font-size: 0.6875rem;
  }
}

.wrapper {
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1100px) {
  .wrapper {
    max-width: 90%;
  }
}

.wrapper_sm {
  max-width: 840px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 860px) {
  .wrapper_sm {
    max-width: 90%;
  }
}

.wrapper_exsm {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .wrapper_exsm {
    max-width: 90%;
  }
}

.margin_center {
  margin-right: auto;
  margin-left: auto;
}

.mt_2exlg {
  margin-top: 7.875rem;
}
@media screen and (max-width: 767px) {
  .mt_2exlg {
    margin-top: 6.5rem;
  }
}

.mt_exlg {
  margin-top: 6.5rem;
}
@media screen and (max-width: 767px) {
  .mt_exlg {
    margin-top: 5rem;
  }
}

.mt_lg {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .mt_lg {
    margin-top: 2.5rem;
  }
}

.mt_default {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .mt_default {
    margin-top: 2rem;
  }
}

.mt_sm {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .mt_sm {
    margin-top: 1.25rem;
  }
}

.mt_exsm {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .mt_exsm {
    margin-top: 1rem;
  }
}

.pt_2exlg {
  padding-top: 7.875rem;
}

.pt_exlg {
  padding-top: 6.5rem;
}

.pt_lg {
  padding-top: 5rem;
}

.pt_default {
  padding-top: 4rem;
}

.pt_sm {
  padding-top: 2.5rem;
}

.pt_exsm {
  padding-top: 1.5rem;
}

.link_underline {
  text-decoration: underline;
}
.link_underline:hover {
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .pcOnly {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .spOnly {
    display: none;
  }
}

.flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .flex {
    flex-direction: column;
  }
}

.grid_half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .grid_half {
    grid-template-columns: 1fr;
  }
}

.grid_half_box .box_ttl {
  font-size: 1.125rem;
  font-weight: bold;
  margin: 0.8em 0;
  line-height: 1.4;
}

.col3_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media screen and (max-width: 767px) {
  .col3_box {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

.ico_blank:after {
  content: "";
  width: 0.8em;
  height: 0.8em;
  margin-left: 0.3em;
  background: url(../images/ico_blank.svg) no-repeat center center/contain;
  display: inline-block;
}

.btn_line {
  border: 1px solid #4313ba;
  border-radius: 4px;
  color: #4313ba;
  font-weight: bold;
  padding: 0.5em 1em;
  display: block;
  text-align: center;
}

.btn_orange,
.btn_green,
.btn_apply {
  text-align: center;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.05em;
  border-radius: 4px;
  max-width: 320px;
  width: 100%;
  display: block;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
  transition: 0.2s ease scale;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .btn_orange,
  .btn_green,
  .btn_apply {
    max-width: 100%;
  }
}
.btn_orange:after,
.btn_green:after,
.btn_apply:after {
  content: "";
  width: 11px;
  height: 11px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  rotate: 45deg;
  position: absolute;
  right: 18px;
  top: 50%;
  translate: 0 -50%;
}
@media screen and (max-width: 767px) {
  .btn_orange:after,
  .btn_green:after,
  .btn_apply:after {
    border-width: 2px;
    width: 8px;
    height: 8px;
    right: 0.8em;
  }
}
@media (hover: hover) {
  .btn_orange:hover,
  .btn_green:hover,
  .btn_apply:hover {
    opacity: 1;
    scale: 1.02;
  }
}

.btn_orange {
  background: rgb(255, 166, 49);
  background: url(../images/bg_btn_bright.svg) no-repeat top center/100%, linear-gradient(180deg, rgb(255, 166, 49) 0%, rgb(255, 128, 6) 100%);
  border-bottom: 1px solid #e35c01;
}

.btn_green {
  background: rgb(164, 209, 36);
  background: url(../images/bg_btn_bright.svg) no-repeat top center, linear-gradient(180deg, rgb(164, 209, 36) 0%, rgb(88, 161, 4) 100%);
  border-bottom: 1px solid #2a8b01;
}

.btn_apply {
  background: rgb(237, 106, 90);
  background: linear-gradient(180deg, rgb(237, 106, 90) 0%, rgb(247, 67, 45) 100%);
  border-bottom: 1px solid rgb(226, 0, 71);
}

.h2 {
  color: #4313ba;
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  border-left: none;
  border-bottom: 2px dotted #4313ba;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .h2 {
    font-size: 1.5rem;
  }
}
.h2.green {
  color: #2fa19c;
  border-color: #2fa19c;
}

.h2-type02 {
  font-size: 1.5rem;
  text-align: left;
  padding: 0;
  padding-left: 0.625em;
  border-left: 4px solid #00468c;
  margin: 2.5rem 0 1.5rem;
}

.h3 {
  width: -moz-max-content;
  width: max-content;
  font-size: 1.125rem;
  padding: 0.9rem 4.2rem 0.9rem 1.5rem;
  background: #f4f8f8;
  color: #2fa19c;
  border-left: 5px solid #2fa19c;
  clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .h3 {
    width: 100%;
  }
}

.green_container {
  background: #f2f3ff;
  border-radius: 20px;
  padding: 2.8125rem;
  box-shadow: 0 0 16px 1px rgba(164, 225, 186, 0.3);
}
@media screen and (max-width: 767px) {
  .green_container {
    padding: 1.25rem;
  }
}

.green_grad_container {
  border-radius: 20px;
  background: linear-gradient(3deg, rgba(178, 229, 97, 0.55) 0%, rgba(20, 191, 80, 0.55) 100%);
  padding: 2.8125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .green_grad_container {
    padding: 1.6rem 4% 4%;
  }
}
.green_grad_container:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: #7edc9f;
  border-radius: 50px;
  border: 8px solid #fff;
  box-sizing: content-box;
  position: absolute;
  left: 50%;
  top: 0;
  translate: -50% -17px;
}
@media screen and (max-width: 767px) {
  .green_grad_container:before {
    width: 14px;
    height: 14px;
    border: 6px solid #fff;
    translate: -50% -14px;
  }
}
.green_grad_container .container {
  background: #fff;
  border-radius: 20px;
  padding: 3.375rem 2.125rem;
  box-shadow: 0 0 16px 1px rgba(164, 225, 186, 0.5);
}
@media screen and (max-width: 767px) {
  .green_grad_container .container {
    padding: 2.25rem 5%;
  }
}

.note {
  font-size: 0.8125rem;
  border: 1px dotted #2fa19c;
  border-radius: 5px;
  padding: 0.8125rem;
}
.note span {
  color: #2fa19c;
  font-size: 0.75rem;
  display: block;
}

.separate01 {
  background: #f2f3ff;
  padding: 14px 0;
  position: relative;
}
.separate01.whitespace_lg {
  padding: 2em 0;
}
.separate01:after {
  content: "";
  width: 100px;
  height: 32px;
  background: #f2f3ff;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  bottom: -32px;
  left: 50%;
  translate: -50% 0;
}

body {
  color: #251d33;
  letter-spacing: 0.05em;
  font-family: YakuHanJP, Roboto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  box-sizing: border-box;
  letter-spacing: 0.05em;
}

p,
ul {
  line-height: 1.7;
}

.wrapper {
  margin-right: calc(50% - 480px);
  margin-left: calc(50% - 480px);
}
@media screen and (max-width: 980px) {
  .wrapper {
    margin-right: auto;
    margin-left: auto;
    width: 90%;
  }
}

header {
  padding: 20px 5%;
}
@media screen and (max-width: 767px) {
  header {
    padding: 1em 5%;
  }
}
header .logo {
  width: 230px;
}
@media screen and (max-width: 767px) {
  header .logo {
    width: 40%;
  }
}

footer {
  margin-bottom: 84px;
}
footer .f_nav {
  display: flex;
  justify-content: center;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  footer .f_nav {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  footer .f_nav li:not(:last-child) {
    margin-bottom: 1em;
  }
}
footer .f_nav li:not(:last-child):after {
  content: "｜";
  margin: 1em;
}
@media screen and (max-width: 767px) {
  footer .f_nav li:not(:last-child):after {
    display: none;
  }
}
footer nav {
  display: block;
  padding: 2rem;
  background: #fafafa;
}
footer nav a {
  color: #0e4d96;
}
footer .copyright {
  text-align: center;
  font-size: 0.75rem;
  padding: 2rem;
  color: #fff;
  background: #0e4d96;
}

.totop {
  cursor: pointer;
  position: fixed;
  right: 5%;
  bottom: 3%;
  transition: opacity 0.1s ease;
  z-index: 999;
}
@media screen and (max-width: 1024px) {
  .totop {
    position: relative;
    right: unset;
    bottom: unset;
  }
}
@media screen and (max-width: 767px) {
  .totop {
    width: 48px;
    height: auto;
    bottom: 0;
    right: unset;
  }
}
.totop:hover {
  opacity: 0.7;
}

.kv {
  background: #f2f3ff;
}
.kv img {
  margin: 0 auto;
}

.cta_area {
  transition: 0.5s ease opacity;
  padding: 10px;
  background: rgba(255, 255, 255, 0.4);
  width: 100%;
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .cta_area {
    gap: 0.625rem;
    padding: 5px;
  }
}
.cta_area a {
  font-size: 1.125rem;
  padding: 1.1em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .cta_area a {
    font-size: 0.875rem;
    padding: 0em;
    line-height: 1.2;
    height: 3.125rem;
  }
}
.cta_area a .lg {
  font-size: 133.33%;
}
.cta_area.inActive {
  opacity: 0;
  pointer-events: none;
}
.cta_area.bg_blue {
  background: #f4f8f8;
  padding: 1.5rem;
}
@media screen and (max-width: 767px) {
  .cta_area.bg_blue {
    padding: 1.5rem 5%;
  }
}
.cta_area.fixed_cta {
  position: fixed;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .cta_area.fixed_cta {
    display: grid;
    grid-template-columns: 1fr 1fr 48px;
  }
}

.recommend_area .lead {
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .recommend_area .lead {
    font-size: 1.25rem;
  }
}
.recommend_area .recommend_wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 1.125rem 0 2.5rem;
}
@media screen and (max-width: 767px) {
  .recommend_area .recommend_wrap {
    grid-template-columns: 1fr;
    font-size: 1rem;
    gap: 10px;
    width: 100%;
  }
}
.recommend_area .recommend_wrap h2 {
  background: #f2f3ff;
  border-radius: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  font-size: min(1.8vw, 1.1875rem);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) inset;
}
@media screen and (max-width: 767px) {
  .recommend_area .recommend_wrap h2 {
    font-size: 1rem;
  }
}
.recommend_area .recommend_wrap h2:nth-child(1), .recommend_area .recommend_wrap h2:nth-child(3) {
  translate: 0 -30px;
}
@media screen and (max-width: 767px) {
  .recommend_area .recommend_wrap h2:nth-child(1), .recommend_area .recommend_wrap h2:nth-child(3) {
    translate: 0;
  }
}
.recommend_area .recommend_wrap .underline_yellow {
  color: #4313ba;
  font-size: 118%;
}

.course_strength .box_wrap {
  margin: 5rem 0 2.5rem;
  gap: 10px;
}
@media screen and (max-width: 960px) {
  .course_strength .box_wrap {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .course_strength .box_wrap {
    margin: 2rem 0;
  }
}
.course_strength .box_wrap .box_cont {
  position: relative;
  width: 22rem;
  padding: 4.5rem 0 1.5rem;
  border: 3px solid #2fa19c;
  border-radius: 10px;
  background: #f4f8f8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 1.2rem;
}
@media screen and (max-width: 960px) {
  .course_strength .box_wrap .box_cont {
    width: 49%;
    margin-bottom: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .course_strength .box_wrap .box_cont {
    width: 100%;
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
}
.course_strength .pic {
  text-align: center;
  position: absolute;
  height: 10rem;
  width: 100%;
  top: -3rem;
  left: 50%;
  translate: -50% 0;
}
.course_strength .pic img {
  margin: auto;
}
@media screen and (max-width: 767px) {
  .course_strength .pic {
    height: 6rem;
    position: relative;
    top: unset;
    left: unset;
    translate: 0;
  }
}
.course_strength h3 {
  text-align: center;
  font-size: 1.125rem;
  color: #2fa19c;
  line-height: 1.2;
}
.course_strength .line_mod {
  margin-bottom: 0.5em;
}
.course_strength a {
  color: #fff;
  background: #2fa19c;
  font-weight: bold;
  font-size: 1rem;
  padding: 0.6rem 3rem;
  border-radius: 99px;
  cursor: pointer;
}

.modal-cont {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 97;
}

.modal {
  width: 70%;
  max-width: 740px;
  background: #fff;
  text-align: center;
  z-index: 99;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
}
@media screen and (max-width: 767px) {
  .modal {
    width: 95%;
  }
}

.modal-bg {
  z-index: 98;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
}

.modal-cont {
  visibility: none;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  pointer-events: none;
}

.modal-cont.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.modal {
  --padding: 0 20px;
}
.modal h3 {
  color: #fff;
  background: #0e4d96;
  font-size: clamp(1.6rem, 2vw, 2rem);
  padding: 0.5em;
  margin-bottom: 2rem;
}
.modal h4 {
  font-size: clamp(1.5rem, 1.9vw, 1.8rem);
  margin-bottom: 2rem;
}
.modal h4 .spOnly {
  display: none;
}
@media screen and (max-width: 767px) {
  .modal h4 .spOnly {
    display: block;
  }
}
.modal .movie {
  max-width: 800px;
  padding: 40px;
  margin: 0 auto;
}
.modal .movie iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}
.modal .underline {
  background: linear-gradient(transparent 60%, #ff6 60%);
}
.modal .list_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
}
.modal .list {
  font-weight: bold;
  text-align: left;
  font-size: 0.9375rem;
  padding: 2rem 0;
}
.modal .list li {
  text-indent: -1em;
  margin-left: 1em;
}

.close-btn {
  color: #fff;
  position: absolute;
  right: 0;
  top: -6.5rem;
  width: 42px;
  padding-top: 4rem;
  display: block;
  font-size: 0.8125rem;
  cursor: pointer;
}
.close-btn:before, .close-btn:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 3rem;
  background: #fff;
  transform: rotate(45deg) translate(-50%, -50%);
  transform-origin: left top;
}
.close-btn:before {
  width: 2px;
  height: 23px;
}
.close-btn:after {
  width: 23px;
  height: 2px;
}

.modal_flex_col2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 20px 20px;
}
@media screen and (max-width: 767px) {
  .modal_flex_col2 {
    gap: 10px;
  }
}
.modal_flex_col2 figure {
  width: calc(50% - 10px);
}
@media screen and (max-width: 767px) {
  .modal_flex_col2 figure {
    width: calc(50% - 5px);
  }
}

.recommend {
  container-type: inline-size;
}
.recommend .h3 {
  width: -moz-max-content;
  width: max-content;
  font-size: 1.125rem;
  padding: 0.9rem 4.2rem 0.9rem 1.5rem;
  background: #fafafa;
  color: #2fa19c;
  border-left: 5px solid #2fa19c;
  clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .recommend .h3 {
    width: 100%;
  }
}
.recommend .h3 span {
  background: #2fa19c;
  color: #fff;
  font-size: 0.875rem;
  padding: 0.1em 0.6rem 0;
  border-radius: 3px;
  margin-left: 0.5em;
  display: inline-block;
  margin-bottom: 0.15em;
}
.recommend .h3 .ex {
  background: #1292d5;
}
.recommend .h3 img {
  width: 1.4em;
  height: auto;
  margin-right: 0.2em;
  vertical-align: middle;
  display: inline-block;
}
.recommend .flow {
  display: flex;
  margin: 2.4rem 0 1.8rem;
  font-weight: bold;
  font-size: 1.125rem;
  font-size: clamp(0.875rem, 1.7vw, 1.125rem);
  position: relative;
  height: 10.5rem;
}
@media screen and (max-width: 767px) {
  .recommend .flow {
    flex-direction: column;
    font-size: 1.0625rem;
    height: auto;
  }
}
.recommend .flow .flow_cont {
  position: relative;
  width: 33.3333%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .recommend .flow .flow_cont {
    width: 100%;
  }
}
.recommend .flow .flow_cont:nth-child(1) {
  left: 0;
  z-index: 3;
}
.recommend .flow .flow_cont:nth-child(2) {
  z-index: 2;
}
.recommend .flow .flow_cont:nth-child(3) {
  z-index: 1;
}
.recommend .flow p {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  height: 100%;
  line-height: 1.4;
  position: relative;
}
@media screen and (max-width: 767px) {
  .recommend .flow p {
    padding: 1rem 0 0;
  }
}
.recommend .flow p:after {
  content: "";
  clip-path: polygon(0 0, 0% 100%, 50% 50%);
  background: #edf8f8;
  width: 3.5rem;
  height: 100%;
  display: block;
  position: absolute;
  right: -3.5rem;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .recommend .flow p:after {
    clip-path: polygon(100% 0, 0 0, 50% 50%);
    bottom: -3.99rem;
    right: 0;
    width: 100%;
    height: 4rem;
  }
}
@media screen and (max-width: 960px) {
  .recommend .flow p span {
    padding: 0 0.5em;
  }
}
.recommend .flow .ico {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -25px;
  display: block;
  z-index: 4;
  width: 100px;
  height: auto;
}
.recommend .flow .flow01 {
  background: #edf8f8;
}
.recommend .flow .flow02 {
  background: #cdeded;
}
@media screen and (max-width: 767px) {
  .recommend .flow .flow02 {
    padding-top: 3rem;
  }
}
.recommend .flow .flow02 span {
  transform: translateX(0.7em);
}
.recommend .flow .flow02:after {
  background: #cdeded;
}
.recommend .flow .flow03 {
  background: #97cccc;
}
@media screen and (max-width: 767px) {
  .recommend .flow .flow03 {
    padding-top: 3rem;
    padding-bottom: 1rem;
  }
}
.recommend .flow .flow03 span {
  transform: translateX(0.5em);
}
.recommend .flow .flow03:after {
  display: none;
}
.recommend .txt_box {
  display: flex;
  align-items: flex-start;
  gap: 1em;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .recommend .txt_box {
    flex-direction: column;
    gap: 0.5em;
  }
}
.recommend .txt_box > * {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .recommend .txt_box > * {
    width: 100%;
  }
}
.recommend .recommend_ttl {
  color: #2fa19c;
  font-weight: bold;
  font-size: 1.0625rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .recommend .recommend_ttl {
    font-size: 0.9375rem;
  }
}
.recommend .recommend_ttl:before {
  content: "";
  width: 1.333em;
  height: 1.5em;
  background: url(../images/fs_240501__senbatsu_ico03.svg) no-repeat center center;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.2em 0.5em 0;
}

.timetable > p {
  font-size: 0.8125rem;
  margin: 0.5em 0;
}
.timetable table {
  width: 100%;
  border: 1px solid #ccc;
  overflow: hidden;
  text-align: center;
  border-collapse: collapse;
}
.timetable table th,
.timetable table td {
  font-weight: normal;
  padding: 0.7rem;
  position: relative;
  background: transparent;
}
@media screen and (max-width: 767px) {
  .timetable table th,
  .timetable table td {
    padding: 0.2rem;
  }
}
.timetable table tr:nth-child(even) {
  background: transparent;
}
.timetable thead {
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .timetable thead {
    z-index: unset;
  }
}
.timetable thead tr {
  background: #f4f8f8;
}
.timetable thead th {
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
.timetable thead th:last-child {
  border-right: none;
}
@media screen and (max-width: 767px) {
  .timetable thead th {
    font-size: 0.75rem;
  }
}
.timetable tbody tr:nth-child(even) {
  background: #f4f8f8;
}
.timetable tbody th span,
.timetable tbody td span {
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .timetable tbody th span,
  .timetable tbody td span {
    z-index: unset;
  }
}
.timetable tbody th {
  font-size: 0.9375rem;
  width: 208px;
}
@media screen and (max-width: 767px) {
  .timetable tbody th {
    font-size: 0.75rem;
    letter-spacing: 0;
  }
}
.timetable tbody th br {
  display: none;
}
@media screen and (max-width: 767px) {
  .timetable tbody th br {
    display: block;
  }
}
.timetable tbody td {
  color: #2fa19c;
  width: 13%;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
.timetable tbody td:last-child {
  border-right: none;
}
.timetable tbody td:hover {
  background: yellow;
}
.timetable tbody td:hover:before {
  pointer-events: none;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 134, 0.3); /*縦横のカラー指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.timetable tbody td:hover:before {
  width: 200vw;
  left: -100vw;
}

@media screen and (max-width: 767px) {
  .voice {
    background: url("../images/fs_0501_senbatsu_voice_bg01.png") no-repeat top left, url("../images/fs_0501_senbatsu_voice_bg02.png") no-repeat bottom right, #f4f8f8;
  }
}
.voice .wrapper {
  padding: 72px 0;
  background: url("../images/fs_0501_senbatsu_voice_bg01.png") no-repeat top left, url("../images/fs_0501_senbatsu_voice_bg02.png") no-repeat bottom right;
}
@media screen and (max-width: 767px) {
  .voice .wrapper {
    background: none;
  }
}
.voice h2 {
  text-align: center;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .voice h2 {
    font-size: 1.5rem;
  }
}

.voice_cont {
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
  max-width: 697px;
  margin-right: auto;
  margin-left: auto;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .voice_cont {
    gap: 1.4rem;
  }
}
.voice_cont figure {
  width: 9.375rem;
  height: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .voice_cont figure img {
    width: 150px;
    height: auto;
    margin: 0 auto;
  }
}
.voice_cont figure:before {
  content: "";
  width: 1px;
  height: 10rem;
  background: #2fa19c;
  display: block;
  position: absolute;
  right: -2.5rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .voice_cont figure:before {
    display: none;
  }
}
.voice_cont figure:after {
  content: "";
  width: 8px;
  height: 8px;
  background: #f4f8f8;
  border-left: 1px solid #2fa19c;
  border-top: 1px solid #2fa19c;
  transform: rotate(-45deg) translate(0, -50%);
  display: block;
  position: absolute;
  right: -2.87rem;
  top: 50%;
}
@media screen and (max-width: 767px) {
  .voice_cont figure:after {
    background: #fff;
    transform: rotate(45deg) translate(-50%, 0);
    bottom: -1.88rem;
    top: unset;
    left: 50%;
    right: unset;
  }
}
@media screen and (max-width: 767px) {
  .voice_cont figure {
    margin: 0 auto;
    width: 100%;
    text-align: center;
  }
}
.voice_cont figcaption {
  font-size: 0.8125rem;
  text-align: center;
  margin-top: 8px;
}
.voice_cont .txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 48.4rem;
}
@media screen and (max-width: 767px) {
  .voice_cont .txt {
    width: 100%;
    padding: 1rem;
    padding-top: 0;
    border: 1px solid #2fa19c;
    border-radius: 5px;
    background: #fff;
  }
}
.voice_cont .txt span {
  background: #2fa19c;
  color: #fff;
  font-weight: bold;
  font-size: 0.875rem;
  padding: 0.3rem 0.5em;
  border-radius: 3px;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .voice_cont .txt span {
    margin: 1rem auto 1.6rem;
    margin: 1.3rem auto;
  }
}

.intro_wrap {
  flex-wrap: wrap;
}

.intro_box {
  width: 49%;
  margin-bottom: 1.5rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .intro_box {
    width: 100%;
  }
}
.intro_box h3 {
  color: #fff;
  background: #1292d5;
  font-size: 1.25rem;
  text-align: center;
  display: block;
  padding: 0.4em;
  border-radius: 5px;
  position: relative;
  transition: border-radius 0.5s;
}
@media screen and (max-width: 767px) {
  .intro_box h3 {
    font-size: 0.9375rem;
  }
}
.intro_box h3:after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 3px solid #fff;
  border-top: 3px solid #fff;
  display: block;
  position: absolute;
  right: 20px;
  top: 35%;
  transform: rotate(135deg);
  transition: transform 0.5s, top 0.5s;
}
@media screen and (max-width: 767px) {
  .intro_box h3:after {
    width: 7px;
    height: 7px;
    right: 15px;
  }
}
.intro_box h3.active {
  border-radius: 5px 5px 0 0;
}
.intro_box h3.active:after {
  transform: rotate(-45deg);
  top: 42%;
}
.intro_box dl {
  border-radius: 0 0 5px 5px;
  padding: 1rem 2.3125rem;
  display: none;
}
@media screen and (max-width: 960px) {
  .intro_box dl {
    padding: 1rem;
    font-size: 0.8125rem;
  }
}
.intro_box dl div {
  display: flex;
}
@media screen and (max-width: 767px) {
  .intro_box dl div {
    flex-direction: column;
  }
}
.intro_box dt {
  line-height: 2;
  width: 30%;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .intro_box dt {
    width: 100%;
  }
}
.intro_box dd {
  width: 70%;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .intro_box dd {
    width: 100%;
    margin-bottom: 1em;
  }
}

.intro_note {
  font-size: 0.8125rem;
}
.intro_note li {
  text-indent: -1em;
  margin-left: 1em;
}

.attend_flow {
  display: flex;
  justify-content: center;
  gap: 5.7rem;
  margin: 2.5rem 0;
}
@media screen and (max-width: 767px) {
  .attend_flow {
    gap: 5rem;
    flex-direction: column;
    align-items: center;
  }
}
.attend_flow li {
  width: 19.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .attend_flow li {
    width: 52%;
  }
}
.attend_flow li:before {
  content: "";
  height: 38px;
  width: 36px;
  background: url("../images/fs_0501_senbatsu_flow_arrow.png") no-repeat center center/contain;
  position: absolute;
  right: -4.6rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .attend_flow li:before {
    right: unset;
    left: 50%;
    top: 100%;
    transform: rotate(90deg) translate(0, 50%);
  }
}
.attend_flow li:last-child:before {
  display: none;
}

.achieve .btn {
  color: #fff;
  background: #f21a1a;
  font-weight: bold;
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0.1em;
  border-radius: 5px;
  box-shadow: 0 5px 0 #bc0000;
  display: block;
  max-width: 620px;
  width: 100%;
  padding: 1em;
  margin: 2rem auto;
}
@media (hover: hover) {
  .achieve .btn:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .achieve .btn {
    padding: 0.5em;
    font-size: 1.25rem;
  }
}

.l_message_badge {
  display: grid;
  grid-template-columns: 114px 1fr;
  gap: 12px;
  justify-content: center;
  align-items: center;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l_message_badge {
    grid-template-columns: 1fr;
    grid-template-rows: 0px 1fr;
    gap: 0;
    padding: 10px 0;
    text-align: center;
  }
}
.l_message_badge .message_badge {
  display: block;
}
@media screen and (max-width: 767px) {
  .l_message_badge .message_badge {
    width: 80px;
    height: auto;
    translate: -40px -20px;
  }
}
.l_message_badge .message_title {
  font-size: 1.1875rem;
}
@media screen and (max-width: 767px) {
  .l_message_badge .message_title {
    font-size: 0.8125rem;
  }
}
.l_message_badge .fs_lg {
  font-size: 126%;
}

.motivation_area .l_course_title {
  text-align: center;
}
.motivation_area .course_title {
  font-size: 2.25rem;
  position: relative;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .motivation_area .course_title {
    font-size: 1.5rem;
  }
}
.motivation_area .course_title:before {
  content: "";
  width: 1em;
  height: 1.36em;
  background: url(../images/linkone_koubosuisen_ico01.svg) no-repeat center center/contain;
  display: inline-block;
  position: absolute;
  left: -1em;
  bottom: 0.3em;
}
.motivation_area .modify {
  font-size: 66.666%;
  display: block;
}
.motivation_area .l_course_point {
  display: grid;
  grid-template-columns: repeat(3, minmax(7vw, 237px));
  gap: min(5vw, 60px);
  justify-content: center;
  height: 237px;
}
@media screen and (max-width: 767px) {
  .motivation_area .l_course_point {
    grid-template-columns: 1fr;
    height: unset;
    gap: 10px;
  }
}
.motivation_area .couese_point {
  background: #f2f3ff;
  border-radius: 200px;
  text-align: center;
  display: grid;
  grid-template-rows: max-content max-content;
  justify-content: center;
  gap: 5px;
  padding-top: 22px;
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .motivation_area .couese_point {
    padding-top: 0;
    gap: 10px;
    padding: 16px 16px;
    grid-template-columns: 80px 1fr;
    grid-template-rows: 1fr;
    align-items: center;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .motivation_area .point_figure {
    translate: 0 -0.3em;
  }
}
.motivation_area .lineheight_narrow {
  line-height: 1.4;
}

.write_flow .write_flow_title {
  font-size: 2.25rem;
}
@media screen and (max-width: 767px) {
  .write_flow .write_flow_title {
    font-size: 1.5rem;
  }
}
.write_flow .text_emphasis {
  font-size: 77.77%;
  border-radius: 50px;
  margin-left: 0.2em;
}

.about_cont_box {
  display: grid;
  grid-template-columns: 288px 1fr;
  gap: 2.5em;
}
@media screen and (max-width: 767px) {
  .about_cont_box {
    grid-template-columns: 1fr;
  }
}
.about_cont_box .bold {
  font-size: 110%;
}
@media screen and (max-width: 767px) {
  .about_cont_box .about_cont_figure {
    width: 60%;
    margin: 0 auto;
    order: 1;
  }
}

.point_area .point_title {
  padding: 0.5em 0;
  text-align: center;
  font-size: 1.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .point_area .point_title {
    font-size: 1.25rem;
  }
}
.point_area .point_title:before {
  content: "POINT";
  background: #4313ba;
  color: #fff;
  padding: 0.2em 0.5em;
  border-radius: 50px;
  display: block;
  max-width: 5em;
  margin: 0 auto 0.5em;
}
.point_area .l_point_school_box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .point_area .l_point_school_box {
    grid-template-columns: 1fr;
  }
}
.point_area .point_school_box {
  border: 1px solid #4313ba;
  border-radius: 10px;
  overflow: hidden;
  font-size: 1.125rem;
}
.point_area .point_school {
  color: #fff;
  background: #4313ba;
  font-size: 2.25rem;
  text-align: center;
  padding: 0.75rem;
}
.point_area .point_text01,
.point_area .point_text02 {
  text-align: center;
  padding: 12px;
}
.point_area .text_emphasis {
  font-size: 122%;
  display: inline-block;
  margin: 0.1em;
}
.point_area .point_message_mid {
  font-size: 1.375rem;
}
.point_area .point_message_lg {
  font-size: 2.25rem;
  font-weight: bold;
  color: #4313ba;
}
.point_area .point_message_lg .fs_sm {
  font-size: 83.3%;
}