section,
button {
    padding: 0;
}

/*--------- 
共通 
-----------*/

.section_space {
    width: calc(100% - 40px);
    margin-inline: auto;
}

.br_sp {
    display: inline-block;
}

.section_ttl {
    font-size: 20px;
    font-weight: 400;
    line-height: calc(35 / 20);
    font-family: "Shippori Mincho B1", serif;
    text-align: center;
    margin-bottom: 40px;
}

.link-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    max-width: 264px;
    height: 48px;
    border-radius: 4px;
    background: linear-gradient(#054879 0%, #0c2f54 100%);
    border: 2px solid #666480;
    color: #fff;
    font-size: 14px;
    text-align: center;
}

.link-button--gold {
    background: linear-gradient(#d8b958 0%, #b4900c 100%);
    border: 2px solid #7e6400;
}

.link-button span {
    margin-left: 8px;
}


@media (min-width:768px) {

    .section_space {
        width: 100%;
        max-width: 1128px;
        margin-inline: auto;
    }

    .section_ttl {
        margin-bottom: 80px;
    }

}

/*--------- 
メインコンテンツ
-----------*/


.l-page .fv {
    display: block;
    background-image: url("../images/roomplan/mv_img_sp.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 256px;
    padding-top: 20px;
}

.main_catch {
    display: flex;
    flex-direction: column;
    font-size: 40px;
    font-weight: 300;
    color: #fff;
    line-height: calc(40 / 32);
    letter-spacing: 0.06em;
    text-align: center;
    font-family: "Cormorant Garamond", serif;
    margin-bottom: 128px;
}

.main_catch span {
    font-size: 16px;
    font-weight: 400;
    line-height: calc(40 / 32);
    letter-spacing: 0;
    text-align: center;
    font-family: "Shippori Mincho B1", serif;
}


@media (min-width:768px) {

    .l-page .fv {
        background-image: url("../images/roomplan/mv_img_pc.jpg");
        height: 768px;
        object-fit: cover;
        padding-top: 60px;
    }

    .main_catch {
        font-size: 60px;
        line-height: calc(60 / 60);
    }

    .main_catch span {
        font-size: 20px;
        line-height: calc(32 / 20);
    }

}



/*--------- 
room
-----------*/

.section_content--room {
    background: linear-gradient(to right, #f3eadb 0%, #fff 48.96%, #f3eadb 100%);
    padding: 50px 0 60px;
}

.room_list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

.room_item {
    max-width: 157px;
    width: 100%;
    height: auto;
    flex-shrink: 0;
}

.room_item.not-sold {

    position: relative;
}

.room_item.not-sold .room_detail {
    opacity: .3;
}

.room_item.not-sold::before {
    content: "coming soon";
    display: block;
    font-size: 30px;
    color: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 10;
}

.room_item.not-sold button {
    pointer-events: none;
}

.room_photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 80%;
    background-color: #fff;
    border: 2px solid #000;
    z-index: 1003;
    text-align: center;
    transform: translate(-50%, -50%);
}

.popup img {
    max-width: 100%;
    cursor: pointer;
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1002;
}


@media (min-width:768px) {
    .room_item.not-sold::before {
        white-space: nowrap;
        font-size: 40px;
    }

    .section_content--room {
        background: linear-gradient(to right, #f3eadb 0%, #fff 48.96%, #f3eadb 100%);
        padding: 60px 0 100px;
    }

    .room_list {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 40px;
        margin-bottom: 80px;
    }

    .room_item {
        max-width: 359px;
    }


    .popup {
        max-height: 95vh;
        overflow-y: auto;
    }

}



/*--------- 
annotation
-----------*/

.section_content--annotation {
    padding: 85px 0;
}

.annotation_text {
    font-size: 18px;
    font-weight: 500;
    line-height: calc(32 / 18);
    font-family: "Noto Serif JP", serif;
    text-align: center;
}

@media (min-width:768px) {

    .section_content--annotation {
        padding: 100px 0;
    }

}

/*--------- 
パンくず
-----------*/

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 1128px;
    margin-left: 20px;
    padding-bottom: 10px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-link {
    color: #000;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-size: 12px;
    line-height: 17px;
    font-family: "Noto Sans JP", sans-serif;
}

.breadcrumb-item:last-child::before {
    content: "";
    width: 6px;
    height: 6px;
    border-top: solid 1px #000000;
    border-right: solid 1px #000000;
    transform: rotate(45deg);
    display: inline-block;
}

@media (min-width: 768px) {
    .breadcrumb {
        margin-left: auto;
        margin-right: auto;
    }
}