@charset "UTF-8";

/* =================================
common
=================================== */


html {
    font-size: 62.5%;
}

/* Body */
body {
    font-family:  
        "Shippori Mincho B1", 
        sans-serif;
    font-style: normal; 
    background-image: url(../images/haikei-01.jpg);
    color: #333;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

.section__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-00h, 4px);
}

.section__topic{
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    line-height: 100%; /* 20px */
    letter-spacing: 2px;
}

.section__sub {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 100%; /* 12px */
    letter-spacing: 1.2px;
    margin-top: 4px;
}

/* Body pc */
@media screen and (min-width: 769px) {

    .section__topic {
    text-align: center ;
    font-size: 4.8rem ;
    line-height: 100% ; /* 64px */
    letter-spacing: 6.4px ;
    }

    .section__sub {
    text-align: center ;
    font-size: 1.8rem ;
    line-height: 100% ; /* 16px */
    letter-spacing: 1.6px ;
    margin-top: 12px ;
    }

}



/* =================================
main
=================================== */



/* room section */
.section--room {
    padding: 48px 7.7%;
}

.room_secondary {
    margin-top: 72px;
    text-align: center;
}

.room__item-title {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 2; /* 32px */
    letter-spacing: 1.6px;
    display: inline-block;
    border-bottom: 1px solid var(--color-default, #333);
}

.roomImg__common {
    margin-top:28px ;
}

.room__item-description {
    font-feature-settings: 'palt' on;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2; /* 30px */
    letter-spacing: 0.75px;
    margin-top: 28px;
    text-align: left;
}

.room__item-caption {
    text-align: right;
    margin-top: 50px;  
}

.room__item-link {
    text-align: justify;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 200%; /* 30px */
    letter-spacing: 0.75px;
    transition: 0.4s;
}

.room__item-link::after {
    display: inline-block;
    content: '';
    width: 18px;
    height: 18px;
    background-image: url(../images/arrow-right.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: -18px;
    transform: translateY(-120%);
}

.room__item-link:hover {
    opacity: 0.5;
}


/* =====================================-
fadeInを作る
======================================= */







/* room section pc */
@media screen and (min-width:769px) {
    
    .section--room {
        padding: 80px 13.8% ;
    }

    .room_secondary {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 120px;
    }

    .room_secondary--odd {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: var(--space-04, 32px);
    }    

    .room_secondary--even {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-04, 32px);
    }

    .room_secondary--odd .room__item-title {
        font-size: 3.5rem;
        font-weight: 600;
        line-height: 150%; /* 52.5px */
        letter-spacing: 3.5px;

        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .room_secondary--even .room__item-title {
        font-size: 3.5rem;
        font-weight: 600;
        line-height: 150%; /* 52.5px */
        letter-spacing: 3.5px;

        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

.room_secondary--odd .room__area:nth-child(odd) {
    flex-direction: row-reverse;
}


    .room__area {
        display: flex;
        gap: 56px;
        flex-direction: row;
    }

    .room__area--odd {
        flex-direction: row-reverse;
    }

   

    .roomImg__common , .room__item-description {
        width: 50%;
    }

    .room__item-description {
        text-align: justify;
        font-size: 1.6rem;
        font-weight: 500;
        line-height: 200%; /* 32px */
        letter-spacing: 0.8px;
    }

   

    .room__item-link {
        font-size: 1.6rem;
        font-weight: 700;
        line-height: 150%; /* 24px */
        letter-spacing: 1.6px;
        text-align: justify;
        position: relative;
        transition: 0.4s;
    }
    
   

     .room__item-link::after {
            display: inline-block;
            content: '';
            width: 40px;
            height: 40px;
            transform: rotate(90deg);
            background-image: url(../images/arrow-right.svg);
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            position: absolute;
            left: 120px;
            top: 230%;
            transform: translateY(-150%);
        
    } 
   
    .room__item-link:hover {
        opacity: 0.5;
    } 
    
}



/* news section */



.section--news {
    padding:48px 7.7%;
    background-image: url(../images/haikei-02.jpg);
}

.news__item {
    margin-top: 36px;
    border-bottom: 1px solid var(--color-line, #D2D2D2);
}

.news__item time {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;            
    letter-spacing: 1.4px;
    background-color: var(--color-news-button, #FF7B9E);
    padding: 8px;
    margin-top: 29px;
}

.news__item p {
    display: block;
    margin-top: 32px;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1; /* 14px */
    letter-spacing: 1.4px;
    margin-bottom: 10px;
}

/* news section pc */
@media screen and (min-width:769px) {
    

.section--news {
    padding:72px  11.8%;
}

.news__item {
    margin-top:72px ;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid var(--color-line, #D2D2D2);

}

.news__item time {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 100%; /* 16px */
    letter-spacing: 1.6px;
    padding: 14px 26px;
    background: var(--color-news-button, #FF7B9E);
}

.news__item p {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 150%; /* 24px */
    letter-spacing: 1.6px;
    margin-left: 96px;
    margin-bottom: 36px;
}

}


/* =================================
footer
=================================== */

.footer {
    padding: 15px 2.2%;
    background-color: var(--color-footer-button, #8E0F38);
}

.footer__group {
    margin-left: 40px;
}

.footer__topic img {
    width: 195px;
    height: 35px;
}

.menu__list {
    margin-top: 16px;
}

.menu__item {
    color: var(--color-white, #FFF);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1; /* 14px */
    letter-spacing: 1.4px;
    margin-top: 16px;
}

.sns {
    display: flex;
    margin-top: 24px;
}

.sns__item {
    width: 20px;
    height: 20px;
    margin-right: 24px;
}


.copy {
    margin-top: 23px;
    margin-left: 40px;
}

.copy small {
    color: var(--color-white, #FFF);
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1; /* 12px */
    letter-spacing: 1.8px;
}

.topBtn {
    display: none;
}


/* footer section pc */

@media screen and (min-width:769px) {
    .footer {
        padding: 72px;
        margin: 0 auto;
    }

    .footer__group {
        display: flex;
        align-items: center;
        gap: 80px;
    }

    /* .footer__topic img {
        width: 330px;
        height: 55px;
    } */
    
    .menu__list {
        margin-top: 0;
        display: flex;
        flex-wrap: wrap;
    }

    .menu__item {
        margin-top: 0;
        margin-left: 48px;
        font-size: 1.6rem;
    }

    
   .sns {
        margin-top: 0;
        margin-left: 100px;
   }    

   

    .copy small {
        margin-top: 16px;
    }

    


/* scrollTop */
.topBtn {
    display: inline-block;
    padding: 25px;
    border-radius: 100%;
    background-color: #FF7B9E;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 2px 2px 4px 2px rgba(101, 29, 85, 0.2);

    position: fixed;
    bottom: 1.8%;
    right: 1.4%;
}




}

