@charset "UTF-8";

/*===============================
base
================================*/
html {
  font-size: 62.5%;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 2.8em;
  color: #333;
  font-family: "Montserrat", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
body {
  position: relative;
  z-index: 100;
  font-size: 1.4rem;
  /* background: #f0efea; */
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}
img {
  width: 100%;
}
a {
  transition: .3s;
}
.font_red {
  color: #ff5c5c;
  font-weight: 500;
}

.stix-two-text {
  font-family: "Playfair", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: .1em;
}
.dc_css_js_dsp {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 500;
  padding: 30px;
  background: #fff;
  border: 1px solid #555;
}
.dc_css_js_dsp .scripts {
  margin-top: 20px;
}
.dc_css_js_dsp dd ul {
  margin-top: 15px;
}
.dc_css_js_dsp dd ul li {
  position: relative;
  padding-left: 20px;
}
.dc_css_js_dsp dd ul li:before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.dc_css_js_dsp dd ul li:not(:first-child) {
  margin-top: 10px;
}
.wrap {
  width: 100%;
  margin-inline: auto;
}
.wrap-s, .wrap-m, .wrap-l {
  width: calc(100% - 60px);
  margin-inline: auto;
}
.wrap-s {
  max-width: 1000px;
}
.wrap-m {
  max-width: 1200px;
}
.wrap-l {
  max-width: 1500px;
}
.palmtop {
  display: block !important;
}
.laptop {
  display: none !important;
}
.sclNone {
  overflow-y: hidden;
}


.pc-hidden {
display: none !important
}

@media only screen and (max-width: 1023px) {
  .tbsp-hidden {
    display: none !important
  }
}

@media only screen and (max-width: 767px) {
  .sp-hidden {
    display: none !important
  }
  .pc-hidden {
    display: block !important
  }
  br.pc-hidden {
    display: inline-block !important
  }
}


/*========= ローディング画面のためのCSS ===============*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999999;
  text-align: center;
  top: 0;
}
#splash_logo {
  display: none;
  width: 24%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}


/*========= 画面遷移のためのCSS ===============*/
/*画面遷移アニメーション*/

.splashbg {
display: none;
}


/*bodyにappearクラスがついたら出現*/
body.appear .splashbg {
  display: block;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transform: scaleX(0);
  background-color: #fff;
  /*伸びる背景色の設定*/
  animation-name: PageAnime;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  /* visibility: hidden; */
}

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


/*画面遷移の後現れるコンテンツ設定*/
#header {
  opacity: 0;
}
#header_nav {
  opacity: 0;
}
#main_wrapper {
  opacity: 0;
}
#footer {
  opacity: 0;
}
/* #reserve_btn {
  opacity: 0;
} */


/*bodyにappearクラスがついたら出現*/
body.appear #header {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
  /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); */
}
body.appear #header.scroll {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
body.appear #header_nav {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
body.appear #main_wrapper {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
body.appear #footer {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  /* opacity: 0; */
  background: rgb(255 255 255 / 100%);
}
/* body.appear #reserve_btn {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
} */

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*
animations
================================*/
.fade-anim {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.5s cubic-bezier(0, 0.8, 0.2, 1);
  transition: all 0.5s cubic-bezier(0, 0.8, 0.2, 1);
}

.is-fade-anim {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}


/*===============================
layout
================================*/
/*
header
================================*/
.l-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: top 0.3s ease;
  transition: top 0.3s ease;
}
.l-header_ctr {
  /* padding: 30px 30px; */
  text-align: center;
  height: 90px;
  /* background: rgb(255 255 255 / 80%); */
  /* background: #fff; */
  transition: .5s;
}
.scroll .l-header_ctr {
  background: rgb(255 255 255 / 80%);
}
.l-header_ctr_logo {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-header_ctr_logo a {
  position: relative;
  display: inline-block;
  /* opacity: 0; */
  transition: .5s;
}
#header.scroll .l-header_ctr_logo a {
  margin-top: 0px;
  opacity: 1;
}
.l-header_ctr_logo a img {
  width: 100px;
}
.is-hide {
  top: -100%;
}
.is-header-bg {
  background: #fff;
}

/*
main
================================*/
.l-main--home {
  padding-top: 0;
}
.l-main {
  padding-top: 164px;
}


/*
footer
================================*/
.l-footer {
  /* border-top: 1px solid #333; */
  padding-top: clamp(60px, 10vw, 120px);
}

.l-footer_link-list_item {
  margin-top: 30px;
}
.l-footer_link-list_item:first-child {
  margin-top: 0;
}
.l-footer_link-list_item_img img {
  border: 1px solid #212121;
}
.l-footer_link-list_item_txt {
  margin-top: 15px;
}
.l-footer_logo {
  text-align: left;
  margin-top: 0px;
  margin-bottom: 20px;
}
.l-footer_logo img {
  width: 200px;
}
.l-footer_info {
  margin-bottom: 20px;
}
.l-footer_copyright {
  margin-top: 100px;
  font-size: 1.2rem;
  text-align: center;
  padding-bottom: 30px;
  letter-spacing: 0;
}
.l-footer--home {
  /* margin-top: clamp(60px, 10vw, 200px); */
  margin-top: 0;
}

.l-footer-wrap {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.l-footer_left {
  width: 45%;
}
.l-footer_right {
  width: 45%;
}
.l-footer_nav .dw_inner_list_item {
  margin-top: 15px;
}
.l-footer_nav .dw_inner_list_item a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.8rem;
  text-decoration: none;
}
.l-footer_nav .dw_inner_list_item a span {
  color: #555;
  position: relative;
}
.l-footer_nav .dw_inner_list_item a span small {
  font-size: 1rem;
  margin-left: 10px;
}
.l-footer_sns .dw_inner_sns_linkbn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.l-footer_sns .dw_inner_sns_linkbn a {
  display: block;
  width: 26px;
  height: 26px;
  margin: 0 10px 0 0;
}
.l-footer_sns .dw_inner_sns_linkbn a.instagram {
  background: url(../images/icon_ig_black.png) no-repeat;
  background-size: 24px;
  background-position: center center;
}
.l-footer_sns .dw_inner_sns_linkbn a.mail {
  background: url(../images/icon_mail_black.png) no-repeat;
  background-size: 24px;
  background-position: center center;
}

#reserve_btn {
  position: fixed;
  width: 300px;
  bottom: 10px;
  right: 10px;
  /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); */
}
#reserve_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 20px 20px 50px;
  text-align: center;
  /* background: linear-gradient(to right, #fff 50%, #fff 50%);
  background-size: 200% auto; */
  border: 3px solid #eee;
  color: #08c958;
  font-weight: bold;
  text-decoration: none;
  background-color: #fff;
  background-image: url(../images/icon_line_green.svg);
  background-size: 30px;
  background-position: left 40px center;
  border-radius: 35px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  height: 70px;
}
#page_top {
  position: fixed;
  bottom: 90px;
  right: 10px;
  font-size: 77%;
  z-index: 10;
}
#page_top a {
  background-color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  display: block;
  background-image: url(../images/up_arrow_black.png);
  background-position: center;
  background-size: 15px;
  background-repeat: no-repeat;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}


/*
hamburger
================================*/
.hbg {
  position: fixed;
  z-index: 120;
  top: 31px;
  right: 30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hbg_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.hbg_btn span {
  display: block;
}
.hbg_btn_line {
  position: relative;
  width: 25px;
  height: 14px;
}
.hbg_btn_line span {
  position: absolute;
  width: 25px;
  height: 1px;
  background: #212121;
  transition: .5s
}
.hbg_btn.active .hbg_btn_line span {
  background: #333;
}
.hbg_btn_line span:first-child {
  top: 0;
}
.hbg_btn_line span:nth-child(2) {
  top: 14px;
}
.hbg_btn.active .hbg_btn_line span:first-child {
  top: 0px;
  left: 0px;
  transform: translateY(6px) rotate(-45deg);
  width: 25px;
}
.hbg_btn.active .hbg_btn_line span:nth-child(2) {
  top: 12px;
  left: 0px;
  transform: translateY(-6px) rotate(45deg);
  width: 25px;
}
.hbg_btn_text {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
  margin-right: 10px;
  color: #212121;
  transition: .5s;
}
.hbg_btn.active .hbg_btn_text {
  color: #333;
}
.is-hide {
  top: -100%;
}

.is-hbg-bg .hbg_btn_line span {
  background: #212121;
}
.is-hbg-bg .hbg_btn_text {
  color: #212121;
}

/*
drawer
================================*/
.dw {
  position: fixed;
  z-index: 110;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgb(255 255 255 / 90%);
  opacity: 0;
  visibility: hidden;
  /* -webkit-transform: scale(0.95);
          transform: scale(0.95);
  pointer-events: none;
  -webkit-transition: all 0.3s cubic-bezier(0, 0.8, 0.2, 1);
  transition: all 0.3s cubic-bezier(0, 0.8, 0.2, 1);
  overflow-y: auto; */
  transition: .5s;
}
.dw.active {
  opacity: 1;
  visibility: visible;
}
.dw_inner_list {
  padding: 50px 30px 50px;
  border-top: 1px solid rgb(0 0 0 / 25%);
  border-bottom: 1px solid rgb(0 0 0 / 25%);
  margin: 50px auto 50px;
  width: 90%;
  max-width: 700px;
  
}
.dw_inner_list_item {
  margin-top: 20px;
  text-align: center;
}
.dw_inner_list_item a {
  font-size: 2.2rem;
  text-decoration: none;
}

.dw_inner_list_item:first-child {
  margin-top: 0;
}
.dw_inner_list_item a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.dw_inner_list_item a span {
  display: block;
}
.dw_inner_list_item a span small {
  font-size: 1.2rem;
  letter-spacing: .1em;
}
.dw_inner_list_item a .dw_inner_list_item_en img {
  height: 18px;
}
.dw_inner_list_item a .dw_inner_list_item_ja {
  color: #333;
  margin-top: 0px;
  position: relative;
  letter-spacing: .2em;
}
.dw .close-btn {
  position: absolute;
  top: 30px;
  right: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.dw .close-btn span {
  display: block;
}
.dw .close-btn_line {
  position: relative;
  width: 25px;
  height: 14px;
}
.dw .close-btn_line span {
  position: absolute;
  width: 25px;
  height: 3px;
  background: #fff;
}
.dw .close-btn_line span:first-child {
  -webkit-transform: translateY(6px) rotate(45deg);
          transform: translateY(6px) rotate(45deg);
}
.dw .close-btn_line span:nth-child(2) {
  opacity: 0;
}
.dw .close-btn_line span:nth-child(3) {
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
}
.dw .close-btn_text {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
  margin-right: 10px;
  font-weight: bold;
  color: #fff;
}
.dw_logo {
  text-align: center;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dw_logo img {
  width: 100px;
}
.dwActive {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  pointer-events: auto;
}
.dw_inner_reserve {
  width: 90%;
  max-width: 700px;
  margin: 0 auto 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgb(0 0 0 / 25%);
}
.dw_inner_reserve_title {
  color: #333;
  text-align: center;
  font-size: 14px;
  margin-bottom: 20px;
}
.dw_inner_reserve_linkbn {
  width: 96%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dw_inner_reserve a {
  width: calc(100% / 3 - 10px);
  display: block;
  background: #fff;
  margin: 0 10px;
  padding: 10px 15px;
  border: 3px solid #eee;
  height: 80px;
  border-radius: 40px;
  display: flex;
  align-items: center;
}
.dw_inner_sns {
  width: 90%;
  max-width: 500px;
  margin: 0 auto;
  /* padding-bottom: 50px; */
}
.dw_inner_sns_linkbn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.dw_inner_sns_linkbn a {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 5px;
}
.dw_inner_sns_linkbn a.instagram {
  background: url(../images/icon_ig_black.png) no-repeat;
  background-size: 28px;
  background-position: center center;
}
.dw_inner_sns_linkbn a.mail {
  background: url(../images/icon_mail_black.png) no-repeat;
  background-size: 28px;
  background-position: center center;
}

/*===============================
module
================================*/
/*
h-style
================================*/
.h-style1 {
  text-align: center;
  margin-bottom: 35px;
  padding-bottom: 20px;
}
.h-style1_en {
  font-size: 4rem;
  line-height: 1em;
  letter-spacing: .2em;
}
.h-style1_en, .h-style1_ja {
  text-align: center;
}
.h-style1_en img {
  height: 25px;
}
.h-style1_ja {
  margin-top: 10px;
}

.p-h_en, .p-h_ja {
  text-align: center;
}
.p-h_en img {
  height: 25px;
}
.p-h_ja {
  margin-top: 20px;
}

/*
btn-style
================================*/
.btn-style1 {
  text-align: center;
  margin-top: 35px;
}
.btn-style1 a {
  position: relative;
  text-align: center;
  display: inline-block;
  color: #212121;
  padding: 20px 40px;
  background: #fff;
  border: 1px solid #212121;
}
.btn-style1 a:before {
  content: "";
  display: block;
  position: absolute;
  top: 17px;
  right: 10px;
  background-image: url("../../images/common/btn-arrow-icon.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 18px;
  height: 18px;
}

/*
p-style
================================*/
.p-ctn {
  background: #fff;
  padding: 30px 0;
}
.p-ctn--notfound {
  padding: 0;
}

/*
news-style
================================*/
.news-style_item {
  margin-top: 35px;
}
.news-style_item:first-child {
  margin-top: 0;
}
.news-style_item_thumb {
  position: relative;
  aspect-ratio: 1000/680;
}
.news-style_item_thumb img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-style_item .noimg img {
  border: 1px solid #212121;
}
.news-style_item_date {
  margin: 20px 0 15px;
}
.news-style_item_h {
  line-height: 1.6em;
}


/*
space
================================*/
.mar-t {
  margin-top: clamp(60px, 10vw, 120px);
}

.mar-tb {
  margin: clamp(60px, 10vw, 120px) 0;
}

.pad-t {
  padding-top: clamp(60px, 10vw, 120px);
}

.pad-tb {
  padding: clamp(100px, 5vw, 200px) 0;
  margin-bottom: 0;
}

/*
align
================================*/
.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

/*
font-weight
================================*/
/*
color
================================*/
/*
paragraph
================================*/
.paragraphs p {
  line-height: 2em;
}
.paragraphs p:not(:first-child) {
  margin-top: 10px;
}

/*
pagination
================================*/
.pagination {
  margin-top: 30px;
}
.pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.pagination .page-numbers li:not(:first-child) {
  margin-left: 8px;
}
.pagination .page-numbers li span, .pagination .page-numbers li a {
  display: block;
  padding: 10px 12px;
}
.pagination .page-numbers li a {
  border: 1px solid #333;
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
}
.pagination .page-numbers li .current {
  color: #fff;
  background: #000;
  border: 1px solid #333;
}








#js-kv {
  padding-top: 90px;
  position: relative;
}
#mainvisual{
  height: calc( 100vh - 180px );
}
.kv_img {
  opacity: .7;
  width: 24%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.vegas-overlay {
  opacity: .5;
}

.h-concept_column {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.h-concept_column_img {
  width: 50%;
}
.h-concept_column_content {
  width: 40%;
  margin-right: 5%;
}
.h-concept_column_img1 {
  width: 70%;
  margin: 0 auto 0 0;
}
.h-concept_column_img2 {
  width: 40%;
  margin: -80px 0 0 auto;
}
.h-concept_column_img3 {
  width: 60%;
  margin: -50px 18% 0 auto;
}
.h-concept_column_content_txt_l {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-family: "Playfair", serif;
}

.h-concept_column_content_mvv {
  margin: 50px auto 0;
  background: rgb(255 255 255 / 50%);
  padding: 50px 5%;
  text-align: center;
}
.h-concept_column_content_mvv_title {
  font-size: 20px;
  border-bottom: .5px solid rgb(177 177 177 / 50%);
  padding-bottom: 20px;
  margin-bottom: 30px;
  font-weight: 500;
}
.h-concept_column_content_mvv_dl {
  width: 90%;
  margin: 0 auto 30px;
  text-align: left;
}
.h-concept_column_content_mvv_dl dt {
  font-weight: 500;
  font-size: 16px;
  padding-left: 10px;
  position: relative;
  margin-bottom: 10px;
}
.h-concept_column_content_mvv_dl dt:before {
  content: "";
  width: 5px;
  height: 1px;
  background: #333;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
}
.h-concept_column_content_mvv_dl dd ul li {
  margin-bottom: 10px;
}

/* .h-trainer_column {
  display: flex;
  justify-content: space-between;
  align-items: center;
} */
.h-trainer_column_img {
  width: 80%;
  max-width: 500px;
  margin: 0 auto 30px;
}
.h-trainer_column_content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.h-trainer_column_img1 {
  width: 60%;
  margin: 0 auto 0 0;
}
.h-trainer_column_img2 {
  width: 60%;
  margin: -200px 0 0 auto;
}
.h-trainer_column_content_txt {
  text-align: left;
}
.h-trainer_column_content_txt_l {
  text-align: center;
  font-size: 3rem;
  font-family: "Playfair", serif;
  width: 100%;
  margin: 0 auto 10px;
}
.paragraphs p.h-trainer_column_content_txt_l {
  line-height: 1em;
}
.h-trainer_column_content_txt_m {
  text-align: center;
  font-size: 1.2rem;
  width: 100%;
  margin: 0 auto 30px;
}
.h-trainer_column_content_txt_s {
  text-align: center;
  font-size: 1.2rem;
  width: 100%;
  margin: 0 auto 20px;
  line-height: 1em;
}
.h-trainer_column_content_txt dl {
  width: 100%;
  margin: 0 auto 10px;
}

.h-feature_column {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 100px;
}
.h-feature_column_content {
  width: 45%;
  margin: 0 auto 0 0;
}
.h-feature_column_content_txt {
  background: rgb(255 255 255 / 50%);
  padding: 80px 0 50px 10%;
}
.h-feature_column_content_txt_l {
  font-size: 3rem;
  margin-bottom: 20px;
  font-family: "Playfair", serif;
}
.h-feature_column_img {
  width: 50%;
  margin: 0 0 0 auto;
}
.h-feature_column_img1 {
  width: 90%;
  margin: 0 0 0 auto;
}
.h-feature_column_img2 {
  width: 50%;
  margin: -180px auto 0 0;
}
.h-feature_detail {
  margin-bottom: 100px;
}
.h-feature_detail_desc {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  padding: 40px 20px;
}
.h-feature_detail_desc_dl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 30px;
  border-bottom: .5px solid #555;
  padding: 0 2% 30px;
}
.h-feature_detail_desc_dl:last-child {
  margin-bottom: 0px;
  border-bottom: none;
  padding-bottom: 0px;
}
.h-feature_detail_desc_dl dt {
  width: 22%;
  margin-right: 2%;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.h-feature_detail_desc_dl dt i {
  width: 20px;
  font-size: 14px;
  margin-right: 6px;
  text-align: center;
}
.h-feature_detail_desc_dl dd {
  width: 76%;
  box-sizing: border-box;
}
.h-feature_desc_box {
  margin-bottom: 100px;
}
.h-feature_desc_box:last-child {
  margin-bottom: 0!important;
}
.h-feature_desc_box_title {
  font-size: 3rem;
  width: 90%;
  margin: 0 auto 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  line-height: 1em;
}
.h-feature_desc_box.right .h-feature_desc_box_title {
  justify-content: flex-end;
}
.h-feature_desc_box.center .h-feature_desc_box_title {
  justify-content: center;
}
.h-line {
  width: 200px;
  height: 1px;
  background: #999;
  margin: 0 30px;
}
/* .h-feature_desc_box_slider_left {
  width: 94%;
  margin: 0 auto 20px 0;
}
.h-feature_desc_box_slider_right {
  width: 94%;
  margin: 0 0 20px auto;
} */
.h-feature_desc_box_slider_right {
  width: 100%;
  margin: 0 auto 40px;
}
.left .h-feature_desc_box_title {
  text-align: left;
}
.right .h-feature_desc_box_title {
  text-align: right;
}
.cetnter .h-feature_desc_box_title {
  text-align: center;
}
.h-feature_desc_box_slider_left {
  position: relative;
  margin-bottom: 20px;
}
/* .h-feature_desc_box_slider_left:before {
  content: "";
  position: absolute;
  width: 20%;
  height: 100%;
  top: 0;
  right: 0;
  background: linear-gradient(90deg, rgb(255 255 255 / 0%), #fff);
  z-index: 1;
} */
.h-feature_desc_box_slider_right {
  position: relative;
}
/* .h-feature_desc_box_slider_right:before {
  content: "";
  position: absolute;
  width: 20%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(-90deg, rgb(255 255 255 / 0%), #fff);
  z-index: 1;
} */
.h-feature_desc_box_slider_left div {
  transition: none;
}
.h-feature_desc_box_slider_left .slick-slide {
  margin: 0 2px;
}
/* .h-feature_desc_box_slider_left .slick-prev {
  left: 50px;
} */
.h-feature_desc_box_slider_right div {
  transition: none;
}
.h-feature_desc_box_slider_right .slick-slide {
  margin: 0 2px;
}
/* .h-feature_desc_box_slider_right .slick-next {
  right: 50px;
} */
.h-feature_desc_box_text {
  width: 84%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.h-access_map {
  margin-bottom: 50px;
}
.h-access_map iframe {
  width: 100%;
  height: 450px;
}
.h-access_desc {
  width: 84%;
  max-width: 900px;
  margin: 0 auto 50px;
}
.h-access_desc_text {
  text-align: left;
  margin-bottom: 20px;
}
.h-access_desc_dl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}
.h-access_desc_dl:last-child {
  margin-bottom: 0px;
}
.h-access_desc_dl dt {
  width: 22%;
  margin-right: 2%;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.h-access_desc_dl dt i {
  width: 20px;
  font-size: 14px;
  margin-right: 6px;
  text-align: center;
}
.h-access_desc_dl dd {
  width: 70%;
}
.h-reserve_column_comment {
  text-align: center;
  margin-bottom: 30px;
}
.h-reserve_linkbn {
  width: 96%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.h-reserve_linkbn a {
  width: calc(100% / 3 - 10px);
  margin: 0 10px;
  display: block;
  background: #fff;
  padding: 10px 50px;
  border: 3px solid #eee;
  border-radius: 50px;
  height: 100px;
  display: flex;
  align-items: center;
}

.h-program_column {
  width: 84%;
  margin: 0 auto;
}
.h-program_column_item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 49%;
  margin: 0 auto 0 0;
  background: rgb(255 255 255 / 50%);
  padding: 40px 30px;
}
.h-program_column_item:nth-child(2n) {
  margin: 0 0 0 auto;
}
.h-program_column_item:nth-child(n+2) {
  margin-top: -100px;
}
.h-program_column_item_image {
  width: 43%;
}
.h-program_column_item_text {
  width: 53%;
}
.h-program_column_item_text_title {
  font-size: 2.5rem;
  padding-left: 10px;
  border-left: 1px solid #333;
  margin-bottom: 20px;
  padding-top: 4px;
  line-height: 1.3em;
  font-family: "Playfair", serif;
}
.h-program_column_item_text_comment {
  margin-bottom: 10px;
}
.h-program_column_item_text_info {
  margin-bottom: 0px;
}
.h-program_column_item_text_info .fa-solid {
  margin-right: 10px;
}

.h-trainer_detail {
  margin-bottom: 0px;
}
.h-trainer_detail_desc {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  padding: 40px 20px;
}
.h-trainer_detail_desc_dl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 30px;
  border-bottom: .5px solid #555;
  padding: 0 2% 30px;
}
.h-trainer_detail_desc_dl:last-child {
  margin-bottom: 0px;
  border-bottom: none;
  padding-bottom: 0px;
}
.h-trainer_detail_desc_dl dt {
  width: 22%;
  margin-right: 2%;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.h-trainer_detail_desc_dl dt i {
  width: 20px;
  font-size: 14px;
  margin-right: 6px;
  text-align: center;
}
.h-trainer_detail_desc_dl dd {
  width: 76%;
  box-sizing: border-box;
}


.h-faq_desc {
  width: 84%;
  max-width: 1100px;
  margin: 0 auto 0px;
}
.h-faq_desc_dl {
  width: 100%;
  padding: 0px 0;
  border-bottom: 1px solid #333;
}
.h-faq_desc_dl:last-child {
  margin-bottom: 0px;
}
.h-faq_desc_dl dt {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  cursor: pointer;
  padding: 30px 0 30px;
  background: url(../images/icon_arrow_down.png) no-repeat;
  background-size: 15px;
  background-position: right 10px top 42px;
  transition: .3s;
}
.h-faq_desc_dl dt.open {
  background: url(../images/icon_arrow_up.png) no-repeat;
  background-size: 15px;
  background-position: right 10px top 42px;
}
.h-faq_desc_dl dt:focus {
  outline: 2px solid #999;
  outline-offset: 2px;
}
.h-faq_desc_dl dd {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 20px 30px 0;
}
.h-faq_desc_dl dt i {
  width: 20px;
  min-width: 20px;
  font-size: 14px;
  margin-right: 6px;
  text-align: center;
  line-height: 2em;
  display: block;
}
.h-faq_desc_dl dd i {
  width: 20px;
  min-width: 20px;
  font-size: 14px;
  margin-right: 6px;
  text-align: center;
  line-height: 2em;
  display: block;
}

section.pad-tb {
  background: linear-gradient(rgb(255 255 255 / 30%), rgb(255 255 255 / 0%));
}

.h-price_column {
  width: 84%;
  max-width: 1000px;
  padding: 50px 50px 0;
  margin: 0 auto 0px;
}
.h-price_column_title {
  margin: 50px auto 30px;
  text-align: center;
  font-weight: 500;
  background: rgb(80 80 80 / 10%);
  padding: 10px 0;
}
.h-price_column_dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid #555;
  padding: 0 5% 30px;
}
.h-price_column_dl dt {
  width: 50%;
  text-align: left;
}
.h-price_column_dl dd {
  width: 50%;
  text-align: right;
}
.h-price_column_note_wrap {
  /* border: 1px solid #555; */
  margin: 50px auto 0;
  width: 90%;
  max-width: 900px;
}
.h-price_column_note {
  margin-bottom: 30px;
}
.h-price_column_note_title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  white-space: nowrap;
}
.h-price_column_note_title span {
  display: block;
  width: 100%;
  height: 1px;
  background: #6e6e6e;
  margin-left: 10px;
}
.h-price_column_note:last-child {
  margin-bottom: 0px;
}



.link_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  padding: 1.5em 1.0em;
  border: 3px solid #eee;
  background: #fff;
  /* background: linear-gradient(to right, #ffffff 50%, #999 50%);
  background-size: 200% auto; */
  box-sizing: border-box;
  color: #555;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  transition: .3s;
  position: relative;
  height: 70px;
  border-radius: 35px;
}
.link_btn a:before {
  transition: .3s;
  content: "";
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url(../images/icon_external.png) no-repeat;
  background-size: 100%;
}
.link_btn a .fa-solid {
  margin-right: 10px;
}

.link_btn_small a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 200px;
  margin: 0 auto 0 0;
  padding: .3em .5em;
  border: 1px solid #999;
  background: linear-gradient(to right, #ffffff 50%, #999 50%);
  background-size: 200% auto;
  box-sizing: border-box;
  color: #555;
  font-size: 10px;
  text-decoration: none;
  text-align: center;
  transition: .3s;
  position: relative;
}
.link_btn_small a:before {
  transition: .3s;
  content: "";
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url(../images/icon_external.png) no-repeat;
  background-size: 100%;
}




@media only screen and (min-width: 1187px) {
  a:hover {
    opacity: .7;
  }
  .dw_inner_list_item a .dw_inner_list_item_ja:after {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    content: "";
    width: 0%;
    height: 1px;
    background: #999;
    right: 0;
    bottom: -5px;
    position: absolute;
  }
  .dw_inner_list_item a:hover .dw_inner_list_item_ja:after {
    width: 100%;
    left: 0;
  }

  .l-footer_nav .dw_inner_list_item a span:after {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    content: "";
    width: 0%;
    height: 1px;
    background: #444;
    right: 0;
    bottom: 0px;
    position: absolute;
  }
  .l-footer_nav .dw_inner_list_item a:hover span:after {
    width: 100%;
    left: 0;
  }
  /* .link_btn a:hover {
    color: #ffffff;
    background-position: -100% 0;
    opacity: 1;
  }
  .link_btn a:hover:before {
    background: url(../images/icon_external_white.png) no-repeat;
    background-size: 100%;
  } */
  .link_btn_small a:hover {
    color: #ffffff;
    background-position: -100% 0;
    opacity: 1;
  }
  .link_btn_small a:hover:before {
    background: url(../images/icon_external_white.png) no-repeat;
    background-size: 100%;
  }

  #reserve_btn a:hover {
    /* color: #bbb;
    background-position: -100% 0; */
    opacity: .7;
  }
}





@media only screen and (max-width: 1186px) {
  html {
    line-height: 2em;
  }
  body {
    font-size: 1.1rem;
  }
  #splash_logo {
    width: 60%;
  }
  #js-kv {
    padding-top: 60px;
  }
  .kv_img {
    width: 60%;
  }
  .l-header_ctr {
    height: 60px;
  }
  .l-header_ctr_logo {
    height: 60px;
  }
  .l-header_ctr_logo a img {
    width: 20%;
  }
  .hbg {
    top: 20px;
    right: 10px;
  }

  .dw_logo {
    height: 60px;
  }
  .dw_logo img {
    width: 20%;
  }
  .dw_inner_list {
    padding: 7vw 6vw 7vw;
    margin: 0vw auto 7vw;
  }
  .dw_inner_list_item {
    margin-top: 3vw;
  }
  .dw_inner_list_item a {
    font-size: 2rem;
  }
  .dw_inner_list_item a .dw_inner_list_item_ja {
    margin-top: 0px;
  }
  .dw_inner_list_item:first-child a .dw_inner_list_item_ja {
    margin-top: 0px;
  }
  .dw_inner_list_item a span small {
    font-size: 1rem;
  }
  .dw_inner_reserve {
    margin: 0 auto 7vw;
    padding-bottom: 7vw;
  }
  .dw_inner_reserve_title {
    font-size: 1.1rem;
    margin-bottom: 4vw;
  }
  .dw_inner_reserve a {
    padding: 10px 10px;
    width: calc(100% / 2 - 10px);
    height: 60px;
    border-radius: 30px;
  }

  #mainvisual {
    height: calc( 80vh - 0px );
  }
  .h-style1 {
    margin-bottom: 25px;
    padding-bottom: 10px;
  }
  .h-style1_en {
    font-size: 2.5rem;
  }

  .h-concept_column {
    flex-wrap: wrap;
  }
  .h-concept_column_img {
    width: 100%;
    margin: 0 auto 10vw;
  }
  .h-concept_column_img2 {
    width: 40%;
    margin: -20vw 0 0 auto;
  }
  .h-concept_column_img3 {
    width: 60%;
    margin: -12vw 20% 0 auto;
  }
  .h-concept_column_content {
    width: 84%;
    margin: 0 auto;
  }
  .h-concept_column_content_txt_l {
    font-size: 4vw;
    margin-bottom: 8vw;
    line-height: 1.5 !important;
  }
  .h-concept_column_content_mvv {
    margin: 30px auto 0;
    padding: 30px 5%;
  }
  .h-concept_column_content_mvv_title {
    font-size: 4vw;
  }
  .h-concept_column_content_mvv_dl dt {
    font-size: 3.2vw;
  }

  .h-trainer_column {
    flex-wrap: wrap;
  }
  .h-trainer_column_img {
    width: 80%;
    margin: 0 auto 5vw;
  }
  .h-trainer_column_img1 {
    width: 60%;
    margin: 0 auto 0 0;
  }
  .h-trainer_column_img2 {
    width: 60%;
    margin: -30vw 0 0 auto;
  }
  .h-trainer_column_img3 {
    width: 60%;
    margin: -12vw 20% 0 auto;
  }
  .h-trainer_column_content {
    width: 84%;
    margin: 0 auto;
  }
  .h-trainer_column_content_txt_l {
    font-size: 6vw;
    margin-bottom: 0;
    line-height: 1.2 !important;
  }
  .h-trainer_column_content_txt_s {
    margin: 0 auto 20px!important;
  }
  .h-trainer_column_content_txt_m {
    font-size: 1.2rem;
    margin-bottom: 6vw;
    line-height: 1.5 !important;
  }

  .h-feature_column {
    flex-wrap: wrap;
    margin-bottom: 14vw;
  }
  .h-feature_column_content {
    width: 94%;
    margin: 0 auto 5vw 0;
  }
  .h-feature_column_content_txt {
    padding: 50px 5% 50px 10%;
  } 
  .h-feature_detail {
    margin-bottom: 14vw;
  }
  .h-feature_detail_desc {
    padding: 8vw 2vw;
  }
  .h-feature_detail_desc_dl {
    flex-wrap: wrap;
    margin-bottom: 4vw;
    border-bottom: .5px solid #555;
  }
  .h-feature_detail_desc_dl dt {
    width: 100%;
    margin-right: 0;
    margin-bottom: 2vw;
  }
  .h-feature_detail_desc_dl dd {
    width: 99%;
    margin-left: 1%;
  }
  .h-feature_desc_box_text {
    text-align: left;
  }
  .h-feature_column_content_txt_l {
    font-size: 4vw;
    line-height: 1.5 !important;
  }
  .h-feature_desc_box {
    margin-bottom: 15vw;
  }
  .h-feature_column_img {
    width: 100%;
    margin: 0 auto;
  }
  .h-feature_column_img1 {
    width: 80%;
  }
  .h-feature_column_img2 {
    margin: -50px auto 0 0;
  }
  .h-feature_desc_box_title {
    font-size: 2rem;
    width: 90%;
    margin: 0 auto 8vw;
  }
  .h-line {
    width: 30%;
    margin: 0 3vw;
  }

  .h-access_map {
    margin-bottom: 8vw;
  }
  .h-access_map iframe {
    width: 100%;
    height: 90vw;
  }
  .h-access_desc {
    margin: 0 auto 8vw;
  }
  .h-access_desc_dl {
    flex-wrap: wrap;
    margin-bottom: 4vw;
  }
  .h-access_desc_dl dt {
    width: 100%;
    margin-right: 0%;
    margin-bottom: 2vw;
  }
  .h-access_desc_dl dd {
    width: 100%;
  }
  .h-access_desc_dl dd {
    width: 98%;
    margin-left: 2%;
  }

  .h-program_column_item {
    width: 100%;
    margin: 0 auto 10vw;
    flex-wrap: wrap;
  }
  .h-program_column_item:last-child {
    margin: 0 auto 0vw;
  }
  .h-program_column_item_image {
    width: 100%;
    margin-bottom: 5vw;
  }
  .h-program_column_item_text {
    width: 100%;
  }
  .h-program_column_item_text_title {
    font-size: 4vw;
    padding-left: 10px;
  }
  .h-program_column_item:nth-child(n+2) {
    margin-top: 0px;
  }
  .h-program_column_item:nth-child(2n) {
    margin: 0 auto 10vw;
  }

  .h-reserve_linkbn {
    width: 50%;
    flex-wrap: wrap;
  }
  .h-reserve_linkbn a {
    width: 90%;
    margin: 0 auto 4vw;
    padding: 20px 20px;
    height: 80px;
  }

  .h-trainer_detail {
    margin-bottom: 0;
  }
  .h-trainer_detail_desc {
    padding: 8vw 2vw;
  }
  .h-trainer_detail_desc_dl {
    flex-wrap: wrap;
    margin-bottom: 4vw;
    border-bottom: .5px solid #555;
  }
  .h-trainer_detail_desc_dl dt {
    width: 100%;
    margin-right: 0;
    margin-bottom: 2vw;
  }
  .h-trainer_detail_desc_dl dd {
    width: 99%;
    margin-left: 1%;
  }

  .h-faq_desc {
    margin: 0 auto 0vw;
  }
  .h-faq_desc_dl {
    flex-wrap: wrap;
  }
  .h-faq_desc_dl dt {
    width: 100%;
    margin-right: 0%;
    padding: 20px 10% 20px 0;
    background-position: right 10px top 27px;
  }
  .h-faq_desc_dl dt.open {
    background-position: right 10px top 27px;
  }
  .h-faq_desc_dl dt i {
    line-height: 1.4em;
  }
  .h-faq_desc_dl dd i {
    line-height: 1.4em;
  }
  .h-faq_desc_dl dd {
    width: 100%;
    padding: 0px 10px 20px 0;
  }

  .h-price_column {
    width: 84%;
    padding: 30px 0 0;
    margin: 0 auto 0px;
  }
  .h-price_column_title {
    margin: 40px auto 20px;
  }
  .h-price_column_dl {
    margin-bottom: 20px;
    padding: 0 3% 20px;
  }
  .h-price_column_note_wrap {
    /* border: 1px solid #555; */
    width: 94%;
  }

  .l-footer-wrap {
    width: 84%;
    flex-wrap: wrap;
  }
  .l-footer_left {
    width: 100%;
    margin-bottom: 8vw;
  }
  .l-footer_logo {
    margin-bottom: 3vw;
  }
  .l-footer_logo img {
    width: 130px;
  }
  .l-footer_info {
    margin-bottom: 3vw;
  }
  .l-footer_right {
    width: 100%;
  }
  .l-footer_nav .dw_inner_list_item a {
    font-size: 1.5rem;
  }
  .l-footer_nav .dw_inner_list_item a span small {
    font-size: 1rem;
  }
  .l-footer_copyright {
    padding-bottom: 80px;
  }

  .link_btn a {
    font-size: 12px;
  }
  .link_btn_small a {
    padding: .6em .5em;
  }
  #reserve_btn {
    width: 54%;
  }
  #reserve_btn a {
    padding: 15px 15px 15px 45px;
    background-position: left 20px center;
    border-radius: 25px;
    height: 50px;
  }
  #page_top {
    position: fixed;
    bottom: 70px;
    right: 10px;
    font-size: 77%;
    z-index: 10;
  }


}



.waves_wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
.waves {
  position:relative;
  width: 100%;
  height: 25vh;
  margin-bottom: -10px; /*Fix for safari gap*/
  /* min-height:100px; */
  /* max-height:150px; */
}

/* Animation */

.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -5s;
  animation-duration: 13s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 20s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 23s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 35s;
}
.waves_bottom {
  /* height: 100px;
  background: rgb(197 193 182); */
  height: 100vh;
  background-image: linear-gradient(#4ca1fc, #d7f7ea 50%, #f4943e);
  opacity: .8;
  z-index: 0;
  position: relative;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
  .waves {
    height: 15vh;
    margin-bottom: -8px;
  }
}