/* ===============================================
   Room Page Styles
   =============================================== */

/* -----------------------------------------------
   Room Overview Section
   ----------------------------------------------- */
.room_overview_section {
    padding: calc(100vw * 120 / 1400) calc(100vw * 100 / 1400);
    background-color: #E6E1DA;
}

.room_overview_inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: calc(100vw * 120 / 1400);
}

/* -----------------------------------------------
   Block Common Styles
   ----------------------------------------------- */
.room_overview_block {
    width: 100%;
}

/* -----------------------------------------------
   Block 1: Text Left + Image Right
   ----------------------------------------------- */
.room_overview_content {
    width: 100%;
    display: flex;
    gap: calc(100vw * 100 / 1400);
    align-items: center;
}

.room_overview_text_area {
    width: calc(100vw * 620 / 1400);
    display: flex;
    flex-direction: column;
    gap: calc(100vw * 32 / 1400);
}

.room_overview_title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    font-size: calc(100vw * 22 / 1400);
    color: #bf9443;
    letter-spacing: 0.02em;
    line-height: 1.8;
    margin: 0;
}

.room_overview_description {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: calc(100vw * 14 / 1400);
    color: #4c5559;
    letter-spacing: 0.02em;
    line-height: 2;
    margin: 0;
}

.room_overview_image_single {
    width: calc(100vw * 720 / 1400);
    height: calc(100vw * 384 / 1400);
}

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

/* -----------------------------------------------
   Block 2: Overlapping Images Left + Text Right
   ----------------------------------------------- */
.room_overview_content_reverse {
    width: 100%;
    display: flex;
    gap: calc(100vw * 100 / 1400);
    align-items: center;
}

.room_overview_image_overlap {
    position: relative;
    width: calc(100vw * 580 / 1400);
    height: calc(100vw * 600 / 1400);
    overflow: visible;
}

.room_overview_img_large {
    position: absolute;
    top: calc(100vw * 120 / 1400);
    width: calc(100vw * 480 / 1400);
    height: calc(100vw * 480 / 1400);
    object-fit: cover;
}

.room_overview_img_small {
    position: absolute;
    left: calc(100vw * -100 / 1400);
    top: 0;
    width: calc(100vw * 240 / 1400);
    height: calc(100vw * 240 / 1400);
    object-fit: cover;
}

/* -----------------------------------------------
   Block 3: Features Grid
   ----------------------------------------------- */
.room_overview_features {
    width: calc(100vw * 1200 / 1400);
    display: flex;
    flex-direction: column;
    gap: calc(100vw * 40 / 1400);
}

.room_overview_features_title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    font-size: calc(100vw * 22 / 1400);
    color: #bf9443;
    text-align: center;
    letter-spacing: 0.02em;
    line-height: 1.8;
    margin: 0;
}

.room_overview_features_grid {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.room_overview_feature_item {
    width: calc(100vw * 320 / 1400);
    display: flex;
    flex-direction: column;
    gap: calc(100vw * 24 / 1400);
}

.room_overview_feature_image {
    width: calc(100vw * 320 / 1400);
    height: calc(100vw * 320 / 1400);
}

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

.room_overview_feature_text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: calc(100vw * 14 / 1400);
    color: #4c5559;
    letter-spacing: 0.02em;
    line-height: 2;
    margin: 0;
}

/* -----------------------------------------------
   Room List Section
   ----------------------------------------------- */
.room_list_section {
    width: 100%;
    padding: calc(100vw * 120 / 1400) 0;
    background-color: #272e27;
}

.room_list_inner {
    width: calc(100vw * 1200 / 1400);
    margin: 0 auto;
}

.room_list_title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: calc(100vw * 40 / 1400);
    color: #bf9443;
    text-align: center;
    letter-spacing: 0.02em;
    line-height: normal;
    margin: 0 0 calc(100vw * 80 / 1400) 0;
}

.room_item {
    display: flex;
    gap: calc(100vw * 80 / 1400);
    margin-bottom: calc(100vw * 80 / 1400);
}

.room_item:last-child {
    margin-bottom: 0;
}

.room_item_image {
    width: calc(100vw * 560 / 1400);
    height: calc(100vw * 380 / 1400);
}

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

.room_item_content {
    width: calc(100vw * 560 / 1400);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: calc(100vw * 32 / 1400);
}

.room_item_name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: calc(100vw * 32 / 1400);
    color: #bf9443;
    letter-spacing: 0.02em;
    line-height: 1.4;
    margin: 0;
}

.room_item_info {
    display: flex;
    flex-direction: column;
    gap: calc(100vw * 8 / 1400);
}

.room_item_info_text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: calc(100vw * 16 / 1400);
    color: #bf9443;
    letter-spacing: 0.02em;
    line-height: 1.8;
    margin: 0;
}

.room_item_detail {
    display: flex;
    align-items: center;
    gap: calc(100vw * 16 / 1400);
    text-decoration: none;
    transition: opacity 0.3s ease;
    margin-left: auto;
}

.room_item_detail:hover {
    opacity: 0.7;
}

.room_item_detail span {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: calc(100vw * 20 / 1400);
    color: #bf9443;
    letter-spacing: 0.02em;
}

.room_item_detail img {
    width: calc(100vw * 33 / 1400);
    height: calc(100vw * 33 / 1400);
}

/* -----------------------------------------------
   Responsive - SP
   ----------------------------------------------- */
@media (max-width: 768px) {
    .room_overview_section {
        padding: calc(100vw * 80 / 375) calc(100vw * 20 / 375);
    }

    .room_overview_inner {
        gap: calc(100vw * 80 / 375);
    }

    /* Block 1: Text Left + Image Right → Vertical */
    .room_overview_content {
        flex-direction: column;
        gap: calc(100vw * 40 / 375);
    }

    .room_overview_text_area {
        width: 100%;
        gap: calc(100vw * 24 / 375);
    }

    .room_overview_title {
        font-size: calc(100vw * 18 / 375);
    }

    .room_overview_description {
        font-size: calc(100vw * 12 / 375);
    }

    .room_overview_image_single {
        width: 100%;
        height: calc(100vw * 240 / 375);
    }

    /* Block 2: Overlapping Images Left + Text Right → Vertical */
    .room_overview_content_reverse {
        flex-direction: column-reverse;
        gap: calc(100vw * 40 / 375);
    }

    .room_overview_image_overlap {
        width: 100%;
        height: calc(100vw * 360 / 375);
    }

    .room_overview_img_large {
        left: calc(100vw * 95 / 375);
        top: calc(100vw * 120 / 375);
        width: calc(100vw * 240 / 375);
        height: calc(100vw * 240 / 375);
    }

    .room_overview_img_small {
        width: calc(100vw * 120 / 375);
        height: calc(100vw * 120 / 375);
    }

    /* Block 3: Features Grid → Vertical */
    .room_overview_features {
        width: 100%;
        gap: calc(100vw * 32 / 375);
    }

    .room_overview_features_title {
        font-size: calc(100vw * 18 / 375);
    }

    .room_overview_features_grid {
        flex-direction: column;
        gap: calc(100vw * 40 / 375);
        align-items: center;
    }

    .room_overview_feature_item {
        width: calc(100vw * 335 / 375);
        gap: calc(100vw * 16 / 375);
    }

    .room_overview_feature_image {
        width: calc(100vw * 335 / 375);
        height: calc(100vw * 335 / 375);
    }

    .room_overview_feature_text {
        font-size: calc(100vw * 12 / 375);
    }

    .room_list_section {
        padding: calc(100vw * 80 / 375) 0;
    }

    .room_list_inner {
        width: calc(100vw * 335 / 375);
    }

    .room_list_title {
        font-size: calc(100vw * 32 / 375);
        margin-bottom: calc(100vw * 48 / 375);
    }

    .room_item {
        flex-direction: column;
        gap: calc(100vw * 24 / 375);
        margin-bottom: calc(100vw * 64 / 375);
    }

    .room_item_image {
        width: 100%;
        height: calc(100vw * 240 / 375);
    }

    .room_item_content {
        width: 100%;
        gap: calc(100vw * 24 / 375);
    }

    .room_item_name {
        font-size: calc(100vw * 24 / 375);
    }

    .room_item_info {
        gap: calc(100vw * 8 / 375);
    }

    .room_item_info_text {
        font-size: calc(100vw * 14 / 375);
    }

    .room_item_detail span {
        font-size: calc(100vw * 16 / 375);
    }

    .room_item_detail img {
        width: calc(100vw * 24 / 375);
        height: calc(100vw * 24 / 375);
    }
}
