@charset "UTF-8";
html {
  font-size: 62.5%;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  color: #333;
}
@media screen and (min-width: 1024px) {
  body {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1280px) {
  body {
    padding: 0;
  }
}

img {
  max-width: 100%;
}

p {
  line-height: 1.8;
}

em {
  font-style: normal;
}

h1, h2, h3, h4 {
  font-weight: 400;
}

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

li {
  list-style-type: none;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 2;
  backdrop-filter: blur(0.8rem);
}
header .header_inner {
  width: 108rem;
  max-width: 94%;
  margin: 0 auto;
  height: 5.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1024px) {
  header .header_inner {
    height: 6rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
header .header_inner .header_logo {
  width: 10rem;
}
@media screen and (min-width: 1024px) {
  header .header_inner .header_logo {
    width: 12rem;
  }
}
header .header_inner .header_logo img {
  display: block;
}
header .header_inner .gl_nav {
  display: none;
  position: fixed;
  top: 5.6rem;
  left: 0;
  width: 100%;
  height: calc(100vh - 5.6rem);
  background-color: #fff;
  padding: 4rem;
}
@media screen and (min-width: 1024px) {
  header .header_inner .gl_nav {
    display: block;
    width: auto;
    padding: 0;
    position: static;
    background: none;
    height: auto;
  }
}
@media screen and (min-width: 1024px) {
  header .header_inner .gl_nav .gl_nav_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
header .header_inner .gl_nav li {
  border-bottom: dotted 0.1rem #ccc;
}
@media screen and (min-width: 1024px) {
  header .header_inner .gl_nav li {
    font-size: 1.4rem;
    border-bottom: none;
  }
}
@media screen and (min-width: 1024px) {
  header .header_inner .gl_nav li:last-of-type {
    margin-left: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  header .header_inner .gl_nav li:last-of-type a {
    background-color: #B19E5D;
    color: #fff;
    border-radius: 10rem;
    padding: 0.8rem 3.2rem;
  }
}
header .header_inner .gl_nav li a {
  display: block;
  padding: 2.4rem 0;
}
@media screen and (min-width: 1024px) {
  header .header_inner .gl_nav li a {
    padding: 0.8rem 2rem;
  }
}
header .header_inner .sp_nav_switch {
  position: absolute;
  width: 2.8rem;
  height: 2.8rem;
  top: 50%;
  right: 1.2rem;
  translate: 0 -50%;
}
@media screen and (min-width: 1024px) {
  header .header_inner .sp_nav_switch {
    display: none;
  }
}
header .header_inner .sp_nav_switch::before, header .header_inner .sp_nav_switch::after {
  content: "";
}
header .header_inner .sp_nav_switch span, header .header_inner .sp_nav_switch::before, header .header_inner .sp_nav_switch::after {
  display: block;
  width: 100%;
  height: 0.3rem;
  background-color: #333;
  position: absolute;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
header .header_inner .sp_nav_switch_open span {
  top: 50%;
  translate: 0 -50%;
}
header .header_inner .sp_nav_switch_open::before {
  top: 0;
}
header .header_inner .sp_nav_switch_open::after {
  bottom: 0;
}
header .header_inner .sp_nav_switch_close span {
  top: 50%;
  opacity: 0;
  translate: -2.4rem -50%;
}
header .header_inner .sp_nav_switch_close::before {
  top: 50%;
  translate: 0 -50%;
  rotate: -45deg;
}
header .header_inner .sp_nav_switch_close::after {
  bottom: 50%;
  translate: 0 50%;
  rotate: 45deg;
}

footer {
  width: 108rem;
  max-width: 94%;
  margin: 0 auto;
  padding: 4rem 0 1rem;
}
footer .sns_area {
  padding-bottom: 4rem;
}
footer .sns_area h2 {
  padding: 1.2rem;
  background-color: #EDE8D7;
  text-align: center;
  border-radius: 0.8rem;
  position: relative;
  margin-bottom: 4rem;
}
footer .sns_area h2::before {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  background-color: #EDE8D7;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: -1.6rem;
  left: 50%;
  translate: -50% 0;
}
footer .sns_area .sns_bnr dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: solid 0.1rem #ccc;
  border-radius: 0.8rem;
  padding: 0.8rem;
}
footer .sns_area .sns_bnr dt {
  width: 20%;
}
footer .sns_area .sns_bnr dt img {
  display: block;
}
footer .sns_area .sns_bnr dd {
  width: 76%;
  border-bottom: solid 0.3rem #8ACFD1;
  font-size: 1.6rem;
  padding-bottom: 1.2rem;
}
footer .sns_area .sns_bnr dd span {
  display: block;
  font-size: 0.75em;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  footer .sns_area .sns_bnr_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
footer .sns_area .sns_bnr_row .sns_bnr_main {
  margin-bottom: 2.4rem;
}
@media screen and (min-width: 768px) {
  footer .sns_area .sns_bnr_row .sns_bnr_main {
    width: 49%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  footer .sns_area .sns_bnr_row .sns_bnr_main {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  footer .sns_area .sns_bnr_row .sns_bnr_main dl {
    padding: 1.6rem 0.8rem;
  }
}
@media screen and (min-width: 1024px) {
  footer .sns_area .sns_bnr_row .sns_bnr_main dl {
    padding: 2rem;
  }
}
footer .sns_area .sns_bnr_row .sns_bnr_main dl dd {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  footer .sns_area .sns_bnr_row .sns_sub_list {
    width: 49%;
  }
}
@media screen and (min-width: 1024px) {
  footer .sns_area .sns_bnr_row .sns_sub_list {
    width: 46%;
  }
}
footer .sns_area .sns_bnr_row .sns_sub_list li {
  margin-bottom: 1.2rem;
}
@media screen and (min-width: 768px) {
  footer .sns_area .sns_bnr_row .sns_sub_list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
footer .sns_area .sns_bnr_row .sns_sub_list li p {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  footer .sns_area .sns_bnr_row .sns_sub_list li p {
    width: 40%;
  }
}
@media screen and (min-width: 1024px) {
  footer .sns_area .sns_bnr_row .sns_sub_list li p {
    width: 32%;
  }
}
@media screen and (min-width: 768px) {
  footer .sns_area .sns_bnr_row .sns_sub_list li .sns_bnr {
    width: 59%;
  }
}
@media screen and (min-width: 1024px) {
  footer .sns_area .sns_bnr_row .sns_sub_list li .sns_bnr {
    width: 64%;
  }
}
footer .footer_nav {
  border-top: solid 0.1rem #ccc;
  padding: 4rem 0;
}
@media screen and (min-width: 768px) {
  footer .footer_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
footer .footer_nav li {
  text-align: center;
}
@media screen and (min-width: 768px) {
  footer .footer_nav li {
    margin: 0 0.8rem;
  }
}
@media screen and (min-width: 1024px) {
  footer .footer_nav li {
    margin: 0 1.2rem;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1280px) {
  footer .footer_nav li {
    margin: 0 1.6rem;
  }
}
footer .footer_nav li a {
  display: block;
  padding: 1.2rem 0;
}
footer .footer_logo {
  width: 16rem;
  margin: 0 auto 4rem;
}
footer .footer_logo img {
  display: block;
  width: 100%;
}
footer .copy_right {
  text-align: center;
  font-size: 1.2rem;
}

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

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

.pc_only {
  display: none;
}
@media screen and (min-width: 1024px) {
  .pc_only {
    display: block;
  }
}

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

.over_alpha {
  -webkit-transition: opacity 0.4s ease 0s;
  transition: opacity 0.4s ease 0s;
  cursor: pointer;
}
.over_alpha:hover {
  opacity: 0.6;
}

.ff_oooh {
  font-family: "Oooh Baby", cursive;
  font-weight: 400;
  font-style: normal;
}

.ff_jost {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}

.bg_gray {
  background-color: #f5f5f5;
}

.bg_blue {
  background-color: #F0FAFA;
}

.bg_beige {
  background-color: #FAF8F4;
}

section {
  position: relative;
}
.next_blue_sec::before, .next_blue_sec::after, .next_white_sec::before, .next_white_sec::after, .next_beige_sec::before, .next_beige_sec::after {
  content: "";
  display: block;
  position: absolute;
  height: 4rem;
  bottom: 0;
}
@media screen and (min-width: 1024px) {
  .next_blue_sec::before, .next_blue_sec::after, .next_white_sec::before, .next_white_sec::after, .next_beige_sec::before, .next_beige_sec::after {
    height: 6.4rem;
  }
}
.next_blue_sec::before, .next_white_sec::before, .next_beige_sec::before {
  width: 50%;
}
.next_blue_sec::after, .next_white_sec::after, .next_beige_sec::after {
  width: 100%;
}

/* 次のブロックが青背景 */
.next_blue_sec::before {
  left: 0;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  background-color: #8ACFD1;
}
.next_blue_sec::after {
  right: 0;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  background-color: #F0FAFA;
}

/* 次のブロックが白背景 */
.next_white_sec::before {
  right: 0;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  background-color: #8ACFD1;
}
.next_white_sec::after {
  left: 0;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  background-color: #fff;
}

/* 次のブロックがベージュ景 */
.next_beige_sec::before {
  left: 0;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  background-color: #8ACFD1;
}
.next_beige_sec::after {
  right: 0;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  background-color: #FAF8F4;
}

/* 次のブロックが矢印 */
.next_arrow_sec .content {
  padding: 4rem 0;
}
@media screen and (min-width: 1024px) {
  .next_arrow_sec .content {
    padding: 5rem 0;
  }
}

/* バナーセクション */
.bnr_sec .content {
  padding: 4rem 0;
}
@media screen and (min-width: 1024px) {
  .bnr_sec .content {
    padding: 5rem 0;
  }
}

.content {
  width: 108rem;
  max-width: 94%;
  margin: 0 auto;
  padding: 4rem 0 8rem;
}
@media screen and (min-width: 768px) {
  .content {
    padding: 4rem 0 8rem;
  }
}
@media screen and (min-width: 1024px) {
  .content {
    padding: 5rem 0 9.6rem;
  }
}
@media screen and (min-width: 1280px) {
  .content {
    padding: 8rem 0 16rem;
  }
}

/* コンテンツタイトル h2 */
.content_ttl {
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (min-width: 1280px) {
  .content_ttl {
    margin-bottom: 5rem;
  }
}
.content_ttl .ttl_en {
  display: block;
  font-size: 4.8rem;
  color: #8ACFD1;
  margin-bottom: -2rem;
}
@media screen and (min-width: 768px) {
  .content_ttl .ttl_en {
    font-size: 5.6rem;
  }
}
@media screen and (min-width: 1024px) {
  .content_ttl .ttl_en {
    font-size: 6.4rem;
  }
}
@media screen and (min-width: 1280px) {
  .content_ttl .ttl_en {
    font-size: 8rem;
  }
}
.content_ttl .ttl_jp {
  background-color: #EDE8D7;
  line-height: 1.8;
}
@media screen and (min-width: 1024px) {
  .content_ttl .ttl_jp {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 1280px) {
  .content_ttl .ttl_jp {
    font-size: 3.2rem;
  }
}
.content_ttl .ttl_jp em {
  font-size: 1.4em;
}

/* ボタン */
.default_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 24rem;
  height: 5.6rem;
  background-color: #B19E5D;
  border-radius: 10rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 2rem;
  margin: 4rem auto 0;
}
.default_btn span {
  color: #fff;
  position: relative;
  -webkit-transition: color 0.4s ease 0s;
  transition: color 0.4s ease 0s;
}
.default_btn::before {
  content: "";
  display: block;
  width: 4.8rem;
  height: 4.8rem;
  background-color: #fff;
  border-radius: 10rem;
  position: absolute;
  right: 0.4rem;
  top: 0.4rem;
  -webkit-transition: width 0.3s cubic-bezier(1, -0.01, 0.22, 0.99) 0s;
  transition: width 0.3s cubic-bezier(1, -0.01, 0.22, 0.99) 0s;
}
.default_btn::after {
  content: "\f061";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 4.8rem;
  height: 4.8rem;
  color: #B19E5D;
  position: absolute;
  right: 0.4rem;
  top: 0.4rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.default_btn:hover span {
  color: #B19E5D;
}
.default_btn:hover::before {
  width: 23.2rem;
}

/* 受講者の声（ショート） */
@media screen and (min-width: 768px) {
  .voice_module_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.voice_module_list li {
  margin-bottom: 2.4rem;
}
@media screen and (min-width: 768px) {
  .voice_module_list li {
    width: 49%;
  }
}
@media screen and (min-width: 1024px) {
  .voice_module_list li {
    width: 32%;
    margin-bottom: 0;
  }
}

.voice_module {
  background-color: #fff;
  border: solid 0.1rem #ccc;
  border-radius: 0.8rem;
  padding: 1.6rem;
}
.voice_module dt {
  padding-left: 1.2rem;
  border-left: solid 0.3rem #8ACFD1;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
}
.voice_module .voice_module_body {
  margin-top: 1.2rem;
  line-height: 1.8;
}
@media screen and (min-width: 1024px) {
  .voice_module .voice_module_body {
    font-size: 1.4rem;
  }
}

/* コンバージョン直前 */
.arrow_sec {
  text-align: center;
  padding: 0 0 2.4rem;
}
@media screen and (min-width: 768px) {
  .arrow_sec {
    padding: 1.2rem 0 3.6rem;
  }
}
@media screen and (min-width: 1024px) {
  .arrow_sec {
    padding: 1.6rem 0 4.8rem;
  }
}
@media screen and (min-width: 1280px) {
  .arrow_sec {
    padding: 2rem 0 6rem;
  }
}
.arrow_sec h3 {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .arrow_sec h3 {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .arrow_sec h3 {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1280px) {
  .arrow_sec h3 {
    font-size: 3.2rem;
  }
}
.arrow_sec::before, .arrow_sec::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
}
.arrow_sec::before {
  left: 0;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}
.arrow_sec::after {
  right: 0;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.white_arrow_sec {
  background-color: #fff;
}
.white_arrow_sec::before, .white_arrow_sec::after {
  background-color: #FAF8F4;
}

.beige_arrow_sec {
  background-color: #FAF8F4;
}
.beige_arrow_sec::before, .beige_arrow_sec::after {
  background-color: #fff;
}

/* ページタイトル */
.page_ttl {
  background-image: url(/asset/img/common/page_ttl_bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.page_ttl .page_ttl_inner {
  width: 108rem;
  max-width: 94%;
  height: 24rem;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page_ttl .page_ttl_inner {
    height: 30rem;
  }
}
@media screen and (min-width: 1024px) {
  .page_ttl .page_ttl_inner {
    height: 40rem;
  }
}
@media screen and (min-width: 1280px) {
  .page_ttl .page_ttl_inner {
    height: 48rem;
  }
}
.page_ttl .page_ttl_inner h1 {
  position: absolute;
  left: 0;
  bottom: 20%;
  rotate: -6deg;
  color: #fff;
}
.page_ttl .page_ttl_inner h1 span {
  display: block;
}
.page_ttl .page_ttl_inner h1 .copy_en {
  font-size: 4rem;
}
@media screen and (min-width: 768px) {
  .page_ttl .page_ttl_inner h1 .copy_en {
    font-size: 5.6rem;
  }
}
@media screen and (min-width: 1024px) {
  .page_ttl .page_ttl_inner h1 .copy_en {
    font-size: 6.4rem;
  }
}
@media screen and (min-width: 1280px) {
  .page_ttl .page_ttl_inner h1 .copy_en {
    font-size: 8rem;
  }
}
.page_ttl .page_ttl_inner h1 .copy_jp {
  font-size: 2.4rem;
}
@media screen and (min-width: 768px) {
  .page_ttl .page_ttl_inner h1 .copy_jp {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 1024px) {
  .page_ttl .page_ttl_inner h1 .copy_jp {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 1280px) {
  .page_ttl .page_ttl_inner h1 .copy_jp {
    font-size: 4rem;
  }
}
.page_ttl::before {
  content: "";
  display: block;
  width: 80%;
  height: 60%;
  position: absolute;
  background-color: #8ACFD1;
  opacity: 0.9;
  bottom: 10%;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  -webkit-transform-origin: bottom left;
      -ms-transform-origin: bottom left;
          transform-origin: bottom left;
  rotate: -6deg;
}
@media screen and (min-width: 768px) {
  .page_ttl::before {
    width: 70%;
  }
}
@media screen and (min-width: 1280px) {
  .page_ttl::before {
    height: 68%;
  }
}

/* ページ概要 */
.page_outline {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .page_outline {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1024px) {
  .page_outline {
    font-size: 2rem;
  }
}

/* コンテンツタイトル h3 */
.content_ttl_h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 4rem;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .content_ttl_h3 {
    font-size: 2.4rem;
    margin-bottom: 5.2rem;
  }
}
@media screen and (min-width: 1280px) {
  .content_ttl_h3 {
    font-size: 2.8rem;
  }
}
.content_ttl_h3 span {
  position: relative;
}
.content_ttl_h3 .sub {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
}
@media screen and (min-width: 1024px) {
  .content_ttl_h3 .sub {
    font-size: 1.4rem;
  }
}
.content_ttl_h3::before {
  content: "";
  display: block;
  width: 16rem;
  height: 10rem;
  background-color: #EDE8D7;
  position: absolute;
  top: -1rem;
  left: 0;
  clip-path: polygon(0 0, 100% 10%, 20% 100%);
}

/* 50:50 グリッド */
@media screen and (min-width: 768px) {
  .basic_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.basic_row .basic_row_img {
  margin-bottom: 2.4rem;
}
@media screen and (min-width: 768px) {
  .basic_row .basic_row_img {
    margin-bottom: 0;
    width: 48%;
  }
}
.basic_row .basic_row_img img {
  display: block;
}
@media screen and (min-width: 768px) {
  .basic_row .basic_row_txt {
    width: 48%;
  }
}

@media screen and (min-width: 768px) {
  .basic_row_rr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

/* アニメーション */
/*# sourceMappingURL=common.css.map */