@charset "UTF-8";

body{position: relative;}

/* 헤더 */
.header-wrap{position: absolute; top: 0; left: 0; width: 100%; transition: all 0.2s; z-index: 500;}
.h-top{border-bottom: 1px solid rgba(255,255,255,0.5); transition: all 0.2s;}
.h-top.on{border-bottom: 1px solid #ddd;}
.h-top-in{display: flex; justify-content: space-between; align-items: center; width: 100%; height: 40px; max-width: 1840px; padding: 0 20px; margin: 0 auto;}
.h-top .font-size{display: flex; align-items: center;}
.h-top .font-size p{color: #fff; font-weight: 500;}
.h-top.on .font-size p{color: #444;}
.h-top .font-size .btn-wrap{display: flex; gap: 5px; margin-left: 10px; margin-right: 15px;}
.h-top .font-size .btn-wrap li button{width: 25px; height: 25px; border: 1px solid #fff; background-repeat: no-repeat; background-position: center; transition: all 0.2s;}
.h-top .font-size .btn-wrap li .zoom-in{background-image: url(../images/main/i_plus.png);}
.h-top .font-size .btn-wrap li .zoom-out{background-image: url(../images/main/i_minus.png);}
.h-top.on .font-size .btn-wrap li button{border: 1px solid #808080;}
.h-top.on .font-size .btn-wrap li .zoom-in{background-image: url(../images/main/i_plus_bk.png);}
.h-top.on .font-size .btn-wrap li .zoom-out{background-image: url(../images/main/i_minus_bk.png);}
.h-top .font-size .btn-print{width: 25px; height: 25px; background: url(../images/main/i_print.png) no-repeat center;}
.h-top.on .font-size .btn-print{background: url(../images/main/i_print_bk.png) no-repeat center;}

.h-utill{display: flex;}
.h-utill li a{display: block; width: 100px; line-height: 40px; font-weight: 500; color: #000; text-align: center; background-color: #fff;}
.h-utill li.EN a{background-color: #000; color: #fff;}

.header{position: relative; display: flex; justify-content: space-between; width: 100%; height: 90px; max-width: 1840px; padding: 0 20px; margin: 0 auto; overflow: hidden; transition: all 0.5s;}
.header .logo{display: flex; align-items: center; height: 90px;}
.header .logo a{display: block; width: 209px; height: 47px; background: url(../images/main/logo_white.png) no-repeat;}
.header .header-gnb{width: 65%;}
.header .header-gnb .gnb-depth-1 {display: flex; text-align: center;}
.header .header-gnb .depth-1 {position: relative; width: calc(100% / 5);}
.header .header-gnb .depth-1 > a {position: relative; display: flex; align-items: center; justify-content: center; width: 100%; height: 90px; font-size: 20px; font-weight: 600; color: #fff;}
.header .header-gnb .depth-1 > a > span {position: relative; display: block; line-height: normal;}
.header .header-gnb .depth-1 .gnb-depth-2 {position: absolute; top: 100%; left: 0; width: 100%; min-height: 370px; padding-top: 10px; padding-bottom: 45px; border-right: 1px solid #ddd; visibility: hidden; opacity: 0; transition: all 0.2s;}
.header .header-gnb .depth-1:last-child .gnb-depth-2{border-right: 0;}
.header.open .header-gnb .depth-1 .gnb-depth-2 {visibility: visible; opacity: 1; transition: all 0.2s;}
.header .header-gnb .depth-2 > a {display: block; padding: 10px 0; line-height: 1.2em; font-size: 17px; color: #111; word-break: keep-all; transition: color 0.1s;}
.header .header-gnb .depth-2 > a:hover,
.header .header-gnb .depth-2 > a:focus {color: #007ea5;}
.header .header-gnb .depth-2 > a span{position: relative; display: inline-block; word-break: keep-all;}

.header .r-wrap{display: flex; align-items: center; gap: 20px; height: 90px; padding-right: 25px;}
.header .r-wrap .sch-btn{width: 31px; height: 30px; background: url(../images/main/i_serch.png) no-repeat;}
.header .r-wrap .all-menu{display: block; width: 26px; height: 23px; background: url(../images/main/i_menu.png) no-repeat;}

/* 헤더 오버시 */
.header-wrap.on{background-color: #fff;}
.header-wrap:before{position: absolute; top: 130px; left: 0; content: ""; display: none; width: 100%; height: 1px; background-color: #ddd;}
.header-wrap.on:before{display: block;}
.header-wrap.on .logo a{background: url(../images/main/logo.png) no-repeat;}
.header .header-gnb .depth-1:hover .gnb-depth-2{background-color: #f7f7f7;}
.header-wrap.on .header-gnb .depth-1 > a{color: #000;}
.header .header-gnb .depth-1:hover > a{color: #007ea5;}
.header .header-gnb .depth-1 > a:before{position: absolute; bottom: 0; left: 0; content: ""; display: none; width: 100%; height: 3px; background-color: #007ea5;}
.header .header-gnb .depth-1:hover > a:before{display: block;}
.header-wrap.on .r-wrap .sch-btn{background: url(../images/main/i_serch_bk.png) no-repeat;}
.header-wrap.on .r-wrap .all-menu{display: block; width: 26px; height: 23px; background: url(../images/main/i_menu_bk.png) no-repeat;}

/* 검색창 */
.sch-wrap{visibility:hidden; position: fixed; top: 0; right: 0; width: 100%; height: 100vh; z-index: 600;}
.sch-wrap.show{visibility: visible;}
.sch-wrap:before{position: absolute; top: 0; right: 0; display: block; content: ""; width: 100%; height: 100%; background-color: rgba(0,0,0,0.0); transition: all 0.3s;}
.sch-wrap.show:before{background-color: rgba(0,0,0,0.6);}
.sch-wrap .sch-box{position: absolute; top: 131px; right: -100%; padding: 60px 70px; background-color: #fff; transition: all 0.3s;}
.sch-wrap .sch-box.on{right: 0;}
.sch-wrap .sch-box .close-btn{position: absolute; top: 20px; left: 20px; width: 33px; height: 33px; background: url(../images/main/ico_close.svg) no-repeat center; background-size: contain;}
.sch-wrap .sch-box .cont h3{padding-bottom: 15px; margin-bottom: 30px; border-bottom: 1px solid #bcbcbc; font-size: 31px; color: #000; font-weight: 700;}
.sch-wrap .sch-box .cont .bar{display: flex; justify-content: space-between; gap: 10px; min-width: 530px;}
.sch-wrap .sch-box .cont .bar input{width: calc(100% - 75px); padding: 0 20px; font-size: 17px; border-radius: 65px; border: 1px solid #bcbcbc; background-color: #fff;}
.sch-wrap .sch-box .cont .bar .sch-btn{width: 65px; height: 65px; background-color: #0998bc; border-radius: 50%; background-image: url(../images/main/i_serch.png); background-repeat: no-repeat; background-position: center; background-size: 25px; transition: all 0.2s;}
.sch-wrap .sch-box .cont .bar .sch-btn:hover{background-color: #147c96;}

/* 푸터 */
.footer{background-color: #333333;}
.f-bottom{display: flex; padding: 40px 0 90px;}
.f-bottom .f-info{padding-left: 50px;}
.f-bottom .f-info li{color: #fff; font-size: 16px;}
.f-bottom .f-info li a{color: #fff;}
.f-bottom .f-info li.tel, .f-bottom .f-info li.fax{display: inline-block;}
.f-bottom .f-info li.copy{margin-top: 20px;}

.Web-accessibility{width:105px; margin-left: auto;}




