@charset "UTF-8";
/* Scss Document */
/* CSS Document */
/*------------------------------mixin フォント------------------------------*/
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../font/NotoSansJP-Regular.woff2") format("woff2"), url("../font/NotoSansJP-Regular.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../font/NotoSansJP-Bold.woff2") format("woff2"), url("../font/NotoSansJP-Bold.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../font/NotoSansJP-Black.woff2") format("woff2"), url("../font/NotoSansJP-Black.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../font/Roboto-Bold.woff2") format("woff2"), url("../font/Roboto-Bold.woff") format("woff");
}
/*------------------------------mixin bg------------------------------*/
/*------------------------------mixin flex------------------------------*/
/*------------------------------基本設定------------------------------*/
html {
  scroll-behavior: smooth;
  font-size: 2.5641025641vw;
}
@media only screen and (min-width: 768px) {
  html {
    font-size: 0.694444444vw;
  }
}
@media only screen and (min-width: 1440px) {
  html {
    font-size: 10px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  letter-spacing: 0em;
  color: #333;
  font-size: 1.4rem;
}

img, source {
  width: 100%;
  height: 100%;
}

.wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}

@media only screen and (min-width: 1440px) {
  .inner {
    max-width: 1100px;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 1440px) {
  .inner_min {
    max-width: 850px;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 1440px) {
  .inner_900 {
    max-width: 900px;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 1440px) {
  .inner_1000 {
    max-width: 1000px;
    margin: 0 auto;
  }
}

main {
  flex: 1;
  width: 100vw;
}

.anchor-target {
  scroll-margin-top: 0;
}
@media only screen and (min-width: 768px) {
  .anchor-target {
    scroll-margin-top: 6rem;
  }
}

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

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

section {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 5rem 3rem;
}
@media only screen and (min-width: 768px) {
  section {
    padding: 9rem 17rem;
  }
}

picture {
  display: block;
}

.font-en {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  letter-spacing: 0em;
}

.bold {
  font-weight: bold;
}

.pink {
  color: #F44D94;
}

.blue {
  color: #16AFD5;
}

.dark-blue {
  color: #215FAA;
}

.white {
  color: #fff;
}

.yellow {
  color: #FAFF6F;
}

h2 {
  text-align: center;
  font-weight: bold;
}
h2 .title_en {
  font-size: 1.6rem;
  display: inline-block;
  color: #3D85DD;
  position: relative;
}
@media only screen and (min-width: 768px) {
  h2 .title_en {
    font-size: 2rem;
  }
}
h2 .title_en::before, h2 .title_en::after {
  content: "";
  display: block;
  background: #3D85DD;
  width: 0.8rem;
  height: 0.1rem;
  position: absolute;
  left: -1.5rem;
  top: 50%;
}
@media only screen and (min-width: 768px) {
  h2 .title_en::before, h2 .title_en::after {
    width: 1.2rem;
    left: -2rem;
  }
}
h2 .title_en::after {
  left: auto;
  right: -1.5rem;
}
@media only screen and (min-width: 768px) {
  h2 .title_en::after {
    right: -2rem;
  }
}
h2 .title_en.white {
  color: #D5EEF7;
}
h2 .title_en.white::before, h2 .title_en.white::after {
  background: #D5EEF7;
}
h2 .sub {
  font-size: 1.6rem;
  display: inline-block;
  margin-top: 0.5rem;
}
@media only screen and (min-width: 768px) {
  h2 .sub {
    font-size: 2.8rem;
    margin-top: 0.8rem;
  }
}
h2 .main {
  display: block;
  font-size: 3.6rem;
  color: #215FAA;
  margin-top: 0.5rem;
}
@media only screen and (min-width: 768px) {
  h2 .main {
    font-size: 5rem;
    margin-top: 0.8rem;
  }
}
h2 .main .small {
  font-size: 3rem;
}
@media only screen and (min-width: 768px) {
  h2 .main .small {
    font-size: 4.4rem;
  }
}
h2 .main.main_2 {
  font-size: 3rem;
}
@media only screen and (min-width: 768px) {
  h2 .main.main_2 {
    font-size: 5rem;
  }
}
h2 .main.main_2 .small {
  font-size: 2.4rem;
}
@media only screen and (min-width: 768px) {
  h2 .main.main_2 .small {
    font-size: 4.4rem;
  }
}

.body_text {
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: justify;
}

@media only screen and (min-width: 768px) {
  .pc_flex {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.note_wrap {
  font-size: 1.2rem;
  color: #777;
  line-height: 1.5;
}
.note_wrap .note {
  padding-left: 1.5rem;
  position: relative;
  display: inline-block;
}
.note_wrap .note::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
.note_wrap .note.note_1 {
  padding-left: 2rem;
}
.note_wrap .note.note_1::before {
  content: "※1";
}

.btn_wrap {
  text-align: center;
  font-weight: bold;
}
.btn_wrap .sub p {
  background: #fff;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  font-size: 1.3rem;
  border: solid 0.2rem #FBFFA3;
  border-radius: 0.4rem;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 768px) {
  .btn_wrap .sub p {
    font-size: 1.4rem;
  }
}
.btn_wrap .sub p .font-en {
  font-size: 1.8rem;
}
@media only screen and (min-width: 768px) {
  .btn_wrap .sub p .font-en {
    font-size: 2rem;
  }
}
.btn_wrap .cv_btn {
  display: block;
  font-size: 2rem;
  height: 7.5rem;
  border-radius: 999px;
  margin-top: -1.5rem;
  background: linear-gradient(to bottom, #FDFFDA 50%, #F6FE1A 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.7rem 1rem rgba(71, 20, 31, 0.15);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 768px) {
  .btn_wrap .cv_btn {
    margin: 0 auto;
    margin-top: -1.5rem;
    width: 37rem;
    font-size: 2.2rem;
    height: 8.5rem;
  }
}
.btn_wrap .cv_btn:hover {
  transform: translateY(0.3rem);
  box-shadow: none;
}
.btn_wrap .cv_btn::before {
  content: "";
  background: url(../img/cta_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 0.8rem;
  height: 1.4rem;
  position: absolute;
  right: 1.8rem;
  top: 50%;
  transform: translateY(-50%);
}
.btn_wrap .cv_btn::after {
  animation: 2s 0s shine linear infinite;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 75%);
  content: "";
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  transform: skewX(-15deg);
  width: 100%;
}
@keyframes shine {
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
.btn_wrap .cv_btn.bg_pink {
  margin-top: 0;
  background: linear-gradient(to bottom, #F77AAF 50%, #F44D94 50%);
  color: #fff;
}
.btn_wrap .cv_btn.bg_pink::before {
  background: url(../img/cta_arrow_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.btn_wrap .cv_btn.bg_pink::after {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 75%);
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem;
}
@media only screen and (min-width: 768px) {
  .modal {
    padding: 0 10rem;
  }
}
.modal .modal_box {
  background-color: #fff;
  position: relative;
}
.modal .modal_box .modalClose {
  cursor: pointer;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 2rem;
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  padding: 0 2rem;
  background: #fff;
  box-shadow: 0 0.05rem 1rem rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
  width: 100%;
  height: 6rem;
}
@media only screen and (min-width: 768px) {
  .header {
    position: fixed;
    left: 0;
    top: 0;
    padding: 0 6rem;
  }
}
.header .hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  width: 4rem;
  height: 4rem;
  background: #D5EEF7;
  border-radius: 99px;
  z-index: 1001;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .header .hamburger {
    display: none;
  }
}
.header .hamburger span {
  display: block;
  width: 2rem;
  height: 0.2rem;
  background: #537280;
  transition: all 0.3s ease;
  transform-origin: center;
}
.header .hamburger.active span:nth-child(1) {
  transform: translateY(0.51rem) rotate(45deg);
}
.header .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header .hamburger.active span:nth-child(3) {
  transform: translateY(-0.51rem) rotate(-45deg);
}
.header .nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: right 0.3s ease;
  z-index: 1000;
  background: #D5EEF7;
}
@media only screen and (min-width: 768px) {
  .header .nav {
    background: none;
    position: static;
    width: auto;
    height: auto;
    right: 0;
    flex-direction: row;
    gap: 2rem;
  }
}
.header .nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-weight: bold;
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
  .header .nav ul {
    flex-direction: row;
    gap: 2rem;
  }
}
.header .nav ul li a {
  transition: all 0.2s ease-in-out;
  position: relative;
}
.header .nav ul li a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 0.2rem;
  background: #D5EEF7;
  bottom: -0.7rem;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
}
.header .nav ul li a:hover {
  color: #16AFD5;
}
.header .nav ul li a:hover::after {
  transform: scale(1, 1);
}
.header .nav.active {
  right: 0;
}
@media only screen and (min-width: 768px) {
  .header .nav .cv_btn {
    background: #F17FB0;
    color: #fff;
    font-weight: bold;
    font-size: 1.4rem;
    line-height: 1.2;
    text-align: center;
    padding: 0rem 3rem;
    height: 5rem;
    border-radius: 0.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
  }
  .header .nav .cv_btn:hover {
    background: #ef3083;
  }
  .header .nav .cv_btn::before {
    content: "";
    background: url(../img/cta_arrow_white.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 0.5rem;
    height: 0.9rem;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
  }
}

.fixed_btn {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  z-index: 999;
}
@media only screen and (min-width: 768px) {
  .fixed_btn {
    display: none;
  }
}
.fixed_btn a {
  display: block;
  width: 100%;
  padding: 2rem 0;
  background: #FAFF6F;
  font-weight: bold;
  font-size: 1.8rem;
  position: relative;
}
.fixed_btn a::before {
  content: "";
  background: url(../img/cta_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 0.8rem;
  height: 1.4rem;
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
}

#fv {
  background: #D5EEF7;
  position: relative;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  #fv {
    margin-top: 6rem;
    background: url(../img/fv_image_pc.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
}
#fv::before {
  content: "";
  background: url(../img/fv_image.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 39rem;
  height: 21.1rem;
  position: absolute;
  left: 0;
  top: 0;
}
@media only screen and (min-width: 768px) {
  #fv::before {
    display: none;
  }
}
#fv .inner {
  padding: 15.7rem 0 3rem;
}
@media only screen and (min-width: 768px) {
  #fv .inner {
    max-width: none;
    padding: 5rem 0 5.5rem;
  }
}
#fv .text_wrap {
  position: relative;
  z-index: 2;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  #fv .text_wrap {
    width: 55%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media only screen and (min-width: 1440px) {
  #fv .text_wrap {
    width: 59%;
  }
}
#fv .text_wrap .bubble {
  background: #fff;
  border-radius: 999px;
  padding: 1rem;
  border: #215FAA solid 0.2rem;
  width: 29rem;
  margin: 0 auto;
  position: relative;
}
@media only screen and (min-width: 768px) {
  #fv .text_wrap .bubble {
    padding: 1.5rem;
    width: 42rem;
  }
}
#fv .text_wrap .bubble::before {
  content: "";
  background: url(../img/fv_bubble_deco.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 0.3rem;
  height: 1.6rem;
  position: absolute;
  left: 50%;
  bottom: -0.2rem;
  transform: translate(-50%, 100%);
}
@media only screen and (min-width: 768px) {
  #fv .text_wrap .bubble::before {
    width: 0.4rem;
    height: 2rem;
  }
}
#fv .text_wrap .bubble p {
  font-size: 1.7rem;
  font-weight: bold;
  color: #215FAA;
  line-height: 1.5;
}
@media only screen and (min-width: 768px) {
  #fv .text_wrap .bubble p {
    font-size: 2.4rem;
  }
}
#fv .text_wrap .bubble p.sub {
  font-size: 1.3rem;
}
@media only screen and (min-width: 768px) {
  #fv .text_wrap .bubble p.sub {
    font-size: 1.7rem;
  }
}
#fv .text_wrap .bubble p .small {
  font-size: 1.6rem;
}
@media only screen and (min-width: 768px) {
  #fv .text_wrap .bubble p .small {
    font-size: 2.2rem;
  }
}
#fv .text_wrap .bubble p .dot {
  font-size: 2rem;
  background-image: radial-gradient(circle at center, #F44D94 15%, transparent 15%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  padding-top: 0.1rem;
}
@media only screen and (min-width: 768px) {
  #fv .text_wrap .bubble p .dot {
    font-size: 2.8rem;
  }
}
#fv .text_wrap h1 {
  margin-top: 1.3rem;
}
@media only screen and (min-width: 768px) {
  #fv .text_wrap h1 {
    margin-top: 2rem;
  }
}
#fv .text_wrap h1 figure {
  width: 35.5rem;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  #fv .text_wrap h1 figure {
    width: 50.8rem;
  }
}
#fv .text_wrap ul {
  margin-top: 2rem;
  background: #fff;
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
}
@media only screen and (min-width: 768px) {
  #fv .text_wrap ul {
    background: none;
    padding: 3rem 0;
  }
}
#fv .text_wrap ul li {
  font-size: 1.8rem;
  font-weight: bold;
  width: 100%;
  padding-left: 2.4rem;
  text-align: left;
  position: relative;
}
@media only screen and (min-width: 768px) {
  #fv .text_wrap ul li {
    font-size: 2.5rem;
    padding-left: 3.5rem;
  }
}
#fv .text_wrap ul li::before {
  content: "";
  background: url(../img/icon_check.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  left: 0;
  bottom: 0.5rem;
}
@media only screen and (min-width: 768px) {
  #fv .text_wrap ul li::before {
    width: 2.5rem;
    height: 2.5rem;
  }
}
#fv .text_wrap ul li .small {
  font-size: 1.6rem;
}
@media only screen and (min-width: 768px) {
  #fv .text_wrap ul li .small {
    font-size: 2.2rem;
  }
}
#fv .text_wrap ul li .font-en {
  font-size: 2.5rem;
}
@media only screen and (min-width: 768px) {
  #fv .text_wrap ul li .font-en {
    font-size: 3.5rem;
  }
}
#fv .text_wrap ul li .font-en .percent {
  font-size: 1.8rem;
}
@media only screen and (min-width: 768px) {
  #fv .text_wrap ul li .font-en .percent {
    font-size: 2.5rem;
  }
}
#fv .text_wrap ul li:not(:first-child) {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: solid 0.1rem #B2E2F8;
}
@media only screen and (min-width: 768px) {
  #fv .text_wrap ul li:not(:first-child) {
    max-resolution: 1.2rem;
    padding-top: 1.2rem;
  }
}
#fv .text_wrap ul li:nth-child(2)::before {
  bottom: 0.2rem;
}

#cta {
  background: #F17FB0;
  padding: 1rem 3rem 4rem;
}
@media only screen and (min-width: 768px) {
  #cta {
    padding: 3rem 22rem 5rem;
  }
}
#cta .top {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
}
@media only screen and (min-width: 768px) {
  #cta .top {
    justify-content: center;
    gap: 2rem;
  }
}
#cta .top h2 {
  font-weight: 900;
  font-size: 2.7rem;
  color: #fff;
  text-align: left;
  position: relative;
}
@media only screen and (min-width: 768px) {
  #cta .top h2 {
    font-size: 5rem;
    transform: translateY(-1.5rem);
  }
}
#cta .top h2 .small {
  font-size: 2.2rem;
}
@media only screen and (min-width: 768px) {
  #cta .top h2 .small {
    font-size: 4.4rem;
  }
}
#cta .top figure {
  width: 6.5rem;
}
@media only screen and (min-width: 768px) {
  #cta .top figure {
    width: 12rem;
  }
}
#cta .white_box {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  text-align: center;
  margin-top: -1rem;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 768px) {
  #cta .white_box {
    margin-top: -4rem;
    padding: 2.8rem 3rem;
  }
}
#cta .white_box h3 {
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 1.3rem;
  position: relative;
  display: inline-block;
  color: #F44D94;
}
@media only screen and (min-width: 768px) {
  #cta .white_box h3 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
  }
}
#cta .white_box h3::before, #cta .white_box h3::after {
  content: "";
  background: url(../img/cta_bubble.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 2rem;
  height: 2.7rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -2.2rem;
}
@media only screen and (min-width: 768px) {
  #cta .white_box h3::before, #cta .white_box h3::after {
    background: #FF95C1;
    width: 33.5rem;
    height: 0.1rem;
    left: -1rem;
    transform: translateX(-100%);
  }
}
#cta .white_box h3::after {
  left: auto;
  right: -2.2rem;
  transform: translateY(-50%) scale(-1, 1);
}
@media only screen and (min-width: 768px) {
  #cta .white_box h3::after {
    right: -1rem;
    transform: translateX(100%);
  }
}
#cta .white_box ul {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: 50% 50%;
}
@media only screen and (min-width: 768px) {
  #cta .white_box ul {
    grid-template-columns: 25% 25% 25% 25%;
    grid-template-rows: 100%;
  }
}
#cta .white_box ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 11rem;
}
@media only screen and (min-width: 768px) {
  #cta .white_box ul li {
    flex-direction: row;
    gap: 1.5rem;
    height: auto;
  }
}
#cta .white_box ul li:nth-child(1), #cta .white_box ul li:nth-child(3) {
  border-right: solid 0.1rem #FFE7EC;
}
#cta .white_box ul li:nth-child(3), #cta .white_box ul li:nth-child(4) {
  padding-top: 0.8rem;
  border-top: solid 0.1rem #FFE7EC;
}
@media only screen and (min-width: 768px) {
  #cta .white_box ul li:nth-child(3), #cta .white_box ul li:nth-child(4) {
    padding-top: 0;
    border-top: none;
  }
}
@media only screen and (min-width: 768px) {
  #cta .white_box ul li:nth-child(2) {
    border-right: solid 0.1rem #FFE7EC;
  }
}
#cta .white_box ul li figure {
  width: 6.5rem;
}
@media only screen and (min-width: 768px) {
  #cta .white_box ul li figure {
    width: 5rem;
  }
}
#cta .white_box ul li p {
  font-weight: bold;
  font-size: 1.35rem;
  text-align: center;
  line-height: 1.4;
}
@media only screen and (min-width: 768px) {
  #cta .white_box ul li p {
    text-align: left;
    font-size: 1.5rem;
  }
}
#cta .btn_wrap {
  margin-top: 2.5rem;
}

#intro {
  padding: 0;
}
#intro .top {
  background: #F5F7FA;
  padding: 3.8rem 3rem 1rem;
}
@media only screen and (min-width: 768px) {
  #intro .top {
    padding: 8rem 30.6rem 2rem;
  }
}
#intro .top .inner_min {
  position: relative;
}
#intro .top .inner_min::before, #intro .top .inner_min::after {
  content: "";
  background: url(../img/icon_question.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 3.7rem;
  height: 5.5rem;
  position: absolute;
  top: -2rem;
  right: 1.8rem;
  transform: rotate(18deg);
}
@media only screen and (min-width: 768px) {
  #intro .top .inner_min::before, #intro .top .inner_min::after {
    width: 4.5rem;
    height: 6.8rem;
    top: 2rem;
    right: 4rem;
  }
}
#intro .top .inner_min::after {
  width: 2.1rem;
  height: 3.2rem;
  top: -1rem;
  right: auto;
  left: 4rem;
  transform: rotate(-10deg);
}
@media only screen and (min-width: 768px) {
  #intro .top .inner_min::after {
    width: 3.6rem;
    height: 5.5rem;
    top: -2rem;
    left: 15rem;
  }
}
#intro .top h2 {
  font-size: 2.5rem;
  line-height: 1.4;
  position: relative;
}
@media only screen and (min-width: 768px) {
  #intro .top h2 {
    font-size: 5rem;
  }
}
#intro .top h2::before {
  content: "";
  background: url(../img/icon_question.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 3.5rem;
  height: 5.3rem;
  position: absolute;
  bottom: -6rem;
  left: 2.5rem;
  transform: rotate(-32deg);
}
@media only screen and (min-width: 768px) {
  #intro .top h2::before {
    width: 4.3rem;
    height: 6.4rem;
    bottom: -2rem;
    left: 4rem;
  }
}
#intro .top h2 .small {
  font-size: 2.2rem;
}
@media only screen and (min-width: 768px) {
  #intro .top h2 .small {
    font-size: 4.4rem;
  }
}
#intro .top ul {
  margin-top: 1.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 768px) {
  #intro .top ul {
    margin-top: 2.5rem;
    flex-direction: row;
    gap: 3rem;
  }
}
#intro .top ul li {
  width: 19.6rem;
  height: 9.7rem;
  text-align: center;
  line-height: 1.3;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  #intro .top ul li {
    width: 21.7rem;
    height: 10.7rem;
    font-size: 1.8rem;
  }
}
#intro .top ul li:first-child {
  background: url(../img/bubble_01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: translateX(20%);
}
@media only screen and (min-width: 768px) {
  #intro .top ul li:first-child {
    transform: translate(0);
  }
}
#intro .top ul li:nth-child(2) {
  background: url(../img/bubble_02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: translate(-35%, -30%);
}
@media only screen and (min-width: 768px) {
  #intro .top ul li:nth-child(2) {
    transform: scale(-1, 1);
  }
  #intro .top ul li:nth-child(2) p {
    transform: scale(-1, 1);
  }
}
#intro .top ul li:nth-child(3) {
  background: url(../img/bubble_03.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: translate(35%, -70%);
}
@media only screen and (min-width: 768px) {
  #intro .top ul li:nth-child(3) {
    transform: translate(0);
  }
}
#intro .top .question {
  margin-top: -8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  #intro .top .question {
    margin-top: -3rem;
  }
}
#intro .top .question figure {
  width: 13rem;
  transform: translateY(5%);
}
@media only screen and (min-width: 768px) {
  #intro .top .question figure {
    width: 19.2rem;
  }
}
#intro .top .question p {
  font-weight: bold;
  font-size: 1.7rem;
  color: #215FAA;
  line-height: 1.3;
  position: relative;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  #intro .top .question p {
    font-size: 2.8rem;
  }
}
#intro .top .question p::before, #intro .top .question p::after {
  content: "";
  background: url(../img/quote_line.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 21rem;
  height: 1.3rem;
  position: absolute;
  top: -1.5rem;
  left: -2rem;
}
@media only screen and (min-width: 768px) {
  #intro .top .question p::before, #intro .top .question p::after {
    width: 33.8rem;
    height: 2.4rem;
    top: -2.5rem;
  }
}
#intro .top .question p::after {
  left: auto;
  right: -2rem;
  top: auto;
  bottom: -1.5rem;
  transform: rotate(180deg);
}
@media only screen and (min-width: 768px) {
  #intro .top .question p::after {
    bottom: -2.5rem;
  }
}
#intro .bottom {
  position: relative;
  padding: 1.5rem 0 3rem;
}
@media only screen and (min-width: 768px) {
  #intro .bottom {
    padding: 4rem 29rem 7rem;
  }
}
#intro .bottom::before, #intro .bottom::after {
  content: "";
  display: block;
  background: linear-gradient(to right top, #fff 50%, transparent 50%);
  width: 50%;
  height: 5rem;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-100%);
}
@media only screen and (min-width: 768px) {
  #intro .bottom::before, #intro .bottom::after {
    height: 9.3rem;
  }
}
#intro .bottom::after {
  left: auto;
  right: 0;
  transform: translateY(-100%) scale(-1, 1);
}
#intro .bottom h3 {
  color: #F44D94;
  font-weight: bold;
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.7;
}
@media only screen and (min-width: 768px) {
  #intro .bottom h3 {
    font-size: 3.6rem;
  }
}
#intro .bottom h3 .wave {
  display: inline-block;
  padding-bottom: 0.2rem;
  background: url(../img/wave_pink.svg) repeat-x bottom left/auto 0.5rem;
}
#intro .bottom .body_text {
  margin: 1.5rem 3rem 0;
}
@media only screen and (min-width: 768px) {
  #intro .bottom .body_text {
    margin: 0;
    margin-top: 2rem;
    text-align: center;
  }
}
#intro .bottom .body_text .dark-blue {
  font-weight: bold;
  background: linear-gradient(to bottom, transparent 70%, #FDFFC3 30%);
}
@media only screen and (min-width: 768px) {
  #intro .bottom .pc_flex {
    margin-top: 3rem;
    gap: 3rem;
  }
}
#intro .bottom .pc_flex picture {
  width: 40rem;
}
#intro .bottom .pc_flex .text_wrap {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  #intro .bottom .pc_flex .text_wrap {
    flex: 1;
  }
}
#intro .bottom .pc_flex .text_wrap .bold {
  margin-top: 3rem;
  font-weight: bold;
  font-size: 1.8rem;
}
@media only screen and (min-width: 768px) {
  #intro .bottom .pc_flex .text_wrap .bold {
    margin-top: 0;
    font-size: 2.4rem;
  }
}
#intro .bottom .pc_flex .text_wrap ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem;
}
#intro .bottom .pc_flex .text_wrap ul li {
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
#intro .bottom .pc_flex .text_wrap ul li figure {
  width: 8.3rem;
}
#intro .bottom .pc_flex .text_wrap ul li p {
  font-weight: bold;
  font-size: 1.8rem;
}
#intro .bottom .pc_flex .text_wrap ul li.bg_pink {
  background: rgba(255, 221, 229, 0.4);
  transform: translateX(8%);
}
#intro .bottom .pc_flex .text_wrap ul li.bg_blue {
  background: rgba(213, 238, 247, 0.4);
  transform: translateX(-8%);
}
#intro .bottom .pc_flex .text_wrap ul li.bg_blue figure {
  width: 7.6rem;
}
#intro .bottom .pc_flex .text_wrap .head {
  margin-top: 2.5rem;
}
@media only screen and (min-width: 768px) {
  #intro .bottom .pc_flex .text_wrap .head {
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
}
#intro .bottom .pc_flex .text_wrap .head .bg_light-blue {
  background: #F0F4FA;
  border-radius: 0.6rem;
  padding: 0.8rem 1.5rem;
  font-size: 1.6rem;
  display: inline-block;
}
@media only screen and (min-width: 768px) {
  #intro .bottom .pc_flex .text_wrap .head .bg_light-blue {
    font-style: 1.2rem;
  }
}
#intro .bottom .pc_flex .text_wrap .head .dark-blue {
  font-weight: bold;
  font-size: 2.4rem;
  border-bottom: double 0.6rem #215FAA;
  display: inline-block;
  padding: 0 1rem;
}
@media only screen and (min-width: 768px) {
  #intro .bottom .pc_flex .text_wrap .head .dark-blue {
    font-size: 2rem;
    padding: 0 0.5rem;
  }
}
#intro .bottom .pc_flex .text_wrap .head .dark-blue .small {
  font-size: 1.8rem;
}
@media only screen and (min-width: 768px) {
  #intro .bottom .pc_flex .text_wrap .head .dark-blue .small {
    font-size: 1.6rem;
  }
}
#intro .bottom .pc_flex .text_wrap .head .dark-blue .font-en {
  font-size: 4rem;
}
@media only screen and (min-width: 768px) {
  #intro .bottom .pc_flex .text_wrap .head .dark-blue .font-en {
    font-size: 3.5rem;
  }
}
#intro .bottom .pc_flex .text_wrap .head .dark-blue .font-en .percent {
  font-size: 2rem;
}
@media only screen and (min-width: 768px) {
  #intro .bottom .pc_flex .text_wrap .head .dark-blue .font-en .percent {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  #intro .bottom .pc_flex .text_wrap .body_text {
    text-align: justify;
  }
}
#intro .bottom .pc_flex .text_wrap .body_text .bg_dark-blue {
  background: #3D85DD;
  color: #fff;
  font-weight: bold;
  padding: 0.1rem 0.4rem;
}
#intro .bottom .intro_bottom {
  margin-top: 2.5rem;
}

#reason {
  background: #45C3E3;
}
#reason h2 .bubble {
  display: inline-block;
  margin-top: 0.5rem;
  color: #16AFD5;
  font-size: 1.6rem;
  background: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 99px;
  position: relative;
}
@media only screen and (min-width: 768px) {
  #reason h2 .bubble {
    margin-top: 1.2rem;
    font-size: 2.4rem;
    padding: 1rem 2.5rem;
  }
}
#reason h2 .bubble::before {
  content: "";
  position: absolute;
  top: 98%;
  left: 50%;
  margin-left: -0.8rem;
  border: 0.8rem solid transparent;
  border-top: 0.8rem solid #fff;
}
@media only screen and (min-width: 768px) {
  #reason h2 .bubble::before {
    margin-left: -1rem;
    border: 1rem solid transparent;
    border-top: 1rem solid #fff;
  }
}
#reason h2 .main {
  margin-top: 1rem;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  #reason h2 .main {
    margin-top: 1.5rem;
  }
}
#reason .top_list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media only screen and (min-width: 768px) {
  #reason .top_list {
    margin-top: 4rem;
    flex-direction: row;
    gap: 2.5rem;
  }
}
#reason .top_list li {
  background: #fff;
  border-radius: 1.5rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  #reason .top_list li {
    width: calc((100% - 5rem) / 3);
    height: 38rem;
  }
}
#reason .top_list li .step {
  position: absolute;
  background: #EBFAFF;
  color: #16AFD5;
  border-radius: 1.5rem 0 1.5rem 0;
  font-size: 2rem;
  padding: 0.5rem 1.5rem;
  left: 0;
  top: 0;
}
#reason .top_list li .step .small {
  font-size: 1.2rem;
}
#reason .top_list li .text_wrap {
  padding: 2.5rem 3rem;
}
@media only screen and (min-width: 768px) {
  #reason .top_list li .text_wrap {
    padding: 1.5rem 3rem;
  }
}
#reason .top_list li .text_wrap h3 {
  font-weight: bold;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.5;
}
#reason .top_list li .text_wrap h3 .pink {
  font-size: 1.8rem;
}
@media only screen and (min-width: 768px) {
  #reason .top_list li .text_wrap h3 .pink {
    font-size: 2rem;
  }
}
#reason .top_list li .text_wrap h3 .pink .small {
  font-size: 1.6rem;
}
@media only screen and (min-width: 768px) {
  #reason .top_list li .text_wrap h3 .pink .small {
    font-size: 1.8rem;
  }
}
#reason .top_list li .text_wrap h3 .pink .font-en {
  font-size: 2.2rem;
}
#reason .top_list li .text_wrap h3 .mark {
  font-weight: normal;
  font-size: 1rem;
  color: #777;
}
#reason .top_list li .text_wrap .note {
  font-size: 1.2rem;
  color: #777;
  margin-top: 0.8rem;
  text-align: center;
}
#reason .top_list li .text_wrap a {
  display: block;
  background: #E6EFFD;
  font-size: 1.4rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 26rem;
  height: 4rem;
  border-radius: 99px;
  margin: 0 auto;
  margin-top: 1.5rem;
  font-weight: bold;
  padding-right: 2rem;
  position: relative;
  transition: all 0.3s ease-in-out;
}
#reason .top_list li .text_wrap a:hover {
  opacity: 0.8;
}
#reason .top_list li .text_wrap a::before {
  content: "";
  background: url(../img/cta_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 0.7rem;
  height: 1.2rem;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}
#reason .top_list li .text_wrap a figure {
  width: 2.3rem;
}
@media only screen and (min-width: 768px) {
  #reason .top_list li:nth-child(1) .text_wrap, #reason .top_list li:nth-child(2) .text_wrap {
    padding: 2.7rem 3rem 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  #reason .top_list li:nth-child(1) .text_wrap a, #reason .top_list li:nth-child(2) .text_wrap a {
    margin-top: 2.7rem;
  }
}
#reason .bottom_list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media only screen and (min-width: 768px) {
  #reason .bottom_list {
    flex-direction: row;
    gap: 2.5rem;
  }
}
#reason .bottom_list li {
  border-radius: 1.5rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  padding: 1rem;
}
@media only screen and (min-width: 768px) {
  #reason .bottom_list li {
    width: calc((100% - 5rem) / 3);
    padding: 1.5rem 1rem;
  }
}
#reason .bottom_list li figure {
  width: 5rem;
}
#reason .bottom_list li p {
  font-weight: bold;
  font-size: 1.3rem;
  text-align: center;
  line-height: 1.5;
  white-space: nowrap;
}
#reason .bottom_list li p .middle {
  font-size: 1.8rem;
}
#reason .bottom_list li p .pink {
  font-size: 1.8rem;
}
@media only screen and (min-width: 768px) {
  #reason .bottom_list li p .pink {
    font-size: 2rem;
  }
}
#reason .bottom_list li p .pink .small {
  font-size: 1.6rem;
}
@media only screen and (min-width: 768px) {
  #reason .bottom_list li p .pink .small {
    font-size: 1.8rem;
  }
}
#reason .bottom_list li p .pink .font-en {
  font-size: 2rem;
}

#price {
  background: #F0F4FA;
  padding: 4rem 0 0;
}
@media only screen and (min-width: 768px) {
  #price {
    padding: 9rem 17rem;
  }
}
#price h2 .sub .font-en {
  font-size: 2.2rem;
}
@media only screen and (min-width: 768px) {
  #price h2 .sub .font-en {
    font-size: 4rem;
  }
}
#price .badge_list {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  #price .badge_list {
    margin-top: 2.5rem;
  }
}
#price .badge_list li {
  width: 13rem;
  height: 13rem;
  background: url(../img/badge.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  #price .badge_list li {
    width: 17rem;
    height: 17rem;
  }
}
#price .badge_list li p {
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1;
}
@media only screen and (min-width: 768px) {
  #price .badge_list li p {
    font-size: 2rem;
  }
}
#price .badge_list li p .yellow {
  font-size: 2.4rem;
}
@media only screen and (min-width: 768px) {
  #price .badge_list li p .yellow {
    font-size: 3.2rem;
  }
}
#price .badge_list li p .yellow .font-en {
  font-size: 5.2rem;
  line-height: 0.95;
}
@media only screen and (min-width: 768px) {
  #price .badge_list li p .yellow .font-en {
    font-size: 7rem;
  }
}
#price .badge_list li:nth-child(1) {
  transform: translateX(8%);
}
@media only screen and (min-width: 768px) {
  #price .badge_list li:nth-child(1) {
    transform: translateX(0);
  }
}
#price .badge_list li:nth-child(3) {
  transform: translateX(-8%);
}
@media only screen and (min-width: 768px) {
  #price .badge_list li:nth-child(3) {
    transform: translateX(0);
  }
}
#price .note_top {
  margin: 0.5rem 3rem 2.5rem;
}
@media only screen and (min-width: 768px) {
  #price .note_top {
    text-align: center;
    margin-bottom: 3rem;
  }
}
#price .tab_menu {
  z-index: 2;
  position: relative;
  width: 50%;
  background-color: #9FA8B7;
  color: #E6E6E6;
  float: left;
  text-align: center;
  transition: all 0.2s ease;
  border-radius: 0 1rem 0 0;
  cursor: pointer;
  box-sizing: border-box;
  font-weight: bold;
  height: 5.6rem;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  #price .tab_menu {
    border-radius: 1rem 1rem 0 0;
    width: 54rem;
    font-size: 1.8rem;
  }
}
#price .tab_menu:hover {
  background: #3D85DD;
}
#price .tab_menu.filipino {
  border-radius: 1rem 0 0 0;
  border-right: solid 0.2rem #F0F4FA;
}
@media only screen and (min-width: 768px) {
  #price .tab_menu.filipino {
    border-radius: 1rem 1rem 0 0;
    border-right: none;
  }
}
@media only screen and (min-width: 768px) {
  #price .tab_menu.native {
    transform: translateX(2rem);
  }
}
#price input:checked + .tab_menu {
  background: #3D85DD;
  color: #fff;
}
#price input[name=tab_menu] {
  display: none;
}
#price .tab_content {
  display: none;
  z-index: 1;
  clear: both;
  padding: 3rem;
  position: relative;
  background: #fff;
  border-top: solid 0.2rem #3D85DD;
}
@media only screen and (min-width: 768px) {
  #price .tab_content {
    padding: 5rem;
  }
}
#price .tab_content .plan_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media only screen and (min-width: 768px) {
  #price .tab_content .plan_list {
    flex-direction: row;
  }
}
#price .tab_content .plan_list li {
  width: 100%;
  border-radius: 1.5rem;
  background: #FFEFF2;
  padding: 2.5rem 2rem;
  text-align: center;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  #price .tab_content .plan_list li {
    width: 32rem;
  }
}
#price .tab_content .plan_list li .bubble {
  background: #F17FB0;
  color: #fff;
  font-size: 1.6rem;
  padding: 0.7rem;
  border-radius: 0.5rem;
  position: relative;
}
#price .tab_content .plan_list li .bubble::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -0.9rem;
  border: 0.9rem solid transparent;
  border-top: 0.9rem solid #F17FB0;
}
#price .tab_content .plan_list li h3 {
  font-size: 2rem;
  margin-top: 1.3rem;
}
#price .tab_content .plan_list li .price_wrap {
  font-size: 2rem;
}
#price .tab_content .plan_list li .price_wrap .font-en {
  font-size: 4.5rem;
}
#price .tab_content .plan_list li .white_box {
  background: #fff;
  padding: 1.5rem;
  margin-top: 1rem;
}
#price .tab_content .plan_list li .white_box dl {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
  #price .tab_content .plan_list li .white_box dl {
    font-size: 1.2rem;
  }
}
#price .tab_content .plan_list li .white_box dl dt {
  width: 10.8rem;
  border-bottom: solid 0.1rem #F17FB0;
  padding-bottom: 0.7rem;
}
#price .tab_content .plan_list li .white_box dl dd {
  flex: 1;
  text-align: left;
  border-bottom: solid 0.1rem #FFDDE5;
  padding-bottom: 0.7rem;
  padding-left: 1rem;
}
#price .tab_content .plan_list li .white_box dl dd .mark {
  font-weight: normal;
  font-size: 1rem;
}
#price .tab_content .plan_list li .white_box dl + dl {
  margin-top: 1rem;
}
#price .tab_content .plan_list li:nth-child(2) {
  background: #EBFAFF;
}
#price .tab_content .plan_list li:nth-child(2) .bubble {
  background: #45C3E3;
}
#price .tab_content .plan_list li:nth-child(2) .bubble::before {
  border-top: 0.9rem solid #45C3E3;
}
#price .tab_content .plan_list li:nth-child(2) .white_box dl dt {
  border-bottom: solid 0.1rem #45C3E3;
}
#price .tab_content .plan_list li:nth-child(2) .white_box dl dd {
  border-bottom: solid 0.1rem #D5EEF7;
}
#price .tab_content .plan_list li:nth-child(3) {
  background: #F0F7FF;
}
#price .tab_content .plan_list li:nth-child(3) .bubble {
  background: #3D85DD;
}
#price .tab_content .plan_list li:nth-child(3) .bubble::before {
  border-top: 0.9rem solid #3D85DD;
}
#price .tab_content .plan_list li:nth-child(3) .white_box dl dt {
  border-bottom: solid 0.1rem #3D85DD;
}
#price .tab_content .plan_list li:nth-child(3) .white_box dl dd {
  border-bottom: solid 0.1rem #C8E1FC;
}
#price .tab_content .cv_btn {
  margin-top: 2rem;
}
@media only screen and (min-width: 768px) {
  #price .tab_content .cv_btn {
    margin-top: 3rem;
  }
}
#price .tab_content .note_wrap {
  margin-top: 3rem;
}
@media only screen and (min-width: 768px) {
  #price .tab_content .note_wrap {
    width: 85rem;
    margin: 3rem auto 0;
  }
}
#price #tab_a:checked ~ #tab_a_content, #price #tab_b:checked ~ #tab_b_content {
  display: block;
}

#teacher {
  padding: 4rem 0 0;
}
@media only screen and (min-width: 768px) {
  #teacher {
    padding: 9rem 17rem;
  }
}
#teacher h2 .sub .font-en {
  font-size: 2.8rem;
}
@media only screen and (min-width: 768px) {
  #teacher h2 .sub .font-en {
    font-size: 4rem;
  }
}
#teacher h2 .sub .font-en .percent {
  font-size: 1.6rem;
}
@media only screen and (min-width: 768px) {
  #teacher h2 .sub .font-en .percent {
    font-size: 2.8rem;
  }
}
#teacher .top_text {
  margin: 2rem 3rem 3rem;
}
@media only screen and (min-width: 768px) {
  #teacher .top_text {
    text-align: center;
  }
}
#teacher .tab_menu_2 {
  z-index: 2;
  position: relative;
  width: 50%;
  background-color: #9FA8B7;
  color: #E6E6E6;
  float: left;
  text-align: center;
  transition: all 0.2s ease;
  border-radius: 0 1rem 0 0;
  cursor: pointer;
  box-sizing: border-box;
  font-weight: bold;
  height: 5.6rem;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  #teacher .tab_menu_2 {
    border-radius: 1rem 1rem 0 0;
    width: 54rem;
    font-size: 1.8rem;
  }
}
#teacher .tab_menu_2:hover {
  background: #3D85DD;
}
#teacher .tab_menu_2.filipino {
  border-radius: 1rem 0 0 0;
  border-right: solid 0.2rem #fff;
}
@media only screen and (min-width: 768px) {
  #teacher .tab_menu_2.filipino {
    border-radius: 1rem 1rem 0 0;
    border-right: none;
  }
}
@media only screen and (min-width: 768px) {
  #teacher .tab_menu_2.native {
    transform: translateX(2rem);
  }
}
#teacher input:checked + .tab_menu_2 {
  background: #3D85DD;
  color: #fff;
}
#teacher input[name=tab_menu_2] {
  display: none;
}
#teacher .tab_content_2 {
  display: none;
  background: #F0F4FA;
  z-index: 1;
  clear: both;
  padding: 3.5rem 3rem 3rem;
  position: relative;
  border-top: solid 0.2rem #3D85DD;
}
@media only screen and (min-width: 768px) {
  #teacher .tab_content_2 {
    padding: 5rem 10rem;
  }
}
#teacher .tab_content_2 .point_list {
  background: #fff;
  padding: 2.5rem;
  border: solid 0.2rem #45C3E3;
  border-top: none;
  position: relative;
}
@media only screen and (min-width: 768px) {
  #teacher .tab_content_2 .point_list {
    padding: 3rem 3rem 2.5rem;
    width: 74rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    row-gap: 1.5rem;
    column-gap: 3rem;
  }
}
#teacher .tab_content_2 .point_list::before {
  content: "Point";
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 2rem;
  color: #45C3E3;
  position: absolute;
  left: 2rem;
  top: -1rem;
}
@media only screen and (min-width: 768px) {
  #teacher .tab_content_2 .point_list::before {
    font-size: 2.4rem;
    left: 3.7rem;
    top: -1.2rem;
  }
}
#teacher .tab_content_2 .point_list::after {
  content: "";
  width: 100%;
  height: 0.2rem;
  background: linear-gradient(to right, #45C3E3 4%, transparent 4% 23%, #45C3E3 23%);
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (min-width: 768px) {
  #teacher .tab_content_2 .point_list::after {
    background: linear-gradient(to right, #45C3E3 3%, transparent 3% 15%, #45C3E3 15%);
  }
}
#teacher .tab_content_2 .point_list li {
  padding-left: 2rem;
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.3;
}
@media only screen and (min-width: 768px) {
  #teacher .tab_content_2 .point_list li {
    font-size: 1.8rem;
  }
}
#teacher .tab_content_2 .point_list li::before {
  content: "◆";
  font-size: 1.2rem;
  color: #45C3E3;
  position: absolute;
  left: 0;
  top: 0.3rem;
}
#teacher .tab_content_2 .point_list li + li {
  margin-top: 1rem;
}
@media only screen and (min-width: 768px) {
  #teacher .tab_content_2 .point_list li + li {
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) {
  #teacher .tab_content_2 .teacher_list.native_teacher_list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
  }
}
#teacher .tab_content_2 .teacher_list li {
  margin-top: 3rem;
}
@media only screen and (min-width: 768px) {
  #teacher .tab_content_2 .teacher_list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
  }
}
#teacher .tab_content_2 .teacher_list li iframe {
  width: 100%;
  height: 19rem;
}
@media only screen and (min-width: 768px) {
  #teacher .tab_content_2 .teacher_list li iframe {
    width: 40rem;
    height: 23.8rem;
  }
}
@media only screen and (min-width: 768px) {
  #teacher .tab_content_2 .teacher_list li:first-child {
    margin-top: 4rem;
  }
}
@media only screen and (min-width: 768px) {
  #teacher .tab_content_2 .teacher_list li .text_wrap {
    flex: 1;
  }
}
#teacher .tab_content_2 .teacher_list li .text_wrap .name {
  font-weight: bold;
  text-align: center;
  margin-top: 1.2rem;
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
  #teacher .tab_content_2 .teacher_list li .text_wrap .name {
    text-align: left;
    margin-top: 0;
  }
}
#teacher .tab_content_2 .teacher_list li .text_wrap .name .font-en {
  font-size: 2rem;
}
#teacher .tab_content_2 .teacher_list li .text_wrap .hobby {
  text-align: center;
  font-size: 1.4rem;
  margin-top: 0.5rem;
}
@media only screen and (min-width: 768px) {
  #teacher .tab_content_2 .teacher_list li .text_wrap .hobby {
    text-align: left;
  }
}
#teacher .tab_content_2 .teacher_list li .text_wrap .message {
  background: #fff;
  padding: 1.5rem 2rem;
  margin-top: 1.5rem;
  position: relative;
}
#teacher .tab_content_2 .teacher_list li .text_wrap .message::before, #teacher .tab_content_2 .teacher_list li .text_wrap .message::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  border-top: solid 0.2rem #3D85DD;
  border-left: solid 0.2rem #3D85DD;
  position: absolute;
  left: 0;
  top: 0;
}
#teacher .tab_content_2 .teacher_list li .text_wrap .message::after {
  left: auto;
  top: auto;
  right: 0;
  bottom: 0;
  transform: rotate(180deg);
}
@media only screen and (min-width: 768px) {
  #teacher .tab_content_2 .teacher_list li.native_teacher {
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) {
  #teacher .tab_content_2 .teacher_list li.native_teacher {
    width: calc(50% - 2rem);
  }
}
#teacher .tab_content_2 .teacher_list li.native_teacher .text_wrap .top_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
#teacher .tab_content_2 .teacher_list li.native_teacher .text_wrap .top_wrap picture {
  width: 10rem;
}
@media only screen and (min-width: 768px) {
  #teacher .tab_content_2 .teacher_list li.native_teacher .text_wrap .top_wrap picture {
    width: 13rem;
  }
}
#teacher .tab_content_2 .teacher_list li.native_teacher .text_wrap .top_wrap .top_text_wrap {
  flex: 1;
}
#teacher .tab_content_2 .teacher_list li.native_teacher .text_wrap .top_wrap .top_text_wrap .name {
  text-align: left;
}
#teacher .tab_content_2 .teacher_list li.native_teacher .text_wrap .top_wrap .top_text_wrap .hobby {
  text-align: left;
  line-height: 1.3;
}
@media only screen and (min-width: 768px) {
  #teacher .tab_content_2 .teacher_list li.native_teacher .text_wrap .message {
    height: 10.5rem;
  }
}
@media only screen and (min-width: 768px) {
  #teacher .tab_content_2 .teacher_list li.native_teacher picture {
    width: 20rem;
  }
}
#teacher .tab_content_2 .teacher_point {
  margin-top: 3rem;
}
@media only screen and (min-width: 768px) {
  #teacher .tab_content_2 .teacher_point {
    margin: 4rem auto 0;
    width: 60rem;
  }
}
#teacher .tab_content_2 .teacher_point .head {
  background: #3D85DD;
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  padding: 1.5rem;
  border-radius: 0.5rem 0.5rem 0 0;
  text-align: center;
  position: relative;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  #teacher .tab_content_2 .teacher_point .head {
    font-size: 1.6rem;
  }
}
#teacher .tab_content_2 .teacher_point .teacher_box {
  background: #fff;
  padding: 2rem;
  border-radius: 0 0 0.5rem 0.5rem;
}
@media only screen and (min-width: 768px) {
  #teacher .tab_content_2 .teacher_point .teacher_box {
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
}
#teacher .tab_content_2 .teacher_point .teacher_box ul {
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
  #teacher .tab_content_2 .teacher_point .teacher_box ul {
    flex: 1;
  }
}
#teacher .tab_content_2 .teacher_point .teacher_box ul li {
  padding-left: 2rem;
  position: relative;
  line-height: 1.4;
}
#teacher .tab_content_2 .teacher_point .teacher_box ul li::before {
  content: "";
  background: url(../img/check_circle_l-blue.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 1.3rem;
  height: 1.3rem;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(0.3rem);
}
#teacher .tab_content_2 .teacher_point .teacher_box ul li + li {
  margin-top: 0.5rem;
}
#teacher .tab_content_2 .teacher_point .teacher_box picture {
  margin-top: 1rem;
}
@media only screen and (min-width: 768px) {
  #teacher .tab_content_2 .teacher_point .teacher_box picture {
    margin-top: 0;
    width: 25rem;
  }
}
#teacher .tab_content_2 .blue_bubble {
  background: #45C3E3;
  padding: 2rem;
  border-radius: 1.5rem;
  margin-top: 3.5rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  #teacher .tab_content_2 .blue_bubble {
    margin: 3.5rem auto 0;
    width: 60rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: 3rem;
  }
}
#teacher .tab_content_2 .blue_bubble::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 50%;
  margin-right: -1.4rem;
  border: 1.4rem solid transparent;
  border-bottom: 1.4rem solid #45C3E3;
}
@media only screen and (min-width: 768px) {
  #teacher .tab_content_2 .blue_bubble::before {
    top: -18%;
    margin-right: -2rem;
    border: 2rem solid transparent;
    border-bottom: 2em solid #45C3E3;
  }
}
@media only screen and (min-width: 768px) {
  #teacher .tab_content_2 .blue_bubble figure {
    width: 11.9rem;
  }
}
@media only screen and (min-width: 768px) {
  #teacher .tab_content_2 .blue_bubble .text_wrap {
    flex: 1;
  }
}
#teacher .tab_content_2 .blue_bubble .text_wrap .top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
@media only screen and (min-width: 768px) {
  #teacher .tab_content_2 .blue_bubble .text_wrap .top {
    justify-content: flex-start;
  }
}
#teacher .tab_content_2 .blue_bubble .text_wrap .top figure {
  width: 8.2rem;
}
#teacher .tab_content_2 .blue_bubble .text_wrap .top p {
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.7;
}
#teacher .tab_content_2 .blue_bubble .text_wrap .top p .wave {
  display: inline-block;
  padding-bottom: 0.2rem;
  background: url(../img/wave_yellow.svg) repeat-x bottom left/auto 0.5rem;
}
#teacher .tab_content_2 .blue_bubble .text_wrap .body_text {
  color: #fff;
  margin-top: 1rem;
}
#teacher .tab_content_2 .blue_bubble .text_wrap .body_text .yellow {
  font-weight: bold;
}
#teacher #tab_c:checked ~ #tab_c_content, #teacher #tab_d:checked ~ #tab_d_content {
  display: block;
}

@media only screen and (min-width: 768px) {
  #teaching-material {
    background: #F0F4FA;
  }
}
#teaching-material .body_text {
  margin-top: 2rem;
}
@media only screen and (min-width: 768px) {
  #teaching-material .body_text {
    text-align: center;
  }
}
@media only screen and (min-width: 768px) {
  #teaching-material .pc_flex {
    margin-top: 4rem;
    gap: 3rem;
  }
}
#teaching-material ul {
  margin-top: 2.5rem;
  background: #F0F4FA;
  padding: 2rem;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
}
@media only screen and (min-width: 768px) {
  #teaching-material ul {
    margin-top: 0;
    background: #fff;
    width: 52.3rem;
    padding: 2.5rem;
    align-items: flex-start;
    gap: 1.5rem;
  }
}
#teaching-material ul li {
  padding-left: 2rem;
  position: relative;
  line-height: 1.4;
  font-weight: bold;
  position: relative;
  font-size: 1.6rem;
}
@media only screen and (min-width: 768px) {
  #teaching-material ul li {
    width: 100%;
  }
}
#teaching-material ul li::before {
  content: "";
  background: url(../img/check_circle.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 1.3rem;
  height: 1.3rem;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(0.5rem);
}
#teaching-material ul .line {
  display: block;
  width: 100%;
  height: 0.1rem;
  background: #BDC8D9;
}
#teaching-material .image_wrap {
  margin-top: 2.5rem;
}
@media only screen and (min-width: 768px) {
  #teaching-material .image_wrap {
    margin-top: 0;
    width: 42rem;
  }
}
#teaching-material .image_wrap .head {
  text-align: center;
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
  #teaching-material .image_wrap .head {
    font-size: 1.7rem;
  }
}
#teaching-material .image_wrap .head p {
  display: inline-block;
  position: relative;
}
#teaching-material .image_wrap .head p::before, #teaching-material .image_wrap .head p::after {
  content: "";
  display: block;
  width: 9.5rem;
  height: 0.1rem;
  border-top: dashed 0.1rem #BDC8D9;
  position: absolute;
  left: -0.6rem;
  top: 50%;
  transform: translate(-100%, -50%);
}
@media only screen and (min-width: 768px) {
  #teaching-material .image_wrap .head p::before, #teaching-material .image_wrap .head p::after {
    width: 12rem;
  }
}
#teaching-material .image_wrap .head p::after {
  left: auto;
  right: -0.8rem;
  transform: translate(100%, -50%);
}
#teaching-material .image_wrap .modalOpen {
  margin-top: 1.5rem;
  position: relative;
}
#teaching-material .image_wrap .modalOpen::before {
  content: "";
  background: url(../img/icon_modal_black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 1.9rem;
  height: 1.9rem;
  position: absolute;
  right: 1rem;
  bottom: 1rem;
}
@media only screen and (min-width: 768px) {
  #teaching-material .image_wrap .modal {
    padding: 0 20rem;
  }
}
#teaching-material .image_wrap .modal .modal_box {
  padding: 5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 1.5rem;
}
@media only screen and (min-width: 768px) {
  #teaching-material .image_wrap .modal .modal_box {
    padding: 5rem 6rem 5rem;
    width: 75rem;
  }
}
#teaching-material .image_wrap .modal .modal_box picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#level {
  background: #3D85DD;
  padding: 4rem 3rem 6rem;
}
@media only screen and (min-width: 768px) {
  #level {
    padding: 9rem 17rem;
  }
}
#level h2 .bubble {
  width: 24.6rem;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  #level h2 .bubble {
    width: 35rem;
  }
}
#level h2 .main {
  color: #fff;
}
#level .body_text {
  color: #fff;
  margin-top: 2rem;
}
@media only screen and (min-width: 768px) {
  #level .body_text {
    text-align: center;
    margin-top: 3rem;
  }
}
#level .body_text .yellow {
  font-weight: bold;
  background: linear-gradient(to bottom, transparent 70%, #215FAA 70%);
}
#level .splide {
  margin-top: 3rem;
}
@media only screen and (min-width: 768px) {
  #level .splide {
    margin-top: 4rem;
    visibility: visible;
  }
}
@media only screen and (min-width: 768px) {
  #level .splide .splide__list {
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: flex-start;
    gap: 2.5rem;
  }
}
#level .splide .splide__slide {
  background: #fff;
  border-radius: 1.5rem;
}
@media only screen and (min-width: 768px) {
  #level .splide .splide__slide {
    width: calc((100% - 5rem) / 3);
    height: 61.8rem;
  }
}
#level .splide .splide__slide .head {
  background: #215FAA;
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-radius: 1.5rem 1.5rem 0 0;
}
#level .splide .splide__slide .head .bg_white {
  background: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 0.5rem;
  color: #215FAA;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  gap: 0.4rem;
}
#level .splide .splide__slide .head .bg_white .figure {
  width: 1.6rem;
}
#level .splide .splide__slide .head h3 {
  font-size: 1.8rem;
  font-weight: bold;
}
#level .splide .splide__slide .content {
  padding: 2.5rem;
}
#level .splide .splide__slide .content .goal_wrap {
  margin-top: 2rem;
}
#level .splide .splide__slide .content .top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  justify-content: flex-start;
  border-bottom: solid 0.1rem #3D85DD;
  padding-bottom: 1.5rem;
}
#level .splide .splide__slide .content .top h4 {
  font-weight: bold;
  font-size: 1.6rem;
}
#level .splide .splide__slide .content .bottom {
  margin-top: 1.5rem;
  font-size: 1.4rem;
  line-height: 1.4;
}
#level .splide .splide__slide .content ul {
  margin-top: 0.5rem;
}
#level .splide .splide__slide .content ul li {
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.4;
}
#level .splide .splide__slide .content ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
#level .splide .splide__slide .content ul li + li {
  margin-top: 0.5rem;
}
#level .splide .splide__slide .content button {
  margin-top: 2rem;
  height: 4rem;
  width: 100%;
  border-radius: 99px;
  background: #E6EFFD;
  font-size: 1.4rem;
  text-align: center;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#level .splide .splide__slide .content button::before {
  content: "";
  background: url(../img/icon_modal.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}
#level .splide .splide__arrow--prev {
  left: -1.5rem;
  background: url(../img/arrow_slider.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 3rem;
  height: 3rem;
}
#level .splide .splide__arrow--prev svg {
  display: none;
}
#level .splide .splide__arrow--next {
  right: -1.5rem;
  background: url(../img/arrow_slider.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 3rem;
  height: 3rem;
  transform: scale(-1, 1) translateY(-50%);
}
#level .splide .splide__arrow--next svg {
  display: none;
}
#level .splide .splide__arrow {
  opacity: 1;
}
#level .splide .splide__pagination {
  bottom: -2.5rem;
}
#level .splide .splide__pagination li .splide__pagination__page {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 1rem;
  background: #B7BECC;
  opacity: 1;
}
#level .splide .splide__pagination li .splide__pagination__page.is-active {
  transform: scale(1);
  background: #fff;
}
#level .modal {
  padding: 3rem;
}
#level .modal .modal_box {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 4rem 2.5rem 3rem;
  border-radius: 1.5rem;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  #level .modal .modal_box {
    padding: 5rem 3.5rem 4rem;
    width: 63rem;
  }
}
#level .modal .modal_box h5 {
  text-align: center;
  display: inline-block;
  font-weight: bold;
  font-size: 1.8rem;
  padding-bottom: 0.5rem;
  border-bottom: dashed 0.1rem #215FAA;
}
@media only screen and (min-width: 768px) {
  #level .modal .modal_box h5 {
    font-size: 2.4rem;
  }
}
#level .modal .modal_box ul {
  margin-top: 2rem;
}
#level .modal .modal_box ul li {
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: solid 0.1rem #B6B6B6;
  text-align: left;
}
@media only screen and (min-width: 768px) {
  #level .modal .modal_box ul li {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
  }
}
#level .modal .modal_box ul li:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}
#level .modal .modal_box ul li .font-en {
  font-weight: bold;
  font-size: 1.8rem;
}
@media only screen and (min-width: 768px) {
  #level .modal .modal_box ul li .font-en {
    font-size: 2rem;
  }
}
#level .modal .modal_box ul li .bold {
  font-size: 1.5rem;
  margin-top: 0.5rem;
}
@media only screen and (min-width: 768px) {
  #level .modal .modal_box ul li .bold {
    font-size: 1.6rem;
    margin-top: 0.8rem;
  }
}
#level .modal .modal_box ul li .small {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}
@media only screen and (min-width: 768px) {
  #level .modal .modal_box ul li .small {
    font-size: 1.4rem;
    margin-top: 0.8rem;
  }
}

#scene {
  text-align: center;
}
#scene h2 .main {
  font-size: 2.6rem;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  #scene h2 .main {
    font-size: 4.6rem;
  }
}
#scene h2 .main .small {
  font-size: 2.2rem;
}
@media only screen and (min-width: 768px) {
  #scene h2 .main .small {
    font-size: 4.4rem;
  }
}
#scene h2 .main .font-en {
  color: #F44D94;
  font-size: 3.2rem;
  padding-bottom: 0.2rem;
  background: url(../img/wave_pink.svg) repeat-x bottom left/auto 0.5rem;
}
@media only screen and (min-width: 768px) {
  #scene h2 .main .font-en {
    font-size: 5.4rem;
  }
}
#scene .note {
  text-align: center;
  font-size: 1.2rem;
  color: #777;
  margin-top: 1rem;
}
@media only screen and (min-width: 768px) {
  #scene .note {
    margin-top: 2rem;
  }
}
#scene h3 {
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  display: inline-block;
  position: relative;
  margin-top: 3rem;
}
@media only screen and (min-width: 768px) {
  #scene h3 {
    font-size: 2.4rem;
    margin-top: 4rem;
  }
}
#scene h3::before, #scene h3::after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 3rem;
  border: solid 0.1rem #3D85DD;
  border-right: none;
  position: absolute;
  left: -1rem;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 768px) {
  #scene h3::before, #scene h3::after {
    width: 0.7rem;
    height: 3.6rem;
    left: -2rem;
  }
}
#scene h3::after {
  left: auto;
  right: -1rem;
  transform: translateY(-50%) rotate(180deg);
}
@media only screen and (min-width: 768px) {
  #scene h3::after {
    right: -2rem;
  }
}
#scene ul {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
@media only screen and (min-width: 768px) {
  #scene ul {
    gap: 2.5rem;
    margin-top: 2.5rem;
  }
}
#scene ul li {
  width: calc((100% - 2rem) / 2);
  border-radius: 0.8rem;
  background: #F0F4FA;
}
@media only screen and (min-width: 768px) {
  #scene ul li {
    width: calc((100% - 7.5rem) / 4);
  }
}
#scene ul li p {
  font-weight: bold;
  font-size: 1.6rem;
  color: #215FAA;
  margin-top: 1.5rem;
  margin-bottom: 1.8rem;
}
@media only screen and (min-width: 768px) {
  #scene ul li p {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
#scene ul li:nth-child(3), #scene ul li:nth-child(4) {
  height: 17.6rem;
}
@media only screen and (min-width: 768px) {
  #scene ul li:nth-child(3), #scene ul li:nth-child(4) {
    height: auto;
  }
}
#scene ul li:nth-child(3) p {
  margin-top: 2.4rem;
}

#voice {
  padding: 4rem 3rem 6rem;
}
@media only screen and (min-width: 768px) {
  #voice {
    padding: 9rem 17rem;
  }
}
#voice .splide {
  margin-top: 2.2rem;
}
@media only screen and (min-width: 768px) {
  #voice .splide {
    margin-top: 4rem;
    visibility: visible;
  }
}
@media only screen and (min-width: 768px) {
  #voice .splide .splide__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
  }
}
@media only screen and (min-width: 768px) {
  #voice .splide .splide__list .splide__slide {
    width: calc((100% - 5rem) / 3);
  }
}
#voice .splide .splide__list .splide__slide .quote {
  width: 3rem;
  position: relative;
  z-index: 2;
  margin-left: 2.2rem;
}
#voice .splide .splide__list .splide__slide .quote.quote_bottom {
  transform: rotate(180deg);
  margin-left: auto;
  right: 2.2rem;
  margin-top: -1.5rem;
}
#voice .splide .splide__list .splide__slide .bg_light-gray {
  margin-top: -1.5rem;
  background: #F0F4FA;
  border-radius: 1.5rem;
  padding: 3rem 2rem;
}
@media only screen and (min-width: 768px) {
  #voice .splide .splide__list .splide__slide .bg_light-gray {
    height: 44.6rem;
  }
}
#voice .splide .splide__list .splide__slide .bg_light-gray .top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: solid 0.1rem #215FAA;
}
#voice .splide .splide__list .splide__slide .bg_light-gray .top figure {
  width: 7rem;
}
#voice .splide .splide__list .splide__slide .bg_light-gray .top .text_wrap {
  flex: 1;
}
#voice .splide .splide__list .splide__slide .bg_light-gray .top .text_wrap .name {
  font-weight: bold;
  font-size: 1.6rem;
}
#voice .splide .splide__list .splide__slide .bg_light-gray .top .text_wrap .name .font-en {
  font-size: 2rem;
}
#voice .splide .splide__list .splide__slide .bg_light-gray .top .text_wrap .small {
  font-size: 1.2rem;
  line-height: 1.4;
}
#voice .splide .splide__list .splide__slide .bg_light-gray .bottom {
  text-align: center;
}
#voice .splide .splide__list .splide__slide .bg_light-gray .bottom .before_after {
  display: inline-block;
}
#voice .splide .splide__list .splide__slide .bg_light-gray .bottom .before_after dl {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  gap: 1rem;
}
#voice .splide .splide__list .splide__slide .bg_light-gray .bottom .before_after dl dt {
  background: #fff;
  border-radius: 99px;
  font-size: 1.2rem;
  width: 10rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}
@media only screen and (min-width: 768px) {
  #voice .splide .splide__list .splide__slide .bg_light-gray .bottom .before_after dl dt {
    width: 12.6rem;
  }
}
#voice .splide .splide__list .splide__slide .bg_light-gray .bottom .before_after dl dd {
  font-weight: bold;
  font-size: 1.6rem;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
}
#voice .splide .splide__list .splide__slide .bg_light-gray .bottom .before_after dl dd .font-en {
  font-size: 1.9rem;
  transform: translateY(10%);
}
#voice .splide .splide__list .splide__slide .bg_light-gray .bottom .before_after dl dd figure {
  width: 1.5rem;
}
#voice .splide .splide__list .splide__slide .bg_light-gray .bottom .before_after dl.after dt {
  background: #FF70AD;
  color: #fff;
}
#voice .splide .splide__list .splide__slide .bg_light-gray .bottom .before_after dl.after dd {
  color: #FF70AD;
}
#voice .splide .splide__list .splide__slide .bg_light-gray .bottom .before_after dl.after_1 dt {
  background: #EB1872;
  color: #fff;
}
#voice .splide .splide__list .splide__slide .bg_light-gray .bottom .before_after dl.after_1 dd {
  color: #EB1872;
}
#voice .splide .splide__list .splide__slide .bg_light-gray .bottom .before_after figure {
  width: 1.5rem;
  margin: 0.4rem auto;
}
#voice .splide .splide__list .splide__slide .bg_light-gray .bottom .body_text {
  margin-top: 1.2rem;
}
#voice .splide .splide__list .splide__slide .bg_light-gray .bottom .body_text .bold {
  background: linear-gradient(to bottom, transparent 70%, #FFFABB 70%);
}
#voice .splide .splide__arrow--prev {
  left: -1.5rem;
  background: url(../img/arrow_slider.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 3rem;
  height: 3rem;
}
#voice .splide .splide__arrow--prev svg {
  display: none;
}
#voice .splide .splide__arrow--next {
  right: -1.5rem;
  background: url(../img/arrow_slider.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 3rem;
  height: 3rem;
  transform: scale(-1, 1) translateY(-50%);
}
#voice .splide .splide__arrow--next svg {
  display: none;
}
#voice .splide .splide__arrow {
  opacity: 1;
}
#voice .splide .splide__pagination {
  bottom: -2.5rem;
}
#voice .splide .splide__pagination li .splide__pagination__page {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 1rem;
  background: #B7BECC;
  opacity: 1;
}
#voice .splide .splide__pagination li .splide__pagination__page.is-active {
  transform: scale(1);
  background: #3D85DD;
}

#step {
  background: #F0F4FA;
}
@media only screen and (min-width: 768px) {
  #step {
    padding: 8rem 22rem;
  }
}
#step ol {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  gap: 2.5rem;
}
@media only screen and (min-width: 768px) {
  #step ol {
    margin-top: 4rem;
    flex-direction: row;
    gap: 8rem;
    justify-content: center;
    align-items: flex-start;
  }
}
#step ol li {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  gap: 1.3rem;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  #step ol li {
    width: 27rem;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    background: #fff;
    height: 24.5rem;
  }
}
#step ol li figure {
  width: 7rem;
}
@media only screen and (min-width: 768px) {
  #step ol li figure {
    width: 10rem;
    position: relative;
    z-index: 2;
  }
}
#step ol li .text_wrap {
  flex: 1;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  #step ol li .text_wrap {
    flex: none;
    width: 100%;
  }
}
#step ol li .text_wrap p {
  font-size: 1.6rem;
  line-height: 1.4;
}
@media only screen and (min-width: 768px) {
  #step ol li .text_wrap p {
    text-align: center;
  }
}
#step ol li .text_wrap .font-en {
  font-size: 1.6rem;
  line-height: 1;
  color: #215FAA;
}
@media only screen and (min-width: 768px) {
  #step ol li .text_wrap .font-en {
    font-size: 1.6rem;
  }
}
#step ol li .text_wrap .btn_wrap {
  margin-top: 0.5rem;
}
#step ol li .text_wrap .btn_wrap .cv_btn {
  width: 22.4rem;
  height: 4.2rem;
}
@media only screen and (min-width: 768px) {
  #step ol li .text_wrap .btn_wrap .cv_btn {
    width: 100%;
  }
}
#step ol li .text_wrap .btn_wrap .cv_btn p {
  font-size: 1.3rem;
}
@media only screen and (min-width: 768px) {
  #step ol li .text_wrap .btn_wrap .cv_btn p {
    font-size: 1.2rem;
  }
}
#step ol li .text_wrap .btn_wrap .cv_btn::before {
  right: 1.3rem;
  width: 0.6rem;
  height: 1.1rem;
}
#step ol li:nth-child(2), #step ol li:nth-child(3) {
  position: relative;
}
#step ol li:nth-child(2)::before, #step ol li:nth-child(3)::before {
  content: "";
  background: url(../img/polygon_blue.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 2.4rem;
  height: 1.2rem;
  position: absolute;
  left: 3.5rem;
  top: -2.2rem;
  transform: translateX(-50%);
}
@media only screen and (min-width: 768px) {
  #step ol li:nth-child(2)::before, #step ol li:nth-child(3)::before {
    width: 3.6rem;
    height: 1.8rem;
    top: 50%;
    left: -5rem;
    transform: rotate(-90deg) translateY(-50%);
  }
}
#step ol li:nth-child(3)::before {
  top: -1.7rem;
}
@media only screen and (min-width: 768px) {
  #step ol li:nth-child(3)::before {
    top: 50%;
  }
}

#faq .anchor_list {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 3rem;
}
@media only screen and (min-width: 768px) {
  #faq .anchor_list {
    margin-top: 4rem;
    gap: 2rem;
  }
}
#faq .anchor_list li {
  width: calc((100% - 1.2rem) / 2);
  background: #fff;
  border-radius: 99px;
  border: solid 0.1rem #215FAA;
  font-size: 1.4rem;
  line-height: 1.3;
  text-align: center;
  font-weight: bold;
  padding: 0.6em 0;
  position: relative;
}
@media only screen and (min-width: 768px) {
  #faq .anchor_list li {
    width: calc((100% - 8rem) / 5);
  }
}
#faq .anchor_list li::before {
  content: "";
  background: url(../img/cta_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 0.7rem;
  height: 1.2rem;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}
@media only screen and (min-width: 768px) {
  #faq .anchor_list li::before {
    right: 1.5rem;
  }
}
#faq h3 {
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  color: #215FAA;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 768px) {
  #faq h3 {
    margin-top: 4rem;
    font-size: 2.8rem;
    margin-bottom: 2rem;
  }
}
#faq h3 span {
  display: inline-block;
  border-bottom: dashed 0.1rem #215FAA;
  padding-bottom: 0.5rem;
}
#faq .accordion_wrap {
  margin-top: 1rem;
}
@media only screen and (min-width: 768px) {
  #faq .accordion_wrap {
    margin-top: 1.5rem;
  }
}
#faq .accordion_wrap .accordion_title {
  cursor: pointer;
  background: #F0F4FA;
  padding: 1.5rem 4rem 1.5rem 3.5rem;
  position: relative;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  #faq .accordion_wrap .accordion_title {
    padding: 1.5rem 4rem 1.5rem 5rem;
    font-size: 1.6rem;
  }
}
#faq .accordion_wrap .accordion_title::before {
  content: "Q.";
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  color: #215FAA;
  position: absolute;
  left: 1.5rem;
  top: 1.4rem;
}
@media only screen and (min-width: 768px) {
  #faq .accordion_wrap .accordion_title::before {
    left: 3rem;
    top: 50%;
    transform: translateY(-45%);
  }
}
#faq .accordion_wrap .accordion_title:after {
  content: "";
  background: url(../img/plus.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 1.4rem;
  height: 1.4rem;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 768px) {
  #faq .accordion_wrap .accordion_title:after {
    right: 3rem;
  }
}
#faq .accordion_wrap .accordion_title.is-open:after {
  content: "";
  background: url(../img/minus.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 1.4rem;
  height: 1.4rem;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 768px) {
  #faq .accordion_wrap .accordion_title.is-open:after {
    right: 3rem;
  }
}
#faq .accordion_wrap .accordion_box {
  padding: 1.3rem 1.5rem 1.5rem 3.5rem;
  font-size: 1.2rem;
  position: relative;
  border: solid 0.2rem #F0F4FA;
  display: none;
}
@media only screen and (min-width: 768px) {
  #faq .accordion_wrap .accordion_box {
    padding: 1.5rem 3rem 1.5rem 5rem;
    font-size: 1.4rem;
  }
}
#faq .accordion_wrap .accordion_box a {
  color: #16AFD5;
  text-decoration: underline;
}
#faq .accordion_wrap .accordion_box::before {
  content: "A.";
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  color: #215FAA;
  position: absolute;
  left: 1.5rem;
  top: 1.7rem;
}
@media only screen and (min-width: 768px) {
  #faq .accordion_wrap .accordion_box::before {
    left: 3rem;
    top: 2rem;
  }
}

footer {
  text-align: center;
  font-size: 1.2rem;
  width: 100%;
}
footer .bg_white {
  padding: 3rem 2rem;
}
@media only screen and (min-width: 768px) {
  footer .bg_white {
    padding: 3rem 27rem;
  }
}
@media only screen and (min-width: 768px) {
  footer .bg_white .inner_900 {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: space-between;
    align-items: flex-start;
  }
}
footer .bg_white figure {
  width: 24.8rem;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  footer .bg_white figure {
    margin: 0;
  }
}
footer .bg_white ul {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
@media only screen and (min-width: 768px) {
  footer .bg_white ul {
    justify-content: flex-start;
    margin-top: 0;
  }
}
footer .bg_white ul li a {
  text-decoration: underline;
}
footer .bg_white .address {
  width: 100%;
  padding-top: 1.6rem;
  margin-top: 1.5rem;
  border-top: solid 0.1rem #B6B6B6;
  line-height: 2;
}
@media only screen and (min-width: 768px) {
  footer .bg_white .address {
    width: 56rem;
    text-align: left;
  }
}
footer .bg_dark {
  width: 100%;
  background: #465877;
  color: #fff;
  padding: 3rem 0 8rem;
}
@media only screen and (min-width: 768px) {
  footer .bg_dark {
    padding: 3rem 0;
  }
}/*# sourceMappingURL=style.css.map */