@charset "utf-8";
:root {
    --header-height: 80px;
    --header-width: 1152px;
    --header-blue: #003492;
    --header-navy: rgba(0,0,0, .5);
    --header-line: #dfe6ef;
    --header-panel: #eef4fb;
    --gnb-depth-height: 200px;
}



#wrap {
    position: relative;
}

body.calList {
    background-color: #333;
}

body.calList #wrap {
    background-color: #fff;
}

#header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: var(--header-height);
}


.local-header {
    position: relative;
    height: var(--header-height);
    color: #fff;
    background: var(--header-navy);
    transition: color 0.36s ease, background-color 0.36s ease;
}



.local-header::after {
    content: "";
    position: absolute;
    top: var(--header-height);
    left: 0;
    display: block;
    width: 100%;
    height: 0;
    border-top: 0px solid var(--header-line);
    background: var(--header-panel);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04) inset;
    pointer-events: none;
    overflow: hidden;
    transition: height 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.local-header.is-gnb-open,
.local-header.is-search-open {
    color: #111;
    background: #fff;
}

.local-header.is-gnb-open::after {
    border-top: 1px solid var(--header-line);
    height: var(--gnb-depth-height);
}

.local-header.is-search-open::after {
    height: var(--gnb-depth-height);
    border-top: 1px solid var(--header-line);
    pointer-events: none;
}

.wrp-local-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: var(--header-width);
    height: var(--header-height);
    margin: 0 auto;
    /* padding: 0 16px; */
}

.logo {
    flex: 0 0 165px;
}

.logo-plaza a {
    display: flex;
    width: 105px;
    height: 40px;
    background: url(/wp-content/themes/seoul_plaza/images/2026/common/logo-plaza-main.png) no-repeat 0 0
}


.local-header.is-gnb-open .logo-plaza a,
.local-header.is-search-open .logo-plaza a {
    color: var(--header-blue);
    background-position: -105px 0;
}

.btn-menu-open {
    position: relative;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #f2f6ff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center
}


.btn-menu-open .ico-menu {
    position: relative;
    display: block;
    width: 20px;
    height: 16px;
    margin: 0 auto;
    transition: all .3s ease-in-out;
    transform: rotate(0deg);
    border-radius: 2px;
}

.btn-menu-open .ico-menu:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    content: '';
    transition: all .3s ease-in-out;
    transform: rotate(0deg);
    border-radius: 2px;
    background-color: #333;
}

.btn-menu-open .ico-menu:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    content: '';
    transition: all .3s ease-in-out;
    transform: rotate(0deg);
    border-radius: 2px;
    background-color: #333;
}

.btn-menu-open .ico-menu .ico-menu-mid {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    transition: all .3s ease-in-out;
    transform: translateY(-50%);
    border-radius: 2px;
    background-color: #333;
}


#local-menu {
    display: flex;
    flex: 1 1 auto;
    align-self: stretch;
    justify-content: space-between;
    min-width: 0;
    margin: 0 22px 0 30px;
}

#local-menu > li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 118px;
    height: var(--header-height);
    text-align: center;
}

#local-menu > li:nth-child(1) {
    min-width: 145px;
}

#local-menu > li:nth-child(2),
#local-menu > li:nth-child(3) {
    min-width: 150px;
}

#local-menu > li:nth-child(5) {
    min-width: 210px;
}

#local-menu > li > a {
    font-family: 'Paperlogy';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: inherit;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
}

#local-menu > li:hover > a,
#local-menu > li:focus-within > a,
#local-menu > li.current > a {    
    color: var(--header-blue) !important;
    font-weight: 700;
}

#local-menu > li > ul {
    position: absolute;
    top: var(--header-height);
    left: 50%;
    z-index: 3;
    display: block;
    width: max-content;
    min-width: 150px;
    padding: 20px 0 15px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translate(-50%, -6px);
    transition: opacity 0.2s ease, transform 0.24s ease, visibility 0s linear 0.2s;
}

.local-header.is-gnb-open:not(.is-search-open) #local-menu > li > ul {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translate(-50%, 0);
    transition-duration: 0.2s, 0.24s, 0s;
    transition-delay: 0.12s, 0.12s, 0s;
}

.local-header.is-gnb-open:not(.is-search-open) #local-menu > li:nth-child(2) > ul {
    transition-delay: 0.14s, 0.14s, 0s;
}

.local-header.is-gnb-open:not(.is-search-open) #local-menu > li:nth-child(3) > ul {
    transition-delay: 0.16s, 0.16s, 0s;
}

.local-header.is-gnb-open:not(.is-search-open) #local-menu > li:nth-child(4) > ul {
    transition-delay: 0.18s, 0.18s, 0s;
}

.local-header.is-gnb-open:not(.is-search-open) #local-menu > li:nth-child(5) > ul {
    transition-delay: 0.2s, 0.2s, 0s;
}

#local-menu > li > ul > li + li {
    margin-top: 19px;
}

#local-menu > li > ul a {
    font-family: 'Paperlogy';
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #222;
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.25;
    white-space: nowrap;
}

#local-menu > li > ul a:hover,
#local-menu > li > ul a:focus,
#local-menu > li > ul li.current a {
    color: var(--header-blue);
    font-weight: 700;
}

#local-menu > li > ul a:hover::before,
#local-menu > li > ul a:focus::before,
#local-menu > li > ul li.current a::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0px;
    left: 0;
    height: 10px;
    background: #fff7b1;
    z-index: -1;
}

#local-menu > li > ul a[target="_blank"]::after,
#local-menu > li > ul a[href$=".pdf"]::after {
    content: "";
    width: 13px;
    height: 13px;
    margin-left: 5px;
    background: url(../../images/2026/common/ico-all.png) no-repeat -205px 0;
    transform: translateY(-1px);
}

.btn-search-open {
    position: relative;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.24);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center
}

.local-header.is-gnb-open .btn-search-open,
.local-header.is-search-open .btn-search-open {
    background: #d9eaff;
}

.btn-search-open:before {
    content: '';
    width: 40px;
    height: 40px;
    background: url(../../images/2026/common/ico-all.png) no-repeat -160px -20px;

}

.local-header.is-gnb-open .btn-search-open:before {
    background-position: -200px -20px;

}
.local-header.is-search-open .btn-search-open:before {
    background-position: -240px -22px !important;

}

.msearch {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    z-index: 4;
    display: none;
    width: 100%;
    height: var(--gnb-depth-height);
    background: transparent;
}

.local-header.is-search-open .msearch {
    display: block;
}

.msearch .inner,
.msearch .iner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.msearch form {
    width: 100%;
}

.msearch fieldset {
    position: relative;
    display: flex;
    justify-content: center;
    width: min(716px, calc(100vw - 56px));
    margin: 0 auto;
}

.msearch .wrp-searchbox {
    position: relative;
    width: 100%;
}

.msearch input[type="text"] {
    width: 100%;
    height: 76px;
    padding: 0 92px 0 39px;
    border: 3px solid #00008b;
    border-radius: 40px;
    color: #111;
    background: #fff;
    font-size: 20px;
    line-height: 76px;
    outline: 0;
}

.msearch input[type="text"]::placeholder {
    color: #8f8f8f;
    font-family: 'Paperlogy';
}

.msearch button[type="submit"] {
    position: absolute;
    top: 50%;
    right: 21px;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    background: #f4f4f4;
    cursor: pointer;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.msearch button[type="submit"]::before {
    content: '';
    width: 50px;
    height: 50px;
    background: url(../../images/2026/common/ico-all.png) no-repeat -280px -20px;
}


#sub_contentWrap {position: relative;width: 100%;padding-top: 42px;}
.breadcrumb {display: none;position: relative;width: 100%;background-color: #f7f8f9;z-index: 20;}
.breadcrumb__inner {display: flex;justify-content: flex-end;width: 100%;max-width: var(--header-width);height: 42px;margin: 0 auto;padding: 0 16px;}
.breadcrumb__list {display: flex;align-items: center;justify-content: flex-end;height: 100%;}
.breadcrumb__item {position: relative;display: flex;align-items: center;height: 100%;color: #555;font-size: 13px;line-height: 1.3;}
.breadcrumb__item + .breadcrumb__item::before {content: "";width: 6px;height: 6px;margin: 0 14px;border-top: 1px solid #9aa3ad;border-right: 1px solid #9aa3ad;transform: rotate(45deg);}
.breadcrumb__item > a,
.breadcrumb__btn {display: inline-flex;align-items: center;border: 0;color: inherit;background: transparent;font: inherit;white-space: nowrap;}
.breadcrumb__btn {cursor: pointer;}
.breadcrumb__item.current-submenu-item > a,
.breadcrumb__link .current-submenu-item > a {color: var(--header-blue);font-weight: 700;}
.breadcrumb__item > div {position: absolute;top: 100%;right: 0;display: none;min-width: 190px;padding: 8px 0;border: 1px solid #d9dde5;background: #fff;box-shadow: 0 8px 18px rgba(0,0,0,.08);z-index: 30;}
.breadcrumb__item.is-open > div {display: block;}
.breadcrumb__link a {display: flex;align-items: center;min-height: 36px;padding: 8px 16px;color: #333;font-size: 14px;line-height: 1.3;word-break: keep-all;}

.breadcrumb__link a[target="_blank"]::after {
    content: "";
    width: 13px;
    height: 13px;
    margin-left: 5px;
    background: url(../../images/2026/common/ico-all.png) no-repeat -205px 0;
    transform: translateY(-1px);
}
.breadcrumb__link a:hover,
.breadcrumb__link a:focus {color: var(--header-blue);background: #eef6ff;}



#sub_contentWrap>.inner {display: flex;gap: 30px;}
#lnb {box-sizing: border-box;flex: 0 0 170px;width: 170px;min-height: 520px;padding: 22px 20px 0 0;border-right: 1px solid #e5e5e5;}
#lnb .lnb_tit {display: flex;align-items: center;justify-content: center;width: 150px;height: 103px;margin: 0 0 10px;padding: 0 20px;border-radius: 0 42px 0 42px;background: linear-gradient(135deg, #74a8ff 0%, #3567c5 42%, #3567c5 100%);color: #fff;font-size: 1.5rem;font-weight: 700;line-height: 1.2;text-align: center;word-break: keep-all;}
#lnb.menu5 .lnb_tit {padding: 0 15px;word-break: break-all;}
#lnb #searchWrap_bg {display: none}
#lnb .lnb_1depth {width: 150px;}
#lnb .lnb_1depth > li > a {display: flex;align-items: center;justify-content: center;min-height: 56px;padding: 12px 8px;color: #000;font-size: 1rem;font-weight: 600;line-height: 1.25;text-align: center;word-break: keep-all;border-bottom: 1px solid #eaeaea;}
#lnb .lnb_1depth > li > a.current-submenu-item {color: var(--header-blue);font-weight: 700;font-size: 1.125rem}
#lnb .lnb_2depth {display: none !important}
#lnb .lnb_1depth > li.has-sub.open.active > a {background: none !important;color: var(--header-blue) !important;font-weight: 700;}

#lnb .lnb_1depth > li > a[target="_blank"]:after {
    content: "";
    width: 13px;
    height: 13px;
    margin-left: 5px;
    background: url(../../images/2026/common/ico-all.png) no-repeat -205px 0;
    transform: translateY(-1px);
}


#sub_centent {width: calc(100% - 200px)}
#sub_h3 {display: flex;justify-content: center;padding: 80px 0 60px;}
#sub_h3 .sub_tit {position: relative;display: inline-flex;color: #222;font-family: 'Paperlogy';font-size: 42px;font-weight: 700;line-height: 1;letter-spacing: 0;text-align: center;word-break: keep-all;}
#sub_h3 .sub_tit a {font-family: inherit;}
#sub_h3 .sub_tit::after {content: "";position: absolute;top: -14px;right: -27px;width: 18px;height: 18px;border-radius: 50%;background: radial-gradient(circle at 32% 32%, #d7fff0 0 16%, #88c8ff 42%, #8b8fff 100%);}

.link-tab {--link-tab-count: 2;display: grid;grid-template-columns: repeat(var(--link-tab-count), minmax(0, 1fr));margin: 0 0 50px;}
.link-tab--2 {--link-tab-count: 2;}
.link-tab--4 {--link-tab-count: 4;}
.link-tab a {position: relative;display: block;align-content: center;min-height: 60px;margin-left: -1px;padding: 0 20px;border: 1px solid #cdcdcd;border-bottom-color: #cdcdcd;border-radius: 18px 18px 0 0;background: #f4f6f7;color: #696969 !important;font-size: 18px;font-weight: 500;line-height: 1.25;text-align: center;word-break: keep-all;}
.link-tab a:first-child {margin-left: 0;}
.link-tab a.is-active,
.link-tab a[aria-current="page"] {z-index: 1;border-color: #3261c0;border-bottom: 3px solid #3261c0;background: #fff;color: #3261c0 !important;font-weight: 700;font-size: 1.375rem}
.link-tab a.is-active span,
.link-tab a[aria-current="page"] span {display: inline;background: linear-gradient(to top, #fff48b 0 42%, transparent 42%);padding: 0 2px;line-height: 1.25;-webkit-box-decoration-break: clone;box-decoration-break: clone;}

#view_top.view-top-2024 {position: relative;margin-bottom: 20px;padding: 0;background-color: #fff !important;border-top: 1px solid #767676;border-bottom: 1px solid #767676;}
#view_top.view-top-2024 h3 {margin-bottom: 0;padding: 20px 105px 17px 20px;background-color: #f4f6f7 !important;border-bottom: 1px solid #fff;line-height: 1.5;font-size: 1.375rem;font-weight: 700;text-align: left;}
#view_top.view-top-2024 .top-row {display: flex;align-items: center;padding: 15px 20px;border-top: 1px solid #ddd;font-size: 1rem;}
#view_top.view-top-2024 .top-row dt {display: flex;align-items: center;padding-left: 34px;color: #222;font-weight: 500;line-height: 1}
#view_top.view-top-2024 .top-row dt:first-child {padding-left: 0}
#view_top.view-top-2024 .top-row dt:after {content: '';display: inline-block;width: 1px;height: 12px;margin: 0 10px 0 10px;background: #ddd;}
#view_top.view-top-2024 .top-row dd {color: #555;line-height: 1;font-size: 1rem;flex-shrink: 0}
#view_top.view-top-2024 .top-row dd.dept {display: flex;align-items: center;line-height: 1;flex-shrink: 1}
#view_top.view-top-2024 .top-row dd.dept span:nth-child(2):before {content: '-';padding: 0 5px;}
#view_top.view-top-2024 #sns_elem_top {top: 12px;}


#view_box {display: none}

#sub_centent .loc {position: absolute;top: 0;right: 0;left: 0;display: flex;align-items: center;justify-content: flex-end;height: 42px;padding-right: max(16px, calc((100vw - var(--header-width)) / 2 + 16px));background: #f7f8f9;color: #555;font-size: 0.875rem;line-height: 1.3;z-index: 10;}
#sub_centent .loc a {display: inline-flex;align-items: center;color: inherit;white-space: nowrap;position: relative;}
#sub_centent .loc a + a::before {content: "";width: 4px;height: 4px;margin: 0 14px;border-top: 1px solid #555;border-right: 1px solid #555;transform: rotate(45deg);}
#sub_centent .loc a + a::after {content: "";position: absolute;top: calc(50% - 5px);left: 12px;width: 12px;height: 12px;background: #fff;border-radius: 50%;z-index: -1;}

#sub_centent .loc a.current-menu-page {font-weight: 700;color: #333;}
#sub_centent .loc em {display: none;}


/* tag */
#sub_centent.tag {width: 100%;max-width: 1152px;margin: 0 auto;padding-bottom: 100px;box-sizing: border-box;}
#sub_centent.tag h2 {position: relative;display: flex;justify-content: center;margin: 0 0 40px;color: #222;font-family: 'Paperlogy';font-size: 2rem;font-weight: 700;line-height: 1;letter-spacing: 0;text-align: center;word-break: keep-all;}
#sub_centent.tag h2 span {color: var(--primary-color);font-family: inherit;}



#footer {
    padding: 20px 0;
    background-color: #333333;
}

.wrp-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1152px;
    margin: 0 auto;
    gap: 10px;

}
.footer-info {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
}
.footer-info .fi-slogan {
    width: 161px;
    height: 62px;
    aspect-ratio: 161 / 62;
    background: url(../../images/2026/common/img-footer-slogan.png) no-repeat 0 0;
}
.footer-info .fi-address {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-info .fi-address a.links-white {
    margin-left: 5px;
    padding: 3px 10px;
    background-color:#494949;
    border-radius: 100vw;
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.7;
}
.footer-info .copy {
    margin-top: 5px;
    font-size: 0.875rem;
}
.footer-banner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.fb-banner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 300px;
}
.site-list-wrap {display: flex;position: relative;height: 40px;}
.site-list-wrap .btn-go {min-width: 66px;background: #494949;color: #fff;}

.btn-site {flex: 1;display: flex;position: relative;min-width: 130px;height: 40px;line-height: 40px;padding: 0 20px 0 10px;background-color: #fff;color: #333;font-size: 1rem;font-weight: 500;}
.btn-site:after {content: '';position: absolute;top: 15px;right: 20px;width: 16px;height: 10px;background: url(../../images/2026/common/ico-arr-footer.png) no-repeat 0 0;transform: rotate(0deg)}
.btn-site.on:after {transform: rotate(180deg)}
.sites-list {display: none;position: absolute;top: 40px;left: 0;width: calc(100% - 66px);padding: 1px;background: rgba(255,255,255, .9);}
.sites-list>li {display: flex;justify-content: flex-start;margin: 0 0 1px;padding: 5px 0 5px 10px;color: #333;font-family: 'Noto Sans KR';cursor: pointer}
.sites-list>li:hover,
.sites-list>li.current {background: #1678e4;color: #fff;}

.btn-top {position: fixed;opacity: 0;bottom: 0;width: 50px;height: 50px;border: 0;background: url(../../images/2026/common/btn-top.png) no-repeat 0 0;z-index: 10000;pointer-events: none;transform: translateY(12px);transition: opacity .25s ease, bottom .25s ease, transform .25s ease;}
.btn-top.show {opacity: 1;pointer-events: auto;transform: translateY(0);}

@media (max-width: 1400px) {
    .btn-top {
        bottom: 200px;
        left: auto;
        right: 10px;
    }
}

@media (max-width: 1200px) {
    .inner {
        padding: 0 20px
    }
    .article-calendar .inner {padding: 0;}
    #local-menu {
        margin: 0;
    }

    #footer {
        padding-top: 40px;
    }
    .wrp-footer {
        padding: 0 20px;
        gap: 10px;
    }
    .footer-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .footer-info .fi-address a.links-white {
        display: inline-block;
        margin: 8px 0 0;
    }    
    .footer-info .fi-slogan {
        width: 100px;
        height: 40px;
        background-size: 100% auto;
    }
    .footer-banner {
        gap: 10px;
        flex-shrink: 0;
        align-items: flex-end;
    }
    .footer-banner .fb-access {
        flex-shrink: 0;
    }
    .footer-banner .fb-access .accessibility-mark img {
        width: 80px;
    }



}

@media (max-width: 1024px) {
    .wrp-local-header {
        padding: 0 20px;
        gap: 10px;
    }

    :root {
        --header-height: 64px;
        --gnb-depth-height: 160px;
    }

    #header {
        position: relative;
        background-color: #fff;
    }
    #header .local-header {
        background-color: #fff
    }

    body.is-local-menu-open {
        overflow: hidden;
    }

    body.is-local-menu-open #seoul-common-header {
        visibility: hidden;
    }

    .local-header.is-mobile-menu-open {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 10000;
        color: #111;
        background-color: #fff;
    }

    .local-header.is-mobile-menu-open .wrp-local-header {
        position: relative;
        z-index: 30;
    }

    .local-header.is-mobile-menu-open::after {
        height: 0;
        border-top: 0;
    }

    .logo {
        flex-basis: auto;
    }

    .logo-plaza a {
        min-width: 96px;
        font-size: 24px;
        background-position: -105px 0;
    }

    .logo-plaza a::before {
        font-size: 9px;
    }

    #local-menu {
        position: fixed;
        top: var(--header-height);
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 20;
        display: grid;
        grid-template-columns: minmax(0, 50%) minmax(0, 50%);
        align-content: flex-start;
        margin: 0;
        border-top: 1px solid #d8dde8;
        background: linear-gradient(to right, #fff 0 50%, #f4f7ff 50% 100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        overflow: hidden;
        transform: translateY(-8px);
        transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
    }

    .local-header.is-mobile-menu-open #local-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
        transition-delay: 0s;
    }

    .btn-menu-open {
        order: 3;
    }

    .local-header.is-mobile-menu-open .btn-menu-open {
        width: clamp(40px, 6vw, 48px);
        height: clamp(40px, 6vw, 48px);
        margin-left: auto;
        background: #f2f6ff;
    }

    .local-header.is-mobile-menu-open .btn-search-open {
        display: none;
    }

    
    .btn-menu-open .ico-menu {
        width: 18px;
        height: 14px;
    }

    .btn-menu-open .ico-menu:before {
        height: 3px;
    }

    .btn-menu-open .ico-menu:after {
        bottom: 0;
        height: 3px;
    }

    .btn-menu-open .ico-menu .ico-menu-mid {
        top: 50%;
        height: 3px;
        transform: translateY(-50%);
    }

    .local-header.is-mobile-menu-open .btn-menu-open .ico-menu {
        width: clamp(20px, 3vw, 24px);
        height: clamp(20px, 3vw, 24px);
    }

    .local-header.is-mobile-menu-open .btn-menu-open .ico-menu:before,
    .local-header.is-mobile-menu-open .btn-menu-open .ico-menu:after {
        top: 50%;
        bottom: auto;
        height: 3px;
        background-color: #000;
        transform-origin: 50% 50%;
    }

    .local-header.is-mobile-menu-open .btn-menu-open .ico-menu:before {
        transform: translateY(-50%) rotate(45deg);
    }

    .local-header.is-mobile-menu-open .btn-menu-open .ico-menu:after {
        transform: translateY(-50%) rotate(-45deg);
    }

    .local-header.is-mobile-menu-open .btn-menu-open .ico-menu .ico-menu-mid {
        opacity: 0;
    }

    .btn-search-open {
        order: 2;
        margin-left: auto;
        background-color: #f2f6ff;
    }
    .btn-search-open::before {background-position: -200px -20px !important}

    .local-header.is-search-open .btn-search-open:before  {
        background-size: 400px auto;
        background-position: -193px -18px !important;
        width: 30px;
        height: 30px;
    }

    .msearch {
        height: 110px;
    }

    .local-header.is-search-open::after {
        height: 110px;
    }

    .msearch input[type="text"] {
        height: 48px;
        padding: 0 30px 0 22px;
        font-size: 16px;
        line-height: 48px;
    }

    .msearch button[type="submit"] {
        right: 10px;
        width: 38px;
        height: 38px;
    }

    .msearch button[type="submit"]::before {
        width: 32px;
        height: 32px;
        background-size: 400px auto;
        background-position: -160px -16px;
    }

    .logo {
        flex-basis: 150px;
    }

    #local-menu {
        margin: 0;
    }

    #local-menu a {
        font-family: 'Pretendard Variable' !important;
    }

    #local-menu > li,
    #local-menu > li:nth-child(n) {
        position: static;
        grid-column: 1;
        display: block;
        min-width: auto;
        height: auto;
        text-align: left;
    }

    #local-menu > li > a {
        justify-content: flex-start;
        height: auto;
        padding: 25px 0 10px 15px;
        color: #222;
        font-size: 1.125rem;
        font-weight: 700;
        line-height: 1.25;
        white-space: normal;
        word-break: keep-all;
        overflow-wrap: anywhere;
    }

    #local-menu > li.is-active > a {
        color: var(--header-blue);
    }

    .local-header.is-mobile-menu-open #local-menu > li > ul {
        position: absolute;
        top: 0;
        left: 50%;
        width: 50%;
        height: 100%;
        min-width: 0;
        padding: 17px 15px;
        border-left: 1px solid #d8dde8;
        background: #f4f7ff;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        overflow-y: auto;
        transform: none;
        transition: none;
    }

    .local-header.is-mobile-menu-open #local-menu > li.is-active > ul {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        border-left: 0;
    }

    .local-header.is-mobile-menu-open #local-menu > li > ul {
        padding: 15px 10px;
    }
    #local-menu > li > ul a[target="_blank"]::after, #local-menu > li > ul a[href$=".pdf"]::after {
        flex-shrink: 0;
        margin-top: 5px;
    }

    #local-menu > li > ul > li + li {
        margin-top: 17px;
    }

    #local-menu > li > ul a {
        align-items: flex-start;
        color: #222;
        font-size: 16px;
        line-height: 1.35;
        white-space: normal;
        word-break: keep-all;
        overflow-wrap: anywhere;
    }

    #local-menu > li > ul a::before,
    #local-menu > li > ul a:hover::before,
    #local-menu > li > ul a:focus::before {
        content: "-";
        position: static;
        right: auto;
        bottom: auto;
        left: auto;
        flex: 0 0 auto;
        width: auto;
        height: auto;
        margin-right: 7px;
        color: #222;
        background: none;
        z-index: auto;
    }
}

@media (max-width: 1024px) {
    #sub_contentWrap {
        padding-top: 0;
    }

    #sub_contentWrap>.inner {
        display: block;
        padding: 0 20px 60px;
    }

    /* tag */
    #sub_centent.tag {padding: 0 20px 60px}
    #sub_centent.tag h2 {margin: 0 0 20px;font-family: 'Paperlogy';font-size: 1.5rem;}


    #lnb {
        display: none;
    }

    #sub_centent {
        width: 100%;
    }

    #sub_h3 {
        padding: 50px 0 44px;
    }

    #sub_h3 .sub_tit {
        font-size: 36px;
    }

    #sub_h3 .sub_tit::after {
        top: -12px;
        right: -24px;
        width: 16px;
        height: 16px;
    }

    .link-tab {
        margin-bottom: 40px;
    }

    .link-tab a {
        min-height: 56px;
        padding: 0 14px;
        font-size: 16px;
    }

    .breadcrumb {
        display: block;
        background: transparent;
    }

    #sub_centent .loc {
        display: none;
    }

    .breadcrumb__inner {
        display: block;
        height: auto;
        padding: 0;
    }

    .breadcrumb__list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
        justify-content: stretch;
        height: auto;
    }

    .breadcrumb__item {
        display: block;
        height: auto;
        min-width: 0;
        font-size: 16px;
    }
    .breadcrumb__item:nth-child(4) {
        display: none
    }

    .breadcrumb__item:first-child {
        display: none;
    }

    .breadcrumb__item + .breadcrumb__item::before {
        display: none;
    }

    .breadcrumb__btn {
        justify-content: space-between;
        width: 100%;
        height: 40px;
        padding: 0 24px;
        color: #fff;
        background: #168cf0;
        font-size: 16px;
        font-weight: 700;
        line-height: 1.25;
        text-align: left;
    }

    .breadcrumb__item:nth-child(3) .breadcrumb__btn {
        background: #087fdf;
    }

    .breadcrumb__btn span {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .breadcrumb__btn::after {
        content: "";
        flex: 0 0 auto;
        width: 6px;
        height: 6px;
        margin-left: 12px;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transform: translateY(-2px) rotate(45deg);
        transition: transform .2s ease;
    }

    .breadcrumb__item.is-open .breadcrumb__btn::after {
        transform: translateY(3px) rotate(225deg);
    }

    .breadcrumb__item > div {
        position: absolute;
        top: 40px;
        right: auto;
        left: 0;
        display: none;
        width: 100%;
        min-width: 0;
        padding: 0;
        border: 0;
        background: #f3f8ff;
        box-shadow: none;
    }

    .breadcrumb__item:nth-child(2) > div {
        left: 0;
    }

    .breadcrumb__item:nth-child(3) > div {
        border-right: 0;
        background: #edf6ff
    }

    .breadcrumb__item.is-open > div {
        display: block;
    }

    .breadcrumb__link {
        margin: 0 !important;
        padding: 10px 0;
    }

    .breadcrumb__link a {
        padding: 10px 24px;
        color: #222;
        font-size: 16px;
        font-weight: 500;
        word-break: break-all;
    }

    .breadcrumb__link .current-submenu-item > a {
        color: var(--header-blue);
        font-weight: 700;
    }
}

@media (max-width: 767px) {
    
    #sub_h3 {
        padding: 38px 0 32px;
    }

    #sub_h3 .sub_tit {
        font-size: 30px;
    }

    #sub_h3 .sub_tit::after {
        top: -9px;
        right: -20px;
        width: 14px;
        height: 14px;
    }

    /* */
    #view_top.view-top-2024 h3 {padding: 10px 10px 10px 15px;font-size: 1.25rem;}
    #view_top.view-top-2024 .top-row {flex-wrap: wrap;padding: 10px 15px;}
    #view_top.view-top-2024 .top-row dt {min-width: 80px;align-items: flex-start;justify-content: space-between;margin: 5px 0;padding-left: 0;color: #555;font-size: 0.9125rem}
    #view_top.view-top-2024 .top-row dt:after {}
    #view_top.view-top-2024 .top-row dd {min-width: calc(100% - 80px);color: #555;font-size: 0.9125rem}

    .link-tab {
        margin-bottom: 32px;
    }

    .link-tab--4 {
        --link-tab-count: 2;
    }

    .link-tab a {
        min-height: 48px;
        padding: 0 10px;
        border-radius: 0;
        font-size: 1rem;
    }
    .link-tab a.is-active, .link-tab a[aria-current="page"] {
        font-size: 1.0625rem
    }

	 .breadcrumb__link a {
        padding: 10px 0 10px 24px;
    }

    .btn-top {
        bottom: 50px;
    }
    .wrp-footer {
        position: relative;
        flex-direction: column;
        font-size: 0.875rem;
    }
    .footer-info .fi-address a.links-white {
        padding: 2px 8px;
        font-size: 0.75rem;
    }
    .footer-banner .fb-access {
        display: none;
    }
    .footer-banner .fb-sites {
        position: absolute;
        top: 0;
        left: calc(50% - 100px)
    }
    .footer-banner .fb-banner {
        margin: 5px 0 0px;
        width: 100%
    }
    .footer-info .fi-address {
        gap: 5px;
    }
    .footer-banner .btn-site {
        height: 30px;
        line-height: 30px;
        margin-left: 5px;
        padding: 0 10px 0 5px;
        font-size: 0.875rem;
        min-width: 140px;
    }
    .site-list-wrap {
        height: 30px;
    }
    .site-list-wrap .btn-go {
        min-width: 46px;
        height: 30px;
    }
    .sites-list {
        top: 30px;
        left: 5px;
        width: calc(100% - 51px);
    }
    .btn-site:after {
        top: 10px;
        right: 8px;
        width: 12px;
        background-size: 100% auto;
    }


    .footer-info .copy {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .footer-banner .fb-sites {
        left: auto;
        right: 1rem;
    }
    .footer-info .fi-address .phone {
        margin-top: 5px;
    }
}

@media (max-width: 420px) {
    :root {
        --header-height: 60px;
        --gnb-depth-height: 160px;
    }

    .wrp-local-header {
        gap: 5px;
    }

    .logo-plaza a {
        min-width: 80px;
        width: 80px;
        height: 30px;
        background-size: 158px auto;
        background-position: -80px 0 !important;
    }
    /*
    .btn-search-open {
        width: 32px;
        height: 32px;
    }
    .btn-search-open:before {
        background-size: 400px auto;
        background-position: -160px -12px !important;
    }
    .btn-menu-open {
        width: 32px;
        height: 32px;
        margin-left: 8px;
    }
        */

    .btn-top {
        width: 40px;
        height: 40px;
        background-size: 100% auto;
    }
}

@media (max-width: 380px) {
    #local-menu > li > a {font-size: 1rem}
}
@media (max-width: 359px) {
    #footer {
        padding-top: 30px
    }
    .footer-info .fi-slogan {
        width: 80px;
    }
    .footer-info .fi-address .addr,
    .footer-info .fi-address .phone {
        font-size: 0.75rem;
        letter-spacing: -0.075em;
    }
    .footer-banner .fb-sites {
        left: 100px;
    }
}

@media (max-width: 350px) {
    .wrp-footer {
        padding: 0 .5rem
    }
}

@media (min-width: 1401px) {
    .btn-top {left: calc(50% + 600px)}
    .btn-top.show {bottom: 160px;}
}

@media (prefers-reduced-motion: reduce) {
    .local-header,
    .local-header::after,
    #local-menu > li > ul,
    .btn-top,
    .breadcrumb__btn::after {
        transition: none;
    }
}



.inner {
    width: 100%;
    max-width: 1152px;
    margin: 0 auto;
}


@media (min-width: 1025px) {
    .btn-menu-open {display: none;}
    /* sub header */
    .sub #header {
        position: relative;
        background-color: #fff;
    }
    .sub .local-header {
        background: #fff;
        border-bottom: 2px solid #3261c0;
    }
    .sub .local-header.is-gnb-open {
        border-bottom: 2px solid transparent;
    }
    .sub #local-menu > li > a {
        color: #333;
    }

    .sub .logo-plaza a {
        background-position: -105px 0;
    }
    .sub .btn-search-open {background-color: #d7e8ff}
    .sub .btn-search-open::before {background-position: -200px -20px !important}


}
