@charset "utf-8";

/* header */
.header {
    position: fixed;
    width: 100%;
    height: 80px;
    z-index: 10;
    box-sizing: content-box;
    transition: all 0s 0.2s;
    /* transition: all 0.5s; */
    margin: 0;top: 0;
}

.header.fixed {
	transition: all 0.5s;
	position:fixed;
	background-color: white;
	top: 0;
	border-bottom: 1px solid #ddd;
}
         
.header-bx {
    position: relative;
    height: 100%;
    background-color: rgba(255,255,255,0.7);
    width: 100%;
}

.header-bx::before {
    content: '';
    position: absolute;
    top: -185%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    background: rgb(255 255 255);
    box-shadow: 0 5px 9px rgb(0 0 0 / 17%);
    opacity: 0;
    transition: all .4s ease-in-out;
    z-index: -1;
}

.header.fixed .header-bx::before { opacity: 1; height: 100%;}

.header .inner01 {display: flex;justify-content: space-between;position: relative;height: 82px;padding: 0em 9em;align-items: center;}

.header .inner01 h1 {
    /* width: 221px; */
    min-width: 183px;
    height: 50px;
    /* background-image: url(../img/logo/logo.png); */
    /* background-position-x: center; */
    /* background-position-y: center; */
    background-size: cover;
    background-position-y: center;
    background-position-x: center;
    /* background-repeat: no-repeat; */
    font-family: var(--font-logo);
    font-size: 1.7em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .inner01 h1 a{
    text-decoration: none;
    width: auto;
    height: auto;
    /* position: absolute; */
    /* display: flex; */
    justify-content: center;
    margin: 0;
    padding: 0;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
}
.header .inner01 h1 a:hover {color:unset;}
.header .logo { display: block; }

.header nav {
    width: 1000px;
}

.header .gnb {display: flex;justify-content: flex-end;align-items: center;height: 100%;width: 100%;}

.header .gnb .dep1 {
                    position: relative;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 25%;
                    height: 100%;
                    text-align: center;
                    }

/* .header .gnb .dep1 > a { position: relative;} */

.header .gnb li a {
    display: block;
    /* color: #fff; */
    font-size: 19px;
    transition: all .5s;
    font-weight: 500;
}

.header.fixed .gnb li a { color: #333;}

.header .gnb .dep2 {
    position: absolute;
    top: 57px;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
}

.header .gnb .dep2 li + li { padding-top: 20px;}

.header .gnb .dep2 a {/* color: #fff; */font-size: 16px;}

.header:hover {/* border-bottom: 1px solid rgba(255,255,255,0.5); */}

.header:hover .header-bx::before {
	height: 420px;
	opacity: 1;
	}

.header:hover .gnb li a {visibility: visible;color: #000;}

.header:hover .gnb .dep2 {display: block;opacity: 1;transition: all .4s ease-in-out;}

.header .gnb .dep1:hover {}

.header .gnb .dep1::after {content: '';position: absolute;bottom: -16px;left: 50%;width: 0;display: flex;opacity: 0;border-bottom: 3px solid var(--color-main);transition: all .5s ease;transform: translateX(-50%);}


.header .gnb .dep1:hover::after { width: 50%; opacity: 1;}

.header .gnb .dep2:hover .dep1::after { width: 100%; opacity: 1;}

header > div a:after {content:"";display: table;width: 1px;height: 14px;background: #ccc;position: absolute;left: 0;top: 7px;}

.header > div a:first-child::after {display:none;}

.header > div a.sitemap{
    width: 40px;
    height: 40px;
    display: flex;
    align-content: space-between;
    flex-direction: column;
    padding: .5em .3em;
    border: 1px solid #ccc;
    position: relative;
    justify-content: space-between;
}

.header > div a.sitemap div {
    height: 2px;
    width: 100%;
    /* position: absolute; */
    background-color: var(--color-gray);
}
.header .sitemap .date {
    border: 1px solid #333;
    padding: 0 .5em;
    font-size: .9em;
}
.header .sitemap .date a {
    display: flex;
    align-items: center;
}
.header .sitemap .date i {
    font-size: 1.5em;
}
.header .sitemap .date p {}
.header .sitemap button{
    padding: 0;
    border: 0 none;
    background: none;
    cursor: pointer;
    /* vertical-align: unset; */
    height: unset;
    display: flex;
    align-items: center;
    display: none;
}

.header .sitemap button i {
    font-size: 1.4em;
    transition: all 1s;
    transform: rotate(0);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--font-color-nav);
}

.header > div button i{}

.header > div i {color:#121212;}

.header > div button i.ri-close-fill{
    transform: rotate(180deg);
}

@media screen and (max-width: 1000px) {
/* header */
.header {
    position: fixed;
    width: 100vw;
    height: 80px;
    z-index: 10;
    box-sizing: content-box;
    transition: all 0s 0.2s;
    /* transition: all 0.5s; */
    margin: 0;
    top: 0;
}

.header.fixed {
	transition: all 0.5s;
	position:fixed;
	background-color: white;
	top: 0;
	border-bottom: 1px solid #ddd;
}
         
.header-bx {
    background-color: rgba(255,255,255);
    height: 9vh;
    width: 100vw;
}

.header-bx::before {display: none;}

.header.fixed .header-bx::before { opacity: 1; height: 100%;}

.header .inner01 {
    height: 9vh;
    padding: 0 1em;
    width: 100vw;
}

.header .inner01 h1 {
    width: 35%;
    font-size: 2em;
    height: 50%;
    min-width: 73%;
    text-align: left;
}

.header .inner01 h1 a{width: 100%;text-align: left;}

.header .logo { display: block; }

.header nav {
    display: none;
}

.header .gnb {display: flex;justify-content: space-between;align-items: center;height: 100%;width: 800px;}

.header .gnb .dep1 {
                    position: relative;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 25%;
                    height: 100%;
                    text-align: center;
                    }

/* .header .gnb .dep1 > a { position: relative;} */

.header .gnb li a {
    display: block;
    /* color: #fff; */
    font-size: 18px;
    transition: all .5s;
}

.header.fixed .gnb li a { color: #333;}

.header .gnb .dep2 {
    position: absolute;
    top: 57px;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
}

.header .gnb .dep2 li + li { padding-top: 20px;}

.header .gnb .dep2 a {/* color: #fff; */font-size: 16px;}

.header:hover {/* border-bottom: 1px solid rgba(255,255,255,0.5); */width: 100vw;}

.header:hover .header-bx::before {
	height: 420px;
	opacity: 1;
	}

.header:hover .gnb li a {visibility: visible;}

.header:hover .gnb .dep2 {display: block;opacity: 1;transition: all .4s ease-in-out;}

.header .gnb .dep1:hover {}

.header .gnb .dep1::after {content: '';position: absolute;bottom: -16px;left: 50%;width: 0;display: flex;opacity: 0;border-bottom: 3px solid var(--color-main);transition: all .5s ease;transform: translateX(-50%);}


.header .gnb .dep1:hover::after { width: 50%; opacity: 1;}

.header .gnb .dep2:hover .dep1::after { width: 100%; opacity: 1;}

header > div a:after {content:"";display: table;width: 1px;height: 14px;background: #ccc;position: absolute;left: 0;top: 7px;}

.header > div a:first-child::after {display:none;}

.header > div a.sitemap{
    width: 40px;
    height: 40px;
    display: flex;
    align-content: space-between;
    flex-direction: column;
    padding: .5em .3em;
    border: 1px solid #ccc;
    position: relative;
    justify-content: space-between;
}

.header > div a.sitemap div {
    height: 2px;
    width: 100%;
    /* position: absolute; */
    background-color: var(--color-gray);
}
.header .sitemap {
    display: flex;
}
.header .sitemap .date {
    border: 0;
}
.header .sitemap .date i{font-size: 2.5em;}
.header .sitemap .date p {
    display: none;
}	
.header .sitemap button{
    padding: 0;
    border: 0 none;
    background: none;
    cursor: pointer;
    /* vertical-align: unset; */
    height: unset;
    display: flex;
    align-items: center;
    font-size: 1.6em;
}

.header .sitemap button i {
    font-size: 1.4em;
    transition: all 1s;
    transform: rotate(0);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--font-color-nav);
}

.header > div button i{}

.header > div i {color:#121212;}

.header > div button i.ri-close-fill{
    transform: rotate(180deg);
}

#gnb.none {}
.nav_float * :hover {transition:all 0.4s;}
.nav_float {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 0;
    width: 100%;
    margin-top: 480px;
    border-bottom: 1px solid #ddd;
}
.nav_float ul{
    display: flex;
    height: 70px;
    margin-top: 100%;
}
.nav_float ul li{
    width: 170px;
    height: 70px;
    display: flex;
    /* background-color: white; */
    border-right: 1px solid #e4e4e4;
    /* border-bottom: 1px solid #e4e4e4; */
    margin-bottom: -85px;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    /* visibility: hidden; */
    position: relative;
}
.nav_float ul li:nth-of-type(1){
    border-left: 1px solid #e4e4e4;
    /* border-radius: 1em 0 0em 1em; */
}
.nav_float ul li:nth-last-of-type(1){
    /* border-radius: 0 1em 1em 0; */
}
.nav_float ul li:after {content:"";border-bottom:4px solid var(--color-main);width:0;bottom: 0;left: 50%;position: absolute;display: block;overflow: hidden;-webkit-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;transform:translateX(-50%);}
.nav_float ul li a {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 1em;
    font-weight: 500;
    font-size: 1.1em;
    background-repeat: no-repeat;
    background-position: 50% 30%;
}
.nav_float ul li.on:after, .nav_float ul li:hover::after{width:100%;-webkit-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;}
.nav_float ul li.on a, .nav_float ul li a:hover {color:var(--color-main);}

.icon_10 ul li.on a,.icon_10 ul li a:hover {}
.icon_20 ul li.on a,.icon_20 ul li a:hover {
    background-color: #0b98d3;
}
.icon_30 ul li.on a,.icon_30 ul li a:hover {background-color: #e98612;}
.icon_50 ul li.on a,.icon_50 ul li a:hover {background-color: #048d4c;}

.icon_50 ul li:nth-of-type(1) a{background-image:url(/img/icon/50_icon1.png);}
.icon_50 ul li.on:nth-of-type(1) a,.icon_50 ul li:nth-of-type(1) a:hover{background-image:url(/img/icon/50_icon1_over.png);}
.icon_50 ul li:nth-of-type(2) a{background-image:url(/img/icon/50_icon2.png);}
.icon_50 ul li.on:nth-of-type(2) a,.icon_50 ul li:nth-of-type(2) a:hover{background-image:url(/img/icon/50_icon2_over.png);}

.icon_50 ul li:nth-of-type(3) a{background-image:url(/img/icon/50_icon3.png);}
.icon_50 ul li.on:nth-of-type(3) a,.icon_50 ul li:nth-of-type(3) a:hover{background-image:url(/img/icon/50_icon3_over.png);}
.icon_50 ul li:nth-of-type(4) a{background-image:url(/img/icon/50_icon4.png);}
.icon_50 ul li.on:nth-of-type(4) a,.icon_50 ul li:nth-of-type(4) a:hover{background-image:url(/img/icon/50_icon4_over.png);}
.icon_50 ul li:nth-of-type(5) a{background-image:url(/img/icon/50_icon5.png);}
.icon_50 ul li.on:nth-of-type(5) a,.icon_50 ul li:nth-of-type(5) a:hover{background-image:url(/img/icon/50_icon5_over.png);}
.icon_50 ul li:nth-of-type(6) a{background-image:url(/img/icon/50_icon6.png);}
.icon_50 ul li.on:nth-of-type(6) a,.icon_50 ul li:nth-of-type(6) a:hover{background-image:url(/img/icon/50_icon6_over.png);}
.icon_50 ul li:nth-of-type(7) a{background-image:url(/img/icon/50_icon7.png);}
.icon_50 ul li.on:nth-of-type(7) a,.icon_50 ul li:nth-of-type(7) a:hover{background-image:url(/img/icon/50_icon7_over.png);}
.icon_50 ul li:nth-of-type(8) a{background-image:url(/img/icon/50_icon8.png);}
.icon_50 ul li.on:nth-of-type(8) a,.icon_50 ul li:nth-of-type(8) a:hover{background-image:url(/img/icon/50_icon8_over.png);}
}
@media screen and (max-width: 1000px) {
	.nav_float {
    /* margin-top: 87px; */
    /* border-bottom: 0; */
    display: none;
}
	.nav_float ul{
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    justify-content: center;
}
	.nav_float ul li{
    width: 33.333%;
    height: auto;
    margin-bottom: 0;
    border-radius: 0;
    border-bottom: 1px solid #ccc;
}
	.nav_float ul li:nth-last-of-type(1), .nav_float ul li:nth-of-type(1){
    }
	.nav_float ul li:nth-last-of-type(1), .nav_float ul li:nth-of-type(3n) {margin-right:0;}
	.nav_float ul li:nth-of-type(1){border-left:0;}
	.nav_float ul li:nth-last-of-type(1){}
	.nav_float ul li a {
    text-align: center;
    font-size: 1em;
    padding: .5em 0;
 }
	.icon_20 ul li:nth-child(5) {}
	.icon_20 ul li:nth-child(5) a {padding:0;}
	.icon_50 ul li:last-child{width:42%;}
	#gnb.fixed {padding-left:.5em;padding-right:.5em;height: 9vh;}
	
}


.global_search {
    display: none;
    position: fixed;
    top: 6em;
    z-index: 1111111111111111;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,.8);
}
.global_search > div{position: fixed;top: 6em;width: 100%;height: 32vh;background: rgba(255,255,255,1);}
.global_search > div >div{
    display: flex;
    width: 26em;
    flex-direction: column;
    align-items: center;
    /* margin: 0 auto; */
    position: absolute;
    top: 40%;
    left: 50%;
    margin-left: -13em;
    border: 1px solid gray;
    background: white;
    padding: 1em;
}
.global_search > div > div h3{
    font-size: 1.4em;
    font-weight: 700;
    color: #d36868;
}
.global_search > div > div ul{
    display: flex;
    margin-top: 1em;
}
.global_search > div > div ul li{
}
.global_search > div > div ul li input{}
.global_search > div > div ul li input[type=text]{
    /* height: 3.5em; */
    padding: .5em;
    font-size: 1.2em;
    background: #f3f3f3;
    border: 1px solid #d8d8d8;
}
.global_search > div > div ul li input[type=submit]{
    padding: .7em 2em;
}

.global_search > div > div img {
    position: absolute;
    bottom: -8em;
    cursor: pointer;
}

.sub_content_s, .sub_all_wrab {
    visibility: hidden;
}

@media screen and (max-width: 1000px) {
	.global_search {}
	.global_search div{}
	.global_search div h3{}
	.global_search div ul{}
	.global_search div ul li{}
	.global_search div ul li input{}
	.global_search div ul li input[type=text]{}
	.global_search div ul li input[type=submit]{}
	
}
