<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
#map-area {
    display: flex;
    background: #fff;
    position: relative;
}

/*------------------------------------------------------------
	サイドバー
------------------------------------------------------------*/
#map-left {
    width: 400px;
    flex-shrink: 0;
    position: relative;
}
.searchInfo {
    padding: 0 15px;
    border-radius: 0;
    height: 70px;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
    border-bottom: none;
    box-shadow: none;
}
.searchInfo.is-open {
    height: auto;
    transition: height 0.3s ease-in-out;
}
.searchInfo__toggle {
    color: #5BB432;
    cursor: pointer;
    height: 16px;
    margin-top: -10px;
    border-left: 5px solid #DEF6D2;
    border-right: 5px solid #DEF6D2;
    border-bottom: 5px solid #DEF6D2;
    position: relative;
}
.searchInfo__toggle:before {
    content: '\f103';
    font-family: 'FontAwesome_sukusuku';
    font-size: 1.6rem;
    font-weight: 900;
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 2px;
}
.searchInfo__toggle.is-open {
    margin-top: 0;
}
.searchInfo__toggle.is-open:before {
    content: '\f102';
}

/*------------------------------------------------------------
	教室リスト
------------------------------------------------------------*/
.searchInfo__toggle.is-open + #schoolMap__list {
    height: calc(100vh - 510px);
}
#schoolMap__list {
    height: calc(100vh - 242px);
    overflow-y: auto;
}
.schoolMap__item {
    cursor: pointer;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    background: #fff;
    transition: background-color 0.3s;
}
.schoolMap__item:hover:not(.active) {
    background-color: #f5f5f5;
}
.schoolMap__item.active {
    background-color: #ededed;
}

/*------------------------------------------------------------
	教室ポップアップ
------------------------------------------------------------*/
#schoolMap__detail {
    display: flex;
    align-items: center;
    column-gap: 15px;
    opacity: 0;
    position: absolute;
    z-index: 10;
    left: 15px;
    bottom: -5000px;
    transition: bottom 0.4s ease, opacity 0.4s ease;
    width: calc(100% - 30px);
    background: #fff;
    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 2px 6px 2px rgba(60, 64, 67, 0.15);
}
#schoolMap__detail.is-open {
    bottom: 10px;
    opacity: 1;
}
.schoolMap__detail_contents {
    padding: 15px 0;
}

/*------------------------------------------------------------
	教室情報の項目
------------------------------------------------------------*/
#schoolMap__list .schoolMap_link {
    display: none;
}
#schoolMap__list .schoolMap__picItem {
    display: none;
}
#schoolMap__detail .schoolMap__picItem img {
    height: 100%;
    width: auto;
}
.schoolMap__name {
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 10px;
}
.schoolMap__map-icon {
    position: relative;
    display: inline-block;
}
.schoolMap__map-icon:before {
    content: '\f278';
    font-family: 'FontAwesome_sukusuku';
    color: #5bb431;
    margin-left: 10px;
}
.schoolMap__address {
    font-size: 1.2rem;
    line-height: 1.2;
}
.schoolMap__genre {
    font-size: 1.2rem;
    margin-top: 5px;
}
#schoolMap__list .schoolMap__genre {
    display: none;
}
.schoolMap__age {
    margin-top: 5px;
    font-size: 1.2rem;
}
#schoolMap__list .schoolMap__age {
    display: none;
}
.schoolMap__btn {
    display: flex;
    justify-content: flex-start;
    column-gap: 10px;
}
#schoolMap__list .schoolMap__btn {
    display: none;
}
#schoolMap__detail .schoolMap__btn {
    flex-wrap: wrap;
    flex-grow: 1;
    row-gap: 15px;
    margin-right: 15px;
}
.schoolMap__btn .modBtn02 {
    min-width: 180px;
    height: 40px;
    line-height: 36px;
    font-size: 1.4rem;
}
.schoolMap__btn .modBtn02:before {
    right: 10px;
    font-size: 1.5rem;
}

/*------------------------------------------------------------
	地図
------------------------------------------------------------*/
#map_wrapper {
    position: relative;
    width: calc(100vw - 415px);
    height: calc(100vh - 156px);
}
#map {
    width: 100%;
    height: 100%;
}

.pager {
    padding: 20px 0;
    margin: 0;
    background: #fff;
}

#list__show {
    position: absolute;
    top: 10px;
    right: 10px;
}
#list__show a {
    display: block;
    padding: 10px;
    text-align: center;
    border: 1px solid #777;
    color: #777;
    background: #fff;
    font-weight: bold;
    text-decoration: none;
}
#list__show a:hover {
    background: #777;
    color: #fff;
    opacity: 1;
}
#no-map {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {

    #map-area {
        flex-direction: column;
    }

    /* サイドバー */
    #map-left {
        width: 100%;
        order: 1;
    }
    .searchInfo {
        padding: 0;
        margin: 2px;
        height: 46px;
    }
    .searchInfo__toggle {
        border: none;
        border-bottom: 1px solid #ccc;
    }

    /* 教室リスト */
    #schoolMap__list {
        height: 350px;
    }

    /* 教室情報ポップアップ */
    #schoolMap__detail {
        padding: 15px;
        left: 10px;
        right: 10px;
        width: auto;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    /* 教室情報の項目 */
    #schoolMap__detail .schoolMap__picItem {
        width: calc(100% - 195px);
        order: 0;
    }
    #schoolMap__detail .schoolMap__detail_contents {
        padding-bottom: 0;
        order: 2;
    }
    .schoolMap__btn {
        justify-content: center;
    }
    #schoolMap__detail .modBtn02.modBtn02--contact {
        width: 180px;
    }
    #schoolMap__list .modBtn02--contact {
        width: 180px;
    }
    #schoolMap__detail .schoolMap__btn {
        width: 180px;
        margin: 0;
        flex-grow: 0;
        order: 1;
    }

    /* 地図 */
    #map_wrapper {
        width: 100%;
        height: calc(100vh - 210px);
    }

}
</pre></body></html>