.map-visual {
    margin: 0 0 60px;
}

.map-visual img {
    display: block;
    width: 100%;
    height: auto;
}

.info-row {
    display: grid;
    grid-template-columns: 390px 1fr;
    gap: 110px;
    margin-bottom: 70px;
}

.location-page h2 {
    margin: 0 0 24px;
    color: #444;
    font-size: 31px;
    font-weight: 400;
}

.address-box p {
    margin: 0 0 20px;
    color: #555;
    font-size: 18px;
    line-height: 1.7;
}

.address-box dl {
    margin: 0;
    color: #777;
    font-size: 18px;
}

.address-box dl div {
    display: flex;
    gap: 18px;
    margin-bottom: 8px;
}

.address-box dt {
    color: #22a8c9;
    font-weight: 400;
}

.address-box dd {
    margin: 0;
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.section-head p {
    margin: 0 0 24px;
    color: #c70000;
    font-size: 16px;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.hour-card {
    min-height: 130px;
    padding: 32px 14px 22px;
    color: #fff;
    text-align: center;
    box-sizing: border-box;
}

.hour-card span {
    display: block;
    margin-bottom: 14px;
    font-size: 17px;
}

.hour-card strong {
    display: block;
    font-size: 25px;
    font-weight: 500;
}

.hour-blue { background: #2da6d2; }
.hour-green { background: #25b47b; }
.hour-teal { background: #37c1bd; }
.hour-orange { background: #e9953b; }

.route-section {
    display: grid;
    grid-template-columns: 390px 1fr;
    gap: 110px;
    padding-top: 54px;
    border-top: 1px solid #e1e1e1;
}

.route-card h2 strong {
    color: #24a8c9;
    font-weight: 400;
}

.route-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.route-card li {
    position: relative;
    margin-bottom: 22px;
    padding-left: 12px;
    color: #666;
    font-size: 17px;
    line-height: 1.75;
}

.route-card li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 13px;
    width: 4px;
    height: 4px;
    background: #24a8c9;
}

.route-card li span {
    display: block;
    color: #555;
    font-size: 18px;
}

.drive-detail {
    margin-top: 6px;
}

.drive-line {
    display: grid;
    grid-template-columns: 190px 1fr;
    column-gap: 8px;
    margin-bottom: 8px;
}

.drive-line em {
    color: #666;
    font-style: normal;
}

.route-card .drive-line p {
    margin: 0;
}

.bus-line {
    display: grid;
    grid-template-columns: 90px 1fr;
    column-gap: 8px;
    align-items: start;
    margin-bottom: 8px;
}

.route-card .bus-line p {
    margin: 0;
}

.route-card b {
    display: inline-block;
    margin-right: 8px;
    padding: 3px 12px;
    border-radius: 16px;
    background: #ed4b31;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
}

.route-card p {
    margin: 26px 0 0;
    color: #666;
    font-size: 16px;
}

.parking-box {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 78px;
    padding: 32px 46px;
    border-top: 4px solid #24a8c9;
    background: #f4f4f4;
}

.parking-box h2 {
    margin: 0;
    font-size: 51px;
    font-weight: 500;
}

.parking-box ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.parking-box li {
    position: relative;
    padding-left: 18px;
    color: #555;
    font-size: 18px;
    line-height: 1.65;
}

.parking-box li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 13px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #555;
}

@media (max-width: 768px) {

    .info-row,
    .route-section,
    .parking-box {
        display: block;
    }

    .hours-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hours-box,
    .route-card + .route-card {
        margin-top: 40px;
    }

    .parking-box h2 {
        margin-bottom: 20px;
    }
}
