/* Map */
.b-map__map,
.b-map__title {
    display: none;
}
@media only screen and (min-width: 768px) {
    .b-map__map {
        display: block;
        padding: 50px 0;
        text-align: center;
        background-color: #eafae3;
    }
    .b-map__map svg {
        max-width: 718px;
    }
    .b-map .region {
        cursor: pointer;
    }
    .b-map__body {
        padding-top: 30px;
    }
    .b-map__title {
        display: block;
        margin-bottom: 15px;
        font-size: 24px;
    }
    .b-map .b-accordion__btn {
        display: none;
    }
    .b-map__content {
        display: none;
        animation: showMapContent .35s;
    }
    .b-map__content.is-active {
        display: block;
    }
    .b-map__content .b-accordion__content {
        display: block !important;
    }
}
@keyframes showMapContent {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Map Table */
.b-map-table__tr {
    padding: 15px 0;
    line-height: 1.2;
}
.b-map-table__tr:first-child {
    font-size: 18px;
    color: #005b49;
    background-color: #92d97b;
}
.b-map-table__tr:nth-child(2n) {
    background-color: #eafae3;
}
.b-map-table__tr a {
    display: block;
    color: #0087ff;
}
@media only screen and (min-width: 768px) {
    .b-map-table__tr a {
        text-align: center;
    }
}
/* Accordion */
.b-accordion__btn {
    position: relative;
    display: block;
    width: 100%;
    padding: 15px 30px 15px 15px;
    font-size: 18px;
    text-align: left;
    color: #fff;
    background-color: #005b49;
    border: none;
}
.b-accordion__btn::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    transition: .35s;
}
.b-accordion__btn.is-active::after {
    margin-top: -8px;
    transform: rotate(135deg);
}
.b-accordion__btn:focus {
    outline: none;
}
.b-accordion__content {
    display: none;
}
