.station-list li {
    display: flex;
    align-items: baseline;
    font-size: 16px;
    line-height: 1.8;
    padding: 1em;
    background: #fff;
    margin-bottom: 0.25em;
}

.station-list li .name {
    transition: color 200ms;
}

.station-list li .name:hover {
    color: #56c0ce;
}

.station-list li .address {
    display: block;
    /* margin: 0 auto; */
    padding: 0 1em;
    font-size: 14px;
    color: #999;
}

.station-list li .btn {
    display: block;
    margin-left: auto;
    background: #56c0ce;
    color: #fff;
    padding: 0.25em 1em;
    font-size: 14px;
    transition: opacity 200ms;
}

.station-list li .btn:hover {
    opacity: 0.75;
}

@media screen and (max-width: 640px) {
    .station-list li {
        position: relative;
        flex-direction: column;
        padding-right: 5em;
        line-height: 1.4;
    }
    .station-list li .address {
        padding: .5em 0 0;
    }
    .station-list li .btn {
        position: absolute;
        right: 1em;
        top: 1em;
    }
}

.station-detail {
    padding-top: 48px;
    background: #f6f6f6;
    overflow: hidden;
}

.station-detail__inner {
    width: 100%;
    max-width: 840px;
    margin: 0 auto;
    position: relative;
    padding: 60px 0;
}

.station-detail .container::before {
    display: block;
    height: 2px;
    width: 100%;
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    background: linear-gradient(to right, #56c0ce, rgba(20, 20, 20, 0.1), rgba(20, 20, 20, 0.1));
}

.station-detail__cate {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 1em;
    color: #999;
}

.station-detail__ttl {
    font-size: 26px;
    line-height: 1.5;
    font-weight: bold;
    padding-bottom: 0.75em;
    margin-bottom: 0.75em;
    color: #56c0ce;
    border-bottom: 1px solid;
}

.station-detail__desc {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 2em;
}

.station-detail__main-image {
    width: 100%;
    margin: 0 auto 0;
    padding: 20px;
    background: #fff;
}

.station-detail__main-image img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    height: auto;
}

.station-detail__sub-images {
    padding: 20px;
    background: #fff;
    width: 100%;
    display: flex;
    margin: -20px auto 40px;
}

.station-detail__sub-images img {
    display: block;
    max-width: 100%;
    width: calc( 50% - 10px);
    height: auto;
}

.station-detail__sub-images img:first-child {
    margin-right: auto;
}

.station-detail__table {
    border-collapse: collapse;
    width: 100%;
    table-layout: fixed;
    margin: 20px 0px 20px 0px;
}

.station-detail__table_cell {
    border: solid 1px #ccc;
    padding: 10px;
    line-height: 2;
}

.station-detail__table__ttl {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 1em;
    color: #56c0ce;
}

.station-detail__text {
    font-size: 16px;
    line-height: 2.5;
    padding-left: 10px;
}

.station-detail__text a {
    color: #56c0ce;
}

.station-detail__map-container {
    display: block;
    margin: 40px 0;
}

.station-detail__map-container #map,
.station-detail__map-container #station_map {
    width: 100%;
    height: 400px;
    max-height: calc(100vw - 40px);
}

.station-detail__box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    padding: 30px 0px 30px 0px;
}

@media screen and (max-width: 640px) {
    .station-detail__main-image,
    .station-detail__sub-images {
        width: 100vw;
        margin-left: calc((100% - 100vw)*.5);
        margin-right: calc((100% - 100vw)*.5);
    }
}