@charset "UTF-8";

html,
body,
h1,
h2,
h3,
p,
a,
span,
ul,
li {
  margin: 0;
  padding: 0;
  line-height: 2;
  letter-spacing: -0.025em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #1A1311;
}

@media screen and (max-width: 1050px) {

  html,
  body,
  h1,
  h2,
  h3,
  p,
  a,
  span,
  ul,
  li {
    letter-spacing: 0.05em;
  }
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  border: none;
  vertical-align: bottom;
  max-width: 100%;
}

html {
  font-size: 62.5%;
}

address {
  font-style: normal;
  /* ????????????? */
  margin: 0;
  /* ?ǥե???????????å?*/
  padding: 0;
  /* ?ǥե????Υѥǥ??󥰤????å?*/
  text-decoration: none;
  /* ????ʤɤΥƥ????????? */
  line-height: normal;
  /* ͨ?????g?ˑ??? */
}

/* ----------------------------------------------------------- */

@font-face {
  font-family: "ShueiMaruGo-B";
  src: url("../font/AP-OTF-ShueiMGoStd-B.woff2") format("woff2"),
       url("../font/AP-OTF-ShueiMGoStd-B.woff") format("woff");
}

@font-face {
  font-family: "ShueiMaruGo-L";
  src: url("../font/AP-OTF-ShueiMGoStd-L.woff2") format("woff2"),
       url("../font/AP-OTF-ShueiMGoStd-L.woff") format("woff");
}

/* ??ͨ????????*/

/* .body_wrapper {
  width: 100%;
  overflow: hidden;
} */

.body_wrapper {
  overflow-x: hidden;
}

.container-base {
  max-width: 872px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.container-small {
  max-width: 886px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}


.btn_wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  background-color: #FF6A9C;
  border: 2px solid #fff;
  border-radius: 44px;
  width: 330px;
  padding: 18px 0;
  transition: background-color 0.3s ease;
}

.btn_wrap:hover {
  background-color: #5BC8FE;
}

@media screen and (max-width: 768px) {
  .btn_wrap {
    padding: 10px 0;
    width: 100%;
    max-width: 360px;
  }
}

.btn_wrap_text {
    color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .btn_wrap_text {
    font-size: 20px;
  }
}

.btn_wrap_text small {
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .btn_wrap_text small {
    display: block;
    margin-top: 4px;
    font-size: 15px;
  }
}

.header_btn .btn_wrap_text {
  font-size: 20px;
}

.header_btn {
  padding: 6px 0;
  text-align: center;
}

.header_btn small {
  display: block;
  margin-top: 6px;
}

@media screen and (max-width: 370px) {
  .btn_wrap_text {
    font-size: 18px;
  }
}

.side_btn {
    position: fixed;
    bottom: 50%;
    right: 0;
    display: none;
    z-index: 3;
    transform: translate(0, 50%);
}

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


.side_btn a {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  background-color: #FF6A9C;
  border: 2px solid #fff;
  border-radius: 14px 0 0 14px;
  padding: 20px 18px;
  transition: background-color 0.3s ease;
}

.side_btn a:hover {
  background-color: #5BC8FE;
}

.side_btn_text {
  display: flex;
  flex-direction: row;
  font-size: 20px;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  font-weight: 500;
}

.side_btn_text span {
  display: block;
  color: #fff;
  line-height: 1.4;
}

.side_btn_text b {
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
  line-height: 0.9;
}

.side_btn_text .vertical {
  writing-mode: vertical-rl;
}

.underline {
  position: relative;
  padding-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .underline {
    padding-bottom: 5px;
  }
}

.underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background-color: #FFEC73;
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  .underline::after {
    height: 3px;
  }
}

.br768 {
  display: none;
}

@media screen and (max-width: 768px) {
  .br768 {
    display: block;
  }
}

.br600 {
  display: none;
}

@media screen and (max-width: 600px) {
  .br600 {
    display: block;
  }
}


.br450 {
  display: none;
}

@media screen and (max-width: 450px) {
  .br450 {
    display: block;
  }
}


.br860 {
  display: none;
}

@media screen and (max-width: 860px) {
  .br860 {
    display: block;
  }
}

.br550 {
  display: none;
}

@media screen and (max-width: 550px) {
  .br550 {
    display: block;
  }
}

.br670 {
  display: none;
}

@media screen and (max-width: 670px) {
  .br670 {
    display: block;
  }
}


.min_551 {
  display: block;
}

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

.min_671 {
  display: block;
}

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

.min_961 {
  display: block;
}

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

.min_1050 {
  display: block;
}

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

.asterisk {
  display: block;
  font-size: 13px;
  position: relative;
  padding-left: 15px;
  line-height: 1.5;
  margin-top: 8px;
}

.asterisk::before {
  content: "??";
  position: absolute;
  left: 0;
  top: 0;
}

/* -------------------------------------------------------------------------- */

/* ?إå??` */

.header {
  z-index: 999;
  background-color: transparent !important;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .header {
    z-index: 999;
    position: relative;
    background-color: transparent !important;
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
}

/* @media screen and (max-width: 768px) {
  .header {
    padding-top: 20px;
    padding-left: 24px;
  }
} */

@media screen and (max-width: 768px) {
  .header .btn_wrap {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .site_header_logo {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #fff;
    height: fit-content;
    padding: 12px 40px;
    border-radius: 0 0 12px 0;
    font-size: 17px;
    font-weight: 500;
  }
  .site_header_logo p {
    position: relative;
    top: -2px;
    right: 2px;
  }
}

@media screen and (max-width: 767px) {
  .site_header_logo {
    display: flex;
    align-items: center;
    gap: 28px;
    background-color: #fff;
    height: fit-content;
    padding: 12px 20px;
  }
  .site_header_logo p {
    position: relative;
    top: 0px;
    right: 2px;
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) {
  .header_body {
    padding: 15px 30px 0 0;
    position: fixed;
    right: 0;
  }
}

/* ------------------------------------------------------------------------- */

/* ?ᥤ?????奢??*/

.main_visual {
  position: relative;
  width: 100%;
  margin-top: -91px;
}

@media screen and (max-width: 768px) {
  .main_visual {
    padding-top: 51px;
    margin-top: -46px;
  }
}

.main_visual_intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 20px 0 24px;
  font-size: min(3.4vw,46px);
  font-weight: 600;
  text-align: center;
  color: #BD5595;
  font-family: "ShueiMaruGo-B";
}

@media screen and (max-width: 1100px) {
  .main_visual_intro {
    text-align: left;
    padding: 20px 40px 24px;
  }
}

@media screen and (max-width: 768px) {
  .main_visual_intro {
    padding: 18px 0;
    font-size: 22px;
    text-align: center;
  }
}

.main_visual_intro_txt {
  font-weight: 600;
  text-align: center;
  color: #5BC8FE;
  font-family: "ShueiMaruGo-B";
}

@media screen and (max-width: 1100px) {
  .main_visual_intro_txt {
    font-size: 28px;
  }
}

@media screen and (max-width: 768px) {
  .main_visual_intro_txt {
    font-size: 22px;
    text-align: center;
  }
}

.main_visual_present {
  position: absolute;
  bottom: -72px;
  left: 20px;
  margin-bottom: -45px;
  width: 328px;
}

.main_visual_present img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1380px) {
  .main_visual_present {
    width: 260px;
  }
}

@media screen and (max-width: 1180px) {
  .main_visual_present {
    width: 240px;
  }
}

@media screen and (max-width: 1100px) {
  .main_visual_present {
    width: 220px;
    bottom: -31px;
    left: 20px;
  }
}

@media screen and (max-width: 1000px) {
  .main_visual_present {
    width: 180px;
    bottom: -18px;
    left: 20px;
  }
}

@media screen and (max-width: 768px) {
  .main_visual_present {
    display: none;
    right: 50%;
    transform: translateX(50%);
    bottom: -165px;
    width: 346px;
  }
}


.main_visual img {
  width: 100%;
}

.main_visual_bottom {
  padding: 30px 0 26px 0;
  background-color: #FEF3DB;
}

@media screen and (max-width: 1255px) {
  .main_visual_bottom {
    padding: 7px 0 12px 0;
  }
}

@media screen and (max-width: 768px) {
  .main_visual_bottom {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 20px;
    background: linear-gradient(0deg, #FEF3DB 0%, #FEF3DB 85%, #fff 85%, #fff 100%);
  }
}

.main_visual_bottom_present {
  display: none;
}

@media screen and (max-width: 768px) {
  .main_visual_bottom_present {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    text-align: center;
  }
}

.main_visual_bottom .container-base {
  position: relative;
  max-width: 1120px;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .main_visual_bottom .explanation_flex {
    justify-content: center;
  }
}

.main_visual_bottom_body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 155px;
}

.main_visual_bottom_right {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 1255px) {
  .main_visual_bottom_right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 9px;
  }
  .main_visual_bottom_body .explanation_flex {
    padding: 0;
  }
}


@media screen and (max-width: 1255px) {
  .main_visual_bottom_body {
    justify-content: center;
    margin-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .main_visual_bottom_body {
    margin-left: 0;
  }
}

.main_visual_bottom_img {
  position: absolute;
  bottom: -26px;
  left: -164px;
  min-width: 154px;
}

@media screen and (max-width: 1255px) {
  .main_visual_bottom_img {
    position: relative;
    left: 0;
    bottom: -12px;
  }
  .main_visual_bottom_img img {
    width: 100%;
    height: auto;
  }
}

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

.main_visual_bottom_img_sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .main_visual_bottom_img_sp {
    position: relative;
    bottom: -9px;
    display: block;
    min-width: 100px;
    width: 22%;
    margin-top: -53px;
  }
}

@media screen and (max-width: 768px) {
  .main_visual_bottom_img_sp img {
    width: 100%;
    height: auto;
  }
}

.main_visual_bottom_text {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .main_visual_bottom_text {
    margin-bottom: 12px;
    text-align: left;
  }
}

.main_visual_bottom_text_inr {
  font-size: min(2.2vw,28px);
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .main_visual_bottom_text_inr {
    font-size: 19px;
    font-weight: 700;
  }
}

@media screen and (max-width: 360px) {
  .main_visual_bottom_text_inr {
    font-size: 18px;
  }
}

.text_decoration {
  position: absolute;
  top: -12px;
  left: -21px;
}

@media screen and (max-width: 768px) {
  .text_decoration {
    left: -21px;
  }
}

@media screen and (max-width: 600px) {
  .text_decoration {
    left: 27px;
  }
}

.main_visual_bottom .btn_wrap {
  width: 548px;
}

@media screen and (max-width: 768px) {
  .main_visual_bottom .btn_wrap {
    width: 100%;
    max-width: 360px;
  }
}

/* ---------------------------------------------- */
/* challenge */

.challenge {
  padding: 112px 0 117px 0;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .challenge {
    padding: 35px 0 31px 0;
  }
}

.challenge .container-base {
  max-width: 1180px;
}

.intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .intro {
    flex-direction: column;
  }
}

.intro_left {
  max-width: 396px;
  width: 30%;
  padding: 0 40px;
}

@media screen and (max-width: 768px) {
  .intro_left {
    max-width: 100%;
    width: 100%;
  }
}

.intro_left .section_title {
  text-align: left;
}

@media screen and (max-width: 768px) {
  .intro_left .section_title {
    margin-bottom: 20px;
    text-align: center;
  }
}

.intro_right {
  position: relative;
  left: 60px;
  max-width: 808px;
  width: 60%;
  border-radius: 28px 0 0 28px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .intro_right {
    max-width: calc(100% + 20px);
    width: calc(100% + 20px);
    left: 10px;
    margin-left: auto;
  }
}

.intro_right img {
  width: 100%;
  border-radius: 24px;
}

@media screen and (max-width: 768px) {
  .intro_right img {
    width: 100%;
    border-radius: 12px 0 0 12px;
  }
}

.section_top {
  position: relative;
  margin: 0 auto 22px auto;
  width: max-content;
}

@media screen and (max-width: 768px) {
  .section_top {
    margin: 0 auto 6px auto;
  }
}

.section_top::before {
  content: '';
  position: absolute;
  left: -41px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 31px;
  background-image: url('../img/home/textdecoration_left.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .section_top::before {
    left: -29px;
  }
}

.section_top::after {
  content: '';
  position: absolute;
  right: -37px;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 32px;
  background-image: url('../img/home/textdecoration_right.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .section_top::after {
    right: -29px;
  }

}

.section_top_inr {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

@media screen and (max-width: 768px) {
  .section_top_inr {
    font-size: 22px;
  }
}

@media screen and (max-width: 350px) {
  .section_top_inr {
    font-size: 20px;
  }
}

.section_title {
  position: relative;
  text-align: center;
  margin-top: 12px;
  width: max-content;
  margin: 0 auto;
}

.challenge01 {
  position: absolute;
  top: -62px;
  left: -367px;
}

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

.challenge02 {
  position: absolute;
  top: -27px;
  right: -417px;
}

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

.section_title_inr {
  font-size: min(3.4vw,44px);
  font-weight: 700;
  color: #5BC8FE;
  line-height: 1.6;
  letter-spacing: -0.025em;
}

@media screen and (max-width: 768px) {
  .section_title_inr {
    font-size: 28px;
    line-height: 1.6;
    text-align: center;
  }
}

.section_title_inr strong {
  margin: 4px 0;
  padding: 0 16px 0 10px;
  font-size: min(4.4vw,52px);
  color: #fff;
  background: #5BC8FE;
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  .section_title_inr strong {
    font-size: 28px;
  }
}

.challenge_title {
  position: relative;
  width: max-content;
  margin: 0 auto;
  font-size: 30px;
  line-height: 1.5;
  font-weight: 500;
  margin-top: 70px;
}

@media screen and (max-width: 768px) {
  .challenge_title {
    text-align: center;
    font-size: 20px;
    margin-top: 30px;
    line-height: 1.25;
  }
}

@media screen and (max-width: 350px) {
  .challenge_title {
    font-size: 18px;
  }
}

.challenge_title_img {
  position: absolute;
  top: 7px;
  left: -13px;
  width: 11px;
}

@media screen and (max-width: 768px) {
  .challenge_title_img {
    top: -12px;
    left: 58px;
  }
}

.activeTeacher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: 120px auto 0;
}

@media screen and (max-width: 768px) {
  .activeTeacher {
    flex-direction: column-reverse;
    gap: 30px;
    margin: 80px auto 0;
  }
}

.activeTeacher_illust {
  min-width: min(20vw, 300px);
}

@media screen and (max-width: 768px) {
  .activeTeacher_illust {
    width: 66%;
    min-width: 66%;
  }
}


.activeTeacher_illust img {
  width: 100%;
  height: auto;
}

.activeTeacher_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.activeTeacher_text_body {
}

.activeTeacher_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .activeTeacher_list {
    flex-wrap: wrap;
    gap: 12px;
  }
}

.activeTeacher_list li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(9vw,120px);
  height: min(9vw,120px);
  border-radius: min(16vw,120px);
  font-size: min(1.2vw,18px);
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  background: #5BC8FE;
}

@media screen and (max-width: 768px) {
  .activeTeacher_list li {
    width: calc((100vw - 64px) / 3);
    height: calc((100vw - 64px) / 3);
    font-size: 14px;
    border-radius:  50%;
  }
}

.activeTeacher_ttl {
  display: inline-block;
  position: relative;
  text-align: center;
  font-size: min(2.4vw,27px);
  font-weight: 500;
  padding-left: 30px
}

@media screen and (max-width: 768px) {
  .activeTeacher_ttl {
    font-size: 20px;
    padding-left: 24px
  }
}

.activeTeacher_ttl:after {
  position: absolute;
  left: 0;
  top: 3px;
  content: "";
  width: 20px;
  height: 29px;
  background: url(../img/home/textdecoration_black.svg) no-repeat;
  background-size: 100%;
}

@media screen and (max-width: 768px) {
  .activeTeacher_ttl:after {
    width: 14px;
    height: 25px;
    left: 60px;
  }
}

.accordion {
  margin-top: 65px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .accordion {
    margin-top: 65px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
  }
}

@media screen and (max-width: 768px) {
  .accordion {
    margin-top: 40px;
  }
}

.accordion-item {
}

.accordion-content {
  display: none;
}

.accordion-header {
  padding-left: 176px;
  padding-right: 30px;
  background-color: #fff;
  height: 122px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  border-radius: 5px 5px 0 0;
}

.accordion-header:not(.active) {
  border-radius: 5px 5px 4px 4px;
}

@media screen and (max-width: 767px) {
  .accordion-header {
    padding-left: 103px;
    padding-right: 20px;
    height: auto;
  }
}

@media screen and (max-width: 355px) {
  .accordion-header {
    padding-right: 10px;
  }
}

.accordion-header_img01 {
  position: absolute;
  bottom: 0;
  left: 7px;
}

.accordion-header_img02 {
  position: absolute;
  bottom: 0;
  left: 0;
}

.accordion-header_img03 {
  position: absolute;
  bottom: 0;
  left: 10px;
}

@media screen and (max-width: 800px) {
  .accordion-header_img03 {
    left: -5px;
  }
}

.accordion-header_img04 {
  position: absolute;
  bottom: 0;
  left: 0;
}

.accordion-header_text {
  font-size: min(2.4vw,30px);
  line-height: 1.4;
  font-weight: 700;
  color: #5BC8FE;
}

@media screen and (max-width: 800px) {
  .accordion-header_text {
    font-size: 20px;
  }
}

@media screen and (max-width: 385px) {
  .accordion-header_text {
    font-size: 18px;
  }
}

@media screen and (max-width: 365px) {
  .accordion-header_text {
    font-size: 16px;
  }
}

.accordion-content {
  background-color: #fff;
  padding: 23px 87px 32px 89px;
  border-radius: 0 0 10px 10px;
}

@media screen and (max-width: 800px) {
  .accordion-content {
    padding: 9px 11px 12px 20px;
  }
}

.accordion-content_text {
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: -0.05em;
}

@media screen and (max-width: 375px) {
  .accordion-content_text {
    font-size: 14px;
  }
}



.arrow-icon {
  height: 30px;
  width: 30px;
  background-image: url('../img/home/accordion_arrow.svg');
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}

@media screen and (max-width: 800px) {
  .arrow-icon {
    height: 24px;
    width: 24px;
    background-image: url('../img/home/accordion_arrow_sp.svg');
  }
}

.arrow-icon {
  transform: rotate(180deg);
}

.active .arrow-icon {
  transform: rotate(0);
}



.challenge03 {
  position: absolute;
  top: 273px;
  left: -259px;
}

@media screen and (max-width: 1350px) {
  .challenge03 {
    right: -209px;
  }
}

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

.challenge04 {
  position: absolute;
  top: 562px;
  right: -250px;
}

@media screen and (max-width: 1350px) {
  .challenge04 {
    right: -210px;
  }
}

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

.recommend {
  z-index: 1;
  position: relative;
  max-width: 1000px;
  margin: 115px auto 0;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

@media screen and (max-width: 768px) {
  .recommend {
    margin: 62px auto 28px;
  }
}

.recommend:after {
  content: "";
  width: min(51vw, 558px);
  height: min(32vw, 275px);
  background: url(../img/home/recommend_background.svg);
  position: absolute;
  background-size: 100%;
  top: 14%;
  left: -24%;
  z-index: -1;
}

.recommend .underline {
  font-size: min(2.4vw,30px);
  font-weight: 500;
  line-height: 1.5;
  padding-bottom: 12px;
  width: max-content;
  position: relative;
}

@media screen and (max-width: 768px) {
  .recommend .underline {
    padding-bottom: 3px;
    font-size: 20px;
  }
}

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

@media screen and (max-width: 1200px) {
  .recommend_text {
    width: 100%;
  }
}

@media screen and (max-width: 1200px) {
  .recommend:after {
    display: none;
  }
}

.recommend .recommend_title_illust {
  display: none;
}

@media screen and (max-width: 1255px) {
  .recommend .recommend_title_illust {
    display: block;
    position: absolute;
    bottom: -17px;
    right: -166px;
  }
}

@media screen and (max-width: 370px) {
  .recommend .recommend_title_illust {
    right: -128px;
  }
}

@media screen and (max-width: 345px) {
  .recommend .recommend_title_illust {
    display: none;
  }
}

.recommend_textdecoration {
  position: absolute;
  top: -11px;
  left: -19px;
}


@media screen and (max-width: 1255px) {
  .recommend_textdecoration {
    position: absolute;
    top: -7px;
    left: -7px;
    width: 11px;
    height: 17px;
  }
}

.recommend_text_body {
  margin-top: 62px;
}

@media screen and (max-width: 768px) {
  .recommend_text_body {
    margin-top: 29px;
  }
}

.recommend_text_item {
  display: flex;
  align-items: center;
  gap: 19px;
  padding-top: 23px;
  padding-bottom: 23px;
  border-bottom: 2px dashed #D9D9D9;
}

@media screen and (max-width: 768px) {
  .recommend_text_item {
    gap: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.recommend_text_item:first-child {
  padding-top: 0;
}

.recommend_text_item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.recommend_text_item_body_inr {
  font-size: min(1.9vw,24px);
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .recommend_text_item_body_inr {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .recommend_text_item_check {
    width: 35px;
    height: 33px;
  }
}

@media screen and (max-width: 1200px) {
  .recommend_ttl {
    display: flex;
    justify-content: center;
    text-align: center;
  }
}

/* ----------------------------------------------- */
/* ????*/

.explanation {
  padding: 13px 0;
  background-color: #FEF3DB;
}

@media screen and (max-width: 1240px) {
  .explanation {
    padding: 22px 0;
  }
}

.explanation_body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
}

@media screen and (max-width: 1240px) {
  .explanation_body {
    justify-content: center;
  }
}

.explanation_flex {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  padding: 0 40px;
}

@media screen and (max-width: 768px) {
  .explanation_flex {
    padding: 0;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
}

.explanation_flex03 {
  padding: 0;
}

@media screen and (max-width: 768px) {
  .explanation_flex02 {
    flex-direction: row;
  }
}

.explanation_left {
  overflow: hidden;
  border-radius: 0 15px 15px 0;
}

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

@media screen and (min-width: 1600px) {
  .explanation_left {
    border-radius: 15px;
  }
}

.explanation_right {
  overflow: hidden;
  border-radius: 15px 0 0 15px;
}

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

@media screen and (min-width: 1600px) {
  .explanation_right {
    border-radius: 15px;
  }
}

.explanation_right img {
  height: auto;
}

.explanation_center {
  position: relative;
  text-align: center;
  padding-top: 0;
  max-width: 580px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .explanation_center {
    max-width: 380px;
    width: calc(100% - 40px);
  }
}

.explanation_center_img {
  position: relative;
  bottom: -24px;
  min-width: 169px;
  margin-top: -24px;
}

@media screen and (max-width: 768px) {
  .explanation_center_img {
    min-width: 110px;
    width: 25%;
    bottom: -12px;
    left: 12px;
    margin-top: -22px;
  }
}

@media screen and (max-width: 768px) {
  .explanation_center_img img {
    height: auto;
  }
}

.explanation_center_img02 {
  position: relative;
  bottom: -9px;
  min-width: 169px;
}

@media screen and (max-width: 768px) {
  .explanation_center_img02 {
    bottom: -12px;
    min-width: 120px;
    width: 22%;
    margin-top: -22px;
  }
}

.explanation_center_img03 {
  right: 8px;
  bottom: -24px;
  margin-top: -76px;
  min-width: 169px;
}

@media screen and (max-width: 768px) {
  .explanation_center_img03 {
    position: relative;
    bottom: -21px;
    right: -3px;
    min-width: 120px;
    width: 22%;
    margin-top: -31px;
  }
}

.explanation_center_text {
  font-size: min(2.2vw,26px);
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .explanation_center_text {
    width: 60%;
    font-size: 20px;
    line-height: 1.6;
  }
}

@media screen and (max-width: 390px) {
  .explanation_center_text {
    font-size: 19px;
  }
}

.explanation_center_text span {
  line-height: 1.2;
}

.explanation_center_text .yellow {
  display: inline-block;
  position: relative;
  bottom: -4px;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .explanation_center_text .yellow {
    bottom: -1px;
  }
}

.explanation_center::before {
  display: none;
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 67px;
  height: 22px;
  background-image: url('../img/home/textdecoration_center.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

.recommend_explanation .explanation_center::before {
  display: block;
  background-image: url(../img/home/textdecoration_center_pink.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.qanda_explanation .explanation_center::before {
  display: block;
}

.qanda_explanation .explanation_center {
  padding-top: 12px;
}

@media screen and (max-width: 767px) {
  .qanda_explanation .explanation_center {
    padding-top: 20px;
  }
}

.recommend_explanation .explanation_center  {
  padding-top: 26px;
}

.point_explanation .explanation_center_text .blod {
  display: inline-block;
  position: relative;
  top: -5px;
  line-height: 1;
  margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
  .point_explanation .explanation_center_text .blod {
    margin-bottom: 3px;
  }
}

.explanation_center .btn_wrap {
  margin: 24px auto 0 auto;
  width: 500px;
}

@media screen and (max-width: 1350px) {
  .explanation_center .btn_wrap {
    width: 90%;
    /*max-width: 343px;*/
  }
}

@media screen and (max-width: 768px) {
  .explanation_center .btn_wrap {
    margin: 8px auto 0 auto;
    width: 100%;
  }
  .explanation_center .btn_wrap.recommend_btn {
    margin: 13px auto 0 auto;
    padding: 10px 0;
  }
}

.yellow {
  font-size: min(2.2vw,30px);
  color: #FFEC73;
}

@media screen and (max-width: 768px) {
  .yellow {
    font-size: 23px;
  }
}

@media screen and (max-width: 360px) {
  .yellow {
    font-size: 20px;
  }
}

.pink {
  font-size: min(2.2vw,30px);
  color: #FF6A9C;
}

@media screen and (max-width: 768px) {
  .pink {
    font-size: 23px;
  }
}

@media screen and (max-width: 360px) {
  .pink {
    font-size: 20px;
  }
}

.blod {
  line-height: 1;
  font-size: min(2.2vw,34px);
}

@media screen and (max-width: 768px) {
  .blod {
    font-size: 22px;
  }
}

@media screen and (max-width: 360px) {
  .blod {
    font-size: 20px;
  }
}

/* -------------------------------------------------- */

.flow {
  overflow: hidden;
  padding: 93px 0 120px 0;
}

@media screen and (max-width: 768px) {
  .flow {
    padding: 44px 0 44px 0;
  }
}

.flow .section_top_inr {
  font-size: 26px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .flow .section_top_inr {
    font-size: 20px;
  }
}

.flow .container-base {
  max-width: 946px;
}

@media screen and (max-width: 768px) {
  .flow .section_top {
    margin-bottom: 7px;
  }
}

.flow01 {
  position: absolute;
  top: -48px;
  right: -287px;
}

@media screen and (max-width: 1150px) {
  .flow01 {
    top: 73px;
    right: 50%;
    transform: translateX(50%);
    width: 185px;
  }
}

@media screen and (max-width: 450px) {
  .flow01 {
    top: 90px;
  }
}

.flow_title {
  position: relative;
  text-align: center;
  margin-top: 56px;
}

@media screen and (max-width: 768px) {
  .flow_title {
    margin-top: 40px;
  }
}


.flow_title_bottom {
  text-align: center;
  display: flex;
  justify-content: center;
  margin: 12px 0;
  z-index: 1;
  position: relative;
}

@media screen and (max-width: 768px) {
  .flow_title_bottom img {
    width: 1.4%;
  }
}

.flow_title_inr {
    padding: 5px 28px;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    background: #5BC8FE;
    border-radius: 50px;
}

@media screen and (max-width: 768px) {
  .flow_title_inr {
    font-size: 18px;
  }
}

.flow_container {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 70px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .flow_container {
    gap: 0;
    margin-bottom: 38px;
    margin-top: 24px;
  }
}

.flow_background {
  position: absolute;
  top: -370px;
  right: 50%;
  transform: translateX(50%);
  width: 1592px;
}

@media screen and (max-width: 768px) {
  .flow_background {
    position: absolute;
    top: -152px;
    right: 50%;
    transform: translateX(50%);
    width: 465px;
  }
}

.flow_container_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .flow_container_item {
    flex-direction: column;
    gap: 46px;
  }
}

.flow_container_item.reverse .flow_item {
  flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  .flow_container_item.reverse .flow_item {
    flex-direction: column;
  }
}

.flow_btm {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 768px) {
  .flow_btm {
    flex-direction: column;
    gap: 10px;
    margin-top: 100px;
  }
}

.flow_btm p {
  width: 80%;
  font-weight: 600;
  font-size: 28px;
  color: #5BC8FE;
  text-align: center;
}

@media screen and (max-width: 960px) {
  .flow_btm p {
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  .flow_btm p {
    width: 80%;
    font-size: 24px;
  }
}

.flow_btm p.pc {
  display: block;
}

@media screen and (max-width: 768px) {
  .flow_btm p.pc {
    display: none;
  }
}

.flow_btm p.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .flow_btm p.sp {
    display: block;
  }
}

.flow_btm p span {
  display: inline-block;
  position: relative;
  padding-bottom: 0px;
  color: #5BC8FE;
  line-height: 1.2;
  border-bottom: 3px solid #5BC8FE;
}

@media screen and (max-width: 768px) {
  .flow_btm p {
    line-height: 1.6;
  }
}

.flow_btm p span:first-child::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 67px;
  height: 22px;
  background-image: url(../img/home/textdecoration_center.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.flow_btm_illust01 {
  width: min(28vw,285px);
}

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

.flow_btm_illust02 {
  width: min(22vw,196px);
}

@media screen and (max-width: 768px) {
  .flow_btm_illust02 {
    position: relative;
    width: 70%;
    left: 20px;
    margin: -10px auto;
  }
}

.circle_text {
  position: absolute;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  background-color: #7DCDF4;
  border-radius: 50%;
  width: 177px;
  height: 177px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 196px;
  right: 170px;
  line-height: 1.75;
}


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

.flow02 {
  position: absolute;
  top: 288px;
  right: -10px;
  z-index: -1;
}

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

.illust_sp {
  display: none;
}

@media screen and (max-width: 960px) {
  .illust_sp {
    display: block;
    width: 315px;
    margin: 0 auto;
  }
}

.circle_text_sp {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  background-color: #7DCDF4;
  border-radius: 50%;
  width: 177px;
  height: 177px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  line-height: 1.75;
}

.flow02_sp {
  position: absolute;
  bottom: -105px;
  right: -140px;
  z-index: -1;
  width: 202px;
  height: 202px;
}

@media screen and (max-width: 350px) {
  .flow02_sp {
    position: absolute;
    bottom: -84px;
    right: -107px;
    z-index: -1;
    width: 180px;
    height: 180px;
  }
}

.flow_item {
  position: relative;
  display: flex;
  align-items: center;
  gap: min(6vw,80px);
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .flow_item {
    flex-direction: column;
    width: 100%;
  }
  .flow_item img {
    width: 100%;
    height: auto;
  }
}

.flow_item:after {
  content: "";
  position: absolute;
  top: -12%;
  right: -27%;
  width: min(30vw,396px);
  height: min(27vw,343px);
  background: url(../img/flow/flow_background.svg);
  background-size: 100%;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .flow_container_item .flow_item:after {
    top: inherit;
    bottom: -4vw;
    right: -13%;
    width: 73vw;
    height: 56vw;
    border-radius: 12px;
  }
}

.flow_container_item.reverse .flow_item:after {
  right: auto;
  left: -27%;
}

@media screen and (max-width: 768px) {
  .flow_container_item.reverse .flow_item:after {
    top: inherit;
    bottom: -4vw;
    right: auto;
    left: -13%;
    width: 73vw;
    height: 56vw;
    border-radius: 12px;
  }
}

.flow_item_top {
  margin-bottom: 23px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}

@media screen and (max-width: 767px) {
  .flow_item_top {
    margin-bottom: 12px;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }
}

.right {
  position: absolute;
  right: 0;
  top: 189px;
}

@media screen and (max-width: 960px) {
  .right {
    position: static;
    top: 0;
  }
}

.num {
  font-size: min(6.4vw,56px);
  line-height: 1.25;
  letter-spacing: 0.025em;
  font-weight: 500;
  color: #5BC8FE;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 768px) {
  .num {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 40px;
  }
}

.contents {
  font-size: min(2.4vw,30px);
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .contents {
    font-size: 24px;
  }
}

.flow_item_txt {
  width: min(40%,300px);
}

@media screen and (max-width: 768px) {
  .flow_item_txt {
    width: 100%;
    padding-left: 80px;
  }
}

.flow_item_img {
  width: min(60%,580px);
}

@media screen and (max-width: 768px) {
  .flow_item_img {
    width: 100%;
  }
}

.flow_item_img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .flow_item_img {
    margin-bottom: 14px;
  }
}

.flow_item_text {
  width: 100%;
  font-size: min(1.6vw,16px);
  line-height: 1.75;
}

@media screen and (max-width: 768px) {
  .flow_item_text {
    font-size: 16px;
  }
}

.explanation.flow_explanation .explanation_center::before {
  display: none;
  top: -9px;
}

.explanation.flow_explanation .explanation_center_text {
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .explanation.flow_explanation {
    padding: 17px 0 18px 0;
  }

  .explanation.flow_explanation .btn_wrap {
    margin-top: 12px;
    padding: 14px 0;
  }

  .explanation.flow_explanation .explanation_center::before {
    top: 0;
  }
}

/* --------------------------------------------------- */
/* point */

.point {
  padding: 92px 0 95px 0;
}

@media screen and (max-width: 768px) {
  .point {
    padding: 58px 0 0 0;
  }
}

.point .section_top {
  margin: 0 auto 12px auto;
}

@media screen and (max-width: 768px) {
  .point .section_top {
    margin: 0 auto 9px auto;
  }
}

.point .section_top_inr {
  font-size: 26px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .point .section_top_inr {
    font-size: 20px;
  }
}

.point .container-base {
  max-width: 1140px;
}

.point_container {
  display: flex;
  flex-direction: row;
  gap: 52px;
  margin-top: 59px;
}

@media screen and (max-width: 768px) {
  .point_container {
    flex-direction: column;
    gap: 18px;
    margin-top: 13px;
  }
}

.point_item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .point_item {
    flex-direction: column;
    padding: 32px 0 32px;
  }
}

@media screen and (max-width: 768px) {
  .point_item:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 44vw;
    margin: 0 calc(50% - 50vw);
    background: #E2F5FF;
    z-index: -1;
  }
}

.point_item_text {
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .point_item_text {
    width: 100%;
  }
}

.point_item_flex img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
.point_item_flex img {
  border-radius: 17px;
}
}

.point_item_text_top {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .point_item_text_top {
    flex-direction: column;
    gap: 14px;
  }
}

.point_item_text_top.width {
  width: 405px;
}

@media screen and (max-width: 768px) {
  .point_item_text_top.width {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .point_item_text_top {
    margin-bottom: 22px;
  }
}

.point_left {
  display: flex;
  flex-direction: column;
  padding-bottom: 4px;
}

.point_left_text {
  font-size: 16px;
  font-weight: 700;
  color: #5BC8FE;
}

@media screen and (max-width: 768px) {
  .point_left_text {
    font-size: 12px;
  }
}

.point_left_num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 68px;
  height: 68px;
  background-color: #5BC8FE;
  color: #fff;
  font-size: 38px;
  font-weight: 500;
  border-radius: 50%;
  line-height: 1;
  letter-spacing: 0;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 600px) {
  .point_left_num {
    font-size: 30px;
    width: 54px;
    height: 54px;
  }
}

.point_right_top {
  display: block;
  line-height: 1.5;
  font-size: min(1.6vw,18px);
  font-weight: 500;
  margin-bottom: 6px;
}

@media screen and (max-width: 600px) {
  .point_right_top {
    font-size: 16px;
  }
}

.point_right_bottom {
  font-size: min(2.4vw,30px);
  font-weight: 700;
  line-height: 1;
  color: #5BC8FE;
}

@media screen and (max-width: 600px) {
  .point_right_bottom {
    font-size: 22px;
  }
}

@media screen and (max-width: 365px) {
  .point_right_bottom {
    font-size: 20px;
  }
}

.point_item_text_bottom {
  margin-top: 20px;
  font-size: min(1.6vw,16px);
  text-align: justify;
  letter-spacing: -0.025em;
}

@media screen and (max-width: 768px) {
  .point_item_text_bottom {
    line-height: 1.75;
    font-size: 17px;
    margin-top: 0;
  }
}

.point_item_text_bottom.pc {
  display: block;
}

@media screen and (max-width: 768px) {
  .point_item_text_bottom.pc {
    display: none;
  }
}

.point_item_text_bottom.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .point_item_text_bottom.sp {
    display: block;
  }
}

.explanation.point_explanation .explanation_center::before {
  display: none;
  top: -8px;
}

.point_explanation .pink_blod {
  line-height: 1.75;
  color: #FF6A9C;
}

.point_explanation .explanation_center {

}

@media screen and (max-width: 768px) {
  .point_explanation .explanation_center {
    padding-top: 17px;
  }
}

.explanation.point_explanation .btn_wrap {
  margin-top: 9px;
}

@media screen and (max-width: 768px) {
  .explanation.point_explanation {
    padding: 12px 0 22px 0;
  }

  .explanation.point_explanation .btn_wrap {
    margin-top: 12px;
  }

  .explanation.point_explanation .explanation_center::before {
    top: -20px;
  }

  .point_explanation .btn_wrap {
    padding: 14px 0;
  }
}

/* ----------------------------------------- */
/* voice */

.voice {
  margin-top: 100px;
  padding: 1px 0 87px 0;
  position: relative;
}

@media screen and (max-width: 768px) {
  .voice {
    margin-top: 40px;
    padding-bottom: 44px;
  }
}

.voice_inner {
  background: #5BC8FE;
}

@media screen and (max-width: 768px) {
  .voice_inner {
    border-radius: 20px;
    overflow: hidden;
  }
}

.voice .section_top_inr {
  font-size: 26px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .voice .section_top_inr {
    font-size: 20px;
  }
}

.voice .container-base {
  position: relative;
  max-width: 760px;
}

@media screen and (max-width: 768px) {
  .voice .container-base {
    padding: 40px 20px;
  }
}


.voice .container-base:after {
  position: absolute;
  bottom: 0px;
  left: -192px;
  content: "";
  width: min(13vw,166px);
  height: min(46vw,604px);
  background: url(../img/home/teacher_voice01@2x.png) no-repeat;
  background-size: 100%;
}

.voice .container-base:before {
  position: absolute;
  top: 278px;
  right: -192px;
  content: "";
  width: min(13vw,166px);
  height: min(39vw,494px);
  background: url(../img/home/teacher_voice02@2x.png) no-repeat;
  background-size: 100%;
}

.voice_background {
  position: absolute;
  top: -21.8%;
  width: 100%;
  height: 100%;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .voice_background {
    position: absolute;
    top: -5.8%;
    width: 100%;
    height: 100%;
  }
}


.voice_background img {
  width: 100%;
  height: 100%;
}

/*.voice .section_top {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -13%;
  margin: 0 auto 0 auto;
  width: max-content;
}

@media screen and (max-width: 960px) {
  .voice .section_top {
    display: none;
  }
}*/

.voice .section_title {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .voice .section_title {
  }
}

.voice .section_title_inr {
  color: #fff;
}

.voice01 {
  position: absolute;
  top: -28%;
  transform: translateY(-50%);
  left: -270px;
}

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

.voice02 {
  position: absolute;
  top: -28%;
  transform: translateY(-50%);
  right: -270px;
}

@media screen and (max-width: 768px) {
  .voice02 {
    /* right: 50%;
    transform: translateX(50%);
    top: -270px; */
    display: none;
  }
}

/* @media screen and (max-width: 768px) {
  .voice02 {
    top: 38px;
    width: 137px;
    height: 137px;
  }
} */

.voice_top img {
  width: 100%;
}

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

.voice_btm img {
  width: 100%;
}

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


.voice_top_sp {
  display: none;
}

@media screen and (max-width: 960px) {
  .voice_top_sp {
    width: 100%;
    display: block;
    top: -5%;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
  }
}

.voice02_sp {
  display: flex;
  justify-content: center;
}

.section_top_sp {
  position: relative;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  margin-top: 20px;
}

.section_top_sp::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 31px;
  background-image: url(../img/home/textdecoration_left.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.section_top_sp::after {
  content: '';
  position: absolute;
  right: -33px;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 32px;
  background-image: url(../img/home/textdecoration_right.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.section_top_inr_sp {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.section_title_sp {
  text-align: center;
}

.section_title_inr_sp {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.025em;
}



/* .section_top_sp {
  content: '';
  position: absolute;
  right: -37px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url('../img/home/textdecoration_right.svg');
  background-size: contain;
  background-repeat: no-repeat;
} */
/* .section_top_inr_sp {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.025em;
}
.section_title_inr_sp {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.025em;
} */

.voice_container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 73px;
}

@media screen and (max-width: 768px) {
  .voice_container {
    margin-top: 32px;
    gap: 20px;
  }
}

.voice_item {
  background-color: #fff;
  border-radius: 15px;
  position: relative;
  padding: 32px;
}

@media screen and (max-width: 960px) {
  .voice_item {
    border-radius: 15px;
    position: relative;
    padding: 20px;
  }
}

.teacher_img {
  width: min(28vw,170px);
  border-radius: 10px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .teacher_img {
    width: 50%;
    margin: 0 auto;
  }
}

.voice_item_text {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

@media screen and (max-width: 768px) {
  .voice_item_text {
    flex-direction: column;
    gap: 20px;
  }
}

.voice_item_right {
  width: min(68vw,460px);
}

@media screen and (max-width: 768px) {
  .voice_item_right {
    width: 100%
  }
}

.voice_item_text_top {
  display: block;
  font-size: 28px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 4px;
}

@media screen and (max-width: 600px) {
  .voice_item_text_top {
    font-size: 21px;
    margin-bottom: 16px;
    line-height: 1.6;
  }
}

@media screen and (max-width: 390px) {
  .voice_item_text_top {
    font-size: 20px;
  }
}

@media screen and (max-width: 360px) {
  .voice_item_text_top {
    font-size: 16px;
  }
}

.voice_item_text_name {
  display: block;
  font-size: 17px;
  text-align: right;
  margin-bottom: 12px;
}

.voice_item_text_center {
  display: block;
  /* margin-bottom: 8px; */
  font-size: min(1.6vw,16px);
  text-align: justify;
}

@media screen and (max-width: 768px) {
  .voice_item_text_center {
    line-height: 1.75;
    font-size: 16px;
  }
}

@media screen and (max-width: 360px) {
  .voice_item_text_center {
    font-size: 14px;
  }
}

.voice_item_text_bottom {
  display: block;
  font-size: 16px;
  text-align: right;
}

@media screen and (max-width: 360px) {
  .voice_item_text_bottom {
    font-size: 14px;
  }
}

.blue {
  color: #5BC8FE;
  line-height: 1.5;
}

.example {
  padding: 0 0 120px;
}

@media screen and (max-width: 768px) {
  .example {
    padding: 0 0 80px;
  }
}


.example .container-base {
  max-width: 1080px;
  margin: 0 auto 0;
}

.example_list {
  display: flex;
  gap: 48px;
  margin: 100px auto 0;
}

@media screen and (max-width: 768px) {
  .example_list {
    flex-direction: column;
    gap: 40px;
    margin: 60px auto 0;
  }
}

.example_item {
  position: relative;
  width: calc((100% - 48px) / 2);
  background: #FEF3DB;
  border-radius: 20px;
  padding: 60px 30px 30px;
}

@media screen and (max-width: 768px) {
  .example_item {
    width: 100%;
    padding: 32px 10px;
  }
}

.example_img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 6px 0;
  border-radius: 20px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .example_img {
    padding: 12px 0;
    border-radius: 17px;
  }
}

.example_ttl {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translate(-50%, 0);
  color: #fff;
  font-size: 24px;
  background: #5BC8FE;
  padding: 0px 48px 1px;
  border-radius: 50px;
  text-align: center;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .example_ttl {
    top: -16px;
    color: #fff;
    font-size: 18px;
    padding: 1px 32px 2px;
    line-height: 1.6;
  }
}

.example_data {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .example_data {
    margin-top: 20px;
  }
}

.example_data dl {
  display: flex;
  align-items: center;
  font-size: min(1.6vw,19px);
  font-weight: 500;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .example_data dl {
      font-size: 15px;
  }
}

.example_data dl dt {
  width: 120px;
  color: #fff;
  background: #5BC8FE;
  border-radius: 6px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .example_data dl dt {
    width: 100px;
    min-width: 100px;
  }
}

.example_data dl dd {
  line-height: 1.4;
}

.example_desc {
  margin-top: 20px;
  font-size: min(1.6vw,17px);
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .example_desc {
    margin-top: 20px;
    font-size:16px;
  }
}

.example_note {
  display: block;
  margin-top: 32px;
  font-size: 15px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .example_note {
    margin-top: 20px;
    font-size: 12px;
  }
}
/* -------------------------------------------- */
/* qanda */
.qanda {
  padding: 77px 0 93px 0;
  background-color: #E7F7FF;
}

@media screen and (max-width: 800px) {
  .qanda {
    padding: 46px 0 47px 0;
  }
}

.qanda .accordion {
  margin-top: 49px;
  gap: 36px;
}

@media screen and (max-width: 800px) {
  .qanda .accordion {
    margin-top: 19px;
    gap: 15px;
  }
}

.qanda .accordion-content_text {
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .qanda .accordion-content_text {
    font-size: 16px;
  }
}

.qanda .container-base {
  max-width: 947px;
}

.qanda_title {
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  color: #5BC8FE;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 800px) {
  .qanda_title {
    font-size: 35px;
  }
}

.small {
  color: #5BC8FE;
  font-size: 40px;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 7680px) {
  .small {
    font-size: 30px;
  }
}

.qanda .accordion-content {
  padding-top: 23px;
  padding-bottom: 23px;
  border-top: 1px dotted #C6C6C6;
}

.accordion .blue {
  line-height: 1.5;
}

.qanda .accordion-header,
.qanda .accordion-content {
  padding-left: 121px;
  padding-right: 80px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .qanda .accordion-header,
  .qanda .accordion-content {
    padding-left: 80px;
    padding-right: 40px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}


@media screen and (max-width: 768px) {
  .qanda .accordion-content {
    padding: 9px 13px 15px 72px;
  }
  .qanda .accordion-header_text {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .qanda .accordion-header,
  .qanda .accordion-content {
    padding-left: 72px;
  }
}

@media screen and (max-width: 390px) {
  .qanda .accordion-header,
  .qanda .accordion-content {
    padding-left: 60px;
  }
}

.qanda .accordion-header::before {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 52px;
  content: "Q";
  padding-bottom: 4px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 41px;
  background: #5BC8FE;
  border: 1px solid #5BC8FE;
}

@media screen and (max-width: 768px) {
  .qanda .accordion-header::before {
    top: 28px;
    left: 16px;
    font-size: 22px;
    left: 16px;
    width: 32px;
    height: 32px;
    border-radius: 32px;
  }
}

.qanda .accordion-header::after {
  position: absolute;
  top: 50%;
  right: 20px;
  content: "";
  width: 30px;
  height: 30px;
  background: url(../img/home/arrow.svg) no-repeat;
  background-size: 100%;
  transform: translate(0,-50%) rotate(180deg);
  transition-duration: 0.3s;
}

@media screen and (max-width: 768px) {
  .qanda .accordion-header::after {
    width: 20px;
    height: 20px;
  }
}

.qanda .accordion-header.active::after {
  transform: translate(0,-50%) rotate(0deg);
}

.qanda .accordion-content::before {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding-bottom: 4px;
  border-radius: 52px;
  content: "A";
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 41px;
  color: #5BC8FE;
  background: #fff;
  border: 2px solid #5BC8FE;
}

@media screen and (max-width: 768px) {
  .qanda .accordion-content::before {
    font-size: 22px;
    top: 28px;
    left: 16px;
    width: 32px;
    height: 32px;
    border-radius: 32px;
  }
}

.qanda_explanation .explanation_center_text {
  line-height: 1.75;
}

.explanation.qanda_explanation .explanation_center::before {
  top: -26px;
}

@media screen and (min-width: 768px) and (max-width: 1240px) {
  .explanation {
    padding-top: 35px;
  }

  .explanation.qanda_explanation .explanation_center::before {
    top: -20px;
  }

  .explanation .explanation_center::before {
    top: -2px;
  }
}

@media screen and (max-width: 767px) {
  .explanation.qanda_explanation {
    padding-top: 34px;
    padding-bottom: 28px;
  }

  .explanation.qanda_explanation .explanation_center_text {
    line-height: 1.75;
  }

  .explanation.qanda_explanation .explanation_center::before {
    top: -13px;

  }

  .explanation.qanda_explanation .btn_wrap {
    margin-top: 14px;
    padding: 14px 0;
  }
}

/* --------------------------------------------- */
/* guidance */

.guidance {
  padding: 88px 0 100px 0;
}

@media screen and (max-width: 500px) {
  .guidance {
    padding: 42px 0 22px 0;
  }
}

.guidance .container-base {
  max-width: 969px;
}

.guidance_top {
  text-align: center;
  font-size: min(3.2vw,42px);
  font-weight: 700;
  color: #5BC8FE;
  margin-bottom: 58px;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .guidance_top {
    font-size: 28px;
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 365px) {
  .guidance_top {
    font-size: 22px;
  }
}

.guidance_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .guidance_flex {
    flex-direction: column;
    margin-bottom: 40px;
  }
}

.guidance_img {
  position: relative;
  left: -60px;
  width: calc(58% - 60px);
  justify-content: center;
  border-radius: 15px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .guidance_img {
    width: 100%;
    left: 0;
    border-radius: 18px;
  }
}

.guidance_img img {
  width: 100%;
  height: auto;
}

.explanation_content {
  position: relative;
  width: 50%;
  padding: 40px 0 0;
}

@media screen and (max-width: 768px) {
  .explanation_content {
    padding: 0;
    width: 100%;
  }
}

.explanation_content_top {
  font-size: min(2.4vw,30px);
  font-weight: 700;
  border-bottom: 4px solid #5BC8FE;
  display: block;
  width: fit-content;
  line-height: 1.5;
}

@media screen and (max-width: 680px) {
  .explanation_content_top {
    font-size: 20px;
    border-bottom: 3px solid #5BC8FE;
    margin: 0 auto;
    line-height: 1.5;
  }
}

.explanation_content_bottom {
  font-size: 17px;
  margin-top: 20px;
  line-height: 1.6;
}

@media screen and (max-width: 680px) {
  .explanation_content_bottom {
    font-size: 16px;
    margin-top: 13px;
  }
}

.explanation_content_list {
  margin-top: 28px;
}

@media screen and (max-width: 680px) {
  .explanation_content_list {
    margin-top: 26px;
  }
}

.explanation_content_list_item {
  font-size: min(2.4vw,30px);
  font-weight: 700;
  line-height: 1.6;
  margin: 3px 0;
  padding-left: 23px;
  position: relative;
}

@media screen and (max-width: 680px) {
  .explanation_content_list_item {
    font-size: 18px;
  }

  .explanation_content_list_item:not(:first-child) {
    margin-top: 11px;
  }
}

.explanation_content_list_item::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #5BC8FE;
  border-radius: 50%;
  position: absolute;
  top: 20px;
  left: 0;
}

@media screen and (max-width: 680px) {
  .explanation_content_list_item::before {
    top: 12px;
  }
}

.explanation_content_circle_text {
  text-align: center;
  font-size: min(1.2vw,17px);
  font-weight: 500;
  color: #fff;
  background-color: #5BC8FE;
  border-radius: 50%;
  min-width: min(14vw,200px);
  height: min(14vw,200px);
  display: flex;
  justify-content: center;
  align-items: center;
  top: 22px;
  right: 180px;
  line-height: 1.7;
}

@media screen and (max-width: 960px) {
  .explanation_content_circle_text {
  }
}

.explanation_content_illust {
}

@media screen and (max-width: 960px) {
  .explanation_content_illust {
  }
}

.explanation_content_sp {
  display: none;
}

@media screen and (max-width: 960px) {
  .explanation_content_sp {
    display: block;
    margin-top: 18px;
  }
  .explanation_content_circle_text_sp {
  }

  .explanation_content_illust_sp {
    position: absolute;
    top: 90px;
    right: -122px;
    width: 162px;
    height: 162px;
  }
}

.explanation_content_circle {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 20px;
  justify-content: space-between;
  margin-top: 20px;
  position: relative;
}

.explanation_content_circle img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .explanation_content_illust  {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  .explanation_content_circle_text  {
    width: min(40vw,200px);
    height: min(40vw,200px);
    font-size: min(3.2vw,15px)
  }
}


.present {
  display: flex;
  justify-content: center;
}

.explanation.web {
  padding: 22px 0 35px 0;
}

.explanation.web .explanation_center_text {
  font-size: min(2.4vw,30px);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .explanation.web {
    padding: 22px 0 22px 0;
  }

  .explanation.web .btn_wrap {
    margin-top: 21px;
    padding: 14px 0;
  }

  .explanation.web .explanation_center::before {
    top: -4px;
  }

  .explanation.web .yellow_blod {
    font-size: 26px;
  }

  .explanation.web .explanation_center_text {
    font-size: 20px;
  }
}

.explanation_body.web {
  justify-content: center;
}

.explanation_center_text.yellow {
  font-size: min(2.4vw,36px);
}

.yellow_blod {
  font-size: min(2.4vw,36px);
  color: #FFEC73;
}

@media screen and (max-width: 768px) {
  .yellow_blod {
    font-size: 28px;
  }
}

.pink_blod {
  font-size: min(2.4vw,36px);
  color: #FF6A9C;
}

@media screen and (max-width: 768px) {
  .pink_blod {
    font-size: 28px;
  }
}



/* ----------------------------------------------- */
/* footer */

footer {
  padding: 61px 0 30px 0;
}

@media screen and (max-width: 500px) {
  footer {
    padding: 40px 0 108px 0;
  }
}

.footer_top {
  display: flex;
  align-items: center;
  gap: 37px;
  justify-content: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 500px) {
  .footer_top {
    gap: 20px;
    margin-bottom: 19px;
  }
}

.footer_top_text {
  font-size: 21px;
  font-weight: 500;
}

@media screen and (max-width: 500px) {
  .footer_top_text {
    font-size: 16px;
  }
}

.privacypolicy {
  font-size: 16px;
  line-height: 1.25;
  position: relative;
  width: fit-content;
  margin: 0 auto 62px auto;
  display: block;
  cursor: pointer;
}

@media screen and (max-width: 500px) {
  .privacypolicy {
    font-size: 14px;
    margin: 0 auto 28px auto;
  }
}


.privacypolicy::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #1A1311;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.privacypolicy:hover::after {
  transform-origin: right;
  transform: scaleX(0);
}

.copyright {
  text-align: center;
  font-size: 14px;
}

@media screen and (max-width: 500px) {
  .copyright {
    font-size: 10px;
  }
}

.fixed_button {
  display: none;
}

@media screen and (max-width: 767px) {
  .fixed_button {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 86px;
    background-color: #7DCDF4;
    text-align: center;
    padding: 15px 0;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .fixed_button img {
    margin-right: 10px;
  }

  .fixed_button.show {
    opacity: 1;
  }
}
