@charset "utf-8";

/* ==================================================================

    index.css

=================================================================== */


/* ◇ box
-------------------------------- */
.contents main > section{
    padding: 80px 0;
}

.contents main > section + section{
    margin-top:0;
}

.contents main > section .more{
    margin-bottom: 0;
}

.contents main > section .more a{
    width: 258px;
}

/* SP用
----------- */
@media only screen and
(max-width : 767px) {
    
    /* ◇ box
    -------------------------------- */
    .contents main > section{
        padding-top: 8vw;
        padding-bottom: 8vw;
    }


    .contents main > section .more a{
        width: 70%;
    }

}

/* --------------------------------
■accentBox
-------------------------------- */ 
.accentBox{
    position: relative;
    width: 100%;
    height: 90vh;
    background: url("../../images/accent/visual.jpg?d=20240920") 50% 20% no-repeat;
    background-size: cover;
    filter: blur(10px);
    margin-top: 84px;
    margin-bottom: 24px;
    
    animation: accentBoxAnime 1.6s forwards;
}
@-webkit-keyframes accentBoxAnime {
    0% { filter: blur(4px); transform:scale(1.1);}
    100% { filter: blur(0);  transform:scale(1);}
}

    .accentBox .appeal{
        opacity: 0;
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        transition: .3s cubic-bezier(0.37, 0, 0.63, 1), opacity linear .7s;
        transition-property: clip-path;
        transition-delay: 1.75s;
        clip-path: inset(100% 0 0 );
        max-width: 700px;
        width: 100%;
    }
    .accentBox .appeal img{
        width: 100%;
    }
    .accentBox .appeal.confirmed {
        opacity: 1;
        clip-path: inset(0);
    }

    .accentBox .container{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        max-width:90%;
        height: 100%;
        margin: 0 auto;
    }
    .accentBox .text{
        clip-path: inset(0 100% 0 0);
        transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
        transition-delay: 0.25s;
        transition-property: clip-path;
        text-align: right;
        margin-top: 7vw;
        margin-left: auto;
        max-width: 50vw;
        text-align: right;
    }
    .accentBox .text.confirmed {
        clip-path: inset(0);
    }

    .accentBox .text > em,
    .accentBox .text > span{
        display: inline-block;
        color: #fff;
        font-size: 6.4rem;
        padding: 13px 17px;
        line-height: 1.1;
        opacity: 0;
        transform: translate(20%, 0);
        font-weight: 700;
        background: rgba(0,0,0,0.9);
        
        transition: 1.0s cubic-bezier(0.37, 0, 0.63, 1), opacity linear 0.7s;
        transition-property: clip-path;
        clip-path: inset(0 100% 0 0);
        transition-delay: 0.75s;
    }

    .accentBox .text.confirmed > em,
    .accentBox .text.confirmed > span{
        opacity: 1;
        transform: translate(0, 0);
        clip-path: inset(0);
    }

    .accentBox .text.confirmed > em img,
    .accentBox .text.confirmed > span img{
        max-width: 100%;
    }

    .accentBox .text + .text{
        margin-top: 10px;

        transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
        transition-property: clip-path;
    }
    .accentBox .text:first-child + .text{
        margin-top: 24px;
    }

    .accentBox .shop{
        width: 100%;
        position: absolute;
        bottom: 0px;
        left: 0%;
        padding: 8px 0;
        background: rgba(255,255,255,0.8);
    }

    .accentBox .shop .shopLead{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 32px;
        max-width: 90%;
        margin-inline:auto;
    }
    .accentBox .shop .shopLead dt{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .accentBox .shop .shopLead dd ul{
        gap:12px;
    }
    .accentBox .shop .shopLead dd ul li img{
        width: 100%;
        height: auto;
        max-height: 100%;
    }



    
/* SP用
-------------------------------------------- */
@media only screen and
(max-width : 767px) {
    
.accentBox{
    overflow: visible;
    width: 100%;
    margin-top: 50px;
    height: 50vh;
    margin-bottom: 1rem;
    background: url("../../images/accent/visual_sp.jpg?d=20240920") 50% 50% no-repeat;
    background-size: 100% auto;
}

    .accentBox .container{
        max-width:95%;
    }
    
    .accentBox .appeal{
        bottom: 20px;
    }
    .accentBox .appeal img{
        width: 100%;
    }
    .accentBox .newopen {
        position: absolute;
        top: inherit;
        bottom: 31vw;
        left: inherit;
        right: 0;
    }
    .accentBox .newopen img{
        max-width: 60vw;
    }

    .accentBox .text{
        clip-path: inset(0 100% 0 0);
        transition: 1.0s cubic-bezier(0.37, 0, 0.63, 1);
        transition-delay: 0.75s;
        transition-property: clip-path;
        max-width: 60vw;

    }
    .accentBox .text.confirmed {
        clip-path: inset(0);
    }

    .accentBox .text > em, .accentBox .text > span {
        font-size: 2.4rem;
        padding: 13px 17px;
    }

    .accentBox .shop{
        width: 100%;
        position: absolute;
        bottom: 0px;
        left: 0%;
        padding: 8px 0;
    }

    .accentBox .shop .shopLead{
        gap: 10px;
        max-width:95%;
    }
    .accentBox .shop .shopLead dd img{
        display: block;
    }
    
    
}

/* --------------------------------
■appeal
-------------------------------- */ 
.appeal{
    text-align: center;
    margin-bottom: 48px;
}

* +.appeal{
    margin-top: 64px;
}

.appeal img{
    min-width: 60%;
    max-width: 80%;
}
/* SP用
-------------------------------------------- */
@media only screen and
(max-width : 767px) {
    .appeal{
        margin-bottom: 5vw;
    }

    * +.appeal{
        margin-top:8vw;
    }
    
    .appeal img{
    }
    
}

/* --------------------------------
■novas-training
-------------------------------- */ 

#novas-training{
    margin-bottom: 48px;
    padding: 0 40px;
    overflow: hidden;
    
}
#novas-training a{
    overflow: hidden;
    position: relative;
    display: block;
    margin: 0 auto;
    padding: 80px 10px;
    max-width: 1500px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    transition: .3s;
}
#novas-training a:hover{
}

#novas-training a::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../../images/index/training.jpg") 50% 50% no-repeat;
    background-size: cover;
    transition: .5s;
}
#novas-training a:hover::before{
    transform: scale(1.1);
}
#novas-training a::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    transition: .6s;
}
#novas-training a:hover::after{
    background: rgba(0,0,0,0.8);
}

#novas-training a > *{
    position: relative;
    z-index: 1;
    text-align: center;
}


#novas-training h2{
    position: relative;
    font-size: 4.4rem;
    transition: .3s;
    letter-spacing: 0.1em;
}
    #novas-training h2 span{
        position: absolute;
        top: 0;
        left: 0%;
        width: 100%;
        opacity: 1;
        transition: 0.6s;
    }
	#novas-training a:hover h2{
        letter-spacing: 1;
    }
	#novas-training a:hover h2 span.jp{
        color: #D69B03;
    }
/*
    #novas-training h2 span.en{
        opacity: 1;
    }
    #novas-training a:hover h2 span.jp{
        opacity: 1;
    }
    #novas-training a:hover h2 span.en{
        opacity: 0;
    }
*/

#novas-training p.text{
    margin-top: 7rem;
}


#novas-training .fukidashi{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 4px 16px;
    min-width: 400px;
    margin-bottom: 8px;
}

    #novas-training .fukidashi::before,
    #novas-training .fukidashi::after {
        content: "";
        width: 30px;
        height: 2px;
        box-sizing: border-box;
        background-color: #fff;

    }
    #novas-training .fukidashi::before {
      transform: rotate(60deg);
    }
    #novas-training .fukidashi::after {
      transform: rotate(-60deg);
    }


#novas-training .buttonStyle{
    margin: 0;
}
#novas-training .buttonStyle > span{
    min-width: 400px;
    border: 1px solid #000;
}
#novas-training a:hover .buttonStyle > span{
    background: transparent;
    border: 1px solid #fff;
}
    
/* タブレット用
-------------------------------------------- */
@media (max-width: 1180px) and 
(min-width: 768px) {
    
    
}

/* SP用
----------- */
@media only screen and
(max-width : 767px) {

#novas-training{
    margin-bottom: 6vw;
    padding: 0 20px;
    overflow: hidden;
    
}
#novas-training a{
    padding: 40px 10px;
}
#novas-training a:hover{
}

#novas-training a:hover::after{
    background: rgba(0,0,0,10);
}

#novas-training a > *{
    position: relative;
    z-index: 1;
    text-align: center;
}


#novas-training h2{
    position: relative;
    font-size: 2.4rem;
    letter-spacing: 0;
}
    #novas-training h2 span{
        position: absolute;
        top: 0;
        left: 0%;
        width: 100%;
        opacity: 1;
        transition: 0.6s;
    }
	#novas-training a:hover h2{
        letter-spacing: 0;
    }
	
	/*
    #novas-training h2 span.en{
        opacity: 1;
    }
    #novas-training a:hover h2{
        letter-spacing: 0;
    }
    #novas-training a:hover h2 span.jp{
        opacity: 1;
    }
    #novas-training a:hover h2 span.en{
        opacity: 0;
    }
	*/

#novas-training p.text{
    margin-top: 7rem;
}
    
#novas-training .fukidashi{
    font-size: 1.5rem;
    width: 96%;
    min-width: inherit;
    line-height: 1.3;
}

    #novas-training .fukidashi .fukidashi::before,
    #novas-training .fukidashi .fukidashi::after {
        width: 24px;
        height: 2px;
    }

#novas-training .buttonStyle{
    margin: 0;
    line-height: 1.3;
}
#novas-training .buttonStyle > span{
    min-width: inherit;
    border: 1px solid #000;
    width: 96%;
    font-size: 1.5rem;
}
    
}

/* --------------------------------
■quickMenu
-------------------------------- */ 

#quickMenu .linkbox{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    max-width: 1500px;
    max-height: 400px;
    margin: 0 auto;
    overflow: hidden;
}

#quickMenu .linkbox .fukidashi{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 4px 16px;
    width: 350px;
    margin-bottom: 8px;
}

    #quickMenu .linkbox .fukidashi::before,
    #quickMenu .linkbox .fukidashi::after {
        content: "";
        width: 30px;
        height: 2px;
        box-sizing: border-box;
        background-color: #333333;

    }
    #quickMenu .linkbox .fukidashi::before {
      transform: rotate(60deg);
    }
    #quickMenu .linkbox .fukidashi::after {
      transform: rotate(-60deg);
    }

#quickMenu .linkbox > .text{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding:  32px;
}
#quickMenu .linkbox > .text .buttonStyle{
    text-align: left;
}
#quickMenu .linkbox > .text .buttonStyle a{
    width: 350px;
    text-align: center;
    font-weight: 600;
}
#quickMenu .linkbox > .image{
    margin: 0;
    width: 50%;
}
#quickMenu .linkbox > .image img{
    width: 100%;
    object-fit: cover;
}


#quickMenu .linkbox.trainer,
#quickMenu .linkbox.before,
#quickMenu .linkbox.diet{
    background-color:#C1BCB9;
}
#quickMenu .linkbox.service{
    background-color:#BFB690;
}


#quickMenu .linkbox._reverse{
    flex-direction:row-reverse;
}


/* SP用
----------- */
@media only screen and
(max-width : 767px) {
    
#quickMenu .linkbox{
    flex-direction: column-reverse;
    max-height: 400px;
}
#quickMenu .linkbox > .text{
    flex-direction: column;
    justify-content: center;
    padding:  26px;
}
    
#quickMenu .linkbox .fukidashi{
    padding: 4px 16px;
    width: 100%;
    margin: 16px auto 2px auto;
    font-size: 1.5rem;
}

    #quickMenu .linkbox .fukidashi::before,
    #quickMenu .linkbox .fukidashi::after {
        content: "";
        width: 24px;
        height: 2px;
    }

    
#quickMenu .linkbox > .text .buttonStyle{
    text-align: center;
}
#quickMenu .linkbox > .text .buttonStyle a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    line-height: 1.3;
    font-size: 1.6rem;
    min-height: 5.5rem;
}
#quickMenu .linkbox > .text .buttonStyle a > span{
    width: 100%;
}
#quickMenu .linkbox > .image{
    margin: 0;
    width: 100%;
}
#quickMenu .linkbox > .image img{
    width: 100%;
    height: 180px;
    object-fit: cover;
}

#quickMenu .title._lv3{
    text-align: center;
}

#quickMenu .linkbox._reverse{
    flex-direction: column-reverse;
}
}

/* --------------------------------
■ul.itemList
-------------------------------- */ 

ul.itemList{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    gap:24px 32px;
}

ul.itemList li{
    width: calc((100% / 3) - 32px);
}
    ul.itemList li a{
        display: block;
        height: 100%;
        text-decoration: none;
        color: #333;
        padding: 0 10px 10px 10px;
        transition: .3s;
    }
    ul.itemList li a:hover{
        background: #eee;
    }
    ul.itemList li a figure .image{
        margin-left: -10px;
        margin-right: -10px;
        overflow: hidden;
        aspect-ratio: 381 / 254;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #ccc;
    }
    ul.itemList li a figure .image img{
        width: 100%;
        transition: .3s;
        object-fit: cover;
    }
    ul.itemList li a:hover figure .image img{
        transform:scale(1.1);
    }

    ul.itemList li a figure figcaption{
        display: flex;
        flex-direction: column;
    }
    ul.itemList li a figure figcaption p{
        margin: 0;
    }
    ul.itemList li a figure figcaption p.date{
        font-size: 1.4rem;
        color: #777;
    }
    ul.itemList li a figure figcaption p.title{
        flex-grow: 1;
    }

ul.itemList + .more{
    margin-top: 48px;
}


/* SP用
----------- */
@media only screen and
(max-width : 767px) {
 
ul.itemList{
    display: block;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 20px 2%;
}

ul.itemList li{
    width: auto;
    border-bottom: 1px solid #eee;
}

    ul.itemList > li + li{
        margin-top: 4vw;
    }
    
    ul.itemList li a{
        padding: 0 10px 10px 10px;
        padding-bottom: 4vw;
    }
    ul.itemList li a:hover{
        background: #fff;
    }

    ul.itemList > li figure{
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap:0 4vw;
    }

    .contents ul.itemList > li .image{
        margin: 0;
        width: 30vw;
        flex-shrink: 0;
        border: 1px solid #efefef;
    }
    ul.itemList > li figure figcaption{
        flex-grow: 1;
        box-sizing: border-box;
        padding: 0;
    }

    ul.itemList li a figure .image img{
        max-width: 100%;
    }
   ul.itemList > li a:hover{
        background: #fff;
    }
    ul.itemList li a:hover figure .image img{
        transform:scale(1);
    }

    ul.itemList > li figure figcaption  p.date{
        font-size: 1.1rem;
    }
    ul.itemList li a figure figcaption p.title{
        font-size: 1.5rem;
        line-height: 1.3;
    }
    ul.itemList li:nth-child(n+3){
        display: none;
    }

ul.itemList + .more{
    margin-top: 28px;
}
    
    
}

/* --------------------------------
■#news
-------------------------------- */ 

#news{
    padding-top: 0;
}
#news .newsBox{
    gap:0;
    padding-bottom: 42px;
}


#news .newsBox h2{
    width: 20%;
    padding-top: 0;
    padding-right: 42px;
    text-align: center;
}
#news .newsBox .newsList{
    border-left: 1px solid #333;
    padding-left: 42px;
    flex-grow: 1;
}
#news .newsBox .newsList a{
    color: #333;
}

#news .newsBox .newsList li a > dl{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap:12px;
}
#news .newsBox .newsList li a > dl dt{
    flex-shrink: 0;
}

/*
#news{
    background: #efefef;
}
*/
    #news ul.itemList li a:hover{
        background: #ddd;
    }




@media only screen and
(max-width : 767px) {
    #news{
        padding-bottom: 5vw;
    }

    #news .newsBox{
        padding-bottom: 12px;
        gap:0;
    }


    #news .newsBox h2{
        width: 23vw;
        padding-top: 0;
        padding-right: 12px;
        font-size: 1.3rem;
        text-align: center;
    }
    #news .newsBox .newsList{
        border-left: 1px solid #333;
        padding: 8px 0 8px 12px;
        flex-grow: 1;
    }
    #news .newsBox .newsList a{
        color: #333;
    }

    #news .newsBox .newsList li + li{
        margin-top: 8px;
    }
    #news .newsBox .newsList li a > dl{
        align-items: flex-start;
        justify-content: flex-start;
        gap:12px;
    }
    #news .newsBox .newsList li a > dl dt{
        flex-shrink: 0;
        font-size: 1.3rem;
    }
    #news .newsBox .newsList li a > dl dd{
        font-size: 1.4rem;
        line-height: 1.2;
    }

}

	
