@charset "utf-8";

/******************************************************************************
	/nursing-facility/rooms/
******************************************************************************/
.room-summary-block {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
    column-gap: 24px;
}
.room-summary-block__item {
    display: flex;
    column-gap: 12px;
}
.room-summary-block__item-value {
    flex-grow: 1;
    white-space: nowrap;
}
.facility__room {
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 0 6px rgb(0 0 0 / 16%);
}
.facility-rooms__title-box {
    grid-row: 1 / 2;
    grid-column: 1 / 3;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.facility-rooms__title-box-item {
    display: flex;
    align-items: baseline;
}
.facility-rooms__room-name {
    margin: 0;
    color: #5cbaa8;
    font-weight: bold;
    font-size: 20px;
}
.facility-rooms__room-capacity {
    color: var(--default-theme--color);
    font-weight: bold;
    font-size: 14px;
}
.room-list__room-name {
    color: var(--default-theme--color);
    font-size: 20px;
    font-weight: bold;
}
.facility-rooms__title-box__status-list {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--default-theme--color);
    font-weight: bold;
}
.facility-rooms__title-box__icon:first-child {
    margin-left: 0;
}
.facility-rooms__title-box__icon::before {
    margin-right: 16px;
    font-size: 28px;
}
.facility-rooms__title-box__icon--text {
    font-weight: bold;
    font-size: 14px;
}
.facility-rooms__title-box__latest-updated-at {
    margin-left: auto;
    color: #666666;
    font-weight: normal;
    font-size: 14px;
}
.room-cost--annotation {
    font-size: 14px;
}
.room-detail-summary-table {
    width: 100%;
}
.layout-table th[scope="row"] + .room-detail-summary-table__td {
    padding-left: 0;
}
/******************************************************************************
	メディアクエリ
******************************************************************************/
@media screen and (max-width: 1440px) {
    .room-plan-detail-area {
        display: flex;
        flex-direction: column;
    }
    .room-summary-block {
        flex-direction: row;
    }
    .room-detail-summary-table th, .room-detail-summary-table td {
        display: table-cell;
        padding-bottom: 28px;
    }
    .layout-table th[scope="row"] + td {
        /* padding-bottom: 28px; */
        padding-left: 54px;
        text-align: left;
    }
    .day-service-nursing-table.layout-table th[scope="row"] + td {
        padding-bottom: 0;
    }
    .room-plan-info {
        grid-template-columns: 1fr 40%;
    }
    .thumbnail-area {
        grid-row: 1 / 2;
    }
    .room-resource-place img.poster, .room-resource-place video {
        height: auto;
    }
}
@media screen and (max-width: 1280px) {
    .room-detail-summary-table th, .room-detail-summary-table td {
        display: block;
        padding-bottom: 0;
    }
    .thumbnail-area {
        grid-row: 1 / 2;
        padding-bottom: 24px;
        border-bottom: 1px solid #eeeeee;
    }
    .layout-table th[scope="row"] + td {
        /* padding-bottom: 0; */
        padding-left: 0;
        text-align: center;
    }
    .room-plan-detail-area {
        width: 100%;
    }
    .room-resource-place img.poster, .room-resource-place video {
        height: auto;
    }
}
@media screen and (max-width: 960px) {
    .facility-rooms__title-box {
        flex-direction: column;
    }
    .facility-rooms__title-box-item {
        width: 100%;
        margin-bottom: 12px;
    }
    .facility-rooms__title-box__latest-updated-at {
        margin-left: auto;
    }
    /**/
    .room-detail-summary {
        float: none;
        width: 100%;
    }
    .room-detail-costs {
        float: none;
        width: 100%;
    }
    .room-detail-summary-table {
        width: 100%;
        height: auto;
        margin-bottom: 16px;
    }
    .room-detail-summary-table__body {
        display: flex;
        justify-content: space-between;
    }
    .room-detail-summary-table__item {
        width: 33%;
    }
    .room-detail-summary-table__label {
        margin: 0 auto 8px;
    }
    .room-detail-feature-list {
        flex-direction: column;
    }
    .feature-icon-list {
        width: 100%;
        margin-bottom: 40px;
    }
    .room-detail-feature-list__edit-button {
        max-width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .layout-table th[scope="row"] + td {
        padding-bottom: 28px;
        padding-left: 54px;
        text-align: left;
    }
}