@charset "UTF-8";
/* CSS Document */
/*------------------

common

-------------------*/

#floorguide {
    max-width: 940px;
    margin: 0 auto;
    font-size: 16px;
    text-align: center;
}

#floorguide .first-info {
    margin: 40px 0 10px 0;
}

#floorguide .photoarea {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#floorguide .photoarea img {
    max-width: 100%;
}

#floorguide .tab {
    margin: 2px;
    padding: 3px;
    text-align: center;
    cursor: pointer;
}

#floorguide .tab.is-active {
    background-color: skyblue;
    transition: all 0.2s ease-out;
}

#floorguide .maparea {
    margin-top: 5px;
}

#floorguide area {
    /*display: block;*/
    cursor: pointer;
}

#floorguide .maparea img {
    width: 100%;
    height: auto;
}

#floorguide .panel-group {
    margin-top: 10px;
    margin-bottom: 40px;
    height: auto;
    background-color: #ddd;
}

#floorguide .panel {
    display: none;
}

#floorguide .panel.is-show {
    display: flex;
}

#floorguide .bigphoto {
    width: 100%;
    padding-top: 0;
    margin: 0;
    text-align: left;
}

#floorguide .textarea {
    width: 100%;
    text-align: center;
}

#floorguide .areattl {
    background: linear-gradient(135deg, #274f90, #1e98b2);
    color: #fff;
}

#floorguide .areattl h2 {
    font-size: 35px;
    padding-top: 20px;
}

#floorguide .areattl h3 {
    font-size: 18px;
    padding-bottom: 20px;
}

#floorguide .infotext p {
    font-size: 15px;
    padding-top: 30px;
    width: 70%;
    text-align: center;
    margin: 0 auto;
}

/*------------------

以下レスポンシブ設定

-------------------*/

@media screen and (max-width:750px) {
    #floorguide .panel-group {
        margin-top: 10px;
        margin-bottom: 40px;
        height: auto;
        background-color: #ddd;
    }

    #floorguide .panel {
        display: none;
    }

    #floorguide .panel.is-show {
        display: block;
    }

    #floorguide .bigphoto {
        width: 100%;
        padding-top: 0;
        margin: 0;
        text-align: center;
    }

    #floorguide .textarea {
        width: 100%;
        text-align: center;
    }

    #floorguide .areattl {
        background: linear-gradient(135deg, #274f90, #1e98b2);
        color: #fff;
    }

    #floorguide .areattl h2 {
        font-size: 35px;
        padding-top: 20px;
    }

    #floorguide .areattl h3 {
        font-size: 18px;
        padding-bottom: 20px;
    }

    #floorguide .infotext p {
        font-size: 15px;
        padding-top: 30px;
        padding-bottom: 30px;
        width: 70%;
        text-align: center;
        margin: 0 auto;
    }
}