/* ----------------------------
  Table
  ---------------------------- */

/* .hokkaido, .touhoku, .kantou, .tyubu, .kansai, .tyugoku, .kyusyu {
    display: none;
  } */
.station_table {
    margin: 0 auto;
    margin-top: 30px;
}

.station_table>h3 {
    width: 60%;
    margin: 0 auto;
    font-weight: bold;
}

.station_table>table {
    width: 55%;
    margin: 0 auto;
}

.station_table table>tbody>tr:nth-child(2n + 1) {
    background-color: #e5e5e5;
    height: 50px;
}

.station_table table>tbody>tr:nth-child(2n) {
    background-color: #fff;
}

.station_table table>tbody>tr.division {
    height: 60px;
    background-color: #fff;
    text-align: center;
}

.station_table table>tbody>tr:nth-child(2n + 1) td:nth-child(1) {
    padding-left: 5%;
    width: 34%;
    font-weight: bold;
}

.station_table table>tbody>tr:nth-child(2n + 1) td:nth-child(2) {
    height: 40px;
    width: 22%;
    text-align: left;
}

.station_table table>tbody>tr:nth-child(2n + 1) td:nth-child(3) {
    width: 22%;
    text-align: left;
}

.station_table table>tbody>tr:nth-child(2n + 1) td:nth-child(4) {
    width: 22%;
    text-align: left;
}



.station_table table>tbody>tr:nth-child(2n) td:nth-child(2) {}

@media (max-width: 500px) {
    .station_table table>tbody>tr:nth-child(2n + 1) td:nth-child(1) {
      padding-left: 0;
      text-align:center;
    }

    .station_table table>tbody>tr:nth-child(2n + 1) td:nth-child(2),
    .station_table table>tbody>tr:nth-child(2n + 1) td:nth-child(3),
    .station_table table>tbody>tr:nth-child(2n + 1) td:nth-child(4) {
        font-size: 14px;
    }
}

.station_table table>tbody>tr>td p {
    color: #fff;
    background: #ff6600;
    border: 2px solid #ff6600;
    font-weight: bold;
    padding: 4px 10px;
    display: inline-block;
    min-width: 90px;
    text-align: center;
    border-radius: 5px;
}

@media (max-width: 500px) {
    .station_table table>tbody>tr>td p {
        padding: 4px;
        min-width: 70px;
        color: #fff;
        background: #ff6600;
        border: 2px solid #ff6600;
        margin: 0 5px;
    }
}

.station_table table>tbody>tr>td>p.route_orange {
    color: #fff;
    background: #ff6600;
    border: 2px solid #ff6600;
}

.station_table table>tbody>tr>td>p.route_lightOrange {
    color: #333;
    background: #fca374;
    border: 2px solid #fca374;
}

.station_table table>tbody>tr>td>p.route_white {
    color: #333;
    background: #fff2eb;
    border: 2px solid #fff2eb;
}

.station_table table>tbody>tr>td>p.route_sub6 {
    color: #333;
    background: #fff;
    border: 2px solid #333;
}

.station_table table>tbody>tr:nth-child(2n) td:nth-child(1) span {
    position: relative;
    left: 13%;
    display: block;
    height: 40px;
    width: 30px;
}

.station_table table>tbody>tr.underground_section {
    background-color: #6c6c6c;
    color: #fff;
    font-weight: bold;
}

@media (max-width: 500px) {
    .station_table table>tbody>tr:nth-child(2n) td:nth-child(1) span {
        left: 50%;
        transform: translateX(-50%);
    }
}

.station_table table>tbody>tr:nth-child(2n) td:nth-child(1) span.map_orange {
    border-left: 2px solid #ff6600;
    border-right: 2px solid #ff6600;
    background-color: #ff6600;
}

.station_table table>tbody>tr:nth-child(2n) td:nth-child(1) span.map_lightOrange {
    border-left: 2px solid #fca374;
    border-right: 2px solid #fca374;
    background-color: #fca374;
}

.station_table table>tbody>tr:nth-child(2n) td:nth-child(1) span.map_white {
    border-left: 2px solid #fff2eb;
    border-right: 2px solid #fff2eb;
    background-color: #fff2eb;
}

.station_table table>tbody>tr.underground_section td:nth-child(1) span.map_underground {
    border-left: 2px dashed #333;
    border-right: 2px dashed #333;
    background-color: #ffffff;
    height: 50px;
}

.ico-4g-Orange:before {
    content: "4G LTE";
    margin-right: 15px;
    color: #fff;
    font-weight: bold;
    background-color: #ed5914;
    padding: 2px 20px;
    font-size: 12px;
    white-space: nowrap;
    border: 1px solid #ed5914;
    width: 88px;
}

@media (max-width: 768px) {
    .station_table {
        width: 100%;
        margin: 0 auto;
        margin-top: 20px;
    }

    .station_table>h3 {
        width: 100%;
    }

    .station_table table {
        width: 100%;
    }

    .station_table table>tbody>tr>td>span {
        padding: 4px 6px;
    }

    .ico-4g-Orange:before {
        display: block;
        margin-bottom: 5px;
    }
}

.station_table_br {
    display: none;
}

@media (max-width: 500px) {
    .station_table_br {
        display: block;
    }
}

.station_routeMap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.station_routeMap_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.station_routeMap_content_square {
    display: inline-block;
    width: 80px;
    height: 25px;
}

.station_routeMap .station_routeMap_content:nth-child(1) .station_routeMap_content_square {
    background: #ff6600;
    border: 2px solid #ff6600;
}

.station_routeMap .station_routeMap_content:nth-child(2) .station_routeMap_content_square {
    background: #fca374;
    border: 2px solid #fca374;
}

.station_routeMap .station_routeMap_content:nth-child(3) .station_routeMap_content_square {
    background: #fff2eb;
    border: 2px solid #fff2eb;
}

.station_routeMap .station_routeMap_content:nth-child(4) .station_routeMap_content_square {
    background: #fff;
    border: 2px solid #333;
}

.station_routeMap_content_text {
    display: inline-block;
}