html{
    font-size: 62.5%;
}
section{
    width: 80%;
    max-width: 1080px;
    margin: 150px auto 0;
}
li{
    list-style-type:none
}
/* header */
header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100vw;
}
header h3{
    color: #fff;
}
header .logo{
    height: 60%;
}
.navi_item{
    position: relative;
}
.hr{
    background:#A6C0CB ;
    height: 45px;
    width: 1px;
    display: block;
}
.navi_item a{
    color:  #000;
    font-family: "YuGothic";
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 500;
    line-height: 160%; /* 28.8px */
}
.header_btn_layout{
    display: flex;
    justify-content: center;
    gap: 2%;
    width: 100%;
    height: 48px;
}
.header_btn_layout img{
    width: 23px;
    margin-left: 4%;
}
.header_btn_layout .free_btn ,.header_btn_layout .normal_btn {
    height: 50px;
    justify-content: center;
    align-items: center;
    padding: 0 ;
    width: 50%;
    min-width: 174px;
}
.header_btn_layout .free_btn h3,.header_btn_layout .normal_btn h3{
    font-size: 1.7rem;
}
.header_btn_layout .free_btn img,.header_btn_layout .normal_btn img{
    margin-left: 0;
    width: 11%;
}
/*ハンバーガーメニュー*/
header .hamburger {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #fff;
}
header .hamburger .gNav{
    width: 80%;
    margin-left: 3%;
    max-width: 854px;
}
.hamburger .btn-gNav {
    position: relative;
    width: 50px;
    height: 30px;
    z-index: 12;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms;
    border-radius: 53.5px;
}
.hamburger .btn-gNav span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 4px;
    background: #333;
    border-radius: 10px;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}
.hamburger .btn-gNav span:nth-child(1) {
    top: 20%;
}
.hamburger .btn-gNav span:nth-child(2) {
    top: 50%;
}
.hamburger .btn-gNav span:nth-child(3) {
    top: 80%;
}
.hamburger .btn-gNav.open span:nth-child(1) {
    background: #ffffff;
    top: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.hamburger .btn-gNav.open span:nth-child(2),
.hamburger .btn-gNav.open span:nth-child(3) {
    top: 6px;
    background: #ffffff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    
    transform: rotate(45deg);
}
/*ヘッダーアニメーション*/
/*　上に上がる動き　*/

#header.UpMove{
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-100px);
    }
}

/*　下に下がる動き　*/

#header.DownMove{
    animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.btn-gNav {
    display: none;
}
header .navigation{
    display: flex;
    align-items: center;
    justify-content:space-between;
    gap: 2%;
    height: 80px;
    border-radius: 40px;
    padding: 0 30px 0 30px;
}
header li{
    white-space: nowrap;
}
header img{
    margin-left:3%;
}

/* mv */
.mv{
    width: auto;
    max-width: none;
    margin-top: 0;
}
.mv-background{
    position: relative;
    background-image: url(../img/mv.png);
    background-size: cover;
    width: 100vw;
    height: 900px;
    margin-left: auto;
    background-position: 30% 50%;
}
.mv-card{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42%;
    height: 820px;
    padding: 40px 40px 0 40px;
    background-color: #A6C0CB;
}
.mv-card h1{
    color: #FFF;
    font-family: YuGothic;
    font-size: 6.0rem;
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
    margin-top: 30px;
}
.mv-card h2{
    color: #FFF;
    font-family: YuGothic;
    font-size: 3.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
}
._card-absolute1{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70%;z-index: -1;
}
._card-absolute2{
    position: absolute;
    right: 4%;
    bottom: 3%;
    width: 30%;
}
/* mystandard */
.mystandard{
    width: 80%;
    max-width: 1080px;
}
.mystandard-text{
    position: relative;
    text-align: center;
    margin-bottom: 150px;
}
.mystandard-absolute{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.mystandard-absolute h2{
    color: #222;
    text-align: center;
    /* LP/YuGothic_キャッチコピー */
    font-family: YuGothic;
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
    margin-bottom: 32px;
}
.mystandard-absolute p{
    color: #222;
    text-align: center;
    /* LP/YuGothic_p */
    font-family: YuGothic;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height : 170%;
}
.mystandard-absolute p:last-child{
    margin-top: 40px;
}
.mystandard-bg{
    width: 100%;
}
.mystandard-flex ol{
    display: flex;
    justify-content: center;
    gap: 2%;
}
.mystandard-flex ol li{
    text-align: center;
    width: 31%;
}
.mystandard-flex ol li img{
    width: 40%;
    min-width: 100px;
    margin: 0 auto;
}
.mystandard-flex .point-img{
    width: 100%;
    margin: auto;
}
.mystandard-flex ol li p{
    color:#222;
    text-align: center;
    /* LP/YuGothic_H3 */
    font-family: YuGothic;
    font-size: 2.0rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 16px;
}

/* room */
.room-title{
    color: #222;
    text-align: center;
    font-family: YuGothic;
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    border-left:1px solid #000 ;
    border-right:1px solid #000 ;
    width: fit-content;
    padding: 0 20px;
    margin: 0 auto 64px;
}
.room-box{
    width: 100%;
    margin-top: 56px;
}
.room-box:not(:has(~ .room-box)) {
    margin-top: 100px;
}
.room-box img{
    width: 100%;
}
.room-link{
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 2%;
    width: 100%;
    margin-top: 20px;
}
.room-link p {
    color: #222;
    font-family: YuGothic;
    font-size: 2.0rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    white-space: nowrap;
}
.room-name{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: start;
    margin-top: 40px;
}
.room-name h3{
    color: #222;
    /* LP/YuGothic_H2 */
    font-family: YuGothic;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
}
.room-name p{
    color:#222;
    /* LP/YuGothic_p */
    font-family: YuGothic;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    width: 70%;
}
.room-facility{
    margin-top: 56px;
}
.room-amenity{
    margin-top: 40px;
}
.room-facility,.room-amenity{
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.room-facility h4,.room-amenity h4{
    color:#222;
    /* LP/YuGothic_p */
    font-family: YuGothic;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    border-left: 8px solid #A6C0CB;
    padding-left: 6px ;
}
.room-facility p,.room-amenity p{
    color:#222;
    /* LP/YuGothic_p */
    font-family: YuGothic;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    width: 80%;
}
.room-mobile{
    margin-top: 150px;
    display: flex;
    gap: 4%;
}
.mobile-text{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.mobile-title{
    color:#222;
    text-align: left;
    /* LP/YuGothic_H1 */
    font-family: YuGothic;
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
    border-bottom:1px solid #222;
    width: 100%;
}
.mobile-text p{
    color: #222;
    /* LP/YuGothic_p */
    font-family: YuGothic;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: 170%; 
    width: 80%;
}
.room-mobile img{
    width: 60%;
}

/* facility */
.facility-title{
    color: #222;
    text-align: center;
    /* LP/YuGothic_H1 */
    font-family: YuGothic;
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    border-left:1px solid #000 ;
    border-right:1px solid #000 ;
    margin:0 auto 56px ;
    width: fit-content;
    padding: 0 20px;
}
.facility-flex{
    display: flex;
    gap: 4%;
    margin-bottom: 120px;
}
.facility-fitness{
    flex-direction: row-reverse;
}
.facility-flex img{
    width: 70%;
}
.facility-text {
    width: 26%;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
}
.facility-text span{
    color: #A6C0CB;
    font-family: YuGothic;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.facility-text h4{
    color: #222;
    font-family: Amiko;
    font-size: 2.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
    margin-bottom: 24px;
}
.facility-text p{
    color:#222;
    /* LP/YuGothic_p */
    font-family: YuGothic;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
}
.facility-text a {
    margin-top: auto;
}
.facility-link{
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 4%;
    width: 100%;
}
.facility-other .facility-link{
    gap: 4%;
    width: 20%;
    justify-content: center;
}
.facility-link p{
    color:#222;
    /* LP/YuGothic_H3 */
    font-family: YuGothic;
    font-size: 2.0rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    white-space: nowrap;
}
.facility-other{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 74%;
    padding:32px 18% 32px 8%;
    border-top: 1px solid #222222;
    border-bottom: 1px solid #222222;
    margin: 0 auto;
}
.facility-other h4{
    color: #222;
    /* LP/YuGothic_施設txt */
    font-family: YuGothic;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
}

/* plan */
.plan-title{
    color: #222;
    text-align: center;
    /* LP/YuGothic_H1 */
    font-family: YuGothic;
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    border-left:1px solid #000 ;
    border-right:1px solid #000 ;
    margin:0 auto 56px ;
    width: fit-content;
    padding: 0 20px;
}
.plan-grid{
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 3rem;
    margin-bottom: 56px;
}
.plan-item{
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.10);
}
.plan-text{
    padding:16px 3% ;
}
.plan-item h4{
    color:#222;
    /* LP/YuGothic_H2 */
    font-family: YuGothic;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 170%; /* 40.8px */
    margin-bottom: 56px;
}
.plan-item .row2{
    margin-bottom: 22px;
}
.plan-link{
    color:#222;
    text-align: right;
    /* LP/YuGothic_H2 */
    font-family: YuGothic;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 170%; 
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 4%;
}
.plan-other{
    color: #222;
    text-align: center;
    /* LP/YuGothic_H2 */
    font-family: YuGothic;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    display: flex;
    align-items: center;
    gap: 2%;
}
.plan-attention{
    color:#222;
    text-align: center;
    /* LP/YuGothic_p */
    font-family: YuGothic;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: 170%; /* 27.2px */
    margin-top: 150px;
    display: block;
}

/* footer */
footer{
    margin-top: 170px;
    background:#222 ;
    width: 100vw;
}
.footer-inner{
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 1%;
    width: 80%;
    max-width: 1080px;
    margin: 0 auto;
    height: 132px;
}
.footer-inner p{
    color: #fff;
    font-family: YuGothic;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: 170%; /* 27.2px */

}
.footer-inner .facebook,.footer-inner .insta{
    border: 1px solid #fff;
    border-radius: 20px;
    color: #fff;
    display: table-cell;
    font-size: 19px;
    height: 40px;
    text-align: center;
    vertical-align: middle;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-inner .facebook img,.footer-inner .insta img{
    width: 60%;
}
.copyright{
    background: #f4f5f6;
    height: 96px;
    display: flex;
    align-items: center;
}
.copyright p{
    width: 80%;
    max-width: 1080px;
    margin: 0 auto;
    color: #888;
    font-family: '游明朝', 'Yu Mincho', 'YuMincho', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', Georgia;
    font-size: 1.4rem;
    text-align: center;
}

.sp-only{
    display: none;
}
@media screen and (max-width:1200px){
    html{
        font-size: 52%;
    }
}
@media screen and (max-width:900px) {
    html{
        font-size: 50%;
    }
    section{
        width: 94%;
        margin: 80px auto 0;
    }
    .pc-only{
        display: none;
    }
    .sp-only{
        display: block;
    }


    header{
        width: 100%;
    }
    .hamburger .btn-gNav {
        display: block;
        background: rgba(255, 255, 255, 0.80);
    }

    .gNav {
        position: fixed;
        top: -20px;
        right: -150%;
        width: 100%;
        height: 100%;
        font-size: 16px;
        box-sizing: border-box;
        z-index: 1;
        transition: .3s;
    }

    .gNav.open {
        left: 50%;
        transform: translateX(-50%);
    }
    header .navigation{
        flex-direction: column;
        justify-content: flex-start;
        height: 100vh;
        gap: 4%;
        border-radius: 0;
        background:rgba(255, 255, 255, 0.90);
    }
    header .hamburger .gNav{
        width: 100vw;
        margin-right: 0;
    }
    header .logo{
        height: 60%;
    }
    .navi_item:nth-child(1) a,.navi_item:nth-child(3) a,.navi_item:nth-child(5) a ,.navi_item:nth-child(7) a,.navi_item:nth-child(9) a{
        border-left:2px solid #A6C0CB;
        padding-left:8px ;
    }
    .navi_item:nth-child(2)::before, .navi_item:nth-child(3)::before{
        display: none;
    }
    .navi_item{
        width: 100%;
    }
    .navi_item a{
        text-align: left;
        font-size: 16px;
        width: 100%;
    }
    .navi_item:nth-child(1){
        margin-top: 100px;
    }
    .header_btn_layout{
        flex-direction: column;
        gap: 5%;
    }
    .header_btn_layout .btn:nth-child(2){
        margin-top: 30px;
    }

    .gNav .gNav-menu {
        padding: 0;
        width: 100%;
        height: 100%;
        display: block;
        flex-direction: column;
        text-align: center;
        /*justify-content: center;*/
    }

    .gNav .gNav-menu li {
        width: 86%;
        padding: 15px;
        border-bottom: #525252 1px solid;
    }

    .header_btn_layout .free_btn, .header_btn_layout .normal_btn{
        width: 100%;
        margin-bottom: 10px;
    }

    /* mv */
    .mv-background{
        width: 100vw;
        height: 700px;
        background-position: 56% 50%;
    }
    .mv-background.sp-only{
        height: 440px;
    }
    .mv-card {
        position: relative;
        width: 100%;
        bottom: 0;
        margin: 0 auto;
        height:260px;
        text-align: center;
        padding: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
    }
    .mv-card h1{
        font-size: 3rem;
        margin-top:0 ;
    }
    .mv-card h2{
        font-size: 2rem;
    }
    ._card-absolute1{
        z-index: 1;
        width: 50%;
    }

    /* mystandard */
    .mystandard{
        width: 94%;
    }
    .mystandard-absolute{
        width: 84%;
        top: 42%;
    }
    .mystandard-absolute h2{
        font-size: 2rem;
        margin-bottom: 16px;
    }
    .mystandard-absolute p:last-child{
        margin-top: 20px;
    }

    .mystandard-flex ol{
        flex-direction: column;
        gap: 1%;
        padding: 0;
    }
    .mystandard-flex ol li{
        width: 100%;
    }
    .mystandard-flex .point-img{
        margin: 0 auto 16px;
    }
    /* room */
    .room-name{
        flex-direction: column;
    }
    .room-name h3{
        margin-bottom: 10px;
    }
    .room-name p{
        width: 100%;
    }
    .room-facility, .room-amenity{
        flex-direction: column;
    }
    .room-facility h4, .room-amenity h4{
        margin-bottom: 8px;
        padding-left: 6px;
    }
    .room-facility p, .room-amenity p{
        width: 100%;
    }
    .room-mobile{
        flex-direction: column;
    }
    .mobile-title{
        width: 100%;
        padding: 0;
        margin-bottom: 10px;
    }
    .mobile-text{
        align-items: center;
    }
    .mobile-text p{
        margin-bottom: 8px;
    }
    .room-mobile img{
        width: 100%;
    }
    /* facility */
    .facility-flex{
        flex-direction: column;
    }
    .facility-text{
        width: 100%;
        margin-bottom: 28px;
    }
    .facility-text span{
        font-size: 1.6rem;
    }
    .facility-flex img{
        width: 100%;
    }
    .facility-other{
        padding: 32px 8%;
        justify-content: center;
        gap: 10%;
    }
    /* plan */
    .plan-grid{
        grid-template-rows:1fr 1fr 1fr 1fr;
        grid-template-columns:1fr;
        gap:2rem;
    }
    .plan-attention{
        margin-top: 30px;
    }
}

