@charset "UTF-8";

/*------------------*/
/* 共通             */
/*------------------*/
:root {
    --font-title: "classico-urw", sans-serif;
    --font-mincho: "zen-old-mincho", sans-serif;
    --color-green: #9CAFB2;
    --color-green2: #D7DFE0;
    --color-gray: #424849;
    --color-gray2: #D9D9D9;
    --color-black: #111111;
}
.classico-regular {
    font-family: "classico-urw", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.Zen-Old-Mincho  {
    font-family: "zen-old-mincho", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.-pc {
    display: inline-block;
}
.-tab {
    display: none;
}
.-sp {
    display: none;
}
.page-verve {
    margin-top: 90px;
    line-height: 2;
}
.page-verve section {
    margin-bottom: 8rem;
}
.bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -5;
}
.bg img {
    width: 100%;
    height: 100%;
}
.inner1200 {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.sec-title {   /*共通タイトル*/
    color: var(--color-gray);
    margin-bottom: 3em;
}
.sec-title_eng{
    font-family: var(--font-title);
    font-size: 3.375em;
    line-height: 1;
}
.sec-title_jp{
    font-family: var(--font-mincho);
    font-size: 1.25em;
}

.bold {
    font-weight: bold;
}
.c-pagetop {
    display: none;
}
@media screen and (max-width:767px){
    .-pc {
        display: none;
    }
    .-tab {
        display: inline-block;
    }
    .page-verve {
        margin-top: 0;
    }
}
@media screen and (max-width:540px){
    .-sp {
        display: inline-block;
    }
    .sec-title_eng {
        font-size: 3em;
    }
    .page-verve section {
        margin-bottom: 6rem;
    }
}

/*------------------*/
/* mainV            */
/*------------------*/
.mainV {
    background-image: url("../img/verve/mainV-bg-cover.png");
    background-size: cover;
    margin-bottom: 0!important;
}
.mainV_picbox {
    display: flex;
    align-items: flex-end;
}
.mainV_picbox_main {
    width: 65%;
}
.mainV_picbox_main .img-main {
        width: 100%;
    border-radius: 0 0 100vh 100vh; 
}
.mainV_picbox_sub {
    flex: 1;
    padding-right: 5%;
    position: relative;
    top: 7.5em;
}
.mainV_picbox_sub .img-sub {
    border-radius: 100vh;
}
.mainV_txtbox {
    width: 65%;
    text-align: center;
    padding: 0 5%;
    position: relative;
    top: -200px;
}
.mainV_txtbox .title {
    font-family: var(--font-title);
    font-size: 8.75em;
    line-height: 1;
    font-weight: 400;
    color: #fff;
    text-shadow: 1px 1px 13px rgba(0,0,0,0.4);
}
.mainV_txtbox .subtitle {
    font-family: var(--font-mincho);
    font-size: 2.875em;
    color: #fff;
    text-shadow: 1px 1px 13px rgba(0,0,0,0.4);
}
.mainV_txtbox .catch {
    color: var(--color-gray);
    margin-top: 1em;
}
.mainV_txtbox .catch_tit {
    font-size: 1.375em;
    margin-bottom: 1em;
}
.mainV_txtbox .catch_text {
}
.mainV .reveal-circle {  /*アニメーション*/
  overflow: hidden;
}
.mainV .reveal-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    clip-path: circle(0% at 50% 50%); /* 初期状態：完全に見せない */
    -webkit-clip-path: circle(0% at 50% 50%);
    animation: revealCircle 2.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 1.2s; 
}
.mainV_picbox_sub.reveal-circle img {
    animation-delay: 1.7s;
}
.mainV .reveal-text {
  overflow: hidden;
  clip-path: inset(100% 0 0 0);
  -webkit-clip-path: inset(100% 0 0 0);
  animation: revealText 1.4s ease-out forwards;
  animation-delay: 2.2s; /* ← 画像が出終わった後 */
}

@keyframes revealCircle {
    0% {
        clip-path: circle(0% at 50% 50%);
        -webkit-clip-path: circle(0% at 50% 50%);
    }
    99% {
        clip-path: circle(150% at 50% 50%);
        -webkit-clip-path: circle(150% at 50% 50%);
    }
    100% {
        /* clip-path を事実上無効化 */
        clip-path: none;
        -webkit-clip-path: none;
    }
}
@keyframes revealText {
    0% {
        clip-path: inset(100% 0 0 0);
        -webkit-clip-path: inset(100% 0 0 0);
    }
    100% {
        clip-path: inset(0 0 0 0);
        -webkit-clip-path: inset(0 0 0 0);
    }
}

@media screen and (max-width:820px){
    .mainV_txtbox .subtitle {
        font-size: 2em;
    }
}
@media screen and (max-width:540px){
    .mainV_picbox {
        display: block;
        height: 100dvh;
    }
    .mainV_picbox_main {
        width: 100%;
        height: 70%;
    }
    .mainV_picbox_main .img-main {
        height: 100%;
        object-fit: cover;
    }
    .mainV_picbox_sub {
        width: 50%;
        position: absolute;
        top: auto;
        bottom: 14%;
        right: 0;
    }
    .mainV_txtbox {
        width: 100%;
        text-align: left;
        position: absolute;
        top: auto;
        bottom: 10%;
    }
    .mainV_txtbox .title {
        font-size: 6em;
    }
    .mainV_txtbox .subtitle {
        font-size: 1.5em;
    }
    .mainV_txtbox .catch {
    color: var(--color-gray);
        line-height: 1.7;
    }
    .mainV_txtbox .catch_tit {
        font-size: 1.25em;
        margin-bottom: .6em;
    }
    .mainV_txtbox .catch_text {
        font-size: .85em;
    }
}


/*------------------*/
/* about us         */
/*------------------*/
.about {
}
.about_inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    row-gap: 2em;
}
.about-pic {
    width: 50%;
}
.about-pic .img {
    border-radius: 0 100vh 100vh 0;
}
.about-textbox {
    flex: 1;
    padding: 0 5%;
}
.about-textbox .sec-title {
    margin-bottom: 1.8em;
}
.about-textbox_txt {
}
.about-textbox_txt .tit {
    color: var(--color-gray);
    font-weight: bold;
    margin-bottom: .5em;
}
@media screen and (max-width:540px){
    .about-pic {
        width: 90%;
    }
}


/*------------------*/
/* feature          */
/*------------------*/
.feature {
    
}
.feature .sec-title {
    text-align: center;
    margin-bottom: 7em;
}
.feature .sec-title_eng {
    
}
.feature .sec-title_jp {
    
}
.feature .swiper-wrapper { /*PCの時はswiperの影響受けないように*/
    flex-direction: column;
}
.feature_list {
    counter-reset: num;
}
.feature_list_item {
    position: relative;
}
.feature_list_item > * {
    position: relative;
    z-index: 1;
}
.feature_list_item::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 95%;
    max-width: 1550px;
    height: 80%;
    background-color: rgba(153, 190, 208, .25);
    z-index: 0;
}
.feature_list_item:nth-child(odd)::before {
    border-radius: 25px 0 0 25px;
    right: 0;
}
.feature_list_item:nth-child(even)::before {
    border-radius: 0 25px 25px 0;
    left: 0;
}
.feature_list_item:not(:last-child) {
    margin-bottom: 160px;
}
.feature_list_item_inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: .5em 5%;
}
.feature_list_item:nth-child(even) .feature_list_item_inner {
    flex-direction: row-reverse;
}
.feature_list_item .txtbox {
    flex: 1;
    padding-top: 5%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 5%;
}
.feature_list_item:nth-child(odd) .txtbox {
    padding-left: 5%;
}
.feature_list_item:nth-child(even) .txtbox {
    padding-right: 5%;
}
.feature_list_item .txtbox_num {
    counter-increment: num;
}
.feature_list_item .txtbox_num:before {
    content: counter(num, decimal-leading-zero);
    font-family: var(--font-title);
    font-size: 3.125em;
    color: var(--color-green);
}
.feature_list_item .txtbox_text {
    
}
.feature_list_item .txtbox_text_tit {
    font-family: var(--font-mincho);
    font-size: 1.375em;
    line-height: 1.5;
    margin-bottom: 1em;
}
.feature_list_item .txtbox_text_txt {
}
.feature_list_item .picbox {
    width: 40%;
    position: relative;
    bottom: 60px;
}
.feature_list_item .picbox .img {
    border-radius: 25px;
}
.feature-swiper-wrp {
    position: relative;
}
.feature-swiper {
}
.feature-swiper-arrow {     /*swiper矢印設定*/
    display: none;
    width: 50%;
    justify-content: center;
    gap: 3em;
    position: absolute;
    right: 0;
    bottom: -20px;
    transform: translateY(50%);
    z-index: 1;
}
.swiper-button-prev,
.swiper-button-next {
    position: relative;
    width: 45px;
    height: 45px;
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid #9cafb2;
    border-radius: 50%;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}
.swiper-button-prev { /* 左矢印 */
  background-image: url("../img/home/icon_arrow_short_left_light.svg");
}
.swiper-button-next {/* 右矢印 */
  background-image: url("../img/home/icon_arrow_short_right.svg");
}
.swiper-button-prev::after,
.swiper-button-next::after {  /*デフォルトの矢印を消す*/
  display: none;
}

@media (max-width: 767px) {
    .feature-swiper-wrp::before {
        content: "";
        display: block;
        position: absolute;
        right: 0;
        bottom: 0;
        width: 95%;
        height: 80%;
        background-color: rgba(153, 190, 208, .25);
        border-radius: 14px 0 0 14px;
    }
    .feature-swiper {
        overflow: hidden;
    }
    .feature .swiper-wrapper { 
        flex-direction: row;
    }
    .feature-swiper-arrow {
        display: flex;
    }
    .feature_list_item {
        padding-bottom: 4em;
    }
    .feature_list_item:not(:last-child) {
        margin-bottom: 0;
    }
    .feature_list_item::before {
        content: none;
    }
    .feature_list_item_inner {
        flex-direction: column-reverse;
    }
    .feature_list_item:nth-child(even) .feature_list_item_inner {
        flex-direction: column-reverse;
    }
    .feature_list_item .picbox {
        width: 85%;
        bottom: auto;
    }
    .feature_list_item .picbox .img {
        border-radius: 14px;
    }
    .feature_list_item:nth-child(even) .txtbox {
        padding-right: 0;
        padding-left: 5%;
    }
    .feature_list_item .txtbox_text_tit {
        margin-bottom: .6em;
    }
}
@media screen and (max-width:540px) {
    .feature .sec-title {
        margin-bottom: 3em;
    }
}


/*------------------*/
/* service          */
/*------------------*/
.service {
    text-align: center;
}
.service_inner {
    
}
.service_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3em 5%;
}
.service_list_item {
}
.service_list_item .cont {
}
.service_list_item .cont_pic {
    width: 172px;
    height: 172px;
    margin: 0 auto;
    margin-bottom: 1em;
    border-radius: 50%;
    border: 1px solid #B4B4B4;
    background-color: #fff;
    display: grid;
    place-content: center;
    place-items: center;
}
.service_list_item .cont_pic .img {
    width: 50%;
}
.service_list_item .cont_tit {
    font-family: var(--font-mincho);
    font-size: 1.5em;
    line-height: 1.5;
    margin-bottom: .8em;
}
.service_list_item .cont_text {
}
@media screen and (max-width:540px){
    .service_list {
        grid-template-columns: repeat(1, 1fr);
    }
    .service_list_item .cont_pic {
        width: 110px;
        height: 110px;
    }
    .service_list_item .cont_tit {
        font-size: 1.3em;
    }
}

/*------------------*/
/* price            */
/*------------------*/
.price {
    
}
.price_inner {
    padding: 4em 5% 6em;
    background-color: #fff;
    border: 1px solid var(--color-gray2);
    border-radius: 12px;
}
.price .sec-title{
    text-align: center;
}
.price_note {
    font-size: .8em;
    text-align: right;
    margin-bottom: .5em;
}
.price_tabs {
    /*display: grid;*/
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    border-bottom: 1px solid var(--color-gray2);
    padding: 0 3%;
    display: none;
}
.price_tabs .tab {
    padding: .5em 5%;
    border-radius: 14px 14px 0 0;
    text-align: center;
    letter-spacing: 3px;
    background-color: rgba(230,230,230,0.4);
    border: 1px solid var(--color-green2);
    border-bottom: none;
}
.price_tabs .tab.is-active {
    background-color: var(--color-green2);
}
.price_content {
}
.price_content_item {
    display: block;
}
.price_content_item:not(:last-child) {
    margin-bottom: 4em;
}
.price_content_item .tit {
    background-color: var(--color-green2);
    padding: .5em 5%;
    border-radius: 14px 14px 0 0;
    text-align: center;
    font-size: 1.1em;
    letter-spacing: 10px;
}
.price_content_item .cont {
    
}
.price_content_item .cont_list {
}
.price_content_item .cont_list_item {
    padding: 1.5em 5%;
    border-bottom: 1px solid var(--color-gray2);
}
.price_content_item .cont_list_item:last-child {
    border-bottom: none;
}
.price_content_item .cont_list_item_title {
    margin-bottom: .5em;
}
.price_content_item .cont_list_item_desc {
    font-size: .85em;
    color: #686868;
    margin-bottom: .5em;
}
.price_content_item .cont_list_item_price {
    text-align: right;
}
.price_reserve { 
    width: 100%;
    max-width: 600px;
    margin: 4em auto 0;
}
.price_reserve_btn {
    width: auto;
    display: block;
    color: #fff;
    background-color: var(--color-green);
    border: 1px solid var(--color-green);
    padding: 1em 5%;
    font-size: 1.2em;
    text-align: center;
    transition: .3s;
}
.price_reserve_btn:hover {
    color: var(--color-green);
    background-color: #fff;
}
@media screen and (max-width:767px) {
    .price_tabs {
        display: grid;
    }
    .price_content_item {
        display: none;
      }
    .price_content_item.is-active {
        display: block;
    }
    .price_content_item .tit {
        display: none;
    }
}
@media screen and (max-width:540px) {
    .price_inner {
        padding: 2em 5% 4em;
    }
    .price_reserve_btn {
        font-size: 1.1em;
    }
}


/*------------------*/
/* トレーナー       */
/*------------------*/
.trainer {
    
}
.trainer_inner {
    
}
.trainer_profile {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2em 5%;
}
.trainer_profile_pic {
    width: 40%;
}
.trainer_profile_pic .img {
    border-radius: 14px;
}
.trainer_profile_text {
    flex: 1;
}
.trainer_profile_text .name {
    font-size: 1.5em;
    line-height: 1.5;
    margin-bottom: 1em;
}
.trainer_profile_text .name_eng {
    display: block;
    font-size: .8em;
    font-family: var(--font-title);
    color: var(--color-green);
}
.trainer_profile_text .txt {
    margin-bottom: 2em;
}
.trainer_profile_text .sports {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    column-gap: 5%;
}
.trainer_profile_text .sports_tit {
    display: inline-block;
    padding: .3em 5%;
    border-radius: 100vh;
    border: 1px solid var(--color-black);
    line-height: 1.5;
    background-color: rgba(255,255,255,0.5);
}
.trainer_profile_text .sports_text {
}
@media screen and (max-width:540px){
    .trainer_profile_pic {
        width: 80%;
        margin: 0 auto;
    }
}


/*------------------*/
/* FAQ              */
/*------------------*/
.faq {   
}
.faq_inner { 
}
.faq .sec-title {
    text-align: center;
}
.faq_cont {
    max-width: 900px;
    margin: 0 auto;
}
.faq_cont_item {
    border-bottom: 1px solid var(--color-gray2);
    padding: 2em 5%;
}
.faq_cont_item .q {
    position: relative;
    padding-left: 2.5em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5%;
}
.faq_cont_item .q:before {
    content: "Q";
    display: inline-block;
    font-family: var(--font-title);
    color: var(--color-green);
    font-size: 1.7em;
    line-height: 1;
    position: absolute;
    top: 0;
    left: 0;
}
.faq_cont_item .q_txt {
    flex: 1;
}
.faq_cont_item .q_arrow {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 1px solid var(--color-black);
    border-bottom: 1px solid var(--color-black);
    transform: rotate(45deg);
    transition: .3s;
}
.faq_cont_item .q.active .q_arrow {
    transform: rotate(-135deg);
}
.faq_cont_item .ans {
    display: none;
    font-size: .9em;
    padding-top: 1.5em;
    padding-left: 2.5em;
}


/*------------------*/
/* shop info        */
/*------------------*/
.shop {
    margin-bottom: 2em!important;
}
.shop_inner {   
}
.shop .sec-title {
    text-align: center;
}
.shop_cont {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2em 5%;
}
.shop_cont_text {
}
.shop_cont_text_item {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    column-gap: 3em;
    border-bottom: 1px solid var(--color-gray2);
    padding: 1.5em 5%;
}
.shop_cont_text_item:last-of-type {
    border-bottom: none;
}
.shop_cont_text_item .tit {
    width: 5em;
}
.shop_cont_text_item .text {
    flex: 1;
    line-height: 1.5;
}
.shop_cont_text_item .text_btn {
    display: inline-block;
    color: var(--color-green);
    border-radius: 100vh;
    border: 1px solid var(--color-green);
    padding: .0em 2em .4em;
    margin-top: 1em;
    transition: .3s;
}
.shop_cont_text_item .text_btn:hover {
    background-color: var(--color-green);
    color: #fff;
}
.shop_cont_text_sns {
    text-align: center;
    margin-top: 2em;
}
.shop_cont_text_sns a {
    width: 16em;
    display: inline-block;
    color: #fff;
    padding: 0 0 .5em;
    border-radius: 100vh;
}
.shop_cont_text_sns .insta {
    background-color: #BE739D;
}
.shop_cont_text_sns .insta .ico {
    font-size: 22px;
    position: relative;
    top: .2em;
    margin-right: .2em;
}
.shop_cont_pic {
}
.shop_cont_pic .img {
    border-radius: 14px;
    width: 100%;
}
@media screen and (max-width:767px) {
    .shop_cont {
        grid-template-columns: repeat(1, 1fr);
    }
    .shop_cont_text {
        order: 2;
    }
    .shop_cont_pic {
        order: 1;
        width: 80%;
        margin: 0 auto;
    } 
}


