/*header*/
#header{
	position:fixed;
	z-index:200;
	width:100%;
	background: transparent;
	min-height: 72px;
	left: 0; top: 0;
	transition-duration: 0.3s;
	border-bottom: 1px solid #D9D9D9;
}
#header .pc_only{}
#header .mobile_only{display:none !important;}

#header h1{
	position:absolute;
	top:18px;
	left:40px;
	z-index:30;
}
#header h1 > a{
	display:block;
	width: 131px; height: 32px;
	background:url(/html/_img/comm/logo_wh.svg) no-repeat center / cover;
	transition-duration: 0.3s;
}

#header .gnb_side{
	position:absolute;
	top:2.3rem;
	right:3rem;
	z-index:30;
}
#header .gnb_side.open_nav_btn{
	display: none;
}
#header .gnb_side > a,
#header .gnb_side > .lan{
	float:left;
	padding:0 2rem;
	position:relative;
	color:#555;
	font-size:1.4rem;
}
#header .gnb_side > a:after,
#header .gnb_side > .lan::after{
	content:"";
	position:absolute;
	left:0;
	top:50%;
	height:1.2rem;
	border-left:1px solid #ddd;
	margin-top:-0.6rem;
}
#header .gnb_side > a:first-child:after,
#header .gnb_side > .lan:first-child:after{
	display:none;
}
#header .gnb_side .lan,
#header .gnb_side a.search{
	font-size:2rem;
	margin-top:-.4rem
}
#header .gnb_side .lan a{
	color:inherit
}
#header .gnb_side .lan > p{
	position:absolute;
	width:80px;
	left:50%;
	margin-left:-40px;
	background:#000;
	padding:6px 0;
	display:none;
}
#header .gnb_side .lan > p > a{
	font-size:1.4rem;
	color:#fff;
	display:block;
	text-align:center;
}

/*search*/
#top_search{
	position:fixed;
	z-index:90;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,.6);
	display:none;
}
#top_search div{
	position:absolute;
	width:90%;
	max-width:600px;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%)
}
#top_search div input{
	border:0;
	border-radius:0;
	height:60px;
	font-size:2.2rem;
	padding:0px 2rem;
}
#top_search div button{
	position:absolute;
	right:1rem;
	top:50%;
	transform:translatey(-50%);
	font-size:3rem;
	background:none;
	border:0;
}
#top_search .search_close{
	position:absolute;
	top:35%;
	left:50%;
	transform:translatex(-50%);
	color:#fff;
	font-size:4rem;
}

/*gnb*/
.gnb{
	text-align:center;
	z-index:15;
	position:relative;
	left:0;
	top:0;
	width:100%;
}
.gnb > .gnb_container{
	display:inline-block;
	vertical-align:top;
	width: 100%;
}
.gnb > .gnb_container > ul{
	display: flex;
	justify-content: right;
	box-sizing: border-box;
	padding-right: 40px;
}
.gnb > .gnb_container > ul > li{

}
.gnb > .gnb_container > ul > li > a{
	padding:21px 0;
	display:block;
	font-size:2rem;
	font-weight: 500;
	color:#FFF;
	text-align: center;
	width: 263px;
	position: relative;
	
}
.gnb > .gnb_container > ul > li > a span{
	display: inline-block;
	position: relative;
}
.gnb > .gnb_container > ul > li > ul{
	position:relative;
	top:-1rem;
	display:none;
}
.gnb > .gnb_container > ul > li > ul > li{}
.gnb > .gnb_container > ul > li > ul > li:last-child{
	padding-bottom:2rem;
}
.gnb > .gnb_container > ul > li > ul > li > a{
	display:block;
	padding:1rem;
	font-size:1.6rem;
	color:#222;
	font-weight:300;
}








@media screen and (max-width: 1280px){
	.gnb > .gnb_container > ul > li > a{width: 200px;}
}
@media screen and (max-width: 1024px){
	#header h1 > a{background:url(/html/_img/comm/logo.svg) no-repeat center / cover;}
	.gnb > .gnb_container > ul > li > a{width: 140px; color: #000;}
	#header div.x,
	#header div.y,
	#header div.z{background-color: #ca4b40;}
}


@media(max-width:768px){
	#header .pc_only{display:none !important;}
	#header .mobile_only{display:block !important;}
}
@media(min-width:768px){
	.gnb{
		display:block !important;
	}
	div.circle.expand{
		display:none !important;
	}

}

/*모바일 메뉴*/
div.burger {
	height: 38px;
	width: 38px;
	position: relative;
	cursor: pointer;
	z-index:10;
	display: flex;
	justify-content: center;
}
div.x,
div.y,
div.z {
	position: absolute; margin: auto;
	top: 8px;
	background: #FFF;
	border-radius:2px;
	-webkit-transition: all 200ms ease-out;
	   -moz-transition: all 200ms ease-out;
		-ms-transition: all 200ms ease-out;
		 -o-transition: all 200ms ease-out;
			transition: all 200ms ease-out;
}
div.x, div.y, div.z { height: 2px; width: 30px; }
div.y{top: 18px;}
div.z{top: 28px;}
div.coll{
	top: 15px;
	background:#fff;
	-webkit-transition: all 70ms ease-out;
	   -moz-transition: all 70ms ease-out;
		-ms-transition: all 70ms ease-out;
		 -o-transition: all 70ms ease-out;
			transition: all 70ms ease-out;
}


div.rotate30{
	-ms-transform: rotate(30deg);
	-webkit-transform: rotate(30deg);
	transform: rotate(30deg);
	-webkit-transition: all 50ms ease-out;
	   -moz-transition: all 50ms ease-out;
		-ms-transition: all 50ms ease-out;
		 -o-transition: all 50ms ease-out;
			transition: all 50ms ease-out;
}
div.rotate150{
	-ms-transform: rotate(150deg);
	-webkit-transform: rotate(150deg);
	transform: rotate(150deg);
	-webkit-transition: all 50ms ease-out;
	   -moz-transition: all 50ms ease-out;
		-ms-transition: all 50ms ease-out;
		 -o-transition: all 50ms ease-out;
			transition: all 50ms ease-out;
}

div.rotate45{
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all 100ms ease-out;
	   -moz-transition: all 100ms ease-out;
		-ms-transition: all 100ms ease-out;
		 -o-transition: all 100ms ease-out;
			transition: all 100ms ease-out;
}
div.rotate135{
	-ms-transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	-webkit-transition: all 100ms ease-out;
	   -moz-transition: all 100ms ease-out;
		-ms-transition: all 100ms ease-out;
		 -o-transition: all 100ms ease-out;
			transition: all 100ms ease-out;
}
div.circle{
	border-radius: 50%;
	width: 0px;
	height: 0px;
	position:absolute;
	top: 36px;
	right: 36px;
	background:#FFF7F0;
	opacity:1;
	z-index:10;
	-webkit-transition: all 300ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	   -moz-transition: all 300ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	    -ms-transition: all 300ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	     -o-transition: all 300ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	        transition: all 300ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
}
div.circle.expand{
	width:3000px;
	height:3000px;
	top: -1500px;
	right: -1500px;
	-webkit-transition: all 1400ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	   -moz-transition: all 1400ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	    -ms-transition: all 1400ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	     -o-transition: all 1400ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	        transition: all 1400ms cubic-bezier(0.000, 0.995, 0.990, 1.000);

}

/* 서브헤더 */
#header.sub_header,
#header.header_scroll{background-color: #FFF;}
#header.sub_header h1 > a,
#header.header_scroll h1 > a,
#header.open h1 > a{background:url(/html/_img/comm/logo.svg) no-repeat center / cover;}
#header.header_scroll .gnb > .gnb_container > ul > li > a,
#header.sub_header .gnb > .gnb_container > ul > li > a{color: #1e1e1e;}
#header.sub_header .gnb > .gnb_container > ul > li.opened > a span::after{content:''; display:block; position: absolute; right: -8px; top: 3px; width: 6px; height: 6px; border-radius: 6px; background-color: #CA4B40;}

#header.sub_header div.x,
#header.sub_header div.y,
#header.sub_header div.z,
#header.header_scroll div.x,
#header.header_scroll div.y,
#header.header_scroll div.z{background-color: #ca4b40;}

/*#header.open h1 > a{background: url(/html/_img/comm/logo_wh.png) no-repeat center / cover;}*/
#header.open div.x,
#header.open div.y,
#header.open div.z{background-color: #ca4b40;}



@media(max-width:768px){
	#header{min-height: 60px;}
	#header h1{top: 12px; left: 20px;}

	#header .gnb_side{
		position:absolute;
		top:10px;
		right:20px;
		z-index:30;
	}
	.gnb{
		visibility:hidden;
		height:0;
		overflow:hidden;
	}
	.gnb.open{
		visibility:visible;
		height:auto;
	}
	.gnb > .gnb_container > ul{display: block; padding-right: 0;}
	.gnb > .gnb_container >  ul >  li {
		float:none;
		width:100%;
		margin:0;
		opacity:0;
		-webkit-transition: all 500ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
		-moz-transition: all 500ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
		-ms-transition: all 500ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
		-o-transition: all 500ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
		transition: all 500ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	}
	.gnb > .gnb_container >  ul > li.animate{
		opacity:1;
		-webkit-transition: all 500ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
		-moz-transition: all 500ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
		-ms-transition: all 500ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
		-o-transition: all 500ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
		transition: all 500ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	}
	.gnb > .gnb_container > ul > li.animate:nth-of-type(1){
		margin-top:72px;
		transition-delay: 0.5s;
	}
	.gnb > .gnb_container >  ul >  li.animate:nth-of-type(2){
		transition-delay: 0.55s;
	}
	.gnb > .gnb_container >  ul >  li.animate:nth-of-type(3){
		transition-delay: 0.60s;
	}
	.gnb > .gnb_container >  ul >  li.animate:nth-of-type(4){
		transition-delay: 0.65s;
	}
	.gnb > .gnb_container >  ul >  li.animate:nth-of-type(5){
		transition-delay: 0.70s;
	}
	.gnb > .gnb_container >  ul >  li.animate:nth-of-type(6){
		transition-delay: 0.75s;
	}
	.gnb > .gnb_container >  ul >  li > a{
		color:#fff;
		font-size:2.6rem;
		width: 100%;
	}
	.gnb > .gnb_container > ul > li > ul > li > a{
		color:#fff;
		font-size:2rem
	}



	#header .gnb_side.open_nav_btn{display: block;}
	#header.header_scroll .gnb > .gnb_container > ul > li > a,
	#header.sub_header .gnb > .gnb_container > ul > li > a{color: #FFF;}

	#header .gnb.open > .gnb_container > ul > li > a{color: #1e1e1e; font-weight: 500;}
	.gnb > .gnb_container > ul > li > a{font-size: 16px; padding: 30.5px 0;}
}







