@charset "utf-8";

#wrap {
    overflow: hidden;
    min-width: 1600px;
    max-width: 100%;
    margin: 0 auto;
}

#wrap .inner {
    width: 1600px;
    margin: 0 auto;
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background: #fff;
}

#header:after {
    display: block;
    content: '';
    position: absolute;
    top: 90px;
    width: 100%;
    height: 1px;
    background: #e4e4e4;
}



#header .inner {
    position: relative;
    width: 1600px;
    margin: 0 auto;
    text-align: center;
}

#header .logo {
    position: absolute;
    top: 0;
    left: 0;
    height: 90px;
    z-index: 10;
    
}
#header .logo a{display: flex;align-items: center;height: 100%;}
#header .logo .color{display: inline-block;}
#header .logo .white{display: none;}
#header .logo svg.color,
#header .logo svg.white{display: none;}

.gnbWrap {
    position: relative;
    z-index: 2;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
}

.gnbWrap .activeBar {
    height: 2px;
    background: #003CB1;
    position: absolute;
    top: 88px;
    z-index: -1;
}

.gnb>li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 186px;
}

.gnb>li>a {
    display: block;
    color: #1A1A1A;
    text-align: center;
    font-family: "NanumSquareNeo";
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 90px;
    /* 18px */
    text-transform: uppercase;
    transition: all 0.2s;
}


.gnb>li>a:after {
    display: block;
    content: '';
    width: 0;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 50%;
    background: #222;
    transition: all 0.25s;
}

.gnb>li>ul {
    display: none;
    box-sizing: border-box;
    padding: 3rem 0;
    height: 23.6rem;
}

.gnb>li:hover ul,
.gnb>li.active ul {
    background: #FAFBFD;
}

.gnb>li.active>a:after {
    display: block;
    content: '';
    width: 100%;
    height: 2px;
    background: #003CB1;
    position: absolute;
    top: 88px;
    left: 0;
}

.gnb>li>ul li {
    margin-top: 2.4rem;
}

.gnb>li>ul li:first-child {
    margin-top: 0;
}

.gnb>li>ul li a {
    color: #1A1A1A;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 16px */
    letter-spacing: -0.32px;
}
.gnb>li>ul li a:hover,
.gnb>li>ul li.active a {
    font-weight: 800;
    color: #003CB1;
}

#slide-btn {
    text-indent: -999em;
    width: 30px;
    height: 20px;
    position: absolute;
    top: 33px;
    right: 0;
    z-index: 10;
}

#slide-btn button {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    cursor: pointer;
    outline: none;
}

#slide-btn button span,
#slide-btn button:before,
#slide-btn button:after {
    border-radius: 2px;
    overflow: hidden;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #282828;
}


#slide-btn button span {
    display: block;
    top: 50%;
    margin-top: -1px;
    opacity: 1;
    transition: all 0.3s;
}

#slide-btn button:before {
    content: '';
    display: block;
    top: 0;
    transition: all 0.3s;
}

#slide-btn button:after {
    content: '';
    display: block;
    bottom: 0;
    transition: all 0.3s;
}

#slide-btn button.on span {
    opacity: 0;
}

#slide-btn button.on:before {
    top: 50%;
    margin-top: -1px;
    transform: rotate(45deg);
}

#slide-btn button.on:after {
    bottom: 50%;
    margin-bottom: -1px;
    transform: rotate(-45deg);
}

#slide-bg {
    display: none;
}

#slide-menu {
    display: none;
}

#header .language {
    position: absolute;
    top: 3.5rem;
    right: 110px;
    z-index: 92;
}

#header .language>a {
    display: block;
    color: #1A1A1A;
    font-family: "NanumSquareNeo";
    font-size: 16px;
    font-style: normal;
    line-height: normal;
    text-transform: uppercase;
}

#header .language>ul {
    position: absolute;
    top: 45px;
    left: 50%;
    display: none;
    width: 80px;
    margin-left: -40px;
    padding: 10px 0;
    border: 1px solid #b8b8b8;
    background: #fff;
}

#header .language>ul:before {
    position: absolute;
    top: -7px;
    left: 50%;
    content: '';
    display: block;
    width: 6px;
    height: 7px;
    margin-left: -3px;
    background: url('/images/layout/hd-lanbox-spr.png');
}

#header .language>ul li a {
    display: block;
    font-size: 14px;
    line-height: 26px;
    color: #666666;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
}

#header .language.on>ul,
#header .language:focus-within>ul {
    display: block;
}


#header.trans {
    background: transparent;
    transition: all 0.2s cubic-bezier(0.930, 0.635, 0.650, 0.970);
}

#header.trans:after {
    display: none;
}

#header.trans .logo .color {
    display: none;
}

#header.trans .logo .white {
    display: inline-block;
}
#header.trans .logo svg.white,
#header.trans .logo svg.color{display: none;}

#header.trans .gnb>li>a {
    color: #fff;
}

#header.trans #slide-btn button span,
#header.trans #slide-btn button:before,
#header.trans #slide-btn button:after {
    background: #fff;
}
#header.trans .language>a {
    color: #fff;
}


@media all and (min-width:1280px) {
    #header.trans:hover .logo .color {
        display: inline-block;
    }

    #header.trans:hover .logo .white {
        display: none;
    }
    #header.trans:hover .logo svg.color,
    #header.trans:hover .logo svg.white{display: none;}

    #header.trans:hover:after {
        display: block;
    }

    #header.trans:hover {
        background: #fff;
    }

    #header.trans:hover .gnb>li>a {
        color: #000;
    }

    #header.trans:hover #slide-btn button span,
    #header.trans:hover #slide-btn button:before,
    #header.trans:hover #slide-btn button:after {
        background: #000;
    }

    #header.trans:hover .language>a {
        color: #1a1a1a;
    }

    #header:hover {
        border-bottom: 1px solid #ddd;
    }
}



#header.trans.active .logo .color {
    display: inline-block;
}
#header.trans.active .logo .white {
    display: none;
}
#header.trans.active:after {
    display: block;
}
#header.trans.active {
    background: #fff;
}
#header.trans.active .gnb>li>a {
    color: #000;
}
#header.trans.active #slide-btn button span,
#header.trans.active #slide-btn button:before,
#header.trans.active #slide-btn button:after {
    background: #000;
}
#header.trans.active .language>a {
    color: #1a1a1a;
}
#header.active {
    border-bottom: 1px solid #ddd;
}






#wrap .cen{text-align: center;}
#gotop{position: fixed;bottom:48px;right:24px;z-index:30;display: none;}

#sub .titType1{margin-bottom: 50px;}
.titType1 span {
    display: block;
    color: #1A1A1A;
    font-size: 20px;
    font-style: normal;
    line-height: 100%;
    /* 20px */
    letter-spacing: -0.8px;
}

.titType1 h4 {
    color: #1A1A1A;
    margin-top: 1.6rem;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 48px */
    text-transform: uppercase;
}

.titType1 p {
    margin-top: 1.6rem;
    color: #1A1A1A;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 16px */
    letter-spacing: -0.64px;
}



#footer {
    padding: 4rem 0;
    background: #222222;
}

#footer .footerLogo{display: inline-block;}

#footer .inner {
    position: relative;
    width: 1600px;
    margin: 0 auto;
}


#footer address {
    margin-top: 3rem;
    color: #878787;
    font-family: Pretendard;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    /* 19.6px */
}

#footer address hr {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    border: 0;
    background: none;
    height: 0;
}

#footer .copyright {
    display: inline-flex;
    color: #787878;
    text-align: center;
    font-family: Pretendard;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    /* 14px */
}

.footerRig {
    display: flex;
    position: absolute;
    top: 1.3rem;
    right: 0;
}

#fnb {
    display: inline-flex;
    margin-right: 6rem;
}

#fnb>li {
    position: relative;
    display: inline-flex;
    align-items: center;
}

#fnb>li:before {
    display: inline-flex;
    content: '';
    width: 1px;
    background: #787878;
    height: 10px;
    margin: 0 1.6rem;
}

#fnb>li:first-child:before {
    display: none;
}

#fnb>li>a {
    display: block;
    color: #787878;
    font-family: Pretendard;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    /* 14px */
}