@charset "utf-8";

#location {}
#location .map_cont {
    display:flex;
    flex-direction:column;
}
#location .map_cont .map_view {
    border-radius: 50px;
    border:2px solid #ddd;
    height:600px;
    z-index: 0;
}
#location .map_cont .map_info {
    display:flex;
    align-items:stretch;
    margin-top:-20px;
    position: relative;
    z-index:2;
} 
#location .map_cont .map_info .map_info_text {
    border-radius: 50px 0px 50px 50px;
    background-color:#004F90;
    padding:30px 50px;
    flex:1;
    display:flex;
    flex-direction:column;
    gap:10px;
}
#location .map_cont .map_info .map_info_text span {
    font-size:1em;
    color:#fff;
    font-weight:400;
}
#location .map_cont .map_info .map_info_text .map_addr {
    font-size:1.66em;
    color:#fff;
    font-weight:700;
}
#location .map_cont .map_info .map_info_text .map_info_contact {
    display:flex;
    align-items:center;
    gap:20px;
}
#location .map_cont .map_info .map_info_text .map_info_contact p {
    background-color:#fff;
    border-radius:999px;
    padding:10px 15px 8px;
    font-size:1em;
    font-weight:500;
    letter-spacing:-0.54px;
    color:#004F90;
    font-family: 'S-CoreDream';
}
#location .map_cont .map_info .map_info_text .map_info_contact p span {
    font-weight:700;
    color:#004F90;
    margin-right:5px;
}
#location .map_cont .map_info .map_info_btn {
    width:200px;
    padding:30px;
    border:3px solid #004F90;
    border-radius: 0px 50px 50px 50px;
    background-color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.22em;
    font-weight:700;
    color:#004F90;
    gap:10px;
}

#location .route {
    margin-top:100px;
    display:flex;
    align-items:stretch;
    gap:50px;
}
#location .route .route_box {
    border:1px solid #ddd;
    flex:1;
    border-radius:50px;
    padding:30px;
    display:flex;
    flex-direction:column;
    gap:20px;
}
#location .route .route_box .route_box_title {
    text-align:center;
    font-size:1.33em;
    font-weight:700;
}
#location .route .route_box .route_box_inn {
    background-color:#F9F9F9;
    border-radius:30px;
    padding:20px;
    display:flex;
    flex-direction:column;
    gap:20px;
    flex: 1;
}
#location .route .route_box .route_box_inn .inn_title {
    background-color:#fff;
    text-align:center;
    font-size:1.22em;
    font-weight:600;
    padding:8px;
    border-radius:20px;
}
#location .route .route_box .route_box_inn .bus_number {
    display:flex;
    align-items:center;
    flex-wrap: wrap;
    gap:10px;
}
#location .route .route_box .route_box_inn .bus_number span {
    font-size:1em;
    font-weight:600;
    font-family: 'S-CoreDream';
    padding: 5px 0;
    border-radius:999px;
    width:80px;
    text-align:center;
}
#location .route .route_box .route_box_inn .bus_number .green_bus {
    background-color:#C4F67D;
}
#location .route .route_box .route_box_inn .bus_number .yellow_bus {
    background-color:#FFE683;
}
#location .route .route_box .route_box_inn .bus_number .red_bus {
    background-color:#FFB4B1;
}
#location .route .route_box .route_box_inn .inn_co {
    font-size:1em;
    font-weight:400;
    line-height:1.4;
} 
#location .route .route_box .route_box_inn .inn_co span {
    color:#004F90;
    font-weight:600;
}
#location .route .route_box .route_box_inn .subway_number {
    display:flex;
    align-items:center;
    gap:10px;
} 
#location .route .route_box .route_box_inn .subway_number .line5 {
    font-size:1em;
    font-weight:600;
    font-family: 'S-CoreDream';
    padding: 5px 0;
    border-radius:999px;
    width:80px;
    text-align:center;
    background-color:#7F2EB5;
    color:#fff;
}
#location .route .route_box .route_box_inn .subway_number .line5_co {
    font-size: 1em;
    font-weight:400;
}
#location .route .route_box .route_box_inn .subway_number .line5_co span {
    color:#7F2EB5;
    font-weight:700;
}
#location .route .route_box .route_box_inn .car_way {}
#location .route .route_box .route_box_inn .car_way p {
    font-size: 1em;
    font-weight: 400;
    letter-spacing: -0.56px;
    line-height: 1.4;
    word-break: keep-all;
}


#location .loaction_management {
    margin-top:50px;
}
#location .loaction_management .management_inn {
    background-color:#f9f9f9;
    border-radius:30px;
    padding:30px;
}
#location .loaction_management .management_inn p { 
    font-size:1em;
    font-weight:400;
}


/* 반응형 미디어쿼리 css */
@media (max-width:1600px) {}
@media (max-width:1440px) {
    #location .map_cont .map_view {
        height:480px;
    }
}
@media (max-width:1200px) {
    #location .map_cont .map_info .map_info_text {
        padding:30px;
    }
    #location .map_cont .map_info .map_info_text .map_info_contact {
        gap:10px;
    }
    #location .route .route_box .route_box_inn .car_way {
        gap:0;
    }
}
@media (max-width:1024px) {
    #location .map_cont .map_view {
        height:400px;
    }
    
    #location .map_cont .map_info .map_info_text .map_addr {
        font-size:1.22em;
    }
    #location .map_cont .map_info .map_info_text .map_info_contact {
        flex-wrap: wrap;
    }
    #location .route {
        margin-top:60px;
        gap:30px;
    }
    #location .route .route_box .route_box_inn .bus_number {
        justify-content:center;
    }
    #location .loaction_management{
        margin-top:30px;
    }
}
@media (max-width:991px) {
    #location .map_cont .map_view {
        border-radius:30px;
    }
    #location .map_cont .map_info {
        flex-direction:column;
    }
    #location .map_cont .map_info .map_info_text {
        padding:20px;
        border-radius:30px 30px 0 30px;
    }
    #location .map_cont .map_info .map_info_btn {
        width:100%;
        border-radius:30px 0 30px 30px;
    }

    #location .route .route_box .route_box_inn .inn_title {
        font-size:1.11em;
    }

    #location .route {
        flex-direction:column;
    }
}
@media (max-width:768px) {}
@media (max-width:640px) {
    #location .map_cont .map_info .map_info_text .map_info_contact p {
        width:100%;
        text-align: center;
    }
    #location .map_cont .map_info .map_info_text .map_info_contact p span {
        display: block;
    }
    #location .route .route_box {
        padding: 20px 10px;
        border-radius: 30px;
    }
    #location .route .route_box .route_box_inn {
        padding:10px;
        border-radius:20px;
    }
}
@media (max-width:460px) {}