@charset "UTF-8";
/* CSS Document */

/* スマホファーストで記述 */

/*--------------------
01.全体
02.header
03.FV
04.ABOUT
05.COURSE
06.REASON
07.STYLE
08.FUNCTION
09.QUESTION
10.footer
--------------------*/

/*--------------------
01.全体
--------------------*/
/* サイト全体で使用する変数の指定 */
:root {
  /* root font-size */
  font-size: 62.5%;
  /* color */
  --color-text: #000;
  --color-main: #FF2000;
  --color-sub: #229AF5;
  --color-bg-main: #F2F2F2;
  --color-bg-gradient: linear-gradient(90deg, #F00 0%, #FF8000 100%);
  /* text */
  --textsize-base: 1.4rem;
  --lineheight-base: 1.6;
  --lineheight-heading: 1.5;
  /* border-radius */
  --border-radius: 3px;
}

@media all and (min-width: 768px) {
  :root {
    --textsize-base: 1.6rem;
    --border-radius: 6px;
  }
}

html {
  scroll-behavior: smooth;
}

.pc {
  display: none;
}

.sp {
  display: block;
}

.wrapper {
  width: 100%;
  overflow: clip;
  font-family: YakuHanJP, 'Noto Sans JP', "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 400;
  font-size: var(--textsize-base);
  color: var(--color-text);
  background-color: #fff;
  position: relative;
  overflow-wrap: break-word;
  text-align: center;
}

section {
  scroll-margin-top: 0; /* ジャンプ先がheaderに隠れないための余白 */
}

.contents-inner {
  max-width: 114rem;
  width: 86.66%;
  margin: 0 auto;
  padding: 8rem 0;
}

.contents-inner.min-width {
  max-width: 100rem;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

/* buttonスタイルリセット */
button {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none
}

@media all and (min-width: 1024px) {
  .contents-inner {
    width: 85%;
  }
}

@media all and (min-width: 768px) {

  .pc {
    display: block;
  }

  .sp {
    display: none;
  }
}


p {
  font-size: var(--textsize-base);
  line-height: var(--lineheight-base);
  text-align: left;
}

.en,
[class$="-en"] {
  font-family: "Barlow", "Noto Sans JP", sans-serif;
  font-weight: 400;
  overflow-wrap: normal;
}

.num,
[class$="-num"] {
  font-family: "Barlow", "Noto Sans JP", sans-serif;
  font-weight: 400;
  overflow-wrap: normal;
}

h1 {
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

h2 {
  font-size: 3.3rem;
  font-weight: 700;
  line-height: var(--lineheight-heading);
  margin-bottom: 2.5rem;
}

/* h2装飾 */
.heading-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--red, #FF2000);
  font-family: Barlow;
  font-weight: 700;
  line-height: 1; /* 30px */
  letter-spacing: 1.8px;
  margin-bottom: 3rem;
}

.heading-icon::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background: url("../images/icon_title_red.svg") no-repeat center / contain;
}

.heading-deco {
  display: inline-block;
  position: relative;
  color: var(--color-main);
}

.heading-deco::before {
  content: "";
  bottom: -50%;
  left: 50%;
  width: 110%;
  height: 100%;
  display: block;
  position: absolute;
  transform: translateX(-50%);
  pointer-events: none;
}

.about .heading-deco { padding: 0 15px;}
.about .heading-deco::before{
  background: url("../images/title_deco_about01.svg") no-repeat center / 100% 100%;
  bottom: -31%;
  width: 120%;
  height: 145%;
}

.course h2,
.course .heading-icon,
.course .heading-deco {
  color: #fff;
}
.course .heading-icon::before {
  background: url("../images/icon_title_white.svg") no-repeat center / contain;
}
.course .heading-deco::before{
  background: url("../images/title_deco_course01.svg") no-repeat center / 100% 100%;
  bottom: -70%;
}

.reason .heading-deco { padding: 0;}
.reason .heading-deco::before{
  background: url("../images/title_deco_reason01.svg") no-repeat center / 100% 100%;
}

.style .heading-deco::before{
  background: url("../images/title_deco_style01.svg") no-repeat center / 100% 100%;
}

.function .heading-deco:nth-of-type(1):before{
  background: url("../images/title_deco_function01.svg") no-repeat center / 100% 100%;
}

.function .heading-deco:nth-of-type(2):before{
  background: url("../images/title_deco_function02.svg") no-repeat center / 100% 100%;
  width: 105%;
}

.faq .heading-deco::before{
  background: url("../images/title_deco_faq01.svg") no-repeat center / 100% 100%;
  bottom: -53%;
}
/* h2装飾ここまで */


h3 {
  font-weight: 700;
  line-height: var(--lineheight-heading);
}

h4 {
  font-weight: 700;
  line-height: 1.6;
}

strong {
  font-weight: 700;
}

.text-small {
  font-size: 1.4rem;
}

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

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

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

.color-main {
  color: var(--color-main)
}

.lead {
  font-size: 1.6rem;
  text-align: center;
}

.note {
  font-size: 1.1rem;
}

a:hover {opacity: .7;}


/* .flag-btn */
.flag-btn-wrapper {
  position: relative;
  z-index: 1;
  display: inline-block;
}

.flag-btn {
  display: grid;
  width: 100%;
  place-items: center;
  width: 28.4rem;
  height: 6.2rem;
  background: linear-gradient(
    90deg,
    #FF8000 0%,
    #FF0500 42.19%,
    #FF0500 79.33%,
    #FF8000 100%
  );
  clip-path: polygon(
    12.17% 0,
    100% 0,
    100% 65.97%,
    89.82% 100%,
    0 100%,
    0 41.17%
  );
  background-size: 100% 100%;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.flag-btn-shadow {
  content: "";
  position: absolute;
  display: grid; 
  place-items: center;
  width: 28.4rem;
  height: 6.2rem;
  background: linear-gradient(
      90deg,
      #FF0000,
      #D40000
  );
  clip-path: polygon(
    12.17% 0,
    100% 0,
    100% 65.97%,
    89.82% 100%,
    0 100%,
    0 41.17%
  );
  background-size: 100% 100%;
  transition: opacity 0.3s ease;
  z-index: -1;
  bottom: -4px;
  left: -4px;
}

.flag-btn::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 6%;
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(135deg);
  pointer-events: none
}

.flag-btn__label {
  padding: 8px 20px;
  color: #fff;
  font-weight: 700;
}
/* .flag-btnここまで */


/* .card */
.card-container{
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
}

.card-item{
  border-radius: var(--border-radius);
  background: #FFF;
}

.card-heading{
  color: #fff;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  background: linear-gradient(90deg, #F00 0%, #FF8000 100%);
  padding: .8rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}

.card-no {
  font-size:1.2rem;
}

.card-no .en{
  font-size:1.4rem;
}

.card-img {
  margin: 2rem 2rem 1rem;
}

.card-text{
  margin: 0 2rem 2rem;
}
/* .cardここまで */


@media all and (min-width: 768px) {
  section {
  scroll-margin-top: 0; /* ジャンプ先がheaderに隠れないための余白 */
  }

  .contents-inner {
    padding: 14rem 0;
  }

  h1 {
    font-size: 3.2rem;
  }
  
  h2 {
    font-size: 5.0rem;
    margin-bottom: 3.2rem;
  }
  
  .heading-icon {
    gap: 8px;
    font-size: 2.0rem;
    margin-bottom: 3rem;
  }
  
  .lead {
    font-size: 2.0rem;
  }

  .note {
    font-size: 1.4rem;
  }

  /* .flag-btn */
  .flag-btn {
    font-size: 1.6rem;
    width: 36.8rem;
    height: 6.75rem;
    clip-path: polygon(
      11.5% 0,
      100% 0,
      100% 61.03%,
      90.33% 99.27%,
      0 99.27%,
      0 46.35%
    );
  }

  .flag-btn-shadow {
    width: 36.8rem;
    height: 6.75rem;
    clip-path: polygon(
      11.5% 0,
      100% 0,
      100% 61.03%,
      90.33% 99.27%,
      0 99.27%,
      0 46.35%
    );
    bottom: -4px;
    left: -4px;
  }

  
  /* .card */
  .card-container{
    align-items: stretch;
    grid-template-rows: auto auto 1fr;
    gap:0 3rem;
  }
  
  .card-container._col2{
    grid-template-columns: 1fr 1fr;
    margin-top: 3rem;
  }
  
  .card-container._col3{
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 5rem;
  }

  .card-item{
    display: grid;
    grid-row: span 3;
    grid-template-rows: subgrid;
  }

  .card-heading{
    padding: 1.6rem;
    font-size: min(2.3vw,2.4rem);
    line-height: 1.5;
  }

  .card-no {
    font-size:min(2vw,2rem);
  }

  .card-no .en{
    font-size:min(2.6vw,2.6rem);
  }

  .card-img {
    margin: 3rem 2rem 2rem;
  }

}

/*--------------------
02.header
--------------------*/
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .6);
  opacity: 0;
  visibility: hidden;
  transition: .4s ease;
  z-index: 10;
}

body.nav-open::before {
  opacity: 1;
  visibility: visible;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.header-logo a{
  width: 9.8rem;
  height: 5.7rem;
  display: grid; 
  place-items: center;
  background: #fff;
}

.header-logo a img {
  width: 6.7rem;
}

.btn-menu {
  display: block;
  background: var(--color-main);
  border: 2px solid #fff;
  position: fixed;
  top: 0;
  right: 0;
  width: 4rem;
  height: 4rem;
  margin-top: 1rem;
  margin-right: 1rem;
  padding: 1rem 0;
  border-radius: var(--border-radius);
  z-index: 99;
  transition: .4s ease;
}

.btn-menu .menu-line {
  display: block;
  width: 2rem;
  height: 2px;
  background: #fff;
  transition: cubic-bezier(.71, .12, .18, .81) .3s;
  position: absolute;
  left:50%;
  transform: translateX(-50%);
}

.btn-menu .menu-line:first-of-type {
  top: 25%;
}

.btn-menu .menu-line:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%,-50%);
}

.btn-menu .menu-line:last-of-type {
  bottom: 25%;
}

.btn-menu.open .menu-line:first-of-type {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.btn-menu.open .menu-line:last-of-type {
  bottom: auto;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.btn-menu.open .menu-line:nth-last-of-type(2) {
  opacity: 0;
}

nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 273px;
  height: 100%;
  background: #fff;
  padding: 56.5px 28px 28px;
  transform: translateX(100%);
  transition: transform 0.3s;
  z-index: 10;
  max-width: 30rem;
}

nav.show {
  transform: translateX(0);
}

nav ul {
  margin-bottom: 2.75rem;
}

nav li a {
  display: block;
  font-weight: 700;
  padding: 12.5px 0;
  text-align: left;
}

.nav-btn {
  display: grid; 
  place-items: center;
  width: 220px;
  height: 64px;
  background: linear-gradient(
    90deg,
    #FF8000 0%,
    #FF0500 42.19%,
    #FF0500 79.33%,
    #FF8000 100%
  );
  clip-path: polygon(
    15.71% 0%,
    100% 0%,
    100% 65.97%,
    86.86% 100%,
    0% 100%,
    0% 41.17%
  );
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transition: opacity 0.3s ease;
}

.nav-btn__label {
  padding: 8px 20px;
  color: #fff;
  font-weight: 700;
}

.nav-btn__label .sp {
  display: inline;
}

@media (min-width: 768px) {
  body::before {
		display: none;
	}

  header {
    height: min(9.2vw,92px);
    align-items: center;
    background: #fff;
    padding: 3rem
  }

  .header-logo a{
    width: auto;
    height: auto;
    display: grid; 
    place-items: center;
    background: none;
  }

  .header-logo a img {
    width: 8.5rem;
  }

  .btn-menu {
    display: none;
  }

  nav {
    position: static;
    width: auto;
    height: auto;
    background: none;
    padding: 0;
    transform: none;
    display: flex;
    gap: min(3.2vw, 32px);
		max-width: none;
		padding: 0;
		overflow: visible;
		z-index: auto;
    align-items: center;
  }

  nav a {
    padding: 0;
    border-bottom: none;
  }

  nav ul {
		display: flex;
    margin-bottom: 0;
	}

  nav li a {
    font-size: min(1.4vw,1.4rem);
  }

  header nav ul li + li {
    margin-left: min(3vw,3rem);
  }

  .nav-btn {
    width: min(10.8vw,108px);
    height: min(4.4vw,44px);
    background: linear-gradient(
      to right,
      #FF0500 0%,
      #FF0500 60%,
      #FF8000 100%
    );
    clip-path: polygon(
      0 30.4%,
      14.7% 0,
      100% 0,
      100% 69.6%,
      85.9% 100%,
      0 100%
    );
    font-size: min(1.4vw,1.4rem);
  }

  .nav-btn__label .sp{
    display: none;
  }

}


/*--------------------
03.FV
--------------------*/

.fv {
  width: 100%;
}

.fv_main {
  background-image:
  url("../images/img_fv_sp.webp"),
  radial-gradient(127.08% 150.47% at 50% 90.42%, #FA0 0%, #FF8000 24.13%, #F00 100%);
  background-position:bottom center,bottom center;
  background-size:contain,contain;
  background-repeat:no-repeat,no-repeat;
  padding-top: 16.6vw;
  padding-bottom: 78vw;
  }

.fv_content {
  width: 91.3vw;
  height: 60vw;
  margin: 0 auto;
  background-image:url("../images/fukidashi_fv_sp.svg");
  background-position:center;
  background-size:contain;
  background-repeat:no-repeat;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.fv_lead {
  background: linear-gradient(90deg, #F00 0.12%, #FF8000 99.87%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 5vw;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
} 

.fv_logo {
  width: 70%;
  margin: 0 auto;
}

.fv .flag-btn-area{
  background: linear-gradient(
    270deg,
    rgba(255, 0, 0, 0.11) 0%,
    rgba(255, 128, 0, 0.11) 100%
  );
  padding:2.5rem 0;
}


@media (min-width: 768px) {

  .fv_main {
    background-image:
    url("../images/img_fv_pc.webp"),
    radial-gradient(
      121.09% 110.18% at 53.74% 100%,
      rgba(255, 170, 0, 0.9) 0%,
      rgba(255, 128, 0, 0.9) 24.13%,
      rgba(255, 0, 0, 0.9) 100%
    );
    background-position:center right,bottom center;
    background-size:auto 100%,contain;
    padding-top: calc(92px + 3.2vw);
    padding-bottom: 3vw;
    }

  .fv_content {
    width: 38.9vw;
    height: 27.8vw;
    margin: 0 auto;
    background-image:url("../images/fukidashi_fv_pc.svg");
    gap: 1rem;
    margin-left: 5vw;
  }

  .fv_lead {
    font-size: 2vw;
  } 

  .fv_logo {
    width: 77%;
  }

  .fv .flag-btn-area{
    padding:2.5rem 0;
  }

  .fv .flag-btn {
    font-size: 1.6rem;
    width: 46.8rem;
    height: 6rem;
    clip-path: polygon(
      4.56% 0,
      100% 0,
      100% 64.17%,
      95.39% 99.18%,
      0 99.18%,
      0 35.86%
    );
  }

  .fv .flag-btn-shadow {
    width: 46.8rem;
    height: 6rem;
    clip-path: polygon(
      4.56% 0,
      100% 0,
      100% 64.17%,
      95.39% 99.18%,
      0 99.18%,
      0 35.86%
    );
    bottom: -4px;
    left: -4px;
  }
}

/*--------------------
04.ABOUT
--------------------*/

/* .detail */
.detail {
  margin-top: 5rem;
  padding: 5rem 0;
  color: #fff;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 0, 0, 0.9) 0%,
    rgba(255, 128, 0, 0.9) 100%
  );
  clip-path: polygon(
    0% 10.08%,
    14.62% 0%,
    100% 0%,
    100% 89.82%,
    86.08% 100%,
    0% 100%
  );
  background-size: 100% 100%;
}

.detail h3{
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.6;
}

.detail h3 span{
  font-size: 1.5rem;
}

.detail h3 strong {
  display: inline-block;
  position: relative;
}

.detail h3 strong::before {
  content: "";
  bottom: -70%;
  left: 50%;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  transform: translateX(-50%);
  pointer-events: none;
  background: url("../images/title_deco_about02.svg") no-repeat center / 100% 100%;
}

.detail-balloon {
  width: 90%;
  max-width: 500px;
  margin: 2rem auto 1rem;
}


/* .comment */
.comment {
  margin-top: 5rem;
}

.comment h3{
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center
}

.comment h3 strong{
  font-size: 2.0rem;
  color: var(--color-main)
}

.comment h3::before,
.comment h3::after {
  content: "";
  display: block;
  width: 3rem;
  height: 5rem;
  flex-shrink: 0;
  background: no-repeat center / contain;
}

.comment h3::before {
  background-image: url("../images/title_deco_about03.svg");
}

.comment h3::after {
  background-image: url("../images/title_deco_about04.svg");
}

.comment h3 span {
  padding:0 .7rem;
}

.comment picture {
  margin-inline: auto;
  max-width: 500px;
}



@media (min-width: 768px) {
  .about {
    background-image:url("../images/bg_about_pc.svg");
    background-position:top center;
    background-size:cover;
    background-repeat:no-repeat;
  }

  /* .detail */
  .detail {
    margin-top: 5rem;
    padding: 6rem 0;
    clip-path: polygon(
      0 14.2%,
      8.3% 0,
      100% 0,
      100% 85.6%,
      92% 100%,
      0 100%
    );
  }

  .detail h3{
    font-size: 3rem;
  }

  .detail h3 span{
    font-size: 1.8rem;
  }

  .detail-balloon {
    width: 70%;
    max-width: 706px;
    margin: 3rem auto 2rem;
  }

  /* .comment */
  .comment {
    margin-top: 10rem;
  }

  .comment h3{
    font-size: 1.8rem;
    margin-bottom: 5rem;
  }

  .comment h3 strong{
    font-size: 2.6rem;
  }

  .comment picture {
    max-width: 100%;
  }
}


/*--------------------
05.COURSE
--------------------*/

.course{
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 0, 0, 0.9) 0.12%,
    rgba(255, 128, 0, 0.9) 99.85%
  );
  clip-path: polygon(
    0% 5.04%,
    12.67% 0%,
    100% 0%,
    100% 94.96%,
    87.93% 100%,
    0% 100%
  );
  background-size: 100% 100%;
}

.course .contents-inner > p,
.course .note {
  color: #FFF;
}
.course .lead {
  margin-top: 5rem;
}

.course-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 1.1rem;
  margin-top: 2rem;
}

.course-list-item{
  background: #fff;
  border-radius: var(--border-radius);
}

.course-list-inner {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 2.3rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .4rem;
}

.course-list-inner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #999;
  border-right: 2px solid #999;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}
.course-list-month {
  display: inline-block;
  background: #999;
  color: #fff;
  font-size: 1.3rem;
  padding: .1rem 0;
  border-radius: 2px;
  text-align: center;
  min-width: 10rem;
}

.course-list-title {
  font-weight: 700;
  line-height: 1.4;
  font-size: 1.6rem;
  text-align: center;
  color: #666;
}

a .course-list-inner::after {
  border-top: 2px solid var(--color-main);
  border-right: 2px solid var(--color-main);
}

a .course-list-month {
  background: var(--color-sub);
}

a .course-list-title {
  color: #000;
}

.course-list + .note {
  margin-top: 1rem;
}


/* .voice */
.voice .contents-inner {
  padding-bottom: 0;
}

.voice-box {
  padding: 5rem 0;
  border-radius: var(--border-radius);
  background: linear-gradient(90deg, rgba(255, 0, 0, 0.12) 58.15%, rgba(255, 170, 0, 0.12) 89.89%);
}

.voice h3 {
  color: var(--color-main);
  font-size: 2.2rem;
  line-height: 1.5;
}

.voice .lead {
  margin: 2rem 0 2.5rem;
}

.voice .lead .heading-deco {
  color: var(--color-main);
  font-weight: 700;
  display: inline-block;
  position: relative;
}

.voice .lead .heading-deco::before {
  content: "";
  bottom: -50%;
  left: 50%;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  transform: translateX(-50%);
  pointer-events: none;
  background: url("../images/title_deco_voice01.svg") no-repeat center / 100% 100%;
}


/* course02 */
.btn-request {
  margin: 1.5rem auto 0;
  width:75vw;
  max-width: 28.8rem;
}

.btn-request a{
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 1.7rem 0;
  background: var(--color-sub);
  border: 2px solid #fff;
  border-radius: var(--border-radius);
  color: #FFF;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
}

.btn-request a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

@media (min-width: 768px) {
  .course{
    clip-path: polygon(
        0 12.2%,
        8.33% 0,
        100% 0,
        100% 87.8%,
        92.06% 100%,
        0 100%
    );
  }

  .course .lead {
    margin-top: 6rem;
  }

  .course-list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1.8rem;
    margin-top: 3rem;
  }

  .course-list-inner{
    padding: min(2.7vw,2.7rem);
    gap: 1rem;
  }

  .course-list-inner::after {
    width: 14px;
    height: 14px;
  }

  .course-list-month {
    font-size: min(1.4vw,1.4rem);
    padding: .4rem 0;
    border-radius: 4px;
    min-width: 12rem;
  }

  .course-list-title {
    font-size: min(1.6vw,1.6rem);
  }


  /* .voice */
  .voice-box {
    padding: 0;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }

  .voice-box picture {
    width: 56.3%;
    margin-left: 4.4%;
  }

  .voice-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
  }

  .voice h3 {
    font-size: min(3.2vw,3.2rem);
  }

  .voice .lead {
    margin: 3rem 0 0;
    font-size: min(2vw,2.2rem);
  }

  /* course02 */
  .btn-request {
    margin-top: 3rem;
    width:35.4rem;
    max-width: none;
  }

  .btn-request a{
    padding: 3rem 0;
    border: 3px solid #fff;
    font-size: 2rem;
  }

  .btn-request a::after {
    right: 6%;
    width: 15px;
    height: 15px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
  }

}

/*--------------------
06.REASON
--------------------*/
.reason {
    background-image:url("../images/bg_reason01_sp.svg"),url("../images/bg_reason02_sp.svg");
    background-position:center top 26rem,center bottom 4rem;
    background-size:contain,contain;
    background-repeat:no-repeat,no-repeat;
}

.reason h2 {
  font-size: 3.2rem;
}

.reason-list{
  margin-top: 5rem;
}

.reason-list-item{
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.reason-list-heading{
  display: flex;
  flex-direction: column;
}

.reason-list-no{
  display: flex;
  flex-direction: column;
  color: var(--color-main)
}
.reason-list-no small{
  font-size: 1rem;
  letter-spacing: 1.2px;
  line-height: 1;
  
}
.reason-list-no strong{
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
  margin-top: -5px;
}

.reason-list-img{
  border-radius: var(--border-radius);
}

.reason-list-title{
  margin-top: 1.2rem;
  font-size: 1.6rem;
}

.reason-list-red{
  color: var(--color-main);
  font-size: 2.2rem;
  line-height: 1.5;
}

.reason-list-text{
  font-size: 1.4rem;
}

.live-box {
  background: #F3F3F3;
  border-radius: var(--border-radius);
  padding: 3rem 2.5rem;
  margin-top: 2rem;
}

.live-box h4 {
  font-size: 1.6rem;
}

.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 8rem auto 0;
}

.youtube iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 768px) {
  .reason {
    background-image:url("../images/bg_reason_pc.svg");
    background-position:top center;
    background-size:cover;
    background-repeat:no-repeat;
    padding-bottom: 0;
  }

  .reason h2 {
    font-size: 5rem;
  }

  .reason-list{
    margin-top: 13rem;
  }

  .reason-list-item{
    margin-top: 10rem;
    display: grid;
    grid-template-columns: 47.8% 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas:
        "image heading"
        "image text";
    gap: 2.4rem 4rem;
  }

  .reason-list-item.is-reverse{
    grid-template-areas:
        "heading image"
        "text image";
  }

  .reason-list-heading{
    grid-area: heading;
    flex-direction: row;
    align-items: center;
  }

  .reason-list-no{

  }
  .reason-list-no small{
    font-size: min(1.4vw,1.4rem);
  }

  .reason-list-no strong{
    font-size: min(6.6vw,6.6rem);
  }

  .reason-list-title{
    margin-top: 0;
    margin-left: 2rem;
    font-size: min(2.0vw,2.2rem);
    text-align: left;
  }

  .reason-list-red{
    color: var(--color-main);
    font-size: min(3.0vw,3.0rem);
    line-height: 1.5;
  }

  .reason-list-img{
    grid-area: image;
  }

  .reason-list-text{
    grid-area: text;
    font-size: 1.6rem;
  }

  .live-box {
    margin-top: 5rem;
    padding: 6rem 5rem;
  }
  
  .live-box h4 {
    font-size: 2.2rem;
  }

  .youtube {
    width: 70%;
    max-width: 700px;
    margin-top: 14rem;
  }
}


/*--------------------
07.STYLE
--------------------*/

.style {
  background: #F2F2F2;
}

.comparison {
    display: grid;
    grid-template-columns: auto auto auto;
    align-items: end;
    max-width: 900px;
    margin: 3.5rem auto 2.5rem;
}

.comparison-item {}

/* 本体 */
.comparison-body {
    background: #fff;
}

/* 1行 */
.comparison-row {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-row:not(:last-of-type) {
    border-bottom: 1px solid #ccc;
}

.comparison-row:nth-of-type(1) {
  height: 6.2rem;
}

.comparison-row:nth-of-type(2),
.comparison-row:nth-of-type(3) {
  height: 8rem;
}

/* 左 */
.comparison-item-left {
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    overflow: hidden;
    font-size: 1.3rem;
    line-height: 1.4;
  }
  
.comparison-item-left .comparison-body{
  background:#F0EDED;
}

/* 赤 */
.comparison-item-red {
    border: 3px solid var(--color-main);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    overflow: hidden;
    z-index: 2;
    transform: translateY(2px);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
}

.comparison-item-red .comparison-row:not(:last-of-type) {
    border-color: var(--color-main);
}

/* 青 */
.comparison-item-blue {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  overflow: hidden;
  font-size: 1.4rem;
  line-height: 1.4;
}

.comparison-item-blue .comparison-body {
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-radius: 0 0 var(--border-radius) 0;
}

/* ヘッダー */
.comparison-header {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 赤ヘッダー */
.comparison-item-red .comparison-header {
    background: var(--color-main);
    color: #fff;
    height: 4rem;
    font-weight: 700;
    font-size: 1.8rem;
}

/* 青ヘッダー */
.comparison-item-blue .comparison-header {
    background: var(--color-sub);
    color: #fff;
    height: 3.7rem;
    font-size: 1.5rem;
}

.style .flag-btn-wrapper {
  margin: 3.5rem auto;
}

.text-link {
  color: var(--color-sub);
  font-weight: 700;
  line-height: 2;
  padding-right: 20px;
  position: relative;
  display: inline-block;
  margin-top: .5rem;
}

.text-link::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1px;
    height: 1px;
    background: var(--color-sub)
}

.text-link::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 5%;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--color-sub);
  border-right: 2px solid var(--color-sub);
  transform: translateY(-40%) rotate(45deg);
  pointer-events: none
}

.text-link:hover::before {
  background: none;
}

.text-link:hover, .text-link:link {
  color: var(--color-sub);
}

@media (min-width: 768px) {
  .style p {
    text-align: center;
  }

  .comparison {
    margin: 9.2rem auto 7rem;
    max-width: 100%;
  }

  .comparison-row:not(:last-of-type),
  .comparison-item-left,
  .comparison-item-blue .comparison-body {
    border-width: 2px;
  }

  /* 左 */
  .comparison-item-left {
      font-size: 1.8rem;
    }

  /* 赤 */
  .comparison-item-red {
      border: 4px solid var(--color-main);
      font-size: 2rem;
      transform: translateY(2px);
  }

  /* 青 */
  .comparison-item-blue {
    font-size: 2rem;
  }

  /* 赤ヘッダー */
  .comparison-item-red .comparison-header {
      background: var(--color-main);
      color: #fff;
      height: 9rem;
      font-size: 3rem;
  }

  /* 青ヘッダー */
  .comparison-item-blue .comparison-header {
      background: var(--color-sub);
      color: #fff;
      height: 8.2rem;
      font-size: 3rem;
  }

  .style .flag-btn-wrapper {
    margin: 2.4rem auto 6rem;
  }
}


/*--------------------
08.FUNCTION
--------------------*/
.function {
    background-image:url("../images/bg_function01_sp.svg"),url("../images/bg_function02_sp.svg");
    background-position:center top,center bottom;
    background-size:contain,contain;
    background-repeat:no-repeat,no-repeat;
}

.function-box {
  background: #F2EFEF;
  border-radius: var(--border-radius);
  padding: 2.5rem;
  margin-top: 3.5rem;
}

.function h3 {
  font-size: 1.8rem;
}

.function .card-text{
  font-size: 1.3rem;
}

@media (min-width: 768px) {
  .function {
    background-image:url("../images/bg_function_pc.svg");
    background-position:center bottom;
    background-size:cover;
    background-repeat:no-repeat;
    padding-bottom: 0;
  }

  .function-box {
    padding: 6rem 5rem;
    margin-top: 9rem;
  }
  
  .function h3 {
    font-size: 2.2rem;
  }
  
  .function .card-text{
    font-size: 1.6rem;
  }

}


/*--------------------
09.QUESTION
--------------------*/
.faq .contents-inner{
  padding-top: 0;
}

.faq_item {
    border: 1px solid #D9D9D9;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.faq_text {
  position: relative;
  padding-left: 3.8rem;
  text-align: left;
  line-height: 1.6;
  display: block;
}

/* Q */
.faq_question .faq_text {
  padding-right: 2.3rem;
  font-weight: 700;
}

.faq_question {
    width: 100%;
    padding: 1.5rem;
    border: 0;
    text-align: left;
    cursor: pointer;
    background: #FFEDED;
    position: relative;
}

.faq_question .faq_text::before{
  content: "";
  position: absolute;
  display: inline-block;
  width: 2.6rem;
  height: 2.5rem;
  background-image: url("../images/icon_faq_q.svg");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  left: 0;
}

.faq_question .toggle-switch {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  width: 10px;
  height: 10px;
  transform: translateY(-70%) rotate(45deg);
}

.faq_question .toggle-switch::after{
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transition: transform .3s;
  position: absolute;
}

.toggle-switch.active::after{
    transform: translateY(-30%) rotate(-180deg);
}

/* A */
.faq_answer {
    display: none;
    padding: 1.5rem;
    background: #fff;
}

.faq_item.is-open .faq_answer {
    display: flex;
}

.faq_answer .faq_text::before{
  content: "";
  position: absolute;
  display: inline-block;
  width: 2.6rem;
  height: 2.5rem;
  background-image: url("../images/icon_faq_a.svg");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  left: 0;
}

@media (min-width: 768px) {
  .faq_list {
    margin-top: 10rem;
  }

  .faq_item {
    border-radius: 6px;
    margin-bottom: 3rem;
  }

  .faq_text {
    padding-left: 5.3rem;
  }
  
  /* Q */
  .faq_question .faq_text {
    font-size: 1.8rem;
    padding-right: 3rem;
  }

  .faq_question {
      padding: 3rem;
  }

  .faq_question .faq_text::before{
    width: 3.7rem;
    height: 3.5rem;
  }

  .faq_question .toggle-switch {
    right: 3rem;
    width: 12px;
    height: 12px;
  }

  /* A */
  .faq_answer {
      padding: 3rem;
  }

  .faq_item.is-open .faq_answer {
      display: flex;
  }

  .faq_answer .faq_text::before{
    width: 3.7rem;
    height: 3.5rem;
  }

}



/*--------------------
10.footer
--------------------*/
footer .contents-inner {
  padding-top: 7rem;
  padding-bottom: 2rem;
}

.footer-logo{
  width: 18rem;
  margin: 0 auto;
}

.footer-list{
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-item{
}

.copyright{
  margin-top: 3.5rem;
  font-size: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  footer .contents-inner {
    padding-top: 12rem;
    padding-bottom: 8rem;
  }

  .footer-logo{
    width: 25rem;
  }

  .footer-list{
    display: flex;
    gap: 1rem;
    flex-direction: row;
    gap: 3rem;
    justify-content: center;
  }

  .footer-item{
    font-size: 1.8rem;
  }

  .copyright{
    margin-top: 4.4rem;
    font-size: 1.6rem;
  }
  
}
