/*** # 헤더 CSS ***/

#Header{
	position: fixed;
	left: 0;
	top: 0;
	z-index: 100;
}
.header-line{
	width: 100%;
	height: 87px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	position: fixed;
	left: 0;
	top: 0;
	background-color: transparent;
	border-bottom: 1px solid rgba(10, 37, 64, 0.1);
	transition: 0.3s;
}
.header-line.white{
	background-color: var(--white);
}
.header-lineIn{
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1600px;
	width: 100%;
	box-sizing: border-box;
}
.header-Logo{
	display: table;
	margin: 0;
	width: 64px;
}
.header-lineMenu-list{
	display: flex;
	align-items: center;
}
.header-lineMenu{
	margin: 0 12px;
}
.header-lineMenu > a{
	font-size: 14px;
	font-weight: 500;
	line-height: 150%;
}
.header-storeBtn-wrap{
	display: flex;
	margin-left: 12px;
}
button.store-btn{
	background-color: var(--dark-blue);
	color: var(--white);
	border: none;
	border-radius: 4px;
	padding: 11px 16px;
	display: flex;
	align-items: center;
	height: 32px;
	font-size: 14px;
	font-weight: bold;
	margin-right: 8px;
}
#Header .header-storeBtn-wrap > a:last-child button.store-btn{
	margin-right: 0;
}
#Header button.store-btn.google-play .store-btn-icon{
	width: 15px;
	margin-right: 3px;
}
#Header button.store-btn.app-store .store-btn-icon{
	width: 11px;
	margin-right: 3px;
}
.header-menuIcon-wrap{
}
.header-menuIcon-wrap > .header-menuIcon{
	position: absolute;
	right: 15px;
	top: 50%;
	transform:translateY(-50%);
}

/* Mo Header Layer */
#HeaderMenuLayer{
	position:fixed;
	width:100vw;
	z-index:500;
	left: 0;
	top: 87px;
}
#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(--white);
	width:100%;
}
.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 15px;
	width: 100%;
	box-sizing: border-box;
	display: block;
}
.header-menu-layer-btn-wrap{
	padding:15px;
	display:flex;
	justify-content: center;
}

@media screen and (max-width:1700px){
	.header-lineIn{
		max-width:1500px;
	}
}

@media screen and (max-width:1600px){
	.header-lineIn{
		width:100%;
		padding:0 80px;
		box-sizing:border-box;
	}
}

@media screen and (max-width:1200px){
	.header-lineIn{
		padding:0 30px;
	}
}

/* MOBILE */
@media screen and (max-width:768px){
	.header-lineIn{
		padding:0 15px;
		max-width:700px;
	}
	.header-menuIcon{
		display: table;
		margin: 0 auto;
		width: 24px;
		cursor: pointer;
	}
}

@media screen and (max-width:320px){
	#Header button.store-btn{
		font-size: 12px;
	}
}