@charset "utf-8";

/* 1240以上 */

@media (min-width:1240px) {
    .content {
        display: flex;
        justify-content: left;
        flex-direction: row;
        margin: auto 100px auto;
        flex-wrap: wrap;
    }
    .roompic {
        width: 480px;
        margin: 20px;
    }
    .pictitle {
        width: 480px;
        height: 50px;
        text-align: center;
        line-height: 50px;
        background-color: #FFFCDB;
    }
}


/* 1239以下 */

@media (max-width:1239px) {
    .content {
        display: flex;
        justify-content: center;
        flex-direction: column;
        flex-wrap: wrap;
    }
    .roompic {
        width: 100%;
    }
    .pictitle {
        max-width: 1000px;
        height: 50px;
        text-align: center;
        line-height: 50px;
        justify-content: center;
        background-color: #FFFCDB;
        margin: 20px auto 0px auto;
    }
}