/* ===========================================
客室設備タグ表示 (Room Tags Display)
=============================================*/

.room-amenities {
    margin: 20px 0;
    padding: 20px;
}

.amenities-title {
    color: #988454;
    font-size: 1.2em;
    font-weight: bold;
    margin: 0 0 15px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #988454;
    text-align: center;
}

.amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.amenity-badge {
    background: #988454;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

/* ===========================================
レスポンシブ対応
=============================================*/
@media only screen and (max-width: 640px) {

    .amenities-list {
        justify-content: flex-start;
    }

    .room-amenities {
        margin: 15px 5px;
        padding: 15px;
    }

    .amenities-title {
        font-size: 1.1em;
    }

    .amenity-badge {
        padding: 6px 12px;
        font-size: 12px;
    }
}

