@charset "utf-8";
/* common base */
:root {
    --black-1-color: #212122;
    --black-2-color: #2e3031;
    --black-2-1-color: #55585c;
    --black-3-color: #79838f;
    --black-4-color: #dbe4ee;
    --black-5-color: #f1f5fa;
    --black-6-color: rgb(249, 252, 255);
    --blue-color: #33649b;
    --blue-2-color: #dfedfc;
    --blue-3-color: #f5fcff;
    --sky-color: #6fb2fe;
    --sky-1-color: #c6e1ff;
    --sky-2-color: #03e8f1;
    --pink-color: #ff6767;
    --pink-2-color: #ffd7ed;
    --orange-1-color: #ffe7af;
    --font-1-size: 45px;
    --font-2-size: 34px;
    --font-2-1-size: 28px;
    --font-3-size: 24px;
    --font-4-size: 20px;
    --font-4-1-size: 18px;
    --font-5-size: 16px;
    --font-6-size: 14px;
    --font-7-size: 12px;
    --font-8-size: 10px;
}
body::-webkit-scrollbar {
    width: 10px;
}
body::-webkit-scrollbar-thumb {
    height: 30%;
    margin: 1rem;
    border-radius: 10px;
    background: var(--sky-1-color);
}
body::-webkit-scrollbar-track {
    background-color: transparent;
}
::selection {
    color: #fff;
    background-color: var(--blue-color);
}
/* <!-- common base -->*/
/* common class */
.inner {
    position: relative;
    width: 95%;
    max-width: 1280px;
    margin: 0 auto;
}
.header_padding {
    display: block;
    padding-top: 11rem;
}
.footer_padding {
    padding-bottom: 3rem;
}
.m_block {
    display: none;
}
/* input */
.basic_input {
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--black-4-color);
    border-radius: 3px;
    background: #fff;
    font-size: 1rem;
    font-size: var(--font-6-size);
    color: var(--black-2-color);
}
.basic_input:disabled {
    background: var(--black-5-color);
    color: var(--black-2-color);
    opacity: 1;
}
input[type="date"].basic_input {
    -webkit-border-radius: 3px;
    -webkit-background: #fff;
}
.basic_input::placeholder {
    color: var(--black-3-color);
}
.basic_input_select {
    width: 140px;
    padding: 0.7rem 1.25rem;
    border: 1px solid var(--black-4-color);
    border-radius: 3px;
    font-size: var(--font-6-size);
}
/* <!-- input -->*/
/* 사용자 수정 불가 표시 */
.disabled_bg {
    background: var(--black-5-color);
}
/* <!-- 사용자 수정 불가 표시 --> */
/* button */
.basic_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-basis: 49%;
    height: 50px;
    border-radius: 2px;
    text-align: center;
    cursor: pointer;
}
.basic_btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0.75rem 0;
    font-size: var(--font-5-size);
}
.bd_btn {
    max-width: 200px;
    border: 2px solid var(--black-2-color);
}
.bd_btn img {
    max-width: 17px;
    margin: 0 auto;
}
.bg_btn {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 200px;
    background: var(--black-2-color);
    color: #fff;
}
.file_add_btn {
    border: 2px solid var(--sky-color);
    border-radius: 3px;
    color: var(--sky-color);
}
/* <!-- button -->*/
/* <!-- common class -->*/

@media (min-width: 360px) and (max-width: 1920px) {
    .side_menu {
        display: none;
    }
}
@media all and (min-width: 1920px) {
    .side_menu {
        position: fixed;
        right: 0;
        bottom: 30rem;
        z-index: 9999;
        width: 150px;
        height: 550px;
        font-size: var(--font-7-size);
        color: #fff;
        line-height: 5;
        text-align: center;
        border-radius: 20px 0px 0px 20px;
        background: #fff;
    }

    .side_menu_logo {
        width: 100%;
        height: 130px;
        overflow: hidden;
        border-radius: 20px 0px 0px 0px;
        background: #f5f5f5;
    }
    .side_menu_logo a {
        display: flex;
        height: 100%;
        justify-content: center;
        align-items: center;
    }

    .side_menu_item {
        width: 100%;
        overflow: hidden;
    }
    .side_menu_item a {
        display: flex;
        flex-direction: column;
        height: 70px;
        justify-content: center;
        align-items: center;
    }
    .side_menu_item:not(:last-child) a {
        border-bottom: 1px solid #c8c8c8;
    }
    .side_menu_item .title {
        width: 98px;
        height: 17px;
        margin-top: 3px;
        color: #222;
        text-align: center;
        font-family: NanumSquare Neo;
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }
}

/* quick menu */
.quick_menu {
    position: fixed;
    right: 2.5rem;
    bottom: 1.5rem;
    z-index: 9999;
    width: 60px;
    height: 60px;
    font-size: var(--font-7-size);
    color: #fff;
    line-height: 5;
    text-align: center;
    background-color: var(--black-1-color);
}
.quick_menu:hover {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-name: tong;
    animation-name: tong;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}
/* <!-- quick menu -->*/
/* header */
#header {
    position: fixed;
    top: 0;
    z-index: 9998;
    width: 100%;
    height: auto;
    transition: 0.5s;
    opacity: 1;
    background-color: #fff;
}
.nav_scroll#header ~ .top_menu {
    position: relative;
}
.nav_scroll#header {
    transition: 0.5s;
    box-shadow: 0 0 20px #6fb2fe25;
    background-color: #fff;
}
#hdarea {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 95%;
    max-width: 1360px;
    height: 82px;
    margin: 0 auto;
    background: transparent;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.nav_scroll #hdarea {
    justify-content: space-between;
    align-items: center;
}
.navbar_header {
    display: flex;
    display: block;
    justify-content: flex-start;
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.navbar_header a {
    display: inline-block;
}
.navbar_header img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    max-width: 317px;
    transition: 300ms;
}
.logo_text {
    max-width: 90%;
    opacity: 1;
}
.logo {
    width: 63px;
    opacity: 0;
}
.nav_scroll .logo_text {
    opacity: 0;
}
.nav_scroll .logo {
    display: block;
    width: 63px;
    opacity: 1;
}
/* gnb */
.menu_group {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    position: absolute;
    top: 60%;
    right: 0;
    transform: translate(0, -50%);
    z-index: 2;
    transition: 300ms;
}
.nav_scroll .menu_group {
    align-items: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#navi {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-basis: 60%;
    height: 100%;
    margin-right: -1rem;
}
.navi-item {
    position: relative;
    padding: 0.75rem 0;
    text-align: left;
}
.navi-item > a {
    position: relative;
    padding: 1rem 1rem 1.5rem 1rem;
    font-family: "nanumNeoBd";
    font-size: var(--font-5-size);
    color: #333;
}
.navi-item.on a {
    color: #fff;
}
.nav-sub {
    display: none;
    position: absolute;
    top: 60%;
    left: 85%;
    transform: translate(-50%, 0);
    z-index: 99999;
    width: 170px;
    margin-top: 1.5rem;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}
.nav-sub-item {
    padding: 0;
    transition: 200ms;
}
.nav-sub-item:hover {
    background: var(--sky-color);
}
.nav-sub-item a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: var(--font-6-size);
    color: #212121;
}
.nav-sub-item:hover a {
    color: #fff;
}
.navi-item:nth-child(3) .nav-sub {
    left: 63%;
}
.navi-item:hover .nav-sub {
    display: block;
}
.youth-policy a span {
    position: relative;
}
.youth-policy a:hover span {
    color: #fff;
}
/* <!-- gnb -->*/
/* sns */
.sns-list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    position: absolute;
    top: -5px;
    right: -0.5rem;
    padding: 0.75rem 0;
}
.nav_scroll .sns-list {
    position: static;
}
.sns-list_li {
    position: relative;
    margin: 0 4px;
}
.sns-list_li:last-child {
    margin-right: 0;
}
.sns-list_li a {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.nav_scroll .sns-list_li a {
    padding: 0.25rem 1rem;
    border-radius: 3rem;
    background-color: var(--sky-color);
}
.sns-list_li a span {
    font-size: var(--font-7-size);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.nav_scroll .sns-list_li a span {
    color: #fff;
}
.sns-list_li a:hover span {
    color: var(--blue-color);
}
.search_click {
    display: none;
}
.nav_scroll .search_click {
    display: block;
    cursor: pointer;
}
.search_wrap_bg {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9996;
    height: 100vh;
    cursor: pointer;
    background-color: #00000053;
}
.search_wrap {
    display: none;
    position: fixed;
    top: 82px;
    z-index: 9998;
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 3rem;
    background: #fff;
    box-shadow: 0 10px 20px #6fb2fe25;
}
.search_wrap .inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 930px;
    padding: 1rem;
}
.search_item {
    flex-basis: 860px;
    position: relative;
}
.search_input.basic_input {
    border: 2px solid var(--sky-1-color);
    border-radius: 3rem;
    color: var(--black-2-1-color);
}
.search_click2 {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translate(0, -50%);
    cursor: pointer;
}
.search_close {
    flex-basis: 38px;
    padding-left: 0.5rem;
    cursor: pointer;
}
/* <!-- sns -->*/
#mNavSubMenu {
    display: none;
}
.menu-icon,
.menu-container {
    display: none;
}
/* <!-- header -->*/
/* search */
.search .top_tit_wrap {
    margin-bottom: 0;
}
.search .top_tit {
    margin-top: 2rem;
}
.search_tit {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.search_tit .top_tit {
    font-size: var(--font-2-1-size);
}
.search_more {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: var(--font-7-size);
    color: var(--black-3-color);
}
.search_more img {
    max-width: 5px;
    margin-left: 5px;
}
.search_more:hover {
    font-family: "nanumNeoEb";
}
.search .list {
    width: 100%;
}
.search .list {
    width: 100%;
}
.search .list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid var(--black-4-color);
}
.search .list a:hover strong.ellipsis {
    text-decoration: underline;
}
.search .list:nth-child(1) a {
    border-top: 1px solid var(--black-4-color);
}
.search .list .num {
    display: flex;
    justify-content: center;
    width: 115px;
}
.search .list .num span {
    font-size: var(--font-6-size);
}
.search .list .num .notice_tag {
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--sky-color);
    border-radius: 30px;
    font-family: "nanumNeoEb";
    font-size: var(--font-7-size);
    color: var(--sky-color);
}
.search .list .m_notice_tag {
    display: none;
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--sky-color);
    border-radius: 30px;
    font-family: "nanumNeoEb";
    font-size: var(--font-7-size);
    color: var(--sky-color);
    margin-bottom: 0.5rem;
}
.search .list .subject {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    flex-basis: 60%;
    overflow: hidden;
    padding: 0 30px;
    border-right: 1px solid #e1e1e1;
    flex: 1;
    border-width: 0 1px;
}
.search .list .subject strong {
    margin-bottom: 11px;
    font-family: "nanumNeoEb";
    font-size: var(--font-5-size);
}
.search .list .subject p {
    margin-bottom: 6px;
    font-size: var(--font-6-size);
}
.search .list .subject .date {
    display: inline-block;
    width: 100%;
    margin-bottom: 0.5rem;
    font-size: 14px;
    color: #989898;
}
.search .list .subject .policy_tab_list {
    display: inline-block;
    padding: 0.25rem;
    padding: 0.25rem 0.5rem;
    border: 1px solid var(--sky-1-color);
    border-radius: 3px;
    font-size: var(--font-7-size);
    color: var(--sky-color);
}
.search .list .subject .policy_tab_cont_list {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    background: var(--sky-color);
    font-size: var(--font-7-size);
    color: #fff;
}
.search .list .writer {
    display: flex;
    justify-content: center;
    width: 189px;
}
.search .list .writer span {
    font-size: var(--font-6-size);
}
/* <!-- search --> */
/* footer */
.footer {
    background: #ffffff;
}
.footer_inner {
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0 auto;
    flex: 1 1 27%;
}
#footer .footer_inner a {
    position: relative;
    margin-right: 0.5rem;
    font-size: var(--font-6-size);
    color: var(--black-3-color);
}
.sitemap {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 15px;
    border-top: 1px solid var(--black-4-color);
    border-bottom: 1px solid var(--black-4-color);
}
.sitemapInner {
    display: flex;
    width: 95%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0.5rem 0;
}
.sitemapUl {
    display: flex;
    align-items: center;
}
.sitemapUl_item {
    display: inline-block;
}
/* footer logo */
#footer .footer-right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 0 1rem;
    flex: 1 1 0;
}
#footer .footer-right img:nth-child(1) {
    max-width: 70px;
    margin-bottom: 2px;
}
#footer .footer-right img:nth-child(2) {
    max-width: 150px;
}
#footer .footer-right img:nth-child(3) {
    max-width: 135px;
    margin-bottom: 5px;
}
#footer .footer-right img:nth-child(4) {
    max-width: 26px;
    margin-bottom: 4px;
}
#footer .m_footer-right {
    display: none;
}
/* <!-- footer logo -->*/
.companyInner {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    position: relative;
    width: 95%;
    max-width: 1360px;
    margin: 0 auto;
    margin-bottom: 15px;
    padding: 0.5rem 0;
}
.companyDiv {
    position: relative;
    z-index: 2;
}
.company .txt {
    margin-bottom: 0.25rem;
    font-size: var(--font-6-size);
    color: var(--black-3-color);
    word-break: break-word;
}
.m_sns_logo_wrap {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    right: 0;
    width: 100%;
    margin-top: 0.5rem;
}
.sns_icon_wrap {
    display: flex;
    align-items: center;
}
.sns_icon_item {
    margin-left: 0.75rem;
}
.sns_icon_item img {
    width: 40px;
    height: 40px;
}
.sns_icon_item:hover {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-name: tada;
    animation-name: tada;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}
#footer .copyright {
    padding: 1rem 0;
    font-size: var(--font-7-size);
    color: var(--black-4-color);
    text-align: center;
    background-color: var(--black-2-color);
}
#footer .copyright br {
    display: none;
}
/* <!-- footer -->*/
