body.on {
    overflow: hidden;
}

/* header */
header {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 0px 40px;
    z-index: 10;
}

header * {
    transition: all 0.1s ease-in;
}

header h1 {
    display: flex;
    justify-content: left;
    align-items: center;
    width: 20%;
    padding-right: 20px;
}

header h1 a {}

header h1 a img {
    max-width: 100%;
    width: 100%;
}

header .btn_menu {
    display: none;
}

header nav {
    width: 54%;
}

header nav .gnb_ul {
    display: flex;
}

header nav .gnb_ul > li {
    position: relative;
    width: 100%;
}

header nav .gnb_ul > li > a {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
}

header nav .gnb_ul > li:last-child > a{
    color: #CCA234;
}

header nav .gnb_ul > li:hover > a {
    background: #152238;
}

header nav .gnb_ul > li .sub_ul {
    position: absolute;
    display: none;
    width: 100%;
    background: #fff;
    box-shadow: 0 0 30px 0px rgba(0,0,0,0.1);
}

header nav .gnb_ul > li:hover .sub_ul {
    display: block;
}

header nav .gnb_ul > li .sub_ul li {}

header nav .gnb_ul > li .sub_ul li a {
    text-align: center;
    display: block;
    line-height: 1.5;
    padding: 6px 0px;
    letter-spacing: -0.04em;
}

header nav .gnb_ul > li .sub_ul li a:hover {
    background: #CCA234;
    color: #fff;
}

header .right_hd {
    margin-left: auto;
    display: inline-flex;
    align-self: center;
    justify-content: flex-end;
    width: 22%;
}

header .right_hd li {
    padding: 0px 10px;
    background: url(../../images/user/dotted_bar.png) no-repeat right center;
}

header .right_hd li:last-child {
    background: none;
}

header .right_hd li a {
    color: #fff;
    font-size: 16px;
}

header .right_hd li a:hover {
    color: #CCA234;
}

.lnb {
    position: fixed;
    top: 0;
    width: 90%;
    max-width: 320px;
    background: #152238;
    right: -320px;
    display: table;
    bottom: 0;
    min-height: 100%;
    max-height: 100%;
    z-index: 10;
}

.lnb .lnb_wrap {
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
    position: relative;
    padding: 30px 0px 30px 30px;
}

body.on .lnb::after {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    content: '';
    bottom: 0;
    z-index: 5;
    background: rgba(0, 0, 0, 0.7);
}

.lnb.on {
    right: 0;
}

.lnb nav {}

.lnb nav .lnb_ul {}

.lnb nav .lnb_ul > li {
    background: url(../../images/user/menu_down.png) no-repeat calc(100% - 15px) 15px;
    margin-top: -1px;
    transition: none;
}

.lnb nav .lnb_ul > li.on {
    background: url(../../images/user/menu_up.png) no-repeat calc(100% - 15px) 15px;
}

.lnb nav .lnb_ul > li > a {
    color: #fff;
    font-size: 15px;
    padding: 13px 0px;
    border-top: solid 1px #2E456C;
    border-bottom: solid 1px #2E456C;
    display: block;
}

.lnb nav .lnb_ul > li.on a {
    border-bottom: none;
}

.lnb nav .lnb_ul > li > a.yellow {
    color: #CCA234
}

.lnb nav .lnb_ul > li:hover > a {}

.lnb nav .lnb_ul > li .sub_ul {
    display: none;
    padding: 10px 0px;
}

.lnb nav .lnb_ul > li.on .sub_ul {
    display: block;
}

.lnb nav .lnb_ul > li .sub_ul li {
    padding: 9px 0;
}

.lnb nav .lnb_ul > li .sub_ul li a {
    color: #808080;
    font-size: 15px;
    display: block;
}

.lnb .lnb_bottom {
    margin-top: 40px;
}

.lnb .lnb_bottom li {
    margin-bottom: 20px;
}

.lnb .lnb_bottom li:last-child {}

.lnb .lnb_bottom li a {
    padding-left: 30px;
    color: #fff;
    font-size: 16px;
}

.lnb .lnb_bottom li a#login,
.lnb .lnb_bottom li a#logOut {
    background: url(../../images/user/lnb01.png) no-repeat 5px center;
}

.lnb .lnb_bottom li a#memberInsert {
    background: url(../../images/user/lnb02.png) no-repeat left center;
}

.lnb .lnb_bottom li a#managerGo {
    background: url(../../images/user/lnb03.png) no-repeat 5px center;
}

footer {
    background: #152238;
}

footer .container {
    padding: 30px 10px;
}

footer .container > ul {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 15px;
}

footer .container > ul > li {
    padding-right: 20px;
    margin-right: 20px;
    height: 16px;
    border-right: solid 1px #828282;
    line-height: 1;
    position: relative;
}

footer .container > ul > li:last-child {
    border-right: none;
}

footer .container > ul > li > a {
    color: #828282;
}

footer .container > ul > li > ul {
    display: none;
    position: absolute;
    bottom: calc(100% + 5px);
    left: 0;
    background: #fff;
    z-index: 10;
}

footer .container > ul > li > a.on + ul {
    display: block;
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.1)
}

footer .container > ul > li.list a:hover {
    cursor: pointer;
}

footer .container > ul > li > ul > li {}

footer .container > ul > li > ul > li a {
    display: block;
    padding: 5px;
    font-size: 14px;
    color: #000;
    text-align: center;
}

footer .container p {
    color: #828282;
}


@media all and (max-width:1400px) {
    header {
        padding: 0px 15px;
    }

    header nav .gnb_ul > li > a {
        font-size: 16px;
    }

    header nav .gnb_ul > li .sub_ul li a {
        font-size: 14px;
    }

    header .right_hd li a {
        font-size: 14px;
    }
}

@media all and (max-width:1180px) {
    header {
        padding: 10px 15px;
        position: fixed;
    }

    .fixed header {
        background: #212121;
    }

    header nav {
        display: none;
    }

    header .right_hd {
        display: none;
    }

    header .btn_menu {
        display: block;
        margin-left: auto;
        border: none;
        background: url(../../images/user/btn_menu.png) no-repeat center center;
        text-indent: -9999px;
        outline: none;
        width: 50px;
        background-size: 24px;
        cursor: pointer;
    }

    header h1 {
        width: 220px;
    }
}

@media all and (max-width:960px) {
    footer .container > ul > li {
        padding-right:10px;
        margin-right:10px;
    }
}

@media all and (max-width:768px) {
    footer .container {
        padding:30px;
    }
    footer .container > ul {
        flex-direction: column;
    }
    footer .container > ul > li {
        border:none;
        margin-bottom:20px;
        position:relative;
        display:inline-block;
        height:auto;
        line-height:1.3;
    }
    footer .container p {
        margin-top:50px;
    }
    footer .container > ul > li:last-child > a {
        display:inline-block;
        padding:10px;
        border:solid 1px #828282;
        word-break: keep-all;
    }
    footer .container p {
        line-height:1.5;
        word-break: keep-all;
    }
}

@media all and (max-width:640px) {}

@media all and (max-width:480px) {}

@media all and (max-width:320px) {}
