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

common

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

#floorguide {
    margin: 0 auto;
}

#floorguide .first-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0 100px;
    text-align: center;
}
#floorguide .first-info span {
    margin-right: 20px;
}

#floorguide .photoarea {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

#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 {
    text-align: center;
}

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

#floorguide .panel {
    display: none;
}

#floorguide .panel.is-show {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

#floorguide .bigphoto {
    width: 40%;
    padding-right: 5rem;
    border-right: .2rem solid #001c55;
}

#floorguide .textarea {
    width: 50%;
    margin-left: 4rem;
}

#floorguide .areattl {
    color: #001c55;
    margin-bottom: 4rem;
}

#floorguide .areattl h2 {
    font-size: 36px;
    font-family: "Familjen Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

#floorguide .areattl h3 {
    font-size: 24px;
}


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

以下レスポンシブ設定

-------------------*/
@media screen and (max-width:1024px) {
    #floorguide .panel.is-show {
        justify-content: space-between;
    }
    #floorguide .bigphoto {
        width: 50%;
        padding-right: 4vw;
    }
    #floorguide .textarea {
        width: 45%;
        margin-left: 0;
    }
    #floorguide .areattl {
        margin-bottom: 4vw;
    }
}

@media screen and (max-width:750px) {
    #floorguide .panel-group {

    }

    #floorguide .panel {
        display: none;
    }

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

    #floorguide .bigphoto {
        width: 100%;
        padding: 0;
        border: none;
        margin-bottom: 6vw;
    }

    #floorguide .textarea {
        width: 100%;
        border-left: .2rem solid #001c55;
        padding-left: 4vw;
    }

    #floorguide .areattl {
        margin-bottom: 4vw;
    }

    #floorguide .areattl h2 {
        font-size: 32px;
    }

    #floorguide .areattl h3 {
        font-size: 16px;
    }

    #floorguide .photoarea {
        margin-top: 4vw;
    }
    #floorguide .photoarea a {
        width: calc(100% / 8);
    }
    #floorguide .first-info {
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
        margin: 6vw 0 18vw;
    }
    #floorguide .first-info span {
        margin-right: 4vw;
    }
}