<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/*----------Mobile----------*/
#wrap {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-flow: column nowrap;
}

.hidden {
    display: none;
}

.hidden-mo {
    display: none;
}

.hidden-tab {
    display: none;
}


/*--------------header-----------*/
header {
    order: 1;
}

.header_in {
    width: 100%;
    height: 60px;
    display: flex;
}

/*메뉴*/
#gnb-pc {
    display: none;
}

#gnb-mo {
    position: absolute;
    width: 70%;
    height: 600vh;
    background: #0f4c81;
    z-index: 100;
    top: 0;
    left: 0;
    bottom: 0;
    right: auto;
    -webkit-transform: translateX(-120%);
    -ms-transform: translateX(-120%);
    transform: translateX(-120%);
    opacity: 0;
    display: none;
    -webkit-transition: all 0.4s linear;
    -ms-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

/*nav-js*/
#gnb-mo.on {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    display: block;
}

#gnb-mo h2 {
    width: 35%;
    margin: 5vh 3vh 0;
}

#gnb-mo h2 img {
    width: 100%;
    max-width: 100%;
}

#gnb-mo .gnb:before {
    content: "";
    display: block;
    width: 88%;
    height: 1px;
    background: #fff;
    margin: 2vh auto;
}

#gnb-mo .gnb &gt; li {
    width: 100%;
    margin: 5vh 0;
}

#gnb-mo .gnb .gnb-mo {
    display: flex;
    flex-flow: row nowrap;
    width: 80%;
    margin: 0 auto;

}

#gnb-mo .gnb .gnb-mo li:first-child {
    width: 10%;
    margin-right: 5%;
}

#gnb-mo .gnb .gnb-mo img {
    width: 100%;
    max-width: 100%;
}

#gnb-mo .gnb .gnb-mo a {
    color: #fff;
    line-height: 1.5;
    font-size: 1em;
    font-family: 'NanumBarunGothic', sans-serif;

}
.gnb-mo a span {
    font-size: 0.875em;
    color: #ccc;
}

/*nav-검은배경*/
.gnb-layer {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.1s linear;
    -ms-transition: all 0.1s linear;
    transition: all 0.1s linear;
}

/*nav-검은배경 js*/
.gnb-layer.on {
    visibility: visible;
    opacity: 1;
}

.header_in h1 {
    margin: 0 auto;
}

.header_in h1 img {
    width: 50%;
    max-width: 100%;
    margin: 1vh auto;
}

/*메뉴 토글 버튼*/
.menu_toggle_btn {
    position: absolute;
    display: block;
    top: 20px;
    left: 25px;
    width: 30px;
    cursor: pointer;
}

.menu_toggle_btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: #0f4c81;

}

.menu_toggle_btn span:nth-child(2) {
    margin: 5px 0;
}

/*footer*/
footer {
    order: 7;
    background: #ccc;
    width: 100%;
    margin-top: 15%;

}
footer .pc {
    display: none;
}
footer .mo {
    display: block;
}
footer .footer-in {
    width: 50%;
    margin: 0 auto
}
footer .footer-in img {
    width: 100%;
    
}

/*-----------Tab-----------*/
@media all and (min-width:768px) {

    .hidden-tab {
        display: block;
    }

    header h1 img {
        margin: 1vh auto !important;
    }

    #gnb-mo h2 {
        width: 30%;
        margin: 5vh 5vh 0;
    }

    #gnb-mo .gnb .gnb-mo li:first-child {
        width: 8%;
    }

    #gnb-mo .gnb .gnb-mo a {
        font-size: 1.25em;
            /*20px;*/
            line-height: 1.8;
    }

    /*-----------------------footer 탭버전-----------------------*/
     footer {
        padding-bottom: 0;
    }

    footer .footer-in {
        width: 35%;
    }

}

/*tab end*/


/*------------PC------------*/
@media all and (min-width:1200px) {
    .hidden-pc {
        display: none;
    }

    .hidden-mo {
        display: block;
    }

    .hidden-tab {
        display: none;
    }

    header {
        height: 100px;
        width: 100%;

    }

    header .header_in {
        width: 68.75%;
        height: 100%;
        margin: 0 auto;
        flex-flow: row nowrap;
        justify-content: space-between;
    
    }

    header .header_in h1 {
  
        margin: 0 0 5%;
        padding: 0;


    }
    .header_in h1 a {
        padding: 0;
        margin: 0;
    }

    .header_in h1 a img {
        margin: 0;
        padding: 0;
        height: 100%;
        width: 100%;
        max-width: 100%;
    }

    #gnb-mo,
    .menu_toggle_btn,
    .gnb-layer {
        display: none;
    }
    #gnb-mo.on {
        display: none;
    }

    #gnb-pc {
        display: block;
        width: 75%;
        height: 100%;
    }

    #gnb-pc ul {
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
        margin: auto 0;
    }

    #gnb-pc ul li {
        margin-top: 45px;

    }
    /*-------------footer pc버전---------*/
    footer {
        margin-top: 10%;
    }
    footer .mo {
        display: none;
    }
    footer .pc {
        display: block;
    }

    footer .footer-in {
        width: 68.75%;
        height: 100%;
        margin: 1% auto 0.5%;
       
    }

}

/*pc end*/
</pre></body></html>