/*** # 헤더 CSS ***/

#Header{
	position: absolute;
	left: 0;
	top: 0;
	z-index: 100;
	width:100%;
}
.header-line{
	width: 100%;
	height: 190px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	left: 0;
	top: 0;
	transition: 0.3s;
}
.header-line.bg {
	background-color: #acce9a;
}
.header-lineIn{
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1727px;
	width: 100%;
	box-sizing: border-box;
}
.header-Logo{
	display: table;
	margin: 0;
}
.header-lineMenu-list{
	display: flex;
	align-items: center;
}
.header-lineMenu{
	color: var(--white);
	padding: 0 26px;
}
.header-lineMenu:last-child {
	padding-right: 0; /* 마지막 요소의 우측 패딩 제거 */
}

.header-lineMenu > a{
	font-size: 24px;
	font-weight: 500;
	line-height: 150%;
	display: table;
}
.header-lineMenu > a.header-homeMenu {
	color: var(--white);
}
.header-lineMenu > a > .header-lineMenu-1dep-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 153px;
	height: 55px;
	background-color: var(--white);
	border-radius: 30px;
	color: var(--theme-color1);
}


/* Mo Header Layer */
#HeaderMenuLayer{
	/* position:fixed; */
	position: absolute;
	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: #acce9a;
	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%;
	border-bottom: 1px solid #c9c9c9;
}
.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;
	font-weight: 500;
	color: var(--white);
}
a.header-homeMenu {
	color: var(--white);
}

@media screen and (max-width:1800px){
	.header-lineIn{
		max-width:95%;
	}
}

@media screen and (max-width:1700px){
	
}

@media screen and (max-width:1600px){
	.header-Logo {
		width:90%;
	}
	.header-lineMenu > a > .header-lineMenu-1dep-btn {
		width: 140px;
		height: 50px;
	}
	.header-lineMenu > a {
		font-size: 22px;
	}
	.header-lineMenu {
		padding: 0px 20px;
	}
}

@media screen and (max-width:1400px){
	.header-logoWrap {
		width:25%;
	}
	.header-Logo {
		width:100%;
	}
	.header-lineMenu > a > .header-lineMenu-1dep-btn {
		width: 120px;
		height: 40px;
	}
	.header-lineMenu > a {
		font-size: 20px;
	}
	.header-lineMenu {
		padding: 0px 18px;
	}
}

@media screen and (max-width:1200px){
	.header-logoWrap {
		width:20%;
	}
	.header-Logo {
		width:100%;
	}
	.header-lineMenu > a > .header-lineMenu-1dep-btn {
		width: 9vw;
		height: 3vw;
	}
	.header-lineMenu > a {
		font-size: 1.7vw;
	}
	.header-lineMenu {
		padding: 0px 1.4vw;
	}
	.header-line {
		height: 100px;
	}
}

/* MOBILE */
@media screen and (max-width:768px){
	.header-lineIn{
		padding:0 15px;
		max-width:700px;
	}
	.header-line {
		height: 72px;
	}
	.header-menuIcon{
		display: table;
		margin: 0 auto;
		font-size: 32px;
		cursor: pointer;
		color: var(--point-green);
	}
	#HeaderMenuLayer {
		top: 70px;
	}
	.header-Logo {
		width: 200px;
	}
}

@media screen and (max-width:320px){
	#Header button.store-btn{
		font-size: 12px;
	}
}