@charset "UTF-8";
@import url('//fonts.googleapis.com/earlyaccess/notosanskr.css');
@font-face {
    font-family: 'GmarketSansBold';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'GmarketSansMedium';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'GmarketSansLight';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansLight.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
/* ## basic s ## */
html, input, select, textarea, button{font-family:"Noto Sans KR", sans-serif,'맑은 고딕', 'Malgun Gothic', AppleGothic, '돋움', Dotum;}
body.prevent {
    overflow-y: hidden;
}
.container{
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
}
.main_color{
    color: #06377F;
}
.b_main_color{
    color: #06377F;
    font-weight: 700;
}
/* ## basic e ## */
/* ## main_tit s ## */
.main_tit_box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.main_tit_box .tit .ko_tit{
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 5px;
}
.main_tit_box .tit .en_tit{
    font-weight: 300;
    font-size: 16px;
    position: relative;
    padding-left: 20px;
}
.main_tit_box .tit .en_tit:before{
    content: '';
    width: 18px;
    height: 2px;
    border-radius: 10px;
    transform: rotate(-55deg);
    display: block;
    background: #06377F;
    position: absolute;
    top: 10px;
    left: 0;
}
.main_tit_box.v2{
    color: #fff;
}
.main_tit_box.v2 .tit .en_tit:before{
    background: #fff;
}
@media screen and (max-width: 767px){
    .main_tit_box .tit .ko_tit{
        font-size: 25px;
    }
    .main_tit_box .tit .en_tit{
        font-size: 14px;
    }
}
/* ## main_tit e ## */
/* ## top_sub_tit s ## */
.top_sub_tit{
    position: relative;
    font-weight: 500;
    font-size: 35px;
    text-align: center;
    margin: 130px 0 100px
}
.top_sub_tit:before{
    content: '';
    width: 25px;
    height: 4px;
    background: #06377F;
    transform: rotate(-55deg);
    display: inline-block;
    margin: 0 0 0 -8px;
    position: absolute;
    top: -30px;
    left: 50%;
	border-radius: 30px;
}
@media screen and (max-width: 767px){
    .top_sub_tit{
        font-size: 20px;
        margin: 80px 0 50px;
    }
    .top_sub_tit:before{
        width: 15px;
        height: 3px;
        top: -20px;
    }
}
/* ## top_sub_tit e ## */
/* ## slide_btn s ## */
.slide_prev,
.slide_next{
    width: 40px;
    height: 40px;
    border: 1px solid #000;
    position: relative;
    cursor: pointer;
}
.slide_prev:before,
.slide_prev:after,
.slide_next:before,
.slide_next:after{
    content: '';
    position: absolute;
    display: block;
    background: #000;
}
.slide_prev:before,
.slide_next:before{
    width: 20px;
    height: 1px;
    top: 60%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.slide_prev:after,
.slide_next:after{
    width: 10px;
    height: 1px;
}
.slide_prev:after{
    top: 48%;
    left: 23%;
    transform: rotate(-40deg);
}
.slide_next:after{
    top: 48%;
    right: 23%;
    transform: rotate(40deg);
}
.slide_prev:hover,
.slide_next:hover{
    border-color: #000;
    background: #000;
}
.slide_prev:hover:before,
.slide_prev:hover:after,
.slide_next:hover:before,
.slide_next:hover:after{
    background: #fff;
}
/* ## slide_btn e ## */
/* ## skip s ## */
.layout-skip {
    width:100%;
    height:0;
    top:0;
    left:0;
}
.layout-skip a {
    display:block;
    overflow:hidden;
    position:absolute;
    top:0;
    text-indent:-9999px;
}
.layout-skip a:focus{
    width:100%;
    z-index:9999;
    padding:10px 0;
    font-size:13px;
    text-indent:0;
    text-align:center;
    color:#fff;
    background:#444;
}
/* ## skip e ## */

/* ## button s ## */
.more{
    width: 50px;
    height: 50px;
    border: 2px solid #aaa;
    border-radius: 100%;
    position: relative;
    display: inline-block;
    z-index: 2;
}
.more:before,
.more:after{
    content: '';
    display: block;
    background: #aaa;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.more:before{
    width: 2px;
    height: 20px;
}
.more:after{
    width: 20px;
    height: 2px;
}
.bt_btn_box{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 0 110px;
}
.bt_btn_box .btn{
    background: #06377F;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 30px;
}
@media screen and (max-width: 767px){
    .more{
        width: 30px;
        height: 30px;
    }
    .more:before{
        width: 2px;
        height: 14px;
    }
    .more:after{
        width: 14px;
        height: 2px;
    }
    .bt_btn_box{
        margin: 50px 0 70px;
    }
}
/* ## button e ## */

/* ## header s ## */
.header{
    width: 100%;
    height: 120px;
    background: rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.5);
    position: fixed;
    z-index: 3;
}
.header .header-logo a{
    background: url("/images/layout/header_logo.png");
    width: 227px;
    height: 58px;
    display: block;
}
.header-wrap{
    position: relative;
}
.header-wrap,
.header-wrap .header-container{
    height: 100%;
}
.header-wrap .header-container{
    display: flex;
    align-items: center;
    padding: 0 15px;
}
.mob-gnb-btn{
    display: none;
}
.header-container,
.footer-container{
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
.gnb{
    flex: 1;
}
.gnb-list{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1;
}
.gnb-list > li{
    flex: 1;
    max-width: 180px;
    position: relative;
}
.gnb-list li a{
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    display: block;
    text-align: center;
}
.gnb-list li:first-child .gnb-dep2-wrap{
    box-shadow: 1px 0px 0px #395D90, inset 1px 0px 0px #395D90;
}
.gnb-dep2-wrap{
    display: none;
    width: 100%;
    min-height: 0px;
    padding: 25px 10px;
    background: #06377F;
    /*border-right: 1px solid #fff;*/
    box-shadow: 1px 0px 0px #395D90, inset 1px 0px 0px #395D90;
    position: absolute;
    top: 73px;
    z-index: 1;
	overflow: hidden;
}
.gnb-dep2-list li{
	position: relative;
    line-height: 36px;
}
.gnb-dep2-list li a{
    font-size: 16px;
    font-weight: 400;
}
.gnb-dimed{
    display: none;
    width: 100%;
    min-height: 0;
    position: absolute;
    background: #06377F;
	overflow: hidden;
}
.gnb-dimed .header-container{
    position: relative;
}
.gnb-dimed .bg{
    background: url("/images/layout/gnb_bg.png") no-repeat;
    width: 228px;
    height: 0px;
    position: absolute;
    top: 31px;
    left: 20px;
}
/*.gnb-dimed.active .header-container:after{*/
/*    display: block;*/
/*}*/
.header.on{
    background: rgba(0, 0, 0, 0.7);
}
.header.active{
    background: #fff;
    transition: 0.2s ease-in-out;
}
.header.active .header-logo a{
    background: url("/images/layout/header_logo_h.png");
}
.header.active .gnb-dimed{
    display: block;
}
.header.active .gnb-list > li .gnb-dep2-wrap{
    display: block;  
}
.header.active .gnb-list > li > a{
    color: #333;
}
.header.active .gnb-list > li > a.active{
    color: #2E9CF0;
}
.gnb-list > li.active .gnb-dep2-wrap{
    display: block;

}
.gnb-list > li.active .gnb-dep2-wrap.active{
    background: #1D2F51;
}
.header.active .gnb-list > li .gnb-dep2-wrap a:hover{
    color: #2E9CF0;
}
@media screen and (max-width: 1440px){
    .menu-trigger,
    .menu-trigger span {
        display: inline-block;
        transition: all .4s;
        box-sizing: border-box;
    }

    .menu-trigger {
        width: 30px;
        height: 24px;
    }

    .menu-trigger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #fff;
        border-radius: 4px;
    }
    .menu-trigger.active span{
        background-color: #06377F;
    }
    .menu-trigger span:nth-of-type(1) {
        top: 0;
    }

    .menu-trigger span:nth-of-type(2) {
        top: 10px;
    }

    .menu-trigger span:nth-of-type(3) {
        bottom: 0;
    }
    .menu-trigger.active span:nth-of-type(1) {
        -webkit-transform : translateY(10px) rotate(-45deg);
        transform : translateY(10px) rotate(-45deg);
    }
    .menu-trigger.active span:nth-of-type(2) {
        left : 50%;
        opacity : 0;
        -webkit-animation : active-menu-bar05 .8s forwards;
        animation : active-menu-bar05 .8s forwards;
    }
    @-webkit-keyframes active-menu-bar05 {
        100% {
            height: 0;
        }
    }
    @keyframes active-menu-bar05 {
        100% {
            height: 0;
        }
    }
    .menu-trigger.active span:nth-of-type(3) {
        -webkit-transform : translateY(-10px) rotate(45deg);
        transform : translateY(-10px) rotate(45deg);
    }

    .header-wrap .header-container{
        position: relative;
    }
    .mob-gnb-btn{
        display: block;
        position: absolute;
        top: 50px;
        right: 15px;
    }
    .header.active {
        border-bottom: 1px solid #06377F;
    }
    .header-wrap .gnb-dimed .header-container{
        display: none;
    }
    .gnb{
        display: none;
    }
    .gnb {
        display: none;
        position: fixed;
        left:0;
        top:120px;
        width: 100%;
        height: 100%;
        z-index: 5;
        margin: 0;
        overflow: auto;
    }
    .gnb.active {
        display: block;
    }
    .gnb-wrap{
        background:#fff;
    }
    .gnb-list {
        display:block;
        padding: 20px 15px;
    }

    .gnb-list > li {
        flex:none;
        vertical-align: top;
        float: none;
        width: 100%;
        max-width: 100%;
        height: auto;
        text-align: left;
        position: relative;
    }

    .gnb-list > li > a {
        padding:15px 51px 15px 12px;
        border-bottom:1px solid #ccc;
        font-size:16px;
        font-weight: 500;
        text-align: left;
        color: #333;
        position: relative;
    }
    .gnb-list > li:last-child > a {
        border-bottom: none;
    }
    .header.active .gnb-list > li.active > a{
        border-bottom:1px solid #06377F;
        color: #06377F;
    }
    .gnb-list > li.active .gnb-dep2-wrap{
        display: block;
    }
    .mobile_arrow{
        position: absolute;
        top: 28px;
        right: 20px;
        transition: .3s;
    }
    .mobile_arrow:before,
    .mobile_arrow:after{
        position: absolute;
        content: '';
        width: 15px;
        height: 2px;
        background: #666;
        display: inline-block;
    }
    .mobile_arrow:before{
        transform: rotate(45deg);
        left: -10px;
    }
    .mobile_arrow:after{
        transform: rotate(-45deg);
    }
    .gnb-list > li.active > a > .mobile_arrow{
        transform: rotate(180deg);
        right: 16px;
    }

    .header.active .gnb-list > li .gnb-dep2-wrap {
        position: static;
        top:auto;
        height: auto;
        overflow:initial;
        display: none;
        background:none;
        max-width: 100%;
        min-height: 100%;
        border-right: none;
        border-left: none;
        padding: 0;
        box-shadow: none;
    }

    .gnb-dep2-wrap.active {
        display: block;
        background: transparent;
    }

    .gnb-dep2-wrap:before,
    .gnb-list > li:last-child .gnb-dep2-wrap:after {
        display: none;
    }

    .gnb-dep2-list {
        padding: 0;
        background: #E8EAEE;
    }
    .gnb_tit.main_color{
        display: none;
    }
    .gnb-dep2-list > li {
        padding:0;
        float:none;
        box-sizing: border-box;
        position: relative;
    }
    .gnb-dep2-list > li:before{
        position: absolute;
    }
    .gnb-dep2-list > li:first-child {
        margin-top:0;
    }

    .gnb-dep2-list > li > a {
        color:#000;
        text-align: left;
    }

    .gnb-dep2-list a:before{
        display:block;
    }

    .gnb-dep2-list > li > a {
        font-size: 16px;
        display: block;
        padding: 8px 35px;
        position: relative;
        border-bottom: 1px solid #fff;
    }
    .gnb-dep2-list > li > a:hover{
        text-decoration: none;
    }
    .gnb-dep2-list > li > a:before{
        content: '';
        width: 4px;
        height: 4px;
        background: #333;
        position: absolute;
        border-radius: 100%;
        top: 24px;
        left: 24px;
    }
    .gnb-dimed {
        display: none;
    }
    .gnb-dimed.active {
        display: block;
        content:"";
        width:100%;
        height:100vh;
        background:#333;
        position: absolute;
        left:0;
        top: 120px;
        opacity: 0.3;
        z-index: -1;
    }
    .mobile_arrow{
        position: absolute;
        top: 28px;
        right: 20px;
        transition: .3s;
    }
    .mobile_arrow:before,
    .mobile_arrow:after{
        position: absolute;
        content: '';
        width: 15px;
        height: 2px;
        background: #C4C4C4;
        display: inline-block;
    }
    .mobile_arrow:before{
        transform: rotate(45deg);
        left: -10px;
    }
    .mobile_arrow:after{
        transform: rotate(-45deg);
    }
    .gnb-list > li.active > a > .mobile_arrow{
        transform: rotate(180deg);
        right: 16px;
    }
    .gnb-list > li.active > a > .mobile_arrow:before,
    .gnb-list > li.active > a > .mobile_arrow:after{
        background: #06377F;
    }
}
@media screen and (max-width: 767px){
    .header{
        height: 80px;
    }
    .header .header-logo a{
        width: 160px;
        height: 40px;
        background-size: 160px 40px;
    }
    .header.active .header-logo a{
        background-size: 160px 40px;
    }
    .mob-gnb-btn{
        top: 28px;
        right: 15px;
    }
    .gnb{
        top: 80px;
    }
}
/* ## header e ## */

/* ## sub lnb s ## */
.sub_nav{
    width: 100%;
    /*margin-bottom: 100px;*/
}
.sub_bg{
    /*max-width: 1920px;*/
    width: 100%;
    height: 380px;
    position: relative;
    margin: 0 auto;
}
.sub_bg.v1{
    background: url("/images/layout/sub_top_bg.png") center no-repeat;
    background-size: cover;
}
.sub_bg.v2{
    background: url("/images/layout/sub_top_bg2.png") center no-repeat;
    background-size: cover;
}
.sub_bg.v3{
    background: url("/images/layout/sub_top_bg3.png") center no-repeat;
    background-size: cover;
}
.sub_bg.v4{
    background: url("/images/layout/sub_top_bg4.png") center no-repeat;
    background-size: cover;
}
.sub_bg.v5{
    background: url("/images/layout/sub_top_bg5.png") center no-repeat;
    background-size: cover;
}
.sub_bg.v6{
    background: url("/images/layout/sub_top_bg6.png") center no-repeat;
    background-size: cover;
}
.sub_nav .sub_tit{
    font-size: 45px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    position: absolute;
    left: 50%;
    bottom: 70px;
    transform: translate(-50%, 0%);
}
.lnb_wrap{
    border-bottom: 1px solid #ccc;
}
.lnb_wrap .sub_container{
    max-width: 1440px;
    width: 100%;
    max-height: 55px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    padding: 0;
}
.lnb_wrap.active{
    width: 100%;
    background: #fff;
    position: fixed;
    top: 120px;
    z-index: 2;
}
.go_main_icon{
    min-width: 55px;
    min-height: 55px;
    display: inline-block;
    background: #06377F url("/images/layout/home_icon.png") center center no-repeat;
}
.lnb_left{
    display: flex;
    flex: 1;
    background: #fff;
}
.lnb_list{
    flex: 1;
    display: flex;
    background: #fff;
}
.lnb_dep2_wrap{
    max-width: 250px;
    width: 100%;
    position: relative;
}
.lnb_dep2_btn{
    font-size: 16px;
    display: block;
    padding: 17px;
    position: relative;
    border-right: 1px solid #ccc;
}
.lnb_dep2_btn .sub_more {
    display: block;
    width:12px;
    height:12px;
    position: absolute;
    right:16px;
    top:29px;
}

.lnb_dep2_btn .sub_more:before,
.lnb_dep2_btn .sub_more:after {
    display: block;
    content:"";
    width:2px;
    height:100%;
    background:#333;
    position: absolute;
    left:50%;
    top:50%;
    margin:-13.5px 0 0 -1px;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
	border-radius: 30px;
}

.lnb_dep2_btn .sub_more:before {
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
}

.lnb_dep2_btn:hover .sub_more:before {
    transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
}

.lnb_dep2_btn:hover .sub_more:after {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
}
.lnb_dep2_list{
    width: 100%;
    font-size: 16px;
    background: #fff;
    border-top: none;
    position: absolute;
    top: 56px;
    z-index: 2;
}
.lnb_dep2_wrap.line_add .lnb_dep2_list{
    width: 251px;
    box-sizing: content-box;
    left: -1px;
}
.lnb_dep2_list a{
    padding: 17px;
    display: block;
    position: relative;
    border: 1px solid #ccc;
    border-top: none;
    background: #06377F;
    color: #fff;
}
.lnb_dep2_list a .sub_more {
    display: block;
    width:12px;
    height:12px;
    position: absolute;
    right:16px;
    top:29px;
}
.lnb_dep2_list a .sub_more:before{
    display: block;
    content:"";
    width:2px;
    height:100%;
    background:#ccc;
    position: absolute;
    left:50%;
    top:50%;
    margin:-13.5px 0 0 -1px;
}
.lnb_dep2_list a .sub_more:before {
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
}
.lnb_dep2_list a:hover{
    background: #fff;
    color: #333;
    border: none;
    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc;
}
.lnb_dep2_list div:last-child a:hover{
    border-bottom: 1px solid #ccc;
}
.lnb_dep2_list:hover a .sub_more:before{
    color: #fff;
}
.share_btn_box{
    position: relative;
}
.share_btn{
    min-width: 55px;
    min-height: 55px;
    display: inline-block;
    background: #06377F url("/images/layout/share_icon.png") center center no-repeat;
    border-left: 1px solid #ccc;
}
.share_list{
    position: absolute;
    width: 250px;
    top: 56px;
    right: 0;
    z-index: 2;
}
.share_list li{

}
.share_list li:last-child{
    border-bottom: none;
}
.share_list li a{
    border: 1px solid #ccc;
    border-top: none;
    padding: 15px 15px 15px 60px;
    display: block;
    background: #fff;
    position: relative;
    font-size: 16px;
}
.share_list li a:hover{
    background: #E8EAEE;
    border: none;
    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc;
}
.share_list li:last-child a:hover {
    border-bottom: 1px solid #ccc;
}
.share_list li .icon:before{
    content: '';
    width: 30px;
    height: 30px;
    display: inline-block;
    position: absolute;
    top: 13px;
    left: 15px;
}
.share_list li .icon.facebook:before{
    background: url("/images/layout/link_f.png");
}
.share_list li .icon.twitter:before{
    background: url("/images/layout/link_t.png");
}
.share_list li .icon.instargram:before{
    background: url("/images/layout/link_i.png");
}
.share_list li .icon.blog:before{
    background: url("/images/layout/link_b.png");
}
.share_list li .icon.kakao:before{
    background: url("/images/layout/link_k.png");
}
.share_list li .icon.link:before{
    background: url("/images/layout/link_URL.png");
}
@media all and (max-width: 767px){
    .sub_nav{
        margin-bottom: 0;
    }
    .sub_bg{
        background: #fff;
        height: 215px;
    }
    .sub_nav .sub_tit {
        font-size: 25px;
    }
    .lnb_wrap{
        top: 0;
        border-top: 1px solid #ccc;
    }
    .lnb_wrap.active{
        top: 79px;
        z-index: 2;
    }
    .go_main_icon{
        display: none;
    }
    .lnb_dep2_wrap{
        max-width: 152px;
        height: 100%;
    }
    .lnb_dep2_wrap.line_add .lnb_dep2_list{
        width: 153px;
    }
    .lnb_dep2_btn{
        font-size: 14px;
        line-height: 20px;
        padding: 17px 12px;
    }
    .lnb_dep2_btn .sub_more,
    .lnb_dep2_list a .sub_more{
        top: 28px;
        right: 10px;
    }
    .lnb_dep2_list{
        font-size: 14px;
        line-height: 20px;
    }
    .lnb_dep2_list a{
        padding: 15px 12px;
    }
    .share_list{
        position: absolute;
        width: 150px;
        top: 54px;
        right: 0;
        z-index: 1;
    }
    .share_list li a{
        font-size: 14px;
        padding: 15px 10px 15px 54px;
    }
    .share_list li .icon:before{
        top: 9px;
    }
}
@media all and (max-width: 360px){
    .lnb_dep2_wrap.line_add .lnb_dep2_list{
        width: 101%;
    }
    .share_btn{
        border-left: none;
    }
    .lnb_dep2_btn{
        padding: 17px 0px 17px 4px;
    }
    .lnb_dep2_list a{
        padding: 15px 0 15px 4px;
    }
    .lnb_dep2_btn .sub_more,
    .lnb_dep2_list a .sub_more{
        right: 4px;
    }
}
/* ## sub lnb e ## */

/* ## lnb menu s ## */
.js-accordion-cont {
    display: none;
}
.js-accordion-cont.active {
    display: block;
}
.js-dropdown {
    position: relative;
}
.js-dropdown-cont {
    display: none;
}
.js-dropdown-cont.active {
    display: block;
}
/* ## lnb menu e ## */

/* ## sub s ## */
.sub_container{
    max-width: 1440px;
    margin: 0 auto;
    /*padding: 0 15px;*/
}
@media all and (max-width: 1439px){
    .sub_container{
        padding: 0 15px;
    }
}
/* ## sub e ## */

/* ## fo0ter s ## */
.footer{
    height: 200px;
    background: #333333;
    color: #fff;
}
.footer-container,
.footer-wrap{
    height: 100%;
}
.footer-wrap{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.footer-wrap > div{
    flex: 1;
}
.footer-wrap .footer_top,
.footer-copyright{
    display: flex;
}
.footer-wrap .footer_top{
    width: 100%;
    border-bottom: 1px solid #666;
    margin-bottom: 15px;
    padding-bottom: 15px;
    justify-content: center;
    align-items: end;
    font-size: 16px;
}
.footer-wrap .footer_top .item{
    font-weight: 300;
    font-style: normal;
    display: flex;
    align-items: flex-end;
}
.footer-wrap .footer_top .item .tit{
    font-weight: 700;
    margin-right: 5px;
}
.footer-wrap .footer_top .item .desc{
    font-weight: 300;
	color: #fff;
}
.footer-wrap .footer_top .item:after{
    content: '';
    width: 1px;
    height: 18px;
    background: #fff;
    display: inline-block;
    margin: 0 10px;
}
.footer-wrap .footer_top .item:last-child:after{
    display: none;
}
.footer-copyright{
    color: #999;
}
@media screen and (max-width: 1440px){
    .footer-wrap .footer_top{
        flex-wrap: wrap;
        /*padding-bottom: 0px;*/
    }
    .footer-wrap .footer_top address.item{
        width: 100%;
        justify-content: center;
        align-items: flex-end;
        margin-top: 40px;
    }
    .footer-wrap .footer_top address.item:after{
        display: none;
    }
    .footer-wrap .footer_top .item{
        align-items: flex-start;
    }
    .footer-copyright{
        width: 100%;
    }
}
@media screen and (max-width: 767px){
    .footer-wrap .footer_top{
        font-size: 14px;
    }
}
@media screen and (max-width: 359px){
    .footer-wrap .footer_top{
        justify-content: flex-start;
    }
    .footer-wrap .footer_top .item{
        width: 100%;
        margin-bottom: 5px;
    }
    .footer-wrap .footer_top .item:last-child{
        margin-bottom: 0;
    }
    .footer-wrap .footer_top .item:after{
        display: none;
    }
}
/* ## fo0ter e ## */

/* ## tab menu s ## */
.tab {
    margin-bottom:40px;
}
.tab.basic_tab{
    margin-bottom:100px;
}
.tab-list {
    display: table;
    width:100%;
    table-layout: fixed;
    margin: 0 1px;
    border:1px solid #06377F;
    border-radius: 10px;
    overflow: hidden;
}
.tab-list li {
    display: table-cell;
    vertical-align: middle;
    border-right: 1px solid #06377F;
}
.tab-list li:last-child {
    border-right: none;
}
.tab-list li a {
    display: block;
    text-align: center;
    line-height: 28px;
    margin-left:-1px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 0;
    color: #06377F;
}
.tab-list li a:hover {
    color: #333;
}
.tab-list li a.active {
    background: #06377F;
    color: #fff;
}
.js-tab-cont {
    display: none;
}
.js-tab-cont.active {
    display: block;
}

.js-tab-more {
    display: none;
}
.js-tab-more.active {
    display: block;
}

@media all and (max-width: 1023px) {
    .tab {
        margin-bottom:30px;
    }
}

@media all and (max-width: 767px) {
    .tab {
        margin-bottom:25px;
    }
    .tab.basic_tab{
        margin-bottom: 30px;
    }
    .tab.basic_tab .tab-list,
    .tab.basic_tab .tab-list li{
        display: block;
    }
    .tab.basic_tab .tab-list li{
        border-right: none;
        border-bottom: 1px solid #06377F;
    }
    .tab.basic_tab .tab-list li:last-child{
        border-bottom: 0;
    }
    .tab.basic_tab .tab-list li a,
    .main_news_tab .tab-list li a{
        font-size: 16px;
        padding: 8px 0
    }
}
/* ## tab menu e ## */

/* :: board s :: */
.opt-clearfix {
    display: block;
    min-height: 1px;
}
.opt-clearfix:after {
    clear: both;
    display: block;
    content: "";
    height: 0;
    visibility: hidden;
}
.search-form-wrap{
    padding: 12px 0;
}
.search-form-box {
    display: table;
    width:600px;
    table-layout: fixed;
    position: relative;
    padding-right:40px;
    float: right;
}

.search-filter-wrap,
.search-form-select,
.search-form-inp {
    display: table-cell;
    vertical-align: top;
}
.search-form-select select::-ms-expand {
    display: none;
}
.search-form-select select{
    -o-appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url('/images/layout/chevron-down.png') calc(100% - 10px) center no-repeat;
}
.search-filter-wrap {
    width: 100px;
    position: relative;
}

.search-filter-btn {
    height:45px;
    line-height:46px;
    width:100%;
    display: block;
    text-align: left;
    padding:0 13px;
    font-size:14px;
    color:#000;
    position: relative;
}

.search-filter-btn:before {
    display: block;
    content:"";
    position: absolute;
    right:10px;
    top:50%;
    margin-top:-3px;
    border-left:3px solid transparent;
    border-right:3px solid transparent;
    border-top:6px solid #000;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.search-filter-box {
    display: none;
    position: absolute;
    left:0;
    top:46px;
    width: 600px;
    background:#f9f9f9;
    box-shadow: 3px 4px 5px rgba(0,0,0,0.1);
    -webkit-box-shadow: 3px 4px 5px rgba(0,0,0,0.1);
    padding:15px 30px;
    border:1px solid #eee;
    z-index: 10;
}

.search-filter-lnk {
    display: inline-block;
    float: left;
    width:50%;
    padding:5px 10px 5px 25px;
    position: relative;
    color:#696969;
}

.search-filter-lnk:before {
    display:block;
    content:"";
    width:10px;
    height:10px;
    border:1px solid #a2a2a2;
    position: absolute;
    left:0;
    top:9px;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
}

.search-filter-lnk.active {
    color:#fb951a;
    text-decoration: underline;
}

.search-filter-lnk.active:before {
    border-color:#fb951a;
    background:#fb951a;
}

.search-form-select {
    width:90px;
}

.search-form-inp {
    width: 100%;
}

.search-form-select select,
.search-form-inp input[type="text"] {
    border:none;
    width: 100%;
    font-size: 16px;
}

.search-form-btn {
    position: absolute;
    right:0;
    top:3px;
}
.search-form-btn img{
    max-width: 40px;
    max-height: 40px;
}
.board-list {
    border-top:1px solid #06377F;
	border-bottom:1px solid #ccc;
}

.board-list-box {
    border-top:1px solid #ccc;
}
.board-list-box.no_posts .board-list-item{
    text-align: center;
    font-size: 18px;
    padding: 30px;
}
.board-list-box.bulletin-box{
    background: #F4F8FF;
}

.board-list-box:first-child {
    border-top:none;
}

.board-list-lnk {
    display: block;
    position: relative;
    padding:20px 20px 20px 80px;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
}

.board-list-lnk:hover {
    background:#f7f7f7;
}

.board-list-item.num {
    position: absolute;
    left:0;
    top:50%;
    margin-top:-8px;
    text-align: center;
    width: 80px;
    font-size:13px;
}

.board-list-item.div {
    display: inline-block;
    vertical-align: middle;
    padding:0 8px;
    height: 26px;
    line-height: 26px;
    background:#303883;
    color:#fff;
    font-size: 13px;
    margin-bottom:10px;
}

.board-list-item.tit {
    margin-bottom:10px;
}

.board-list-item.writer,
.board-list-item.date,
.board-list-item.file,
.board-list-item.visit {
    display: inline-block;
    vertical-align: middle;
    margin-right:30px;
}
.board-list-item.shortcut{
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: rgba(195, 43, 6, 0.1);
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translate(0,-50%);
}
.board-list-item.shortcut:before,
.board-list-item.shortcut:after{
    content: '';
    background: #AA272D;
    display: inline-block;
    border-radius: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.board-list-item.shortcut:before{
    width: 2px;
    height: 12px;
}
.board-list-item.shortcut:after{
    width: 12px;
    height: 2px;
}
.board-list-item.tit .cont {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: break-all;
    font-size:16px;
    color:#000;
}
.board-list-item{
    font-size: 14px;
}
.board-list-item .name {
    color:#a2a2a2;
    display: inline-block;
    vertical-align: top;
    padding-right:5px;
}

.board-list-item .cont {
    display: inline-block;
    vertical-align: top;
}

.ico-notice {
    display: inline-block;
    vertical-align: middle;
    width:20px;
    height:14px;
    background:url("/images/layout/ico-notice.png") no-repeat left top;
    background-size: 20px 14px;
}

.ico-file {
    display: inline-block;
    vertical-align: middle;
    width:12px;
    height:17px;
    background:url("/images/layout/ico-file.png") no-repeat left top;
    background-size: 12px 17px;
    margin-top:-1px;
}

.ico-download {
    display: inline-block;
    vertical-align: middle;
    width:12px;
    height:14px;
    background:url("/images/layout/ico-download.png") no-repeat left top;
    background-size: 12px 14px;
    margin-right: 10px;
}

.ico-download2 {
    display: inline-block;
    vertical-align: middle;
    width:21px;
    height:21px;
    position: relative;
    margin:-4px 0 0 6px;
}

.ico-download2:before,
.ico-download2:after {
    display: block;
    content:"";
    position: absolute;
}

.ico-download2:before {
    width:1px;
    height:18px;
    background:#fff;
    left:50%;
    top:0;
}

.ico-download2:after {
    width:10px;
    height:10px;
    border-top:1px solid #fff;
    border-right:1px solid #fff;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    left:50%;
    bottom:3px;
    margin-left:-5px;
}

.paging-box {
    margin-top: 40px;
    text-align: center;
    margin-bottom: 100px;
}

.page-item {
    display: inline-block;
    vertical-align: middle;
    width: 35px;
    line-height: 35px;
    height: 35px;
    color: #5a5a5a;
    position: relative;
    margin: 0 2px;
}

.page-item.active {
    background: #000;
}

.page-item:hover {
    text-decoration: underline;
}

.page-item .fas {
    display:block;
    width:100%;
    height:100%;
    border: 1px solid #dedede;
}

.page-item .fas:before,
.page-item .fa-angle-double-left:after,
.page-item .fa-angle-double-right:after {
    display: block;
    content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    left: 14px;
    top: 13px;
    border-top: 2px solid #a9a9a9;
    border-right: 2px solid #a9a9a9;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.page-item .fa-angle-double-left:before {
    left: 12px;
}

.page-item .fa-angle-double-left:after {
    left: 18px;
}

.page-item .fa-angle-right:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 12px;
}

.page-item .fa-angle-double-right:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 16px;
}

.page-item .fa-angle-double-right:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 10px;
}

.page-link {
    display:block;
    width:100%;
    height:100%;
}

.page-item.active .page-link {
    color: #fff;
    font-weight: 600;
}

.board-view {
    border-top: 1px solid #222;
}

.board-view-header {
    padding: 25px;
    border-bottom: 1px solid #dedede;
}

.board-view-header .tit {
    font-size: 20px;
    padding-bottom: 15px;
    color: #000;
}

.board-view-header .desc {
    display: inline-block;
    vertical-align: top;
    padding:2px 30px 2px 0;
}

.board-view-header .desc strong {
    color:#a2a2a2;
}

.board-view-header .desc span {
    padding-left:8px
}

.board-view-header .desc:last-child {
    padding-right:0;
}

.board-view-header .ico-notice {
    margin:-4px 8px 0 0;
}

.board-view-file .file-list {
    border-bottom: 1px solid #dedede;
    background: #f9f9f9;
    padding: 10px;
}

.board-view-file .file-list .file {
    margin: 10px 15px;
    display: inline-block;
    vertical-align: middle;
    font-size: 13px;
}

.board-view-con {
    padding: 30px 25px;
    border-bottom: 1px solid #dedede;
    line-height: 1.5;
}

.board-view-con iframe {
    display: block;
    max-width: 650px;
    width: 100%;
    height: 400px;
}

.board-view-url {
    border-bottom: 1px solid #dedede;
    background: #f9f9f9;
    padding:20px 10px;
    min-height: 59px;
}

.board-view-url .url-box {
    padding-left:100px;
    position: relative;
    text-align: center;
}

.board-view-url .url-box .tit {
    position: absolute;
    left:0;
    top:0;
    width:100px;
    font-size:15px;
    color:#000;
}

.board-view-url .url-box .url {
    text-align: left;
}

.board-view-url .url-box .url a {
    color:#717171;
    word-break: break-all;
}

.board-view-url .url-box .url a:hover {
    text-decoration: underline;
}

.board-write {
    border-top:1px solid #000;
}
.board-write table {
    width:100%;
    table-layout: fixed;
}
.board-write tr {
    border-bottom:1px solid #dedede;
}
.board-write th,
.board-write td {
    padding:10px 15px;
    height: 52px;
}
.board-write .tit {
    background: #f3f3f3;
    color:#000;
}
.board-write input[type="text"],
.board-write input[type="number"],
.board-write input[type="email"],
.board-write input[type="date"],
.board-write input[type="password"],
.board-write input[type="tel"] {
    height: 35px;
    line-height: 35px;
    width: 100%;
}

.board-write input[type="file"] {
    width: 100%;
}

.board-write .etc {
    padding-left:20px;
    font-weight:500;
}
.board-file-lnk {
    display: inline-block;
    vertical-align: middle;
    margin:0 5px 0 0;
}

.info-txt {
    margin-bottom:3px;
    padding:3px 0 3px 25px;
    /*background:url("/images/sub/ico-info.png") no-repeat left 4px;*/
    color:#000;
}

.required {
    color:#ff0000;
}

.write-file-box {
    margin-bottom:8px;
}

.reply-num {
    color:#4c7eda;
    font-size: 14px;
    margin:1px 0 1px 4px;
    display: inline-block;
}

@media all and (max-width: 1023px) {
    .search-filter-wrap {
        width:100px;
        position: static;
    }

    .search-form-box {
        float: none;
        width: 100%;
    }

    .search-form-select {
        width:100px;
    }

    .search-filter-box {
        width:100%;
    }

    .board-view-header .tit {
        font-size: 18px;
    }
}

@media all and (max-width: 767px) {
    .search-form-box {
        padding:0;
    }

    .search-filter-wrap,
    .search-form-select,
    .search-form-inp {
        display: block;
        width:100%;
        border-bottom:1px solid #eee;
    }
    .search-form-select{
        border: 1px solid #eee;
    }
    .search-form-inp {
        border-bottom:none;
    }

    .search-filter-btn:before {
        right:6px;
    }

    .search-form-inp {
        padding-right:40px;
    }

    .search-form-btn {
        top:auto;
        bottom: 10px;
    }

    .search-filter-box {
        top:45px;
    }

    .search-filter-lnk {
        float: none;
        width: 100%;
    }

	.board-list-box.v2 .board-list-lnk {
        padding:15px 50px;
    } 
	
	
    .board-list-lnk {
        padding:15px 15px 15px 50px;
    }

    .board-list-item.num {
        width:50px;
    }

    .board-list-item.div {
        font-size:12px;
        height:24px;
        line-height: 24px;
    }

    .board-list-item.writer,
    .board-list-item.date,
    .board-list-item.file,
    .board-list-item.visit {
        font-size:13px;
        margin:2px 20px 2px 0;
    }

    .paging {
        margin-top: 30px;
    }

    .page-item {
        width:30px;
        height:30px;
        line-height: 30px;
    }

    .page-item .fas:before,
    .page-item .fa-angle-double-left:after,
    .page-item .fa-angle-double-right:after {
        top:11px;
        width:5px;
        height:5px;
        left:13px;
    }

    .page-item .fa-angle-double-left:before {
        left:11px;
    }

    .page-item .fa-angle-double-left:after {
        left:16px;
    }

    .page-item .fa-angle-right:before {
        left:11px;
    }

    .page-item .fa-angle-double-right:before {
        left:13px;
    }

    .page-item .fa-angle-double-right:after {
        left:8px;
    }

    .board-view-header {
        padding: 20px;
    }

    .board-view-header .desc {
        padding-right:20px;
    }

    .board-view-file .file-list {
        padding: 12px 20px;
    }

    .board-view-file .file-list .file {
        display: block;
        margin: 8px 0;
    }

    .board-view-con {
        padding: 20px;
    }

    .board-view-url .url-box {
        padding-left:80px;
    }

    .board-view-url .url-box .tit {
        width:80px;
        font-size:14px;
    }

    .board-write {
        border-bottom:1px solid #dedede;
    }
    .board-write table {
        table-layout: auto;
        display: block;
    }
    .board-write table:after {
        display: block;
        content: "";
        clear: both;
    }
    .board-write thead,
    .board-write tbody,
    .board-write tr,
    .board-write th,
    .board-write td {
        width:100%;
        display: block;
        height: auto;
        float: left;
    }
    .board-write tr{
        border-bottom:none;
    }
    .board-write th,
    .board-write td {
        padding: 12px 20px;
    }

    .board-write .tit {
        text-align: left;
    }
    .search-form-select select, .search-form-inp input,
    .board-list-item.tit .cont{
        font-size:16px;
    }
    .search-form-btn img{
        width: 30px;
    }
    .board-list-item.shortcut{
        display: none;
    }
}
/* :: board e :: */
/* :: view_article s :: */
.view_article_box{
    border-top: 2px solid #06377F;
}
.view_article_box .tit_box{
    padding: 20px;
    background: #F7F7F7;
    /*box-shadow: 0px 1px 0px #CCCCCC, inset 0px 2px 0px #06377F;*/
	border-bottom:1px solid #cccccc;
}
.view_article_box .tit_box .tit{
    font-weight: 500;
    font-size: 25px;
    text-align: center;
    margin-bottom: 20px;
}
.view_article_box .tit_box .desc{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    margin-bottom: 10px;
}
.view_article_box .tit_box .desc .date,
.view_article_box .tit_box .desc .visit{
    color: #999999;
}
.view_article_box .tit_box .desc .date{
    margin-right: 50px;
}
.view_article_box .tit_box .desc .date .date_num,
.view_article_box .tit_box .desc .visit .visit_num{
    margin-left: 10px;
    color: #666;
}
.view_article_box .cont{
    padding: 50px 30px;
	border-bottom: 1px solid #ccc;
}
.view_article_box .cont .cont_item{
    /*text-align: center;*/
    font-size: 16px;
    margin-bottom: 50px;
}
.view_article_box .cont .cont_item:last-child{
    margin-bottom: 0;
}
.view_article_box .cont .cont_item img{
    display: block;
    margin: 0 auto;
}
.view_article_box .cont .cont_item .youtube_video{
    width: 100%;
    max-width: 630px;
    height: 420px;
}
/*.view_article_box .cont .cont_item table{
	margin: 0 auto;
}*/
.view_article_box .download_list{
    background: #F7F7F7;
    padding: 25px 20px 15px;
    box-shadow: 0px 1px 0px #CCCCCC;
    display: flex;
	flex-wrap: wrap;
    align-items: center;
}
.view_article_box .download_list li{
    margin-right: 50px;
	margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}
.view_article_box .download_list li:before{
    content: '';
    background: url("/images/layout/ico-download.png") no-repeat;
    width: 21px;
    height: 17px;
    display: inline-block;
    position: absolute;
    left: 0;
}
.view_article_box .download_list li:last-child{
    margin-right: 0;
}
.view_article_box .download_list li .download_item{
    color: #666;
}
.view_article_box .download_list li .download_item:hover{
    text-decoration: underline;
}
@media all and (max-width: 767px) {
	.view_article_box .cont{
		padding: 50px 20px;
	}
    .view_article_box .tit_box{
        padding: 10px;
    }
    .view_article_box .tit_box .tit{
        font-size: 20px;
        margin-bottom: 10px;
    }
    .view_article_box .tit_box .desc{
        font-size: 12px;
        margin-bottom: 0;
    }
    .view_article_box .tit_box .desc .date{
        margin-right: 30px;
    }
    .view_article_box .cont .cont_txt_box{
        margin-bottom: 30px;
    }
    .view_article_box .download_list{
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 10px;
    }
    .view_article_box .download_list li{
        margin-right: 0;
        margin-bottom: 10px;
    }
    .view_article_box .download_list li:last-child{
        margin-bottom: 0;
    }
}
/* :: view_article e :: */
/* :: gallery_box s :: */
.gallery_box{
    border-top: 2px solid #06377F;
    padding-top: 50px;
    display: flex;
    flex-wrap: wrap;
}
.gallery_box .gallery_list{
    width: 25%;
    margin-bottom: 50px;
}
.gallery_box .gallery_list .gallery_item{
    max-width: 330px;
    display: block;
    margin: 0 auto;
    position: relative;
}
.gallery_item:before,
.gallery_item:after {
    display: block;
    content:"";
    position: absolute;
    border: 5px solid transparent;
    width: 0;
    height: 0;
}

.gallery_item:before {
    top: -5px;
    left:-5px;
}

.gallery_item:after {
    bottom:-5px;
    right:-5px;
}

.gallery_item:hover:before,
.gallery_item:hover:after {
    width:100%;
    height:100%;
}

.gallery_item:hover:before {
    border-top-color: #06377F;
    border-right-color:#06377F;
    transition: width 0.1s ease-out,
    height 0.1s ease-out 0.1s;
    -webkit-transition: width 0.1s ease-out,
    height 0.1s ease-out 0.1s;
}

.gallery_item:hover:after {
    border-bottom-color: #06377F;
    border-left-color:#06377F;
    transition:border-color 0s ease-out 0.2s,
    width 0.1s ease-out 0.2s,
    height 0.1s ease-out 0.4s;
    -webkit-transition:border-color 0s ease-out 0.2s,
    width 0.1s ease-out 0.2s,
    height 0.1s ease-out 0.4s;
}
.gallery_item img{
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
}
.gallery_item:hover img{
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
}

.gallery_box .gallery_list .gallery_item .gallery_img{
    overflow: hidden;
    width: 100%;
    /* background-image: url(/images/main/gallery_slide_img01.png); */
    height: 250px;
    background-size: cover;
    background-position: 50% 50%;
}
.gallery_box.v2 .gallery_list .gallery_item .gallery_img{
    position: relative;
}
.gallery_box.v2 .gallery_list .gallery_item .gallery_img:after{
    content: '';
    display: inline-block;
    background: url("/images/layout/play_off.png") no-repeat;
    width: 68px;
    height: 48px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.gallery_box.v2 .gallery_list .gallery_item:hover .gallery_img:after{
    background: url("/images/layout/play_on.png") no-repeat;
}
.gallery_box .gallery_list .gallery_item .bt_box{
    padding: 20px;
}
.gallery_box .gallery_list .gallery_item .tit{
    font-weight: 500;
    font-size: 18px;
    border-bottom: 1px solid #ccc;
    height: 43px;
    max-height: 40px;
    overflow: hidden;
}
.gallery_box .gallery_list .gallery_item .views{
    padding: 20px 0 0px;
    color: #999;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.gallery_box .gallery_list .gallery_item:hover .tit,
.gallery_box .gallery_list .gallery_item:hover .views{
    color: #06377F;
}
@media all and (max-width: 1439px){
    .gallery_box .gallery_list{
        width: 33.33%;
		padding: 0 10px;
    }
	.gallery_box .gallery_list .gallery_item,
    .gallery_box .gallery_list .gallery_item .gallery_img{
        max-width: 100%;
    }
    .gallery_item img{
        width: 100%;
    }
}
@media all and (max-width: 1023px){
    .gallery_box .gallery_list{
        width: 50%;
    }
    .gallery_box .gallery_list .gallery_item .gallery_img{
        height: 280px;
    }
}
@media all and (max-width: 767px){
    .gallery_box .gallery_list{
        width: 100%;
        margin-bottom: 30px;
		padding: 0;
    }
    .gallery_box .gallery_list .gallery_item .gallery_img{
        height: 270px;
    }
}
@media all and (max-width: 319px){
    .gallery_box .gallery_list .gallery_item .gallery_img{
        height: 170px;
    }
}
/* :: gallery_box e :: */

/* :: calendar s :: */
.layer-popup-calendar {
    padding:10px;
}

.layer-popup-calendar .layer-popup-item {
    max-width: 1100px;
    max-height: 100vh;
    overflow-y:auto;
}

.calendar-wrap {
    padding:40px;
    position: relative;
}

.calendar-info {
    text-align: right;
    position: absolute;
    right:40px;
    top:140px;
}

.calendar-info-box {
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
    font-weight: 600;
    color:#000;
    position: relative;
    padding-left:22px;
    margin-left:16px;
}

.calendar-info-box:before {
    display: block;
    content:"";
    width:15px;
    height:15px;
    position: absolute;
    left:0;
    top:50%;
    margin-top:-7.5px;
}

.calendar-info-plan:before,
.calendar-evt-plan {
    background:#f9bcbf !important;
}

.calendar-info-performance:before,
.calendar-evt-performance {
    background:#aadcda !important;
}

.calendar-info-exhibit:before,
.calendar-evt-exhibit {
    background:#fedfa4 !important;
}

.calendar-info-today:before,
.calendar-evt-today {
    background:#d4ebf9 !important;
}

.calendar-info-basic:before,
.calendar-evt-basic {
    background:#E8EAEE !important;
}

/* 2022-02-14 추가 S */

.calendar-info-1:before,
.calendar-evt-1 {
    background:#FBD2E1 !important;
}

.calendar-info-2:before,
.calendar-evt-2 {
    background:#FFF0B9 !important;
}

.calendar-info-3:before,
.calendar-evt-3 {
    background:#E5F0C5 !important;
}

.calendar-info-4:before,
.calendar-evt-4 {
    background:#DBF0F6 !important;
}

.calendar-info-5:before,
.calendar-evt-5 {
    background:#DFDEFF !important;
}

.calendar-info-6:before,
.calendar-evt-6 {
    /*background:#E8EAEE !important;*/
    background:#D5DCEA !important;
}

.holiday_t{
	padding: 11px 10px 0px 0px; 
	text-align:right; 
	color: #C7191F; 
}

/* 2022-02-14 추가 E */

.calendar-today {
    position: absolute;
    width:100%;
    left:0;
    top:95px;
    text-align: center;
    font-size:24px;
    color:#999999;
}

.calendar-close {
    display: block;
    width:50px;
    height:50px;
    position: absolute;
    right:40px;
    top:40px;
    background:#c9c9c9;
}

.calendar-close:before,
.calendar-close:after {
    display:block;
    content: "";
    width:30px;
    height: 3px;
    background:#fff;
    position:absolute;
    left:50%;
    top:50%;
    margin:-1.5px 0 0 -15px;
}

.calendar-close:before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.calendar-close:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media all and (max-width: 1023px) {
    .calendar-wrap {
        padding:20px;
    }

    .calendar-today {
        font-size:22px;
        top:75px;
    }

    .calendar-info {
        right:20px;
        top:125px;
    }

    .calendar-close {
        right:20px;
        top:20px;
        width:40px;
        height:40px;
    }

    .calendar-close:before,
    .calendar-close:after {
        height:2px;
        margin-top:-1px;
    }
}

@media all and (max-width: 767px) {
    .calendar-wrap {
        padding:10px;
        border:1px solid #717171;
    }

    .calendar-today {
        font-size:16px;
        font-weight: 600;
        top:50px;
    }
    .calendar-info {
        right: 0;
        top:90px;
        width:100%;
        text-align: center;
    }

    .calendar-info-box {
        font-size:15px;
        margin:0 8px;
    }

    .calendar-close {
        right:10px;
        top:10px;
        width:30px;
        height:30px;
    }

    .calendar-close:before,
    .calendar-close:after {
        width:21px;
        margin:-1px 0 0 -10.5px;
    }
}
/* :: calendar e :: */
/* :: basic table s :: */
.basic_table_box{
    margin-bottom: 100px;
}
.basic_table_box .tit{
    color: #06377F;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 30px;
    padding-left: 10px;
    position: relative;
}
.basic_table_box .tit:before{
    content: '';
    width: 17px;
    height: 17px;
    border-radius: 100%;
    position: absolute;
    left: 0;
    background: #D2D5DC;
    z-index: -1;
}
.basic_table_box .desc table{
    width: 100%;
    border-top: 2px solid #06377F;
    font-size: 16px;
}
.basic_table_box .desc table tr{
    border-bottom: 1px solid #ccc;
}
.basic_table_box .desc table th,
.basic_table_box .desc table td{
    text-align: center;
    border: 1px solid #ccc;
    padding: 10px;
}
.basic_table_box .desc table th:last-child,
.basic_table_box .desc table td:last-child{
    border-right: none;
}

.basic_table_box .desc table th:first-child,
.basic_table_box .desc table td:first-child{
    border-left: none;
}
.basic_table_box .desc table th{
    height: 60px;
    background: #f7f7f7;
    font-weight: 500;
}
.basic_table_box .desc table td{
    height: 50px;
}
.basic_add_info{
    padding-left: 24px;
    text-align: left;
}
.basic_add_info.mt30{
    margin-top: 30px;
}
.basic_add_info li{
    list-style: disc;
    font-size: 16px;
}
@media screen and (max-width: 767px){
    .basic_table_box{
        margin-bottom: 50px;
    }
    .basic_table_box.v2{
        width: 100%;
        overflow: hidden;
    }
    .basic_table_box .tit{
        font-size: 16px;
        margin-bottom: 10px;
        padding-left: 6px;
    }
    .basic_table_box .tit:before{
        width: 14px;
        height: 14px;
    }
    .basic_table_box.v2 .desc{
        overflow-x: scroll;
    }
    .basic_table_box.v2 .desc table{
        width: 767px;
    }
    .basic_table_box .desc table th,
    .basic_table_box .desc table td,
    .basic_add_info li{
        font-size: 14px;
    }
    .basic_table_box .desc table th{
        height: 40px;
    }
    .basic_table_box .desc table td{
        height: 30px;
    }
}
/* :: basic table e :: */

/* 2022-02-14 보도자료 s */
.board-list-item2 {
	width: 20px;
    line-height: 23px;
    position: absolute;
    right: 20px;
    top: 40%;
	font-size:18px;
}

.board-list-item2 .fa-external-link-alt:before{
	width:100%;
	color:#AAAAAA;
}
.board-list-lnk:hover .board-list-item2 .fa-external-link-alt:before{
	width:100%;
	color:#06377F;
}

/* 2022-02-14 보도자료 e */

/* ## another_logo s ## */
.another_logo_box{
    height: 80px;
    border-top: 1px solid #ccc;
}
.another_logo_box .container{
    height: 100%;
    display: flex;
    align-items: center;
}
.another_logo_slide{
    height: 100%;
    flex: 1;
}
.another_logo_box .logo_slide_item{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.another_logo_prev,
.another_logo_next{
    display: none;
    height: 100%;
}
.another_logo_prev .btn,
.another_logo_next .btn{
    width: 100%;
    height: 100%;
    font-size: 20px;
    padding: 0 20px;
    color: #06377F;
    display: block;
}
@media screen and (max-width: 1440px){
    .another_logo_prev,
    .another_logo_next{
        display: block;
    }
}
/* ## another_logo e ## */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .gnb{
        padding-left: 40px;
    }
    .gnb-list{
        justify-content: flex-start;
    }
}