@charset "UTF-8";
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 400;
  font-feature-settings: "palt";
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

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

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

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

body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

img:not([alt]) {
  filter: blur(10px);
}

input,
button,
select,
textarea {
  font: inherit;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/*--------------------------------
  header
---------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 9999;
}
@media screen and (max-width: 375px) {
  .header {
    height: 60px;
  }
}

.header__inner {
  height: 80px;
  margin-left: 35px;
  margin-right: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 375px) {
  .header__inner {
    margin-right: 20px;
    margin-left: 20px;
    height: 60px;
  }
}

.header_logo img {
  width: clamp(6.044rem, 4.211rem + 7.82vw, 11.25rem);
  height: auto;
}
@media screen and (max-width: 375px) {
  .header_logo img {
    width: 96.7px;
  }
}

.header_btn {
  opacity: 0;
  width: 380px;
  background-color: #EB51C2;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  .header_btn {
    width: 184px;
  }
}

.header_contact-btn {
  padding: 20px;
  display: block;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .header_contact-btn {
    font-size: 13px;
    padding: 12px 15px;
    font-size: 12px;
  }
}

/*--------------------------------
  fv
---------------------------------*/
.fv {
  padding-top: 220px;
  padding-left: 12%;
  margin-left: 90px;
  margin-right: 90px;
  margin-inline: auto;
  position: relative;
  height: 680px;
}
@media screen and (max-width: 768px) {
  .fv {
    height: 550px;
  }
}
@media screen and (max-width: 375px) {
  .fv {
    padding-top: 120px;
    height: 410px;
    padding-left: 5%;
  }
}

.fv_ttl {
  margin-bottom: 20px;
}

.fv_en-ttl {
  font-family: "josefin-sans", sans-serif;
  font-style: italic;
  font-size: clamp(2.578rem, 1.742rem + 4.31vw, 5.625rem);
  line-height: 1;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.color {
  color: #EB51C2;
}

.fv_sub-ttl {
  margin-bottom: 30px;
}

.fv_ja-ttl {
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 600;
  font-size: clamp(0.821rem, 0.566rem + 1.32vw, 1.75rem);
  display: inline-block;
  position: relative;
  z-index: 1;
}

.fv_img {
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  background-image: url(../images/bg_mv.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 680px;
  width: 70%;
  border-radius: 0 0 0 90px;
}
@media screen and (max-width: 768px) {
  .fv_img {
    height: 550px;
  }
}
@media screen and (max-width: 375px) {
  .fv_img {
    height: 410px;
  }
}

.fv_bac-trigger {
  position: relative;
  display: inline-block;
}

.fv_bac-trigger::before {
  animation: bg 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  background: linear-gradient(to right, #fff 0%, #fff 100%);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
}

@keyframes bg {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}
.fv_btn {
  background-color: #EB51C2;
}

/*--------------------------------
  メインテキスト
---------------------------------*/
.menu {
  margin-top: -50px;
  padding-left: 35px;
  padding-right: 35px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .menu {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.menu_ttl {
  margin-bottom: 10px;
}

.menu_en-ttl {
  font-family: "josefin-sans", sans-serif;
  font-size: clamp(3.5rem, 2.608rem + 4.6vw, 6.75rem);
  font-style: italic;
  font-weight: 700;
  color: #EB51C2;
  line-height: 1;
  text-align: center;
  display: block;
}

.menu_sub-ttl {
  margin-bottom: 25px;
}

.menu_ja-ttl {
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-size: clamp(1rem, 0.726rem + 1.42vw, 2rem);
  font-weight: 700;
  color: #111111;
  line-height: 1.15625;
  text-align: center;
  display: block;
}

.menu_text {
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-size: 16px;
  line-height: 2;
  color: #111111;
  text-align: center;
}
@media screen and (max-width: 375px) {
  .menu_text {
    text-align-last: left;
    font-size: 15px;
    line-height: 1.8;
  }
}

/*--------------------------------
  説明
---------------------------------*/
.about_inner {
  margin-top: 30px;
}

.training {
  position: relative;
}

.training_img,
.food_img {
  width: 70%;
}
@media screen and (max-width: 1024px) {
  .training_img,
  .food_img {
    width: 100%;
  }
}

.training .textbox {
  position: absolute;
  right: 20px;
  bottom: -20px;
  background-color: #fff;
  padding: 60px;
  width: 555px;
  border-radius: 8px;
  filter: drop-shadow(0px 0px 20px rgba(17, 17, 17, 0.098));
}
@media screen and (max-width: 1024px) {
  .training .textbox {
    position: relative;
    width: 100%;
    right: 0;
    bottom: 0;
    top: -10px;
  }
}
@media screen and (max-width: 768px) {
  .training .textbox {
    padding: 40px 30px;
  }
}

.training .en-ttl {
  font-family: "josefin-sans", sans-serif;
  color: #EB51C2;
  font-size: 24px;
  line-height: 1.15;
}
@media screen and (max-width: 768px) {
  .training .en-ttl {
    font-size: clamp(1.125rem, 0.871rem + 1.31vw, 1.5rem);
  }
}

.training .ja-ttl,
.food .ja-ttl {
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  color: #111111;
  font-size: 32px;
  line-height: 1.5;
  font-weight: 700;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .training .ja-ttl,
  .food .ja-ttl {
    font-size: clamp(1.375rem, 0.952rem + 2.18vw, 2rem);
  }
}

.training .text,
.food .text {
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  color: #111111;
  font-size: 15px;
  line-height: 1.8;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .training .text,
  .food .text {
    font-size: clamp(0.875rem, 0.833rem + 0.22vw, 0.938rem);
  }
}

.food {
  margin-top: 90px;
  position: relative;
  display: flex;
  justify-content: right;
}
@media screen and (max-width: 1024px) {
  .food {
    flex-direction: column;
  }
}

.food .textbox {
  position: absolute;
  left: 20px;
  bottom: -20px;
  background-color: #fff;
  padding: 60px;
  width: 555px;
  border-radius: 8px;
  filter: drop-shadow(0px 0px 20px rgba(17, 17, 17, 0.098));
}
@media screen and (max-width: 1024px) {
  .food .textbox {
    position: relative;
    width: 100%;
    left: 0;
    bottom: 0;
    top: -10px;
  }
}
@media screen and (max-width: 768px) {
  .food .textbox {
    padding: 40px 30px;
  }
}

.food .en-ttl {
  font-family: "josefin-sans", sans-serif;
  color: #00B21B;
  font-size: 24px;
  line-height: 1.15;
}

.about_btn .btn {
  background-color: #EB51C2;
  margin-top: 70px;
  width: 380px;
  margin-inline: auto;
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  .about_btn .btn {
    width: 300px;
    margin-top: 40px;
  }
}

/*--------------------------------
  トレーナー・スタッフ
---------------------------------*/
.staff {
  margin-top: 60px;
}

.staff_inner {
  max-width: 1170px;
  margin-inline: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.staff .sec_en-ttl,
.staff .sec_ja-ttl {
  color: #fff;
}

.ttl_tab {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 30px;
}

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

.tab_link {
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
  font-weight: 700;
  padding-bottom: 20px;
  display: block;
}
@media screen and (max-width: 768px) {
  .tab_link {
    font-size: 16px;
    padding-bottom: 10px;
  }
}

.tab_link.is-active {
  border-bottom: 2px solid #fff;
}

.staff_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 15px;
}
@media screen and (max-width: 768px) {
  .staff_list {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 15px;
  }
}

.staff_list .list {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.staff_list .list_text {
  padding: 20px;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

.content_area {
  display: none;
}

.content_area.is-show {
  display: block;
  padding-top: 20px;
}

/*--------------------------------
  スタジオ
---------------------------------*/
.studio_inner {
  max-width: 1190px;
  margin-inline: auto;
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (max-width: 768px) {
  .studio_inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.studio .sec_en-ttl {
  color: #111111;
}

.studio .sec_ja-ttl {
  color: #EB51C2;
}

.studio_sliders {
  margin-top: 30px;
  max-width: 1110px;
  margin-inline: auto;
}

.sliders_box {
  position: relative;
}

/*--------------------------------
  スライダー矢印の設定
---------------------------------*/
.arrow_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .arrow_box {
    width: 106%;
    left: -3%;
  }
}
@media screen and (max-width: 375px) {
  .arrow_box {
    width: 112%;
    left: -6%;
  }
}

.prev-arrow,
.next-arrow {
  display: block;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 768px) {
  .prev-arrow,
  .next-arrow {
    width: 40px;
    height: 40px;
  }
}

.prev-arrow {
  transform: rotate(180deg);
  margin-right: 20px;
}

.prev-arrow::before,
.next-arrow::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #EB51C2;
  border-top: 2px solid #EB51C2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
}

/*--------------------------------
  dotsを丸くカスタマイズするCSS
---------------------------------*/
.dots-wrap {
  display: flex;
  justify-content: center;
  margin-top: 17px;
}

.dots-wrap li {
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #EAEAEA;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .dots-wrap li {
    width: 8px;
    height: 8px;
  }
}

.dots-wrap li:hover,
.dots-wrap li.slick-active {
  background: #EB51C2;
}

.dots-wrap li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

/*--------------------------------
  料金
---------------------------------*/
.price .ttl {
  max-width: 1170px;
  margin-inline: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.price .sec_en-ttl,
.price .sec_ja-ttl {
  color: #fff;
}

.price_box {
  margin-top: 30px;
  max-width: 1170px;
  margin-inline: auto;
  overflow-x: scroll;
}

.price_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 15px;
  padding-left: 20px;
  padding-right: 20px;
  overflow-x: scroll;
}

.price .item {
  background-color: #fff;
  border-radius: 10px;
  min-width: 360px;
}
@media screen and (max-width: 375px) {
  .price .item {
    min-width: 320px;
  }
}

.item_box {
  padding: 35px 20px;
  text-align: center;
}

.list_ttl-box {
  padding-bottom: 20px;
  border-bottom: 1px solid #EAEAEA;
}

.li_corse {
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
  color: #EB51C2;
  display: block;
}

.li_price {
  font-family: "josefin-sans", sans-serif;
  color: #111111;
  line-height: 1.15;
  font-size: 46px;
  display: block;
}

.mark {
  font-size: 40px;
}

.admission {
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-size: 16px;
  line-height: 1.15;
  color: #111111;
  display: block;
  margin-top: 15px;
}

.price .item_box dl {
  padding: 30px;
}

.price .item_box dl:not(:last-child) {
  border-bottom: 1px solid #EAEAEA;
}

.price dt {
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-size: 18px;
  line-height: 1.15;
  color: #111111;
}

.price dd {
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
  color: #111111;
  margin-top: 5px;
}

/*--------------------------------
  Q&A
---------------------------------*/
.question {
  margin-top: 60px;
}

.question_inner {
  max-width: 1170px;
  padding-left: 30px;
  padding-right: 30px;
  margin-inline: auto;
}

.question .sec_en-ttl {
  color: #111111;
}

.question .sec_ja-ttl {
  color: #EB51C2;
}

/*--------------------------------
  アコーディオン
---------------------------------*/
.accordion {
  margin-top: 10px;
}

.accordion_box {
  padding: 20px 0;
  border-bottom: 1px solid #EAEAEA;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .accordion_box {
    padding: 15px 0;
  }
}
.accordion_box::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #EB51C2;
  border-right: 2px solid #EB51C2;
  right: 0;
  top: 40%;
  margin: auto;
  transform: rotate(45deg);
  transition: transform 0.4s;
}
.accordion_box[open]::before {
  transition: transform 0.4s;
  transform: rotate(225deg);
}

summary {
  display: block;
  list-style: none;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-size: 15px;
  color: #111111;
  line-height: 1.7;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  width: 90%;
}

summary::-webkit-details-marker {
  display: none;
}

.question_ttl {
  font-family: "josefin-sans", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #EB51C2;
  line-height: 1.15;
  display: block;
  margin-right: 15px;
}

.answer_ttl {
  font-family: "josefin-sans", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #EB51C2;
  line-height: 1.15;
  display: block;
  margin-right: 20px;
}

.answer_text {
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-size: 15px;
  color: #111111;
  line-height: 1.7;
  overflow: hidden;
  width: 95%;
}

.answer_inner {
  margin-top: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .answer_inner {
    align-items: center;
  }
}

/*--------------------------------
  contact
---------------------------------*/
.contact {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .contact {
    margin-top: 50px;
  }
}

.contact picture {
  aspect-ratio: 144/37;
}
@media screen and (max-width: 768px) {
  .contact picture {
    aspect-ratio: 375/180;
  }
}

.contact_box {
  background-color: #EB51C2;
  text-align: center;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  .contact_box {
    padding: 30px 0;
  }
}

.contact_text {
  font-family: "josefin-sans", sans-serif;
  font-size: 64px;
  color: #fff;
  line-height: 1.15;
}
@media screen and (max-width: 768px) {
  .contact_text {
    font-size: 26px;
    line-height: 1;
  }
}

.contact_btn {
  margin-top: 15px;
  width: 380px;
  margin-inline: auto;
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  .contact_btn {
    width: 300px;
  }
}

.contact_btn .btn {
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .contact_btn .btn {
    width: 300px;
  }
}

.sec_contact-btn {
  color: #EB51C2;
}

.footer_inner {
  background-color: #111111;
}

/*--------------------------------
  footer
---------------------------------*/
.footer_logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .footer_logo {
    padding: 50px 0;
  }
}

.footer_logo img {
  width: 180px;
  height: auto;
}
@media screen and (max-width: 375px) {
  .footer_logo img {
    width: 96.7px;
  }
}

/*--------------------------------
  全体設定
---------------------------------*/
.sec_en-ttl {
  font-family: "josefin-sans", sans-serif;
  font-size: clamp(2.5rem, 1.972rem + 2.25vw, 4rem);
  display: block;
  line-height: 1;
}

.sec_ja-ttl {
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-size: clamp(0.875rem, 0.743rem + 0.56vw, 1.25rem);
  font-weight: 700;
  display: block;
  line-height: 1;
  margin-top: 10px;
}

.wrapper {
  background-color: #EB51C2;
}

.top_bac-svg {
  transform: translateY(7px);
}

.bottom_bac-svg {
  transform: translateY(-6px);
}

/*--------------------------------
  btnの全体設定
---------------------------------*/
.btn {
  width: 380px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  .btn {
    width: 220px;
  }
}

.move1 {
  animation: move1 2.5s infinite;
  opacity: 1;
}

@keyframes move1 {
  0%, 40% {
    transform: skew(0deg, 0deg);
  }
  5% {
    transform: skew(5deg, 5deg);
  }
  10% {
    transform: skew(-4deg, -4deg);
  }
  15% {
    transform: skew(3deg, 3deg);
  }
  20% {
    transform: skew(-2deg, -2deg);
  }
  25% {
    transform: skew(1deg, 1deg);
  }
  30% {
    transform: skew(-0.6deg, -0.6deg);
  }
  35% {
    transform: skew(0.3deg, 0.3deg);
  }
}
.btn_inner {
  padding: 30px;
  display: block;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .btn_inner {
    font-size: 13px;
    padding: 20px 10px;
  }
}

.btn_inner-color {
  color: #fff;
}

/*--------------------------------
  topへ戻る
---------------------------------*/
.scroll_link {
  width: 80px;
  height: 80px;
  border-radius: 50px;
  background-color: #fff;
  position: fixed;
  right: 20px;
  bottom: 100px;
  filter: drop-shadow(0px 0px 20px rgba(17, 17, 17, 0.098));
}
@media screen and (max-width: 375px) {
  .scroll_link {
    width: 40px;
    height: 40px;
  }
}

.scroll_link::before {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  border-left: 4px solid #EB51C2;
  border-top: 4px solid #EB51C2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
}
@media screen and (max-width: 375px) {
  .scroll_link::before {
    width: 10px;
    height: 10px;
    border-left: 2px solid #EB51C2;
    border-top: 2px solid #EB51C2;
  }
}

/*--------------------------------
  スクロールエフェクト
---------------------------------*/
.slide_bottom1 {
  opacity: 0;
  transform: translateY(300px);
  visibility: hidden;
  transition: opacity 1s, visibility 1s, transform 1s;
}

.slide_bottom2 {
  opacity: 0;
  transform: translateY(300px);
  visibility: hidden;
  transition: opacity 1.3s, visibility 1.3s, transform 1.3s;
}

.slide_bottom3 {
  opacity: 0;
  transform: translateY(300px);
  visibility: hidden;
  transition: opacity 1.5s, visibility 1.5s, transform 1.5s;
}

.slide_bottom1.scroll,
.slide_bottom2.scroll,
.slide_bottom3.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.slide_bottom {
  opacity: 0;
  transform: translateY(300px);
  visibility: hidden;
  transition: opacity 1s, visibility 1s, transform 1s;
}

.slide_bottom.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.fadeUpEffect {
  opacity: 0;
}

.fadeUp {
  opacity: 0;
  animation-name: fadeUp;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=style.css.map */