@import url("base.css");
@import url("header.css");
@import url("footer.css");


/* ==============================
    Layout
============================== */
#sContainer {
    position: relative;
    margin-bottom: 200px;
}


/* ==============================
    Sub Visual
============================== */
.sub_visual {
    width: 100%;
    margin-bottom: 50px;
    padding: 0;
}

.sub_visual_bg {
    position: relative;
    width: 100%;
    height: 620px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    background: url('/img/sub/bg_01.png') center center / cover no-repeat;
}

.sub_visual_bg::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;

    background: rgba(0, 0, 0, 0.48);
}

.sub_visual_inner {
    max-width: 1520px;
    width: calc(100% - 40px);
    margin: 0 auto;
}

.sub_visual_text {
    position: relative;
    z-index: 2;

    text-align: center;
    color: #fff;
}

.sub_visual_text .plus {
    font-family: 'Pretendard_SB';
    font-size: 40px;
    line-height: 1;
}

.sub_visual_text h2 {
    margin: 10px 0;

    font-family: 'Pretendard_SB';
    font-size: 48px;
}

.sub_visual_text p {
    margin: 0;

    font-size: 20px;
    color: #eee;
}


/* ==============================
    Sub Title
============================== */
.sub_title {
    margin-bottom: 80px;
    text-align: center;
}

.sub_title span {
    display: block;
    margin-bottom: 16px;

    font-size: 16px;
    font-weight: 700;
    color: #1459aa;
    letter-spacing: 0.16em;
}

.sub_title h2 {
    margin-bottom: 24px;

    font-size: 48px;
    font-weight: 800;
    color: #111;
}

.sub_title p {
    font-size: 22px;
    line-height: 1.6;
    color: #444;
}


.location_container {
    width: 100%;
    background: #fff;
}

.location_inner {
    max-width: 1520px;
    width: calc(100% - 40px);
    margin: 0 auto;
    /* padding: 100px 0 140px; */
}

.location_intro {
    text-align: center;
    margin-bottom: 90px;
}

.location_intro h3 {
    font-size: 42px;
    line-height: 1.35;
    font-weight: 700;
    color: #111;
    margin-bottom: 24px;
}

.location_intro p {
    font-size: 20px;
    color: #555;
}

.reserve_box {
    width: 760px;
    margin: 50px auto 35px;
    padding: 38px 50px;
    border-radius: 20px;
    background: #f5f8fc;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tel_box span {
    display: block;
    font-size: 17px;
    color: #666;
    margin-bottom: 8px;
}

.tel_box strong {
    font-size: 34px;
    color: #1459aa;
    font-weight: 800;
}

.reserve_btns {
    display: flex;
    gap: 12px;
}

.reserve_btns a {
    width: 150px;
    height: 52px;
    border-radius: 26px;
    background: #1459aa;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reserve_btns a:nth-child(2) {
    background: #111;
}

.notice_box {
    width: 760px;
    margin: 0 auto;
    padding: 28px 35px;
    border: 1px solid #e5e5e5;
    text-align: left;
}

.notice_box strong {
    display: block;
    font-size: 18px;
    color: #111;
    margin-bottom: 15px;
}

.notice_box li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.section_title {
    text-align: center;
    margin-bottom: 50px;
}

.section_title h3 {
    font-size: 38px;
    font-weight: 700;
    color: #111;
}

.info_grid {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 50px;
    margin-bottom: 70px;
}

.time_box,
.map_box {
    border: 1px solid #e5e5e5;
    border-radius: 24px;
    padding: 45px;
    background: #fff;
}

.time_box h4,
.map_box h4,
.parking_box h4 {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 30px;
}

.time_box ul {
    border-top: 2px solid #111;
}

.time_box li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    border-bottom: 1px solid #eee;
}

.time_box li span {
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.time_box li strong {
    font-size: 22px;
    color: #1459aa;
    font-weight: 700;
}

.time_box p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-top: 16px;
}

.map_area {
    width: 100%;
    height: 390px;
    background: #e9e9e9;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-size: 18px;
    margin-bottom: 28px;
}

.map_area iframe {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.address {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 25px;
}

.address strong {
    font-size: 18px;
    color: #111;
}

.address p {
    font-size: 18px;
    color: #333;
}

.map_links {
    display: flex;
    gap: 12px;
}

.map_links a {
    width: 150px;
    height: 48px;
    border-radius: 24px;
    border: 1px solid #1459aa;
    color: #1459aa;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map_links a:hover {
    background: #1459aa;
    color: #fff;
}

.traffic_area {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 70px;
}

.traffic_item {
    min-height: 230px;
    padding: 40px;
    border-radius: 24px;
    background: #f7f9fc;
    display: flex;
    gap: 24px;
}

.traffic_icon {
    position: relative;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    border: 1px solid #d9e2ef;
    background: #fff;
    flex-shrink: 0;
}

/* 지하철 */
.traffic_icon.subway::before {
    content: "";
    position: absolute;
    left: 17px;
    top: 14px;
    width: 32px;
    height: 32px;
    border: 3px solid #1459aa;
    border-radius: 8px 8px 12px 12px;
    box-sizing: border-box;
}

.traffic_icon.subway::after {
    content: "";
    position: absolute;
    left: 23px;
    top: 23px;
    width: 20px;
    height: 7px;
    border-top: 3px solid #1459aa;
    border-bottom: 3px solid #1459aa;
    box-sizing: border-box;
}

.traffic_icon.subway span::before,
.traffic_icon.subway span::after {
    content: "";
    position: absolute;
    bottom: 14px;
    width: 7px;
    height: 7px;
    background: #1459aa;
    border-radius: 50%;
}

.traffic_icon.subway span::before {
    left: 22px;
}

.traffic_icon.subway span::after {
    right: 22px;
}

/* 버스 */
.traffic_icon.bus::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 15px;
    width: 36px;
    height: 31px;
    border: 3px solid #1459aa;
    border-radius: 9px 9px 7px 7px;
    box-sizing: border-box;
}

.traffic_icon.bus::after {
    content: "";
    position: absolute;
    left: 21px;
    top: 23px;
    width: 24px;
    height: 8px;
    border-top: 3px solid #1459aa;
    border-bottom: 3px solid #1459aa;
    box-sizing: border-box;
}

.traffic_icon.bus span::before,
.traffic_icon.bus span::after {
    content: "";
    position: absolute;
    bottom: 14px;
    width: 7px;
    height: 7px;
    background: #1459aa;
    border-radius: 50%;
}

.traffic_icon.bus span::before {
    left: 22px;
}

.traffic_icon.bus span::after {
    right: 22px;
}

/* 자동차 */
.traffic_icon.car::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 25px;
    width: 38px;
    height: 18px;
    border: 3px solid #1459aa;
    border-radius: 10px 10px 7px 7px;
    box-sizing: border-box;
}

.traffic_icon.car::after {
    content: "";
    position: absolute;
    left: 22px;
    top: 17px;
    width: 22px;
    height: 15px;
    border: 3px solid #1459aa;
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
    box-sizing: border-box;
}

.traffic_icon.car span::before,
.traffic_icon.car span::after {
    content: "";
    position: absolute;
    bottom: 15px;
    width: 7px;
    height: 7px;
    background: #1459aa;
    border-radius: 50%;
}

.traffic_icon.car span::before {
    left: 21px;
}

.traffic_icon.car span::after {
    right: 21px;
}

.traffic_item h4 {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 18px;
}

.traffic_item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.parking_box {
    padding: 50px 60px;
    border-radius: 24px;
    background: #111;
    color: #fff;
}

.parking_box h4 {
    color: #fff;
}

.parking_box p {
    font-size: 18px;
    line-height: 1.8;
    color: #ddd;
}


/* ==============================
   Responsive - Location Page
============================== */

/* 1600px 이하 */
@media (max-width: 1600px) {
    .location_inner {
        width: calc(100% - 60px);
        max-width: 1520px;
    }

    .info_grid {
        grid-template-columns: 420px 1fr;
        gap: 40px;
    }

    .time_box,
    .map_box {
        padding: 40px;
    }

    .traffic_item {
        padding: 35px;
        gap: 20px;
    }
}


/* 1280px 이하 */
@media (max-width: 1280px) {
    #sContainer {
        margin-bottom: 140px;
    }

    .sub_visual_bg {
        height: 520px;
    }

    .sub_visual_text h2 {
        font-size: 42px;
    }

    .sub_visual_text p {
        font-size: 18px;
    }

    .sub_title {
        margin-bottom: 60px;
    }

    .sub_title h2 {
        font-size: 42px;
    }

    .sub_title p {
        font-size: 20px;
    }

    .location_intro {
        margin-bottom: 70px;
    }

    .location_intro h3 {
        font-size: 36px;
    }

    .location_intro p {
        font-size: 18px;
    }

    .reserve_box {
        width: 700px;
        padding: 34px 40px;
    }

    .notice_box {
        width: 700px;
    }

    .section_title h3 {
        font-size: 34px;
    }

    .info_grid {
        grid-template-columns: 380px 1fr;
        gap: 35px;
    }

    .time_box,
    .map_box {
        padding: 35px;
    }

    .time_box h4,
    .map_box h4,
    .parking_box h4 {
        font-size: 25px;
    }

    .time_box li strong {
        font-size: 20px;
    }

    .map_area {
        height: 350px;
    }

    .traffic_area {
        gap: 20px;
    }

    .traffic_item {
        min-height: 220px;
        padding: 30px;
        flex-direction: column;
    }

    .traffic_item h4 {
        font-size: 22px;
    }

    .traffic_item p {
        font-size: 16px;
    }
}


/* 1024px 이하 - 태블릿 */
@media (max-width: 1024px) {
    .location_inner {
        width: calc(100% - 40px);
    }

    .reserve_box,
    .notice_box {
        width: 100%;
        box-sizing: border-box;
    }

    .info_grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .time_box,
    .map_box {
        padding: 35px;
    }

    .map_area {
        height: 360px;
    }

    .map_area iframe {
        height: 100%;
    }

    .traffic_area {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .traffic_item {
        min-height: auto;
        flex-direction: row;
        padding: 32px;
    }

    .parking_box {
        padding: 40px;
    }
}


/* 768px 이하 - 모바일 */
@media (max-width: 768px) {
    #sContainer {
        margin-bottom: 100px;
    }

    .sub_visual {
        margin-bottom: 40px;
    }

    .sub_visual_bg {
        height: 360px;
    }

    .sub_visual_text .plus {
        font-size: 28px;
    }

    .sub_visual_text h2 {
        font-size: 34px;
    }

    .sub_visual_text p {
        font-size: 16px;
        line-height: 1.5;
    }

    .sub_title {
        margin-bottom: 45px;
    }

    .sub_title span {
        margin-bottom: 12px;
        font-size: 13px;
        letter-spacing: 0.12em;
    }

    .sub_title h2 {
        margin-bottom: 18px;
        font-size: 34px;
    }

    .sub_title p {
        font-size: 17px;
        line-height: 1.55;
    }

    .sub_title p br {
        display: none;
    }

    .location_intro {
        margin-bottom: 55px;
    }

    .location_intro h3 {
        font-size: 28px;
        line-height: 1.4;
        margin-bottom: 18px;
    }

    .location_intro p {
        font-size: 16px;
        line-height: 1.6;
    }

    .reserve_box {
        margin: 35px auto 25px;
        padding: 28px 24px;
        border-radius: 16px;
        flex-direction: column;
        gap: 22px;
        text-align: center;
    }

    .tel_box span {
        font-size: 15px;
    }

    .tel_box strong {
        font-size: 28px;
    }

    .reserve_btns {
        width: 100%;
        gap: 10px;
    }

    .reserve_btns a {
        width: 50%;
        height: 48px;
        font-size: 15px;
    }

    .notice_box {
        padding: 24px 22px;
    }

    .notice_box strong {
        font-size: 17px;
    }

    .notice_box li {
        font-size: 15px;
        line-height: 1.7;
    }

    .section_title {
        margin-bottom: 35px;
    }

    .section_title h3 {
        font-size: 28px;
    }

    .info_grid {
        gap: 24px;
        margin-bottom: 50px;
    }

    .time_box,
    .map_box {
        padding: 28px 24px;
        border-radius: 18px;
    }

    .time_box h4,
    .map_box h4,
    .parking_box h4 {
        font-size: 23px;
        margin-bottom: 24px;
    }

    .time_box li {
        padding: 18px 0;
    }

    .time_box li span {
        font-size: 16px;
    }

    .time_box li strong {
        font-size: 18px;
    }

    .time_box p {
        font-size: 15px;
        margin-top: 12px;
    }

    .map_area {
        height: 300px;
        border-radius: 14px;
        margin-bottom: 24px;
    }

    .address {
        display: block;
        margin-bottom: 22px;
    }

    .address strong {
        display: block;
        margin-bottom: 8px;
        font-size: 16px;
    }

    .address p {
        font-size: 16px;
        line-height: 1.6;
    }

    .map_links {
        width: 100%;
        gap: 10px;
    }

    .map_links a {
        width: 50%;
        height: 46px;
        font-size: 15px;
    }

    .traffic_area {
        gap: 16px;
        margin-bottom: 50px;
    }

    .traffic_item {
        padding: 26px 22px;
        border-radius: 18px;
        gap: 18px;
    }

    .traffic_icon {
        width: 58px;
        height: 58px;
    }

    .traffic_item h4 {
        font-size: 21px;
        margin-bottom: 12px;
    }

    .traffic_item p {
        font-size: 15px;
        line-height: 1.65;
    }

    .parking_box {
        padding: 32px 24px;
        border-radius: 18px;
    }

    .parking_box p {
        font-size: 16px;
    }
}


/* 480px 이하 - 작은 모바일 */
@media (max-width: 480px) {
    .location_inner {
        width: calc(100% - 30px);
    }

    .sub_visual_bg {
        height: 300px;
    }

    .sub_visual_text .plus {
        font-size: 24px;
    }

    .sub_visual_text h2 {
        font-size: 29px;
    }

    .sub_visual_text p {
        font-size: 15px;
    }

    .sub_title h2 {
        font-size: 29px;
    }

    .sub_title p {
        font-size: 16px;
    }

    .location_intro h3 {
        font-size: 24px;
    }

    .location_intro h3 br {
        display: none;
    }

    .reserve_box {
        padding: 24px 18px;
    }

    .tel_box strong {
        font-size: 25px;
    }

    .reserve_btns {
        flex-direction: column;
    }

    .reserve_btns a {
        width: 100%;
        height: 46px;
    }

    .notice_box {
        padding: 22px 18px;
    }

    .section_title h3 {
        font-size: 25px;
    }

    .time_box,
    .map_box {
        padding: 24px 18px;
    }

    .time_box h4,
    .map_box h4,
    .parking_box h4 {
        font-size: 21px;
    }

    .time_box li {
        display: block;
        padding: 16px 0;
    }

    .time_box li span {
        display: block;
        margin-bottom: 6px;
        font-size: 15px;
    }

    .time_box li strong {
        font-size: 17px;
    }

    .map_area {
        height: 260px;
    }

    .map_links {
        flex-direction: column;
    }

    .map_links a {
        width: 100%;
    }

    .traffic_item {
        flex-direction: column;
        padding: 24px 20px;
    }

    .traffic_icon {
        width: 56px;
        height: 56px;
    }

    .traffic_item h4 {
        font-size: 20px;
    }

    .traffic_item p {
        font-size: 14.5px;
    }

    .parking_box {
        padding: 28px 20px;
    }

    .parking_box p {
        font-size: 15px;
    }
}