/*** # 헤더 CSS ***/
#Header{
	position: fixed;
	left: 0;
	top: 0;
	z-index: 100;
	color: var(--white);
	
}
.header-line{
	width: 100%;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	position: fixed;
	left: 0;
	top: 0;
	background-color: var(--point-red);
	transition: 0.3s;
}
.header-lineIn{
	display: flex;
	align-items: center;
	/* justify-content: space-between; */
	max-width: 1603px;
	width: 90%;
	box-sizing: border-box;
	justify-content:flex-end;
}
.header-Logo{
	display: table;
	margin: 0;
	width: 200px;
	margin-right: 156px;
}
.header-lineMenu-list{
	display: flex;
	align-items: center;
}
.header-lineMenu{
	position: relative;
}
.header-lineMenu > a{
	font-size: 20px;
	font-weight: 700;
	line-height: 150%;
	display: table;
	padding: 0 50px;
	position: relative;
}


/* Mo Header Layer */
#HeaderMenuLayer{
	position:fixed;
	width:100vw;
	z-index:500;
	left: 0;
	top: 60px;
	
}
#HeaderMenuLayer > .header-menu-bg{
	background-color:rgba(0,0,0,0.5);
	width:100%;
	height:100%;
	position:absolute;
}
.header-menu-layer-wrap{
	background-color:var(--point-red);
	width:100%;
	box-shadow: 0 4px 4px 0 #00000040;
	max-height: calc(100vh - 60px);
	overflow-y: auto;
}
.header-menu-layer-top{
	padding:15px;
	margin-bottom:15px;
	border-bottom:1px solid rgba(10, 37, 64, 0.1);
	display: flex;
	align-items: center;
	width: 100%;
	box-sizing: border-box;
	height: 87px;
}
.header-menu-layer-content{
	display:flex;
	flex-wrap:wrap;
	padding:0;
	overflow-y:auto;
}
.header-menu-layer-content > div{
	width: 100%;
}
.header-menu-layer-list-wrap > .menu{
	/* padding:20px 15px; */
}
.header-menu-layer-list-wrap > .menu > .depth1{
	font-weight:400;
	font-size:15px;
}
.header-menu-layer-list-wrap > .menu > .depth1 a{
	padding:20px 5%;
	width: 100%;
	box-sizing: border-box;
	display: block;
	font-weight: 500;
}
a.header-homeMenu {
	color: var(--dark-blue);
	font-weight: bold;
}

@media screen and (max-width:1700px){
	.header-lineIn {
		justify-content: space-between;
	}
	.header-Logo {
		margin-right: 0;
	}
}

@media screen and (max-width:1600px){
	.header-lineMenu > a {
		padding: 0 30px;
	}
}

@media screen and (max-width:1400px){
	.header-lineMenu > a {
		font-size: 18px;
	}
}

@media screen and (max-width:1200px){
	.header-lineMenu > a {
		padding: 0 20px;
		font-size: 16px;
	}
	.header-Logo {
		width: 180px;
	}
}

@media screen and (max-width:970px){
	.header-Logo {
		width: 150px;
	}
	.header-lineMenu > a {
		padding: 0 10px;
		font-size: 15px;
	}
}

/* MOBILE */
@media screen and (max-width:768px){
	.header-line {
		height: 60px;
	}
	.header-lineIn{
		max-width:700px;
	}
	.header-menuIcon{
		display: table;
		margin: 0 auto;
		width: 24px;
		cursor: pointer;
	}
	.header-Logo {
		width: 120px;
	}
}

@media screen and (max-width:320px){

}