.row {
    display: flex;
    align-items: flex-start;
}

.row .tag{
    background-color: #0C2A62;
    min-width: 160px;
    font-size: 14px;
}

.roomTypes {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    width: 100%;
}

.roomTypesItem {
    width: 22%;
    font-size: 14px;
    margin-right: 16px;
    margin-bottom: 16px;
    border-radius: 8px;
    padding: 8px
}

.roomTypesItem:nth-child(4n) {
    margin-right: 0;
}

.roomTypesItem .roomTypesItem-image {
    text-align: center;
    margin: 0 auto 16px;
}

.roomTypesItem.researcher {
    background-color: #553979;
}

.roomTypesItem.researcher .roomTypesItem-title {
    background-color: #483167;
    color: #FFFFFF;
    font-size: 12px;
    margin-bottom: 16px;
    text-align: center;
}

.roomTypesItem.researcher .roomTypesItem-desc {
    color: #FFFFFF;
    font-size: 12px;
    text-align: center;
}

.roomTypesItem.student {
    background-color: #397579;
}

.roomTypesItem.student .roomTypesItem-title {
    background-color: #316467;
    color: #FFFFFF;
    font-size: 12px;
    margin-bottom: 16px;
    text-align: center;
}

.roomTypesItem.student .roomTypesItem-desc {
    color: #FFFFFF;
    font-size: 12px;
    text-align: center;
}

@media screen and (max-width: 767px) {

    .roomTypes {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
    }

    .roomTypesItem {
        width: 48%;
        margin-right: 0;
    }

}

/* ----------------------------------------

- facilityInfo

---------------------------------------- */

.facilityInfo-box {
    display: flex;
}

.facilityInfo-left {
    width: 460px;
}

.facilityInfo-right {
    width: calc(100% - 460px);
}

.facilityInfo-row {
    display: flex;
    align-items: baseline;
}

.facilityInfo-row .facilityInfo-tag {
    background-color: #0C2A62;
    min-width: 160px;
    font-size: 14px;
    margin-right: 16px;
    color: #FFFFFF;
    padding: 8px 16px;
}

@media screen and (max-width: 767px) {

    .facilityInfo-box {
        display: block;
    }

    .facilityInfo-left {
        width: 100%;
    }

    .facilityInfo-right {
        width: 100%;
    }

    .facilityInfo-row {
        display: block;
    }

    .facilityInfo-row .facilityInfo-tag {
        margin-bottom: 8px;
        margin-right: 0;
    }

}

/* ----------------------------------------

- roomInfoBox

---------------------------------------- */

.roomInfoBox {
    display: flex;
}

.roomInfo-header {
    width: 55px;
    padding: 16px 8px;
}

.roomInfo-header img {
    width: auto;
    height: 20px;
    margin: auto;
}

.researcher .roomInfo-header {
    background-color: #553979;
}

.student .roomInfo-header {
    background-color: #397579;
}

.roomInfo-title {
    width: calc(100% - 55px - 104px);
    padding: 16px;
    font-weight: 700;
}

.roomInfo-num {
    width: 104px;
    padding: 16px;
    font-weight: 700;
    text-align: center;
    border-left: 1px solid #FFFFFF;
}

.roomInfoTags {
    padding-top: 12px;
    display: flex;
    flex-wrap: wrap;
    margin-left: 51px;
    align-items: start;
}

.roomInfoTags .roomInfoTags-item {
    margin: 4px;
    padding: 8px;
    background-color: #F6F6F6;
    font-size: 14px;
}

.roomInfoTags-desc {
    margin-left: 51px;
}

.roomInfoBox.researcher {
    background-color: #EAE6EE;
}

.roomInfoBox.student {
    background-color: #E6EEEE;
}

@media screen and (max-width: 767px) {

    .roomInfo-title {
        width: calc(100% - 55px - 64px);
    }

    .roomInfo-num {
        width: 64px;
    }

    .roomInfoTags {
        margin-left: 0;
    }

    .roomInfoTags-desc {
        margin-left: 0;
    }

}

/* ----------------------------------------

- roomImages

---------------------------------------- */

.roomImages {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.roomImages-item {
    width: 32%;
    font-size: 14px;
    margin-bottom: 16px;
}

@media screen and (max-width: 767px) {

    .roomImages {
        display: block;
        width: auto;
    }

    .roomImages-item {
        width: 100%;
    }

}

/* ----------------------------------------

- vr

---------------------------------------- */

.vr-content-title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
}

.vr-content-title img {
    width: 64px;
    height: auto;
}

.vr-content-title span {
    width: calc(100% - 64px);
    padding-left: 10px;
    font-size: 18px;
    font-weight: bold;
}

#panorama {
    width: 100%;
    height: 456px;
}