/* common */
body.overflow-hidden {
    overflow: hidden;
}

.container {
    max-width: 87.5rem;
    width: 100%;
    margin: 0 auto;
}

/* header */
.header {
    position: fixed;
    width: 100%;
    letter-spacing: -0.05em;
    background: #fff;
    z-index: 999;
    height: 5.625rem;

}

.header:after {
    clear: both;
    display: block;
    width: 100%;
    content: "";
}

.header .header-wrap {
    width: 100%;
    background: #fff;
    height: 100%;
}

.header .head-menu {
    height: inherit;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 97%;
    margin: 0 auto;
    position: relative;
}

.header .head-menu h1 a {
    display: flex;
    width: 100%;
    align-items: center;
}

.header .head-menu h1 img {
    vertical-align: middle;
}

.header .head-menu .gnb {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 0;
}

.header .head-menu .gnb .depth01 {
    height: 5.625rem;
    display: flex;
    flex: 1;
    justify-content: center;
}

.header .head-menu .gnb .depth01>li {
    vertical-align: top;
    text-align: center;
    position: relative;
    flex: 1 1 0;
    max-width: 11.25rem;
}

.header .head-menu .gnb .depth01>li>a {
    color: #222;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 1rem;
    position: relative;
    line-height: 1;
}

.header .head-menu .gnb .depth01>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #004ea2;
    transition: width 0.3s ease;
}

.header .head-menu .gnb .depth01>li:hover>a::after {
    width: 100%;
}

.header .head-menu .gnb .depth01>li:hover .depth02 {
    background-color: #f8f9fb;
}

.header .head-menu .gnb .depth01 li .depth02 {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
}

.header .head-menu .gnb .depth01 li .depth02 ul {
    width: 100%;
    padding: 1.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.3125rem;
}

.header .head-menu .gnb .depth01 li .depth02 li {
    display: block;
    text-align: center;
    width: 100%;
}

.header .head-menu .gnb .depth01 li .depth02 li a {
    position: relative;
    color: #444;
    display: block;
    font-size: 1.0625rem;
    background: transparent;
    padding: 0.5rem 0;
    transition: all .3s ease;
    font-weight: 300;
    line-height: 1;
}

.header .head-menu .gnb .depth01 li .depth02 li a:hover {
    color: #004ea2;
    font-weight: 700;
}

.header .head-menu .gnb .depth01 li .depth02 li a[target="_blank"]::after {
    content: "\ecaf";
    font-family: 'remixicon';
    margin-left: 5px;
    font-size: 0.9em;
    vertical-align: middle;
    opacity: 0.7;
}

.header .head-menu .gnb .depth01 li .depth02 li a i {
    display: inline-block;
    font-size: 0.9rem;
    margin-left: 0.2rem;
    vertical-align: middle;
    opacity: 0.6;
}



/* gnb bottom (header-sns, header-btn) */
.gnb-bottom {
    display: flex;
    align-items: center;
    gap: 0.9375rem;
}

.header-sns {
    display: flex;
    gap: 0.3125rem
}

.header-sns a {
    width: 2.5rem;
    height: 2.5rem;
    background: #f5f5f5;
    border-radius: 3.125rem;
    text-align: center;
    line-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-sns a img {
    vertical-align: middle;
}

.header-btn {
    background: #d93030;
    font-family: 'Godo';
    padding: 0.625rem 1.875rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.3125rem;
    border-radius: 3.125rem;
}

.gnb-bottom .link-group {
    display: flex;
    align-items: center;
    color: #555;
    font-size: .9375rem;
    font-weight: 600;
}

.gnb-bottom .link-group a {
    display: inline-block;
}

.gnb-bottom .link-group a span {
    position: relative;
    display: inline-block;
}

.gnb-bottom .link-group a span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: #555;
    transition: width 0.3s ease;
}

.gnb-bottom .link-group a:hover span::after {
    width: 100%;
}

.gnb-bottom .link-group a+a::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 3px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 0.625rem;
    vertical-align: middle;
}

.gnb-bottom .user {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.gnb-bottom .user .popup-open {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    background: #fff;
    border-radius: 50%;
    font-size: 1.125rem;
    color: #555;
    transition: all 0.3s ease;
    font-weight: 400;
}

.gnb-bottom .user .popup-open:hover {
    background: #004ea2;
    border-color: #004ea2;
    color: #fff;
}

.translator-trigger {
    display: flex;
    align-items: center;
    gap: 0.3125rem;
    padding: 0.5rem 1.2rem;
    border: 1px solid #eee;
    background: #fff;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 400;
    color: #555;
    transition: all 0.3s ease;
}

.site-translator{
    border: 1px solid #eee;
    border-radius: 2rem;
}

.translator-trigger i {
    font-size: 1.125rem;
    transition: transform 0.3s ease;
    color: #999;
}

.translator-trigger span {
    font-size: 1.125rem;
    color: #555;
}

.site-translator.active .translator-trigger {
    border-color: #d7000f;
    color: #d7000f;
}

.site-translator.active .translator-trigger span {
    color: #d7000f;
}

.site-translator.active .translator-trigger i {
    transform: rotate(180deg);
    color: #d7000f;
}

.translator-list {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    width: 100%;
    min-width: 6.25rem;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 0.625rem;
    box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.625rem);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    overflow: hidden;
}

.site-translator.active .translator-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.translator-list li a {
    display: block;
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
    color: #666;
    text-align: center;
    transition: all 0.2s ease;
}

.translator-list li a:hover,
.translator-list li a.active {
    background: #f9f9f9;
    color: #d7000f;
    font-weight: 600;
}

/* mobile menu button */
.menu-bar {
    flex-direction: column;
    justify-content: space-around;
    width: 5rem;
    height: 5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    display: none;
}

.menu-bar i {
    font-size: 1.5rem;
}

/* menu background */
.menu-bg {
    position: absolute;
    top: 5.625rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    background: #fff;
    z-index: -1;
}

.menu-bg.active {
    border-top: 1px solid #eee;
}

/*skip*/
.skip-nav {
    z-index: 9999;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    text-align: center
}

.skip-nav a {
    display: block;
    width: 100%;
    height: 0;
    overflow: hidden;
    white-space: nowrap;
}

.skip-nav a:focus,
.skip-nav a:active {
    display: block;
    width: 100%;
    height: 2.25rem;
    color: #fff;
    background: #000;
    line-height: 2.25rem;
    text-decoration: underline !important;
    font-size: 0.875rem;
}

/*popup*/
.popup-area {
    position: fixed;
    background: rgba(0, 0, 0, .8);
    z-index: 9999;
    width: 100vw;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: opacity .3s ease;
}

.popup-area.show {
    height: 100%;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-list {
    overflow: hidden;
    max-width: 80%;
    width: 100vw;
}

.popup-list .popup-item img {
    width: auto;
    max-width: 100%;
}

.popup-btn {
    display: flex;
    justify-content: center;
    padding-top: 3rem;
    gap: 0.625rem;
}

.popup-btn a {
    color: #fff;
    display: inline-block;
    padding: .8rem 2.5rem;
    border-radius: 2.5rem;
    font-weight: 700;
}

.popup-btn a.today-close {
    border: 0.125rem solid #fff;
}

.popup-btn a.close {
    background: #004ea2;
}

.popup-list .indicator {
    display: flex;
    align-items: center;
    justify-content: end;
    padding-bottom: 1.25rem;
}

.popup-list .indicator>div {
    width: 3.125rem;
    height: 3.125rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 0.0625rem solid #fff;
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.popup-list .indicator .swiper-button-disabled {
    opacity: .3;
}

.popup-list .indicator .popup-prev {}

.popup-list .indicator .popup-next {
    margin-left: 0.3125rem;
}

.popup-slide {
    justify-content: space-evenly;
    text-align: center;
}

.popup-slide .popup-item {
    max-height: 75vh;
    overflow-y: auto;
}

.popup-item::-webkit-scrollbar {
    width: 3px;
}

.popup-item::-webkit-scrollbar-thumb {
    background-color: #007764;
}

.popup-item::-webkit-scrollbar-track {
    background-color: grey;
}
.empty-popup p{color: #fff; font-size: 1.2rem}
/*footer*/
.footer {
    background: #292e32;
    padding: 3.125rem 0;
}

.footer-group {
    display: flex;
}

.footer-group .logo {
    width: 15.625rem
}

.footer-group .info {
    width: 70%;
}

.footer-group .contact {
    color: #9ea7ab;
}

.footer-group .contact dt {
    font-weight: 700;
}

.footer-group .contact dd span+span {
    padding-left: 0.625rem;
}

.footer-group .copyright {
    color: #9ea7ab;
    padding-top: 50px;
}

.footer-sns {
    display: flex;
    gap: 0.3125rem;
    justify-content: flex-end;
    padding-bottom: 1.25rem;
}

.footer-sns a {
    width: 2.5rem;
    height: 2.5rem;
    background: #f5f5f5;
    border-radius: 3.125rem;
    text-align: center;
    line-height: 2.5rem;
}

.footer-sns a img {
    vertical-align: middle;
}

.footer .link-site a {
    display: block;
    border: 1px solid #eaeaea;
    padding: 10px;
    margin: 5px 0;
}


/*to top*/
#scroll {
    position: fixed;
    right: 5%;
    bottom: 1.875rem;
    cursor: pointer;
    width: 5rem;
    height: 5rem;
    background-color: #004ea2;
    text-align: center;
    color: #fff;
    z-index: 1;
    border-radius: 50px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#scroll.visible {
    opacity: 1;
    visibility: visible;
}

#scroll span {
    display: block;
    font-size: 0.8125rem;
}

#scroll i {
    position: relative;
    top: 0.25rem;
    transition: all .2s;
    font-size: 1.875rem;
}

#scroll:hover i {
    top: 0.125rem;
}





@media all and (max-width: 1500px) {

    .header .head-menu .gnb .depth01 li .depth02 li a {
        font-size: 1rem;
    }

    /*common*/
    .container {
        padding: 0 0.9375rem
    }

    /*header*/
    .header .head-menu {
        padding: 0 1rem;
        max-width: 100%;
    }

    .menu-bar {
        display: flex;
    }

    .header .head-menu .gnb {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 25rem;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 5rem 0 2rem 0;
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        box-shadow: -0.125rem 0 0.625rem rgba(0, 0, 0, 0.1);
    }

    .header .head-menu .gnb.active {
        right: 0;
    }

    .header .head-menu .gnb .depth01 {
        flex-direction: column;
        width: 100%;
        height: auto;
        position: static;
        transform: none;
        justify-content: flex-start;
    }

    .header .head-menu .gnb .depth01>li {
        width: 100%;
        max-width: 100%;
        flex: none;
        text-align: left;
        border-bottom: 0.0625rem solid #eee;
    }

    .header .head-menu .gnb .depth01>li>a {
        padding: 1rem 1.5rem;
        font-size: 1.125rem;
        justify-content: space-between;
        height: auto;
    }

    .header .head-menu .gnb .depth01>li>a:after {
        content: '+';
        position: static;
        width: auto;
        height: auto;
        background: none;
        font-size: 1.5rem;
        font-weight: 400;
        transition: transform 0.3s;
    }

    .header .head-menu .gnb .depth01>li.active>a:after {
        content: '-';
    }

    .header .head-menu .gnb .depth01>li:hover>a:after {
        width: auto
    }

    .header .head-menu .gnb .depth01 li .depth02 {
        position: static;
        width: 100%;
        display: none;
        flex-direction: column;
        background: #f8f8f8;
        padding: 0;
    }

    .header .head-menu .gnb .depth01 li.active .depth02 {
        display: flex;
    }

    .header .head-menu .gnb .depth01 li .depth02 .title {
        display: none;
    }

    .header .head-menu .gnb .depth01 li .depth02 ul {
        width: 100%;
        padding: 0.625rem 0;
        flex-direction: column;
        gap: 0;
    }

    .header .head-menu .gnb .depth01 li .depth02 li {
        width: 100%;
    }

    .header .head-menu .gnb .depth01 li .depth02 li a {
        padding: 0.75rem 2rem;
        font-size: 0.9375rem;
        background: transparent;
        text-align: left;
    }

    /* gnb bottom - 모바일 */
    .gnb-bottom {
        position: static;
        transform: none;
        flex-direction: column;
        width: 100%;
        padding: 2rem 1.5rem;
        gap: 1rem;
        border-top: 0.0625rem solid #eee;
        margin-top: auto;
    }

    .header-sns {
        justify-content: center;
        gap: 0.625rem;
    }

    .user {
        justify-content: center;
        width: 100%;
    }

    .header-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }

    .menu-bg {
        display: none !important;
    }

    /* 모바일 메뉴 오버레이 */
    .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 99;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mobile-overlay.active {
        display: block;
        opacity: 1;
    }

}

@media all and (max-width: 991px) {

    /*popup*/
    .popup-slide {
        justify-content: normal;
    }

    /*footer*/
    .footer {
        padding: 1.875rem 0 3.125rem
    }

    .footer-group .logo {
        width: 100%;
        text-align: center;
    }

    .footer-group {
        flex-direction: column;
        position: relative;
    }

    .footer-group .info {
        width: 100%;
        padding-top: 0.9375rem;
        text-align: center;
    }

    .footer-group .copyright {
        padding-top: 0;
        position: absolute;
        bottom: -2.5rem;
        font-size: 0.8125rem;
    }

    .footer-sns {
        justify-content: center;
        padding-top: 1.25rem;
    }

    .footer .link-site {
        display: flex;
        gap: 0.625rem;
    }

    .footer .link-site a {
        text-align: center;
        width: 50%;
    }

}

@media all and (max-width: 767px) {

    /*header*/
    .header .head-menu h1 {
        left: 0.9375rem;
        width: 100%;
    }

    /*footer*/
    .footer .link-site {
        flex-direction: column;
        gap: 0;
    }

    .footer .link-site a {
        width: 100%;
    }


}