@charset "utf-8";

/* ===================================================================
//CSS information

// file name  :  roomplan.css
// style info :  スタイル指定
=================================================================== */
#roomplan {
    background: #ebf0e6;
    padding: 100px 0;
}

#roomplan h2 {
    text-align: center;
    border: none;
    margin-bottom: 30px;
    font-size: 24px;
    color: #333;
    font-weight: normal;
}

#roomplan h3 {
    margin-bottom: 50px;
    text-align: center;
    border: none;
    font-size: 24px;
    color: #238065;
    font-weight: normal;
}

#roomplan ul {
    display: flex;
    flex-wrap: wrap;
}

#roomplan ul li {
    width: 47.5%;
    margin: 0 1.25% 20px;
}

#roomplan ul li a {
    display: block;
    padding: 30px 15px;
    font-size: 18px;
    color: #333;
    background: #fff;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    border-radius: 5px;
    letter-spacing: .05em;
    transition: .3s all ease-in-out;
}

#roomplan ul li a:hover {
    box-shadow: 0 0 0 rgba(0, 0, 0, .1);
    transform: scale(.97);
}

@media screen and (max-width: 1200px) {}

@media screen and (max-width: 991px) {}

@media screen and (max-width: 767px) {
    #roomplan {
        padding: 50px 0;
    }
    #roomplan h3 {
        margin-bottom: 30px;
        font-size: 20px;
    }
}

@media screen and (max-width: 420px) {}


/* -----------------------------------------------------
planDetailWrap
----------------------------------------------------- */

.planDetail .type,
.planDetail .ldk {
    margin-bottom: 10px;
    font-size: 24px;
    font-family: 'Bellefair', serif !important;
    font-weight: 400;
}

.planDetail .type {
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e5e5;
}

.planDetail .type span {
    font-size: 45px;
}

.planDetail .ldk span {
    font-size: 36px;
}

.planDetail .area {
    margin-bottom: 10px;
    font-size: 14px;
    font-family: 'Bellefair', serif !important;
    font-weight: 300;
}

.planDetail .area span {
    font-size: 24px;
}

.planDetail .area span.big {
    font-size: 36px;
}