@charset "UTF-8";

.hero {
    background: url(/img/access/bg-hero.webp) no-repeat center;
    background-size: cover;
}

.anchor {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 100px 0 0;
}

.anchor a {
    display: block;
    background: #314D98;
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 30px;
}

.anchor a::after {
    content: '';
    width: 14px;
    height: 13px;
    background: url(/img/cmn/icon-arrow_white.svg) no-repeat center;
    background-size: cover;
    transform: rotate(90deg);
    transition-duration: .5s;
}

.anchor a:hover::after {
    transform: rotate(90deg) translateX(5px);
}

.sec_ttl {
    font-size: 30px;
    margin-bottom: 30px;
}

.img-access {
    margin-bottom: 30px;
}

.access_map {
    margin-bottom: 60px;
}

.access_map iframe {
    width: 100%;
    height: 730px;
}

.address_ttl {
    font-size: 24px;
    margin-bottom: 10px;
}

.address_txt span {
    font-size: 20px;
}

/* access */

.access {
    background: #F7F7F7;
}


.vehicle {
    margin-bottom: 50px;
}

.vehicle_ttl {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-left: 70px;
    position: relative;
}

.vehicle.train .vehicle_ttl::before {
    content: '';
    width: 56px;
    height: 56px;
    background: url(/img/access/icon-train.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    bottom: 50%;
    transform: translateY(50%);
}

.vehicle.car .vehicle_ttl::before {
    content: '';
    width: 56px;
    height: 56px;
    background: url(/img/access/icon-car.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    bottom: 50%;
    transform: translateY(50%);
}

.vehicle_list li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
}

.vehicle_list li .from {
    color: #fff;
    background: #78AFE1;
    padding: 5px 15px;
    width: 150px;
    text-align: center;
    border-radius: 40px;
}

.vehicle_list li .direct {
    flex: 1;
}

.vehicle_list li .direct span {
    display: inline-block;
    width: 16px;
    height: 7px;
    background: url(/img/access/icon-arrow_access.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0 10px;
}

.vehicle_note a {
    color: #D50000;
    text-decoration: underline;
}

.vehicle_note a:hover {
    text-decoration: none;
}

.img-park {
    margin-bottom: 80px;
}

.park_info {
    max-width: 830px;
    margin: 0 auto;
}

.park_info_cnt {
    padding: 20px 0;
    border-bottom: dotted 2px #707070;
}

.park_info_cnt:first-child {
    border-top: dotted 2px #707070;
}


@media screen and (max-width:767px) {
    
    .anchor {
        flex-flow: column;
        gap: 10px;
        padding: 30px 0;
    }

    .sec_ttl {
        margin-bottom: 20px;
        font-size: 24px;
    }

    .access_map iframe {
        height: 400px;
    }


    /* vehicle */

    .access .sec_ttl {
        margin-bottom: 100px;
    }

    .vehicle_ttl {
        font-size: 20px;
        padding-left: 0px;
        text-align: center;
    }

    .vehicle.train {
        margin-bottom: 100px;
    }

    .vehicle.train .vehicle_ttl::before,
    .vehicle.car .vehicle_ttl::before {
        transform: translateX(50%);
        right: 50%;
        left: unset;
        top: -170%;
    }

    .vehicle_list li {
        flex-flow: column;
        gap: 10px;
        margin-bottom: 30px;
    }

    .vehicle_list li .direct {
        text-align: center;
    }

    .vehicle_list li .direct span {
        transform: rotate(90deg);
    }
    
}