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

メインビジュアル

-------------------------- */
.mainvisual {
  position: relative;
  text-align: center;
  width: 100vw;
  height: 100vh;
  background-image: url(../images/mainvisual.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.mainvisual .mainvisual_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -30%);
          transform: translate(-50%, -30%);
  width: 100vw;
}

.mainvisual .mainvisual_inner h1 {
  font-family: var(--font-en);
  font-size: 3.2rem;
  line-height: 1.2;
}

.mainvisual .mainvisual_inner p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

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

message

-------------------------- */
.message .two_column div p {
  line-height: 3;
}

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

youtube

-------------------------- */
.youtube {
  padding-top: 60px;
}
@media (min-width: 1024px) {
  .youtube {
    padding-top: 120px;
  }
}

.youtube_video {
  position: relative;
  width:100%; /* 横幅は100%にしておく(ここを変えたい場合は実装コード2の方法を確認してください) */
  height:0; /* 高さは0にしておく(padding-topで高さを指定するため) */
  padding-top: 56.25%; /* 高さを指定(16:9) */
}

.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

our_music

-------------------------- */
.our_music .bg_image .bg_image_inner {
  width: 90%;
  margin: 0 auto;
}

.our_music .bg_image .bg_image_inner .text {
  margin-top: 2rem;
}

.our_music .bg_image .bg_image_inner .text p {
  line-height: 3;
}

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

features

-------------------------- */
.features {
  background: -webkit-gradient(linear, left top, right bottom, from(var(--bg-dark_color)), to(var(--bg-light_color)));
  background: linear-gradient(to bottom right, var(--bg-dark_color), var(--bg-light_color));
}

.features ul li {
  width: 90%;
  margin: 0 auto;
}

.features ul li + li {
  margin-top: 3rem;
}

.features ul li .title_en {
  color: var(--gold-color);
  font-family: var(--font-en);
  font-size: 2rem;
}

.features ul li .number {
  position: relative;
  color: var(--gold-color);
  font-family: var(--font-en);
  font-size: 6rem;
  margin-top: -3rem;
}

.features ul li .number::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 1px;
  background-color: var(--gold-color);
  bottom: 2rem;
  left: 0;
}

.features ul li h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.features ul li .text {
  margin-bottom: 2rem;
  line-height: 2.5;
}

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

course

-------------------------- */
.course ul {
  text-align: center;
  width: 80%;
  margin: 0 auto;
}

.course ul li:nth-child(n+2) {
  margin-top: 2rem;
}

.course ul li h3 {
  font-size: 1.2rem;
}

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

lesson

-------------------------- */
.lesson ul li:nth-child(n+2) {
  margin-top: 2rem;
}

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

instructor

-------------------------- */
.instructor {
  background: -webkit-gradient(linear, left top, right bottom, from(var(--bg-dark_color)), to(var(--bg-light_color)));
  background: linear-gradient(to bottom right, var(--bg-dark_color), var(--bg-light_color));
}

.instructor .two_column .name_en {
  font-size: 1.8rem;
}

.instructor .two_column .name_ja {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

.instructor .two_column .text {
  font-size: 1rem;
}

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

price

-------------------------- */
.price .box {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 30px;
  background-color: var(--bg-dark_color);
}

.price .box + .box {
  margin-top: 2rem;
}

.price .box h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.price .box span {
  font-family: var(--font-en);
  font-size: 2.5rem;
}

.price .box_gold {
  background: -webkit-gradient(linear, left top, right bottom, from(#FED33F), to(#A58A2B));
  background: linear-gradient(to bottom right, #FED33F, #A58A2B);
}

.price .box_column {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
}

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

flow

-------------------------- */
.flow ul li + li {
  margin-top: 3rem;
}

.flow ul li div {
  margin-top: 1rem;
}

.flow ul li div .number {
  position: relative;
  color: var(--gold-color);
  font-family: var(--font-en);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.flow ul li div .number::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 1px;
  background-color: var(--gold-color);
  left: 0;
  bottom: 0;
}

.flow ul li div h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

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

faq

-------------------------- */
.faq .section_title {
  text-align: center;
}

.faq ul li {
  padding: 1rem;
  background-color: var(--bg-dark_color);
}

.faq ul li + li {
  margin-top: 2rem;
}

.faq ul li .faq_title_wrap {
  position: relative;
}

.faq ul li .faq_title_wrap::before {
  content: "Q";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  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;
  color: var(--gold-color);
  width: 35px;
  height: 35px;
  font-size: 1.2rem;
}

.faq ul li .faq_title_wrap .faq_title {
  position: relative;
  cursor: pointer;
  font-size: 1rem;
  font-weight: normal;
  padding: 1rem 2rem 1rem 45px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.faq ul li .faq_title_wrap .faq_title::before {
  content: '';
  position: absolute;
  top: 48%;
  right: 12px;
  width: 12px;
  height: 1px;
  background-color: var(--main-color);
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.faq ul li .faq_title_wrap .faq_title::after {
  content: '';
  position: absolute;
  top: 48%;
  right: 12px;
  width: 12px;
  height: 1px;
  background-color: var(--main-color);
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.faq ul li .faq_text_wrap {
  position: relative;
  display: none;
  padding: 1rem 0 1rem 45px;
}

.faq ul li .faq_text_wrap::before {
  content: "A";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  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;
  color: var(--gold-color);
  width: 35px;
  height: 35px;
  font-size: 1.2rem;
}

/* js_closeというクラスがついたら形状変化 */
.faq ul li .faq_title_wrap.js_close .faq_title::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
/*# sourceMappingURL=style.css.map */
