@charset "UTF-8";
/*基本のレイアウト
==============================================*/
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
html {
  font-size: 62.5%;
  font-size: 1.6rem;
}

body {
  color: #111111;
  font-size: 16px;
  font-family: "Josefin Sans", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

svg {
  vertical-align: bottom;
}

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

a {
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/*===================================
 スライダーの指定だけならここから下だけでOK
===================================*/
/*==// スライダーのコンテナ //==*/
.slider {
  list-style: none;
  width: 100%; /* スライダーの幅を指定*/
}

/*==//  ここから矢印  //==*/
.slick-arrow {
  z-index: 100;
}

.slick-next {
  right: 25px;
} /*内側に右から10ピクセル移動*/
.slick-prev {
  left: 0;
} /*内側に左から10ピクセル移動*/
.slick-prev:before,
.slick-next:before {
  font-family: "Material Icons";
  content: "\e5ce";
  display: inline-block;
  font-size: 24px;
  color: #eb51c2;
  background-color: #fff;
  border-radius: 50%;
  padding: 0.4rem;
}

.slick-prev:before {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.slick-next:before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

/*===================================
アコーディオン
===================================*/
/*アコーディオン全体*/
.accordion-area {
  list-style: none;
  width: 96%;
  max-width: 900px;
  margin: 0 auto;
}
.accordion-area li {
  margin: 10px 0;
}
.accordion-area .box_wrap {
  border: 1px solid #cccccc;
}

/*アコーディオンタイトル*/
.accordion_title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  padding: 3% 3% 3% 50px;
  font-weight: normal;
  font-size: 1rem;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  /*アイコンの＋と×*/
}
.accordion_title::before, .accordion_title::after {
  position: absolute;
  width: 15px;
  height: 2px;
  background-color: #333333;
  content: "";
}
.accordion_title::before {
  top: 48%;
  left: 15px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.accordion_title::after {
  top: 48%;
  left: 15px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.accordion_title.accordion_close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.accordion_title.accordion_close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.accordion_box {
  display: none; /*はじめは非表示*/
  margin: 0 3% 3% 3%;
  padding: 3%;
  background: #f3f3f3;
}

/*-------------------------
共通
-------------------------*/
section {
  margin-bottom: 30px;
}

.section_inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 30px;
}

.bg_pink {
  background-color: #eb51c2;
}

.pink {
  color: #eb51c2;
}

.green {
  color: #00b21b;
}

.white {
  color: #fff;
}

.center {
  text-align: center;
}

.bold {
  font-weight: bold;
  font-weight: 600;
}

.jo {
  font-family: "Josefin Sans", sans-serif;
}
.jo__italic {
  font-style: italic;
}

.section_title {
  font-size: min(10.6vw, 64px);
}
.section_title__ja {
  display: block;
  font-size: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .section_title__ja {
    font-size: 14px;
    margin-bottom: 0;
  }
}

a:hover {
  opacity: 0.8;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.flex_re {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

/*-------------------------
header
-------------------------*/
.header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 90px;
  padding: 0 35px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .header {
    height: auto;
    padding: 10px 20px;
  }
}
.header .logo a {
  display: block;
  width: 180px;
}
@media screen and (max-width: 767px) {
  .header .logo a {
    width: 100px;
  }
}
.header.scroll {
  background-color: rgba(255, 255, 255, 0.619);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
.header.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn_small a {
  display: none;
  width: min(34vw, 300px);
  padding: 20px;
  border-radius: 50px;
  background-color: #eb51c2;
  font-size: min(11vw, 16px);
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .btn_small a {
    font-size: 12px;
    width: 50vw;
    padding: 12px;
  }
}
.btn_small.scroll a {
  display: block;
}

/*-------------------------
MV
-------------------------*/
.mv {
  position: relative;
  height: 680px;
}
@media screen and (max-width: 767px) {
  .mv {
    height: 410px;
  }
}
.mv__title_area {
  position: absolute;
  top: 40%;
  left: 0;
  padding-left: 160px;
}
@media screen and (max-width: 767px) {
  .mv__title_area {
    padding-left: 20px;
    top: 20%;
  }
}
.mv__title {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: min(11vw, 90px);
}
.mv__img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 70%;
  height: 680px;
  border-radius: 0 0 0 90px;
  background: url(../img/bg_mv.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .mv__img {
    height: 410px;
  }
}
.mv__sub_title {
  margin-bottom: 30px;
  font-size: 28px;
  font-size: min(3.4vw, 28px);
}

.btn a {
  display: block;
  width: min(58vw, 370px);
  padding: 30px;
  border-radius: 50px;
  background-color: #eb51c2;
  font-size: min(13vw, 20px);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .btn a {
    font-size: 13px;
    padding: 20px 10px;
  }
}

/*-------------------------
-------------------------*/
.bgextend {
  opacity: 0;
  position: relative;
  overflow: hidden; /*　はみ出た色要素を隠す　*/
  -webkit-animation-name: bgextendAnimeBase;
          animation-name: bgextendAnimeBase;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*中の要素*/
.bgappear {
  opacity: 0;
  -webkit-animation-name: bgextendAnimeSecond;
          animation-name: bgextendAnimeSecond;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*左から右*/
.bgLRextend::before {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #eb51c2; /*伸びる背景色の設定*/
  content: "";
  -webkit-animation-name: bgLRextendAnime;
          animation-name: bgLRextendAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes bgLRextendAnime {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  50% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
}

@keyframes bgLRextendAnime {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  50% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgLRextendTrigger {
  opacity: 0;
}

.mv__title_bg {
  background-color: #ffffff;
}

/*-------------------------
section01　intro
-------------------------*/
.intro__title {
  margin-top: -20px;
  font-size: min(15vw, 108px);
  font-style: italic;
}
@media screen and (max-width: 767px) {
  .intro__title {
    margin-top: -35px;
  }
}
.intro__sub_title {
  margin-bottom: 21px;
  font-size: min(4vw, 32px);
}
.intro__text {
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .intro__text {
    line-height: 1.7;
    text-align: left;
    padding: 0 20px;
    font-size: 15px;
  }
}

/*-------------------------
▼section02 about
-------------------------*/
.about {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}
.about__box {
  position: relative;
  margin-bottom: 110px;
}
@media screen and (max-width: 767px) {
  .about__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 10px;
  }
  .about__box:last-child {
    margin-top: 40px;
  }
}
.about__box_img {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .about__box_img {
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }
}
.about__box_text {
  width: 555px;
  padding: 60px;
  border-radius: 8px;
  background-color: #fff;
  -webkit-box-shadow: 10px 10px 20px 5px rgba(0, 0, 0, 0.19);
          box-shadow: 10px 10px 20px 5px rgba(0, 0, 0, 0.19);
  position: absolute;
  right: 20px;
  bottom: -20px;
}
@media screen and (max-width: 767px) {
  .about__box_text {
    width: 100%;
    position: unset;
    margin: -10px auto;
    padding: 30px;
  }
}
.about .box_sub_title {
  margin-bottom: 16px;
  font-size: 24px;
}
.about .box_title {
  margin-bottom: 16px;
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .about .box_title {
    font-size: 22px;
  }
}
.about .box_text {
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .about .box_text {
    line-height: 1.5;
  }
}

.flex_re .about__box_text {
  left: 20px;
}

/*-------------------------
trainer
-------------------------*/
.svg_wave__top {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
  margin-top: 40px;
}

.svg_wave__bottom {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  margin-bottom: 40px;
}

.trainer {
  margin-bottom: 0;
}

.trainer_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 2%;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .trainer_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}
.trainer_list__box {
  width: 32%;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .trainer_list__box {
    width: 100%;
    margin-bottom: 20px;
  }
}

.trainer_img img {
  border-radius: 10px 10px 0 0;
}

.trainer_text {
  padding: 20px;
  line-height: 1.6;
  font-size: 15px;
}

/*-------------------------
fade-in
-------------------------*/
@-webkit-keyframes fade-in {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@media screen and (max-width: 767px) {
  .tab_container {
    margin-top: 40px;
  }
}

/*-------------------------
price
-------------------------*/
.price_list {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .price_list {
    overflow-x: auto;
    gap: 4%;
  }
}

.price_list__box {
  background-color: #fff;
  width: 31%;
  border-radius: 10px;
  padding: 40px 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .price_list__box {
    min-width: 330px;
    margin: 40px 0px;
  }
}
.price_list__box p,
.price_list__box dt,
.price_list__box dd {
  text-align: center;
}
.price_list__box dl {
  padding: 20px;
  border-bottom: solid 1px #d8d8d8;
  line-height: 1.6;
}
.price_list__box dl:last-child {
  border: none;
  padding-bottom: 0;
}
.price_list__box:nth-child(2) {
  position: relative;
}
.price_list__box:nth-child(2)::before {
  content: "オススメ！";
  display: inline-block;
  text-align: center;
  color: #eb51c2;
  font-size: 20px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
  border: solid 1px #eb51c2;
  border-radius: 70px;
  width: 70%;
  line-height: 1.8;
  font-weight: bold;
}
.price_list__box_title {
  font-size: 26px;
}
.price_list .price {
  font-size: 48px;
  padding: 8px 0 4px;
}
.price_list .price_small {
  padding-bottom: 20px;
  border-bottom: solid 1px #d8d8d8;
}

section.price {
  margin-bottom: 0;
}

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

-------------------------*/
.accordion_title::before,
.accordion_title::after {
  display: none;
}

.accordion_box {
  background-color: #fff;
  padding: 0;
  margin: 0;
}
.accordion_box__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.accordion-area .box_wrap {
  border: none;
}
.accordion-area .box_wrap .jo {
  font-size: 26px;
  margin-right: 1rem;
  vertical-align: bottom;
}

.accordion_title {
  font-size: 15px;
  padding: 0 0 2%;
  width: 100%;
  position: relative;
  line-height: 25px;
}
.accordion_title::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: transparent;
  border-top: solid 2px #eb51c2;
  border-right: solid 2px #eb51c2;
  position: absolute;
  left: 100%;
  top: 0;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.accordion-area li {
  padding: 2% 1%;
  border-bottom: solid 1px #d8d8d8;
}

/* 下から */
.fadein {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.price_list_wrap {
  position: relative;
}

.price-list__scroll {
  display: none;
  border-radius: 10px;
  background-color: rgba(51, 51, 51, 0.462745098);
  color: #fff;
  width: 80px;
  height: 80px;
  font-size: 12px;
  text-align: center;
  position: absolute;
  top: 50%;
  right: -4%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .price-list__scroll {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.price-list__scroll .material-symbols-outlined {
  display: block;
  text-align: center;
  font-size: 40px;
}