@import "breadcrumb.css";
@import "hero.css";

/* ?시?길 ?이지 ????*/
.location-page {
    background-color: #ffffff;
    min-height: 100vh;
    width: 100%;
}

/* ?더 ?션 */
.location-header {
    background-color: #ffffff;
    margin: 0 auto;
    padding: 60px 0 40px 0;
    position: relative;
    width: 100%;
}

.location-header-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    height: 100%;
    justify-content: flex-end;
    margin: 0 auto;
    max-width: var(--content-max-width-1200);
    width: 100%;
}

.map-content {
    margin: 0 auto;
    margin-top: 60px;
    margin-bottom: 60px;
    max-width: 1200px;
    width: 100%;
}

.map-content .root_daum_roughmap {
    width: 100%;
}

.map-content .root_daum_roughmap .cont {
    display: none;
}

.address-content {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin: 0 auto 120px auto;
    max-width: 1200px;
    width: 100%;
}

.address-content h2 {
    flex-shrink: 0;
    font-size: 36px;
    line-height: 150%;
}

.address-content .address, .address-content .address .flex {
    display: flex;
    gap: 20px;
}

.address-content .address {
    flex-direction: column;
}

.address-content .address .address-string,
.address-content .address .tel {
    display: flex;
    gap: 20px;
    width: fit-content;
}

.address-content .address .address-string > span:first-child,
.address-content .address .transport-note > span:first-child,
.address-content .address .tel > span:first-child {
    color: var(--color-gray-02);
    flex-shrink: 0;
}

.address-content .address > p > span:last-child,
.address-content .address > div > span:last-child {
    color: var(--color-gray-01);
}

.content {
    color: var(--color-gray-01);
    font-size: 20px;
}


.address .transport-note div .content {
    display: grid;
    grid-template-columns: 1fr 150px;
    vertical-align: top;
}

.address .transport-note div .content p {
    color: var(--color-gray-01);
    line-height: 160%;
    margin-bottom: 10px;
}

.address .content mark {
    background-color: unset;
    color: #ff3a21;
}

.address .content .bus-wrapper {
    display: flex;
    flex-direction: column;
    margin-left: 16px;
}

.address .content .bus-wrapper > span {
    align-items: center;
    display: flex;
    gap: 4px;
}

.badge-route {
    align-items: center;
    border-radius: 8px;
    box-sizing: border-box;
    color: #151515;
    display: inline-flex;
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 400;
    height: 16px;
    justify-content: center;
    line-height: 14px;
    margin-bottom: 4px;
    padding-right: 1px;
    padding-top: 2px;
    vertical-align: middle;
    width: 16px;
}

.badge-route:not(:last-of-type) {
    margin-right: 4px;
}

.seoul-line1 {
    background-color: #3356B4;
    color: #ffffff;
}

.seoul-line7 {
    background-color: #727718;
    color: #ffffff;
}

.bus-type {
    background: url(/img/ico_tag2_250218.png) no-repeat -76px -120px;
    background-size: 100px auto;
    color: transparent;
    display: inline-block;
    font-size: 1px;
    height: 15px;
    line-height: 0;
    margin-top: 1px;
    vertical-align: top;
    width: 23px;
}

.no0101 {
    background-position: 0 0;
}

.no0102 {
    background-position: -25px 0;
}

.no0106 {
    background-position: -25px -15px;
}

.no0109 {
    background-position: 0 -30px;
}

/* 반응??????- ?블?*/
@media (max-width: 1200px) {


    .location-header {
        padding: 40px 60px;
    }
}

/* 반응??????- 모바??*/
@media (max-width: 768px) {
    .location-header {
        padding: 20px 16px;
    }

    .map-content {
        margin-bottom: 40px;
    }

    .address-content {
        flex-direction: column;
        padding: 0 16px;
    }

    .address-content h2 {
        font-size: 24px;
    }

    .address .transport-note.subway .content {
        grid-template-columns: repeat(1, 1fr);
    }

    .address-content .address, .address-content .address .flex {
        gap: 12px;
    }

    .address-content .address p {
        gap: 8px;
        margin-bottom: 0;
    }

    .address-content .address .address-string > span:first-child,
    .address-content .address .transport-note > span:first-child,
    .address-content .address .tel > span:first-child,
    .content,
    .tel span,
    .address-content .address .content p,
    .address-content .address .content .bus,
    .address-content .address mark {
        font-size: 16px;
    }

    .badge-route {
        font-size: 12px;
        padding-right: 0;
    }

}