@charset "UTF-8";
/*===========================================
    変数
===========================================*/
/*===========================================
    BASE
===========================================*/
html {
  scroll-behavior: smooth;
}

body * {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  line-height: 1.5;
}

body {
  overflow-x: hidden;
}

img {
  vertical-align: bottom;
  height: auto;
  max-height: 100%;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

picture {
  display: block;
}
picture img {
  width: 100%;
}

main {
  overflow-x: hidden !important;
}

.wrap {
  position: relative;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1249px) {
  .inner {
    margin: auto;
    width: 95%;
  }
}

section {
  padding: 60px;
  position: relative;
}
@media screen and (max-width: 749px) {
  section {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 749px) {
  section.fv {
    padding: 60px 0 0;
  }
}
section.fv picture {
  width: 100%;
}
section.bg-blue {
  background-image: linear-gradient(90deg, #e9eaeb, #dde9f1);
}
section picture {
  max-width: 1200px;
  width: 90%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.title {
  position: relative;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 749px) {
  .title {
    margin-bottom: 30px;
  }
}
.title-en {
  font-size: 16px;
  color: #3e25ea;
}
.title-jp {
  font-size: 36px;
}
@media screen and (max-width: 749px) {
  .title-jp {
    font-size: 24px;
  }
}
.title-jp.white {
  color: #fff;
}
.title-jp span {
  color: #3e25ea;
  font-weight: inherit;
  font-size: inherit;
}

.text {
  font-size: 16px;
  width: 100%;
}
@media screen and (max-width: 749px) {
  .text {
    font-size: 15px;
  }
}
.text.center {
  text-align: center;
}
.text.orange,
.text span.orange {
  color: #f56f06;
}
.text.yellow,
.text span.yellow {
  color: #ffd200;
}
.text.blue,
.text span.blue {
  color: #3e25ea;
}
.text.white,
.text span.white {
  color: #fff;
}
.text.notice {
  font-size: 14px;
  margin-top: 1em;
  word-break: break-all;
}
@media screen and (max-width: 749px) {
  .text.notice {
    font-size: 12px;
  }
}
.text.bold {
  font-weight: 700;
}

.cta {
  width: 100%;
  padding: 60px 0;
  position: relative;
}
@media screen and (max-width: 749px) {
  .cta {
    padding: 30px 0;
  }
}
.cta:not(.bg-blue) {
  background-image: linear-gradient(90deg, #314bff, #4020e7);
}
.cta:not(.bg-blue) p {
  color: #fff;
}
.cta.bg-blue {
  background-color: #73a9e5;
  max-width: 1500px;
  margin: auto;
}
.cta.bg-blue .description {
  color: #fff;
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.7));
}
.cta_bg {
  position: absolute;
  width: 100%;
  bottom: 0;
}
.cta_catch {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (max-width: 749px) {
  .cta_catch {
    font-size: 4.5vw;
  }
}
.cta_content {
  display: flex;
  max-width: 1200px;
  margin: auto;
  width: 90%;
  height: 100%;
  display: flex;
  gap: 40px;
  margin: auto;
}
@media screen and (max-width: 749px) {
  .cta_content {
    flex-direction: column;
    gap: 20px;
  }
}
.cta_item {
  flex: 1;
}
.cta_btn {
  border-radius: 100px;
  padding: 0.7em 0;
  width: 100%;
  font-size: 27px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  cursor: pointer;
}
@media screen and (max-width: 749px) {
  .cta_btn {
    font-size: 18px;
    gap: 0.5em;
  }
}
.cta_btn.btn-1 {
  background-image: linear-gradient(90deg, #f58f06, #f56f06);
  color: #fff;
}
.cta_btn.btn-1::after {
  color: #fff;
}
.cta_btn.btn-2 {
  color: #f56f06;
  border: 3px solid #f56f06;
  background-color: #fff;
}
.cta_btn.btn-2::after {
  color: #f56f06;
}
.cta_btn::after {
  content: "";
  display: block;
  vertical-align: middle;
  line-height: 1;
  width: 0.6em;
  height: 0.6em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}
.cta .description {
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 749px) {
  .cta .description {
    font-weight: 400;
    font-size: 2.7vw;
  }
}
.cta:not(:last-of-type) .cta_catch {
  display: none;
}

@media screen and (max-width: 749px) {
  .only-pc {
    display: none !important;
  }
}

@media screen and (max-width: 749px) {
  .only-tb {
    display: none !important;
  }
}
@media screen and (min-width: 1020px) {
  .only-tb {
    display: none !important;
  }
}

@media screen and (min-width: 750px) {
  .only-sp {
    display: none !important;
  }
}

/*===========================================
    ローディング
===========================================*/
.load {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #e9eaeb, #dde9f1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  z-index: 1500;
}
.load.completed {
  opacity: 0;
  visibility: hidden;
}
.load_wrap {
  width: 150px;
}
.load_wrap.fade {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
}
.load_text {
  color: #3e25ea;
  font-family: "HelveticaNeue", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 21px;
  margin-top: 10px;
  text-align: center;
  animation: flash 1s linear infinite;
}

@keyframes flash {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
/*===========================================
    nav
===========================================*/
.nav {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 15px 30px;
  position: fixed;
  top: 0;
  z-index: 10;
  background-color: #fff;
  box-shadow: 0px 0px 10px -6px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 749px) {
  .nav {
    padding: 15px 5%;
  }
}
.nav_inner {
  width: 100%;
  margin: auto;
  max-width: 1500px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.nav_logo {
  width: 150px;
  padding-top: 10px;
}
@media screen and (max-width: 749px) {
  .nav_logo {
    flex: 1;
    padding-top: 0;
  }
}
.nav_logo-link {
  display: block;
}
.nav_logo-link object {
  pointer-events: none;
}
.nav_content {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
}
.nav_btn {
  display: none;
  z-index: 20;
  position: fixed;
  width: 55px;
  height: 60px;
  right: 0;
  cursor: pointer;
  border: none;
  background: none;
}
@media screen and (max-width: 1019px) {
  .nav_btn {
    display: block;
  }
}
.nav_btn span {
  position: absolute;
  background: #000;
  display: block;
  width: 25px;
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.nav_btn span:nth-of-type(1) {
  top: 19px;
}
.nav_btn span:nth-of-type(2) {
  top: 27px;
}
.nav_btn span:nth-of-type(3) {
  top: 35px;
}
.nav_btn p {
  font-size: 10px;
  font-weight: 700;
  margin-top: 0.3em;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav_btn.active span {
  background: #fff;
}
.nav_btn.active span:nth-of-type(1) {
  transform: translateX(-50%) rotate(-45deg);
  top: 30px;
}
.nav_btn.active span:nth-of-type(2) {
  transform: translateX(100%);
  opacity: 0;
}
.nav_btn.active span:nth-of-type(3) {
  transform: translateX(-50%) rotate(45deg);
  top: 31px;
}
.nav_btn.active p {
  color: #fff;
}
.nav_list-wrap {
  display: flex;
}
@media screen and (max-width: 1019px) {
  .nav_list-wrap {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100vw;
    height: 100vh;
    padding: 80px 20px 0;
    background-image: linear-gradient(90deg, #314bff, #4020e7);
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s;
  }
  .nav_list-wrap.active {
    opacity: 1;
    transition: opacity 0.4s ease;
    pointer-events: visible;
  }
}
.nav_list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1em;
}
@media screen and (max-width: 1019px) {
  .nav_list {
    flex-direction: column;
    text-align: center;
  }
}
.nav_item {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 1019px) {
  .nav_item a {
    color: #fff;
  }
}
.nav_cta {
  display: flex;
  gap: 1em;
  z-index: 15;
}
@media screen and (max-width: 1019px) {
  .nav_cta {
    margin-right: 30px;
    gap: 0.5em;
  }
}
.nav_cta-btn {
  border-radius: 100px;
  padding: 0.3em 1em;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}
@media screen and (max-width: 749px) {
  .nav_cta-btn {
    font-size: 3vw;
  }
}
.nav_cta-btn:nth-of-type(1) {
  background-image: linear-gradient(90deg, #f58f06, #f56f06);
  color: #fff;
}
.nav_cta-btn:nth-of-type(2) {
  color: #f56f06;
  border: 3px solid #f56f06;
  background-color: #fff;
}

/*===========================================
    CONTENT LIST
===========================================*/
.contents_content {
  max-width: 1200px;
  margin: auto;
}

.courseTree__groupTitle {
  margin: 50px 0 15px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.courseTree__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.courseTree__list[data-kind=lessons] {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #b8b8b8;
  margin-bottom: 30px;
  overflow: hidden;
}
@media screen and (max-width: 749px) {
  .courseTree__list[data-kind=lessons] {
    flex-direction: column;
    margin-bottom: 20px;
  }
}
.courseTree__item {
  margin: 0;
  padding: 0;
  border-bottom: 3px solid #fff;
}
.courseTree__acc {
  margin: 0;
}
.courseTree__acc > summary {
  list-style: none;
}
.courseTree__acc > summary::-webkit-details-marker {
  display: none;
}
.courseTree__acc[open] .courseTree__toggle::before {
  content: "−";
}
.courseTree__row {
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  min-height: 64px;
  cursor: pointer;
  user-select: none;
  padding: 0;
}
@media screen and (max-width: 749px) {
  .courseTree__row {
    grid-template-columns: 40px 1fr 40px;
    min-height: 50px;
  }
}
.courseTree__row.odd {
  background-image: linear-gradient(90deg, #e9eaeb, #dde9f1);
}
.courseTree__row.even {
  background-color: #fff;
}
.courseTree__row:hover {
  filter: brightness(0.99);
}
.courseTree__row:active {
  filter: brightness(0.97);
}
.courseTree__num {
  display: grid;
  place-items: center;
  height: 100%;
  background: #3e25ea;
  color: #fff;
  font-weight: 800;
}
.courseTree__label {
  padding: 0 18px;
  font-weight: 800;
  line-height: 1.2;
  font-size: 20px;
}
@media screen and (max-width: 749px) {
  .courseTree__label {
    font-size: 16px;
  }
}
.courseTree__toggle {
  display: grid;
  place-items: center;
  height: 100%;
  font-size: 30px;
  font-weight: 300;
  color: #000;
}
.courseTree__toggle::before {
  content: "+";
  line-height: 1;
}
.courseTree__panel {
  background: #fff;
  padding: 30px 0;
}
@media screen and (max-width: 749px) {
  .courseTree__panel {
    padding: 20px 0;
  }
}
.courseTree__subhead {
  font-weight: 700;
  color: #3e25ea;
}
.courseTree__subhead[data-depth="0"] {
  padding-left: 56px;
  font-size: 32px;
}
@media screen and (max-width: 749px) {
  .courseTree__subhead[data-depth="0"] {
    padding-left: 40px;
    font-size: 21px;
  }
}
.courseTree__subhead[data-depth="2"] {
  font-size: 21px;
  margin-bottom: 1em;
}
@media screen and (max-width: 749px) {
  .courseTree__subhead[data-depth="2"] {
    font-size: 18px;
  }
}
.courseTree__lesson {
  display: grid;
  grid-template-columns: 4em 8fr 5.5em;
  grid-template-rows: repeat(auto-fit, 3em);
  align-items: center;
  width: 50%;
  border-top: 1px solid #b8b8b8;
  font-size: 16px;
}
@media screen and (max-width: 749px) {
  .courseTree__lesson {
    grid-template-columns: 3em 8fr 4.3em;
    grid-template-rows: repeat(auto-fit, 2.5em);
    width: 100%;
    font-size: 14px;
  }
}
.courseTree__lesson:first-of-type {
  border-top: 0;
}
.courseTree__lesson:nth-of-type(2) {
  border-top: 0;
}
@media screen and (max-width: 749px) {
  .courseTree__lesson:nth-of-type(2) {
    border-top: 1px solid #b8b8b8;
  }
}
.courseTree__lesson:nth-of-type(odd) {
  border-right: 1px solid #000;
}
@media screen and (max-width: 749px) {
  .courseTree__lesson:nth-of-type(odd) {
    border-right: none;
  }
}
@media screen and (max-width: 749px) {
  .courseTree__lesson[aria-hidden=true] {
    display: none;
  }
}
.courseTree__lesson[aria-hidden=true] span {
  border: none;
}
.courseTree__lessonNum {
  padding: 0.8em 1.5em;
  text-align: center;
  border-right: 1px solid #b8b8b8;
}
@media screen and (max-width: 749px) {
  .courseTree__lessonNum {
    padding: 0.6em 1em;
  }
}
.courseTree__lessonTitle {
  line-height: 1.2;
  padding: 0.8em 1em;
  border-right: 1px solid #b8b8b8;
}
@media screen and (max-width: 749px) {
  .courseTree__lessonTitle {
    padding: 0.6em 0.8em;
  }
}
.courseTree__lessonTime {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  text-align: center;
  padding: 0.8em 1.5em;
}
@media screen and (max-width: 749px) {
  .courseTree__lessonTime {
    padding: 0.6em 1em;
  }
}

/*===========================================
    FAQ
===========================================*/
.faq_content {
  max-width: 800px;
  margin: auto;
}
.faq_item {
  padding: 20px 30px;
}
@media screen and (max-width: 749px) {
  .faq_item {
    padding: 15px;
  }
}
.faq_item:not(:last-of-type) {
  border-bottom: 1px solid #b8b8b8;
}
.faq_item p {
  font-size: 18px;
  display: flex;
  text-align: left;
}
@media screen and (max-width: 749px) {
  .faq_item p {
    font-size: 16px;
  }
}
.faq_item p::before {
  font-size: 1.2em;
  font-weight: 700;
  color: #3e25ea;
  margin-right: 1em;
  line-height: 1.3;
  text-align: center;
  width: 1em;
}
.faq_q {
  font-weight: 700;
  margin-bottom: 0.5em;
}
.faq_q::before {
  content: "Q.";
}
.faq_a::before {
  content: "A.";
}

/*===========================================
    FOOTER
===========================================*/
.footer {
  width: 100%;
  padding: 60px 0;
  color: #3e25ea;
  background-color: #fff;
}
.footer_legal {
  text-align: center;
  margin-bottom: 40px;
}
.footer_copyright {
  text-align: center;
  font-size: 16px;
}

/*===========================================
    COMMON
===========================================*/
.grid {
  display: grid;
  grid-auto-rows: auto;
  gap: clamp(20px, 5vw, 40px);
}
.grid-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media screen and (max-width: 749px) {
  .grid.grid-sp-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media screen and (max-width: 1019px) {
  .grid.grid-md-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media screen and (max-width: 749px) {
  .grid.grid-sp-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 1019px) {
  .grid.grid-md-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media screen and (max-width: 749px) {
  .grid.grid-sp-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (max-width: 1019px) {
  .grid.grid-md-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media screen and (max-width: 749px) {
  .grid.grid-sp-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media screen and (max-width: 1019px) {
  .grid.grid-md-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
@media screen and (max-width: 749px) {
  .grid.grid-sp-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media screen and (max-width: 1019px) {
  .grid.grid-md-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
.grid--ratio-1-3 {
  grid-template-columns: 1fr 3fr;
}
@media screen and (max-width: 749px) {
  .grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.grid--ratio-3-1 {
  grid-template-columns: 3fr 1fr;
}
@media screen and (max-width: 749px) {
  .grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.grid--ratio-1-2 {
  grid-template-columns: 1fr 2fr;
}
@media screen and (max-width: 749px) {
  .grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.grid--ratio-2-1 {
  grid-template-columns: 2fr 1fr;
}
@media screen and (max-width: 749px) {
  .grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.grid--ratio-1-4 {
  grid-template-columns: 1fr 4fr;
}
@media screen and (max-width: 749px) {
  .grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.grid--ratio-4-1 {
  grid-template-columns: 4fr 1fr;
}
@media screen and (max-width: 749px) {
  .grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.grid > * {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.description {
  font-size: 18px;
  text-align: center;
  margin-top: 1em;
}
@media screen and (max-width: 749px) {
  .description {
    font-size: 16px;
  }
}
.description.blue,
.description span.blue {
  color: #3e25ea;
}
.description.orange,
.description span.orange {
  color: #f56f06;
}
.description.bold,
.description span.bold {
  font-weight: 700;
}

.ttl {
  font-weight: 700;
  font-size: 21px;
  width: 100%;
  margin-top: 0.8em;
}
@media screen and (max-width: 749px) {
  .ttl {
    font-size: 18px;
    margin-top: 0.5em;
  }
}
.ttl.blue,
.ttl span.blue {
  color: #3e25ea;
}
.ttl.orange,
.ttl span.orange {
  color: #f56f06;
}
.ttl.white,
.ttl span.white {
  color: #fff;
}
.ttl.large {
  font-size: 27px;
}
@media screen and (max-width: 749px) {
  .ttl.large {
    font-size: 21px;
  }
}
.ttl.small {
  font-size: 18px;
}
@media screen and (max-width: 749px) {
  .ttl.small {
    font-size: 16px;
  }
}
.ttl.center {
  text-align: center;
}
.ttl.non-bold {
  font-weight: normal;
}

.container {
  margin: 40px auto 0;
}
@media screen and (max-width: 749px) {
  .container {
    margin: 30px auto 0;
  }
}
.container-1200 {
  max-width: 1200px;
}
.container-1000 {
  max-width: 1000px;
}
.container-800 {
  max-width: 800px;
}
.container.bg-blue {
  background-image: linear-gradient(90deg, #e9eaeb, #dde9f1);
}

.radius-box {
  border-radius: 40px 40px 0 0;
  color: #fff;
  background-image: linear-gradient(90deg, #314bff, #4020e7);
}
@media screen and (max-width: 749px) {
  .radius-box {
    border-radius: 30px 30px 0 0;
  }
}

.border-img {
  width: 100%;
  aspect-ratio: 2/1;
  border: 2px solid #b8b8b8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 749px) {
  .border-img {
    padding: 15px;
    max-height: calc((100vw - 20px) * 0.95 / 2);
  }
}
.border-img img {
  max-width: 85%;
  height: auto;
  max-height: 100%;
}

.counter {
  counter-reset: item;
}
.counter_ttl::before {
  font-size: 1.4em;
  font-weight: 700;
  margin-right: 0.5em;
  counter-increment: item;
  content: counter(item);
  content: counter(item, decimal-leading-zero);
}

/*===========================================
    FV
===========================================*/
.fv {
  padding: 60px 0 0;
}
@media screen and (max-width: 1019px) {
  .fv {
    min-height: 100vh;
  }
}
.fv_inner {
  padding: 100px 100px 0;
  width: 100%;
  height: 100%;
  max-width: 1500px;
  margin: auto;
  background-image: url("../img/fv_bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: -3;
}
@media screen and (max-width: 1019px) {
  .fv_inner {
    background-image: url("../img/fv_bg-sp.jpg");
    padding: 5%;
  }
}
.fv_content {
  margin: auto;
  display: inline-block;
  max-width: 100%;
}
@media screen and (max-width: 1019px) {
  .fv_content {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 90px);
    padding: 30px 0;
    align-items: baseline;
  }
}
@media screen and (max-width: 749px) {
  .fv_content {
    width: 95%;
  }
}
.fv_sub-catch {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  position: relative;
  display: inline-block;
  padding: 0.5em 1em;
  line-height: 1.4;
}
@media screen and (max-width: 749px) {
  .fv_sub-catch {
    font-size: 4.8vw;
  }
}
.fv_sub-catch span {
  font-size: 1.2em;
  font-weight: inherit;
  color: inherit;
  margin-left: 0.5em;
  line-height: 1;
}
@media screen and (max-width: 749px) {
  .fv_sub-catch span {
    font-size: 1.3em;
  }
}
.fv_sub-catch::before, .fv_sub-catch::after {
  content: "";
  position: absolute;
  transform: skewX(-15deg);
}
.fv_sub-catch::before {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-image: linear-gradient(90deg, #f58f06, #f56f06);
}
.fv_sub-catch::after {
  top: 15px;
  bottom: -15px;
  left: 15px;
  right: -15px;
  z-index: -2;
  background-color: #fff;
}
.fv_main {
  margin-top: 30px;
}
@media screen and (max-width: 1019px) {
  .fv_main {
    margin: auto auto 0 auto;
    width: 100%;
  }
}
.fv_catch {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.8));
}
@media screen and (max-width: 749px) {
  .fv_catch {
    font-size: 10vw;
    text-align: center;
  }
}
.fv_catch span {
  font-size: inherit;
  font-weight: inherit;
  color: #f56f06;
  background-color: #fff;
  padding: 0.1em 0.3em;
  line-height: 1.8;
}
.fv_text {
  font-size: 24px;
  font-weight: 700;
  margin-top: 0.5em;
  display: flex;
}
.fv_text p {
  color: #fff;
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.8));
}
.fv_text p .orange {
  filter: drop-shadow(0px 0px 6px #f56f06);
}
.fv_text p .blue {
  filter: drop-shadow(0px 0px 6px #3e25ea);
}
.fv_text p .orange,
.fv_text p .blue {
  color: inherit;
}
.fv_text p .orange span,
.fv_text p .blue span {
  color: inherit;
  font-size: 2em;
}
@media screen and (max-width: 749px) {
  .fv_text {
    font-size: 5vw;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
}
.fv_list {
  gap: 10px;
  margin-top: 20px;
}
@media screen and (max-width: 749px) {
  .fv_list {
    padding: 20px 0;
    background-color: #73a9e5;
    margin: 0;
  }
}
.fv_item {
  text-align: center;
  padding: 1.5em 1.5em 0.8em;
  border-radius: 40px 40px 0 0;
  min-width: 215px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  background-image: linear-gradient(90deg, rgba(49, 75, 255, 0.7), rgba(64, 32, 231, 0.7));
}
@media screen and (max-width: 749px) {
  .fv_item {
    border-radius: 30px 30px 0 0;
    min-width: auto;
    padding: 1.5em 1em 0.8em;
    background-image: linear-gradient(90deg, #314bff, #4020e7);
    width: 90%;
    margin: auto;
  }
}
.fv_item p {
  font-weight: 700;
}
.fv_item-head {
  color: #ffd200;
  font-size: 18px;
}
@media screen and (max-width: 749px) {
  .fv_item-head {
    font-size: 4vw;
  }
}
.fv_item-main {
  color: #fff;
  font-size: 21px;
}
@media screen and (min-width: 750px) and (max-width: 1019px) {
  .fv_item-main {
    font-size: 2vw;
  }
}
@media screen and (max-width: 749px) {
  .fv_item-main {
    font-size: 4.5vw;
  }
}
.fv_item-main.middle {
  font-size: 24px;
}
@media screen and (min-width: 750px) and (max-width: 1019px) {
  .fv_item-main.middle {
    font-size: 3vw;
  }
}
@media screen and (max-width: 749px) {
  .fv_item-main.middle {
    font-size: 5vw;
  }
}
.fv_item-main span {
  font-size: 2em;
  font-weight: inherit;
  color: inherit;
  line-height: 1;
}
.fv_item-sub {
  font-size: 14px;
  color: #fff;
}
@media screen and (min-width: 750px) and (max-width: 1019px) {
  .fv_item-sub {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 749px) {
  .fv_item-sub {
    font-size: 3vw;
  }
}

/*===========================================
    SOLUTION
===========================================*/
.solution {
  background-image: url("../img/solution/bg.png");
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
}
.solution_head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  width: 100%;
}
@media screen and (max-width: 749px) {
  .solution_head {
    gap: 40px;
  }
}
.solution_baloon {
  background-color: #fff;
  border: 5px solid #b8b8b8;
  border-radius: 30px;
  padding: 1em;
  width: 100%;
  color: #3e25ea;
  font-weight: 700;
  font-size: 27px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 749px) {
  .solution_baloon {
    border: 3px solid #b8b8b8;
    border-radius: 20px;
    font-size: 5vw;
  }
}
.solution_baloon::after {
  content: "";
  position: absolute;
  display: block;
  background-color: #b8b8b8;
  bottom: -1em;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5em;
  height: 1em;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: -1;
}
.solution_img {
  max-width: 300px;
  width: 30%;
}
@media screen and (max-width: 749px) {
  .solution_img {
    width: 70%;
  }
}
.solution_num {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
.solution_num::before, .solution_num::after {
  content: "";
  display: block;
  background-color: #b8b8b8;
  flex: 1;
  height: 5px;
  border-radius: 10px;
  z-index: -1;
}
@media screen and (max-width: 749px) {
  .solution_num::before, .solution_num::after {
    height: 3px;
  }
}
.solution_num-text {
  padding: 0 1em;
  font-size: 27px;
  font-weight: 700;
  display: inline-block;
  margin: auto;
}
@media screen and (max-width: 749px) {
  .solution_num-text {
    font-size: 4.5vw;
    padding: 0 0.5em;
  }
}
.solution_num-text span {
  font-size: 2.5em;
  font-weight: inherit;
}
.solution_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 40px auto 0;
}
@media screen and (max-width: 749px) {
  .solution_list {
    gap: 10px;
  }
}
.solution_item {
  border: 5px solid #b8b8b8;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  width: calc((100% - 30px) / 3);
}
@media screen and (max-width: 1019px) {
  .solution_item {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 749px) {
  .solution_item {
    border: 3px solid #b8b8b8;
    border-radius: 15px;
    padding: 20px 10px;
  }
}
.solution_item:nth-child(4) {
  grid-column: 2;
}
.solution_item-img {
  width: 40%;
  aspect-ratio: 3/2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.solution_item-text {
  font-size: 24px;
}
@media screen and (max-width: 749px) {
  .solution_item-text {
    font-size: 3.4vw;
  }
}
.solution_item-num {
  margin-top: 0.3em;
}
@media screen and (max-width: 749px) {
  .solution_item-num {
    font-size: 4vw;
  }
}
.solution_item-num span {
  font-size: 2em;
  line-height: 1;
}
@media screen and (max-width: 749px) {
  .solution_item-num span {
    font-size: 1.5em;
  }
}

/*===========================================
    PROBLEMS
===========================================*/
.problems_content {
  margin-bottom: 40px;
}
.problems_list {
  padding-left: 30px;
  align-items: baseline;
}
@media screen and (max-width: 749px) {
  .problems_list {
    padding-left: 0;
    align-items: center;
  }
}
.problems_ttl {
  position: relative;
}
@media screen and (max-width: 749px) {
  .problems_ttl {
    text-align: center;
  }
}
.problems_ttl::before {
  position: absolute;
  font-style: italic;
  top: -0.25em;
  left: -1.8em;
  background-image: linear-gradient(90deg, #314bff, #4020e7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.5em;
  width: 100%;
}
@media screen and (max-width: 749px) {
  .problems_ttl::before {
    position: static;
    display: block;
  }
}
@media screen and (max-width: 749px) {
  .problems_text {
    text-align: center;
    font-size: 14px;
  }
}
.problems_sol {
  padding: 20px;
  border-radius: 20px;
  background-color: #fff;
  max-width: 1000px;
  margin: 40px auto 0;
  font-weight: 700;
}
/*===========================================
    INFOGRAPHICS
===========================================*/
.infographics_q, .infographics_a {
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (max-width: 749px) {
  .infographics_q, .infographics_a {
    font-size: 20px !important;
  }
}
.infographics_item:not(:first-of-type) {
  border-top: 2px solid #b8b8b8;
  margin-top: 40px;
  padding-top: 40px;
}
@media screen and (max-width: 749px) {
  .infographics_item:not(:first-of-type) {
    margin-top: 30px;
    padding-top: 20px;
  }
}
.infographics_item:nth-of-type(1) .infographics_ttl:before {
  content: "01";
}
.infographics_item:nth-of-type(2) .infographics_ttl:before {
  content: "02";
}
.infographics_item:nth-of-type(3) .infographics_ttl:before {
  content: "03";
}
.infographics_item:nth-of-type(4) .infographics_ttl:before {
  content: "04";
}
.infographics_item:nth-of-type(5) .infographics_ttl:before {
  content: "05";
}
.infographics_ttl {
  display: flex;
  align-items: center;
  gap: 0.8em;
}
@media screen and (max-width: 749px) {
  .infographics_ttl {
    gap: 0.5em;
    font-size: 15px !important;
    align-items: normal;
  }
}
.infographics_ttl::before {
  background-image: linear-gradient(90deg, #314bff, #4020e7);
  font-size: 1.5em;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
@media screen and (max-width: 749px) {
  .infographics_ttl::before {
    font-size: 1.2em;
    width: 2.3em;
  }
}
.infographics_text {
  margin-top: 1em;
  font-size: 18px;
}
@media screen and (max-width: 749px) {
  .infographics_text {
    font-size: 14px;
  }
}
.infographics_img {
  border-radius: 20px;
  margin: 15px auto 0;
}
.infographics_img-text {
  text-align: center;
}
@media screen and (max-width: 749px) {
  .infographics_img-text {
    font-size: 16px;
  }
}

/*===========================================
    RESULT
===========================================*/
.result p {
  text-align: center;
}
.result_list {
  margin: 40px auto;
}
@media screen and (max-width: 749px) {
  .result_list {
    margin-top: 30px auto;
  }
}
.result_ttl {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}
@media screen and (max-width: 749px) {
  .result_ttl {
    flex-direction: column;
  }
}
.result_ttl::before {
  color: #000;
}
@media screen and (max-width: 749px) {
  .result_ttl::before {
    margin: 0 auto 0.2em !important;
    text-align: center;
  }
}
.result_ttl.ttl-2::before {
  content: "";
  background-image: url("../img/check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  margin-right: 0.5em;
  width: 1.2em;
  aspect-ratio: 1/1;
}
.result_text {
  align-items: center;
  margin-top: 0.3em;
}
.result_img {
  width: 100%;
  max-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

/*===========================================
    RECOMMENDERS VOICE
===========================================*/
.recommenders-voice .title,
.recommenders-voice .title-jp {
  text-align: left;
  width: 100%;
}
.recommenders-voice_content {
  width: 100%;
  padding: 60px 40px;
}
@media screen and (max-width: 749px) {
  .recommenders-voice_content {
    padding: 40px 30px;
  }
}
.recommenders-voice_prof {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 749px) {
  .recommenders-voice_prof {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 5%;
    order: 2;
  }
}
.recommenders-voice_img {
  aspect-ratio: 1/1;
}
@media screen and (max-width: 749px) {
  .recommenders-voice_img {
    flex: 1;
  }
}
.recommenders-voice_img img {
  border-radius: 50%;
}
.recommenders-voice_prof-text {
  margin-top: 20px;
  padding-left: 20px;
  border-left: 1px solid #fff;
}
@media screen and (max-width: 749px) {
  .recommenders-voice_prof-text {
    margin-top: 0;
    padding-left: 10px;
  }
}
@media screen and (max-width: 749px) {
  .recommenders-voice_prof-ttl {
    font-size: 13px;
  }
}
.recommenders-voice_prof-name {
  margin-top: 0.4em;
}
@media screen and (max-width: 749px) {
  .recommenders-voice_prof-name {
    font-size: 16px;
  }
}
@media screen and (max-width: 749px) {
  .recommenders-voice_text {
    order: 1;
  }
}
@media screen and (max-width: 749px) {
  .recommenders-voice_comment {
    font-size: 14px;
  }
}

/*===========================================
    USERS VOICE
===========================================*/
.users-voice_item {
  text-align: center;
}
.users-voice_img {
  width: 60%;
  aspect-ratio: 1/1;
}
.users-voice_img img {
  border-radius: 50%;
  width: 100%;
}
@media screen and (max-width: 749px) {
  .users-voice_user-ttl, .users-voice_ttl {
    font-size: 14px;
  }
}
.users-voice_text {
  margin-top: 0.5em;
}
@media screen and (max-width: 749px) {
  .users-voice_text {
    font-size: 13px;
  }
}

/*===========================================
    CURRICULUM
===========================================*/
.curriculum_item {
  margin-top: 30px;
}
.curriculum_ttl {
  font-size: 27px;
}
@media screen and (max-width: 749px) {
  .curriculum_ttl {
    font-size: 18px;
  }
}
.curriculum_ttl span {
  margin-left: 1em;
}
@media screen and (max-width: 749px) {
  .curriculum_ttl span {
    margin: 0;
  }
}
.curriculum_text {
  text-align: center;
}
@media screen and (max-width: 749px) {
  .curriculum_text {
    font-size: 13px;
  }
}
.curriculum_list {
  margin-top: 40px;
}
@media screen and (max-width: 749px) {
  .curriculum_list {
    margin-top: 30px;
  }
}
@media screen and (max-width: 749px) {
  .curriculum_ttl {
    text-align: center;
  }
}
.curriculum_ttl::before {
  background-image: linear-gradient(90deg, #314bff, #4020e7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 749px) {
  .curriculum_ttl::before {
    display: block;
  }
}
.curriculum_desc {
  margin: 0.5em 0;
}
@media screen and (max-width: 749px) {
  .curriculum_desc {
    text-align: center;
    font-size: 16px;
  }
}
@media screen and (max-width: 749px) {
  .curriculum_supp {
    font-size: 8.8px;
  }
}

/*===========================================
    FLOW
===========================================*/
.flow_list {
  margin: 40px auto 0;
}
@media screen and (min-width: 750px) and (max-width: 1019px) {
  .flow_list {
    max-width: 70%;
  }
}
@media screen and (max-width: 1019px) {
  .flow_list {
    margin: 30px auto 0;
    gap: 30px;
  }
}
.flow_item {
  padding: 20px;
  width: 100%;
  border: 2px solid #b8b8b8;
  position: relative;
  justify-content: center;
}
.flow_item::before {
  position: absolute;
  top: -1.5em;
  left: 0;
  font-size: 30px;
}
@media screen and (max-width: 1019px) {
  .flow_item::before {
    left: 50%;
    transform: translateX(-50%);
  }
}
.flow_item:not(:last-of-type)::after {
  content: "";
}
.flow_item::after {
  position: absolute;
  display: block;
  top: 50%;
  right: -2em;
  transform: translateY(-50%);
  width: 1em;
  height: 1.5em;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-image: linear-gradient(90deg, #314bff, #4020e7);
}
@media screen and (max-width: 1019px) {
  .flow_item::after {
    top: auto;
    right: auto;
    left: 50%;
    bottom: -1.6em;
    transform: translateX(-50%);
    width: 1.5em;
    height: 1em;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
}
.flow_ttl {
  text-align: center;
  margin-top: 0;
}
.flow_text {
  text-align: center;
  margin-top: 0.5em;
}
.flow_btn {
  width: 80%;
  padding: 0.5em 1em;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  margin-top: 0.7em;
}
.flow_btn:not(.outline) {
  color: #fff;
  background-image: linear-gradient(90deg, #f58f06, #f56f06);
}
.flow_btn.outline {
  color: #f56f06;
  border: 2px solid #f56f06;
}

/*===========================================
    PRICING
===========================================*/
.pricing_ttl {
  padding-bottom: 40px;
  border-bottom: 1px solid #b8b8b8;
}
@media screen and (max-width: 749px) {
  .pricing_ttl {
    padding-bottom: 30px;
  }
}
.pricing_ttl span {
  font-size: 0.5em;
}
.pricing_notice {
  max-width: 800px;
  margin: 30px auto !important;
}
@media screen and (max-width: 749px) {
  .pricing_notice {
    margin: 20px auto !important;
  }
}
.pricing_text {
  text-align: center;
  padding: 30px;
  background-color: #fff;
  border-radius: 20px;
}
@media screen and (max-width: 749px) {
  .pricing_text {
    font-size: 13px;
    padding: 20px;
    border-radius: 15px;
  }
}

/*===========================================
    LEGAL
===========================================*/
.legal {
  background-image: linear-gradient(90deg, #e9eaeb, #dde9f1);
}
.legal section {
  padding: 120px 60px 60px;
}
@media screen and (max-width: 749px) {
  .legal section {
    padding: 100px 20px 30px;
  }
}
.legal .inner {
  max-width: 800px;
}
@media screen and (min-width: 1020px) {
  .legal .nav_list-wrap {
    display: none !important;
  }
}
.legal table {
  width: 100%;
  border-collapse: collapse;
}
.legal table tr:not(:last-of-type) {
  border-bottom: 1px solid #b8b8b8;
}
.legal table td {
  padding: 2em;
}
@media screen and (max-width: 749px) {
  .legal table td {
    font-size: 13px;
    display: block;
    width: 100%;
    padding: 1.2em 1em;
  }
}
.legal table td:first-of-type {
  font-weight: 700;
  white-space: nowrap;
  padding: 1.2em 1em 0;
}
.legal table td a {
  text-decoration: underline;
}