.map-and-list {
    display: flex;
    gap: 5%;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.map-box {
    margin-bottom: 3%;
}

.map-svg {
    max-width: 100%;
    min-width: 300px;
    height: auto;
    margin: auto;
    stroke: none;
}

.map-svg path {
    transition-duration: 0.1s;
}

.map-svg path:hover {
    filter: opacity(0.5);
}

.map-bubble rect {
    fill: #ffffff;
    pointer-events: none;
}

.map-bubble text {
    fill: #333;
    font-size: 15px;
    font-weight: 600;
    pointer-events: none;
}

.table-box {
    margin-bottom: 3%;
    width: 100%;
    overflow-x: scroll;
}

.area-table {
    font-weight: 500;
    width: 100%;
    width: 700px;
    margin: auto;
    border-collapse: collapse;
}

.area-table th {
    background: #4870ab;
    color: #fff;
    padding: 10px;
}

.area-table td {
    padding: 10px 30px;
    border: dotted 1px #bdbdbd;
}

.area-table td a {
    color: #f65751;
}

.area-table td a:hover {
    text-decoration: underline;
}

.area-table tr:first-child {
    border-bottom: solid 2px #20477f;
}

.area-table td:first-child {
    border-left: none;
}

.area-table td:last-child {
    border-right: none;
}

.station-table-title-1 {
    font-size: 1.3em;
}

.station-table-title-2 {
    font-size: 0.9em;
}

.area-table td i {
    margin-right: 0.5em;
}

.area-1 {
    color: #5f5f9f;
}

.area-2 {
    color: #ff6a6a;
}

.area-3 {
    color: #a1a100;
}

.area-4 {
    color: #e35ca7;
}

.area-5 {
    color: #f96e29;
}

.area-6 {
    color: #3c9eff;
}

.area-7 {
    color: #6bb521;
}

.area {
    width: 100%;
    height: 700px;
}

.station-table {
    font-weight: 500;
    margin: auto;
    border-collapse: collapse;
    width: 100%;
}

.station-table th {
    background: #4870ab;
    color: #fff;
    padding: 10px;
}

.station-table td {
    padding: 10px 30px;
    border-bottom: solid 1px #bdbdbd;
}

.station-table td:nth-child(1) {
    width: 39%;
}

.station-table td:nth-child(2) {
    width: 39%;
}

.station-table td:nth-child(3) {
    width: 22%;
    min-width: 10em;
}

.station-table-1 th {
    background: #5f5f9f;
}

.station-table-2 th {
    background: #ff6a6a;
}

.station-table-3 th {
    background: #a1a100;
}

.station-table-4 th {
    background: #e35ca7;
}

.station-table-5 th {
    background: #f96e29;
}

.station-table-6 th {
    background: #3c9eff;
}

.station-table-7 th {
    background: #6bb521;
}

.tab-area {
    border-bottom: 0;
}

.station-link-box {
    margin-top: 20px;
    padding: 0 3%;
}

.station-link-1 {
    margin-bottom: 20px;
}

.tab-area .area-txt {
    color: #393939;
}

.tab li.is-active-tab span {
    background: #737373;
}

.tab li span {
    background: #dbdbdb;
    color: #393939;
}

.area {
    border-top: solid 3px #737373;
}

@media screen and (max-width: 1700px) {
    .area-table td {
        padding: 10px 22px;
    }
}

@media screen and (max-width: 1500px) {
    .map-and-list {
        gap: 3%;
    }

    .area-table td {
        padding: 10px 10px;
    }

    .station-table td {
        padding: 10px 5px;
    }
}

@media screen and (max-width: 1200px) {
    .map-svg {
        min-width: 280px;
    }

    .map-and-list {
        gap: 5%;
    }
}

@media screen and (max-width: 1024px) {}

@media screen and (max-width: 768px) {

    .station-table td,
    .station-table th {
        width: 100%;
        display: block;
    }

    .station-table td:nth-child(1),
    .station-table td:nth-child(2),
    .station-table td:nth-child(3) {
        width: 100%;
        display: block;
        padding: 0;
    }

    .station-table td:nth-child(1),
    .station-table td:nth-child(2) {
        border: 0;
    }

    .station-table td:nth-child(1) {
        padding-top: 5px;
        font-weight: 600;
    }

    .station-table td:nth-child(3) {
        padding-bottom: 5px;
    }

    .station-table td:nth-child(2),
    .station-table td:nth-child(3) {
        padding-left: 1em;
    }
}