/*서브-왼쪽메뉴*/

#depth_menu {
	width: 100%;
	z-index: 1;
	transition: all 0.5s;
	max-width: 1400px;
	margin: 0 auto;
}

#depth_menu dl {
	margin: 0;
	padding: 0;
	display: inline-block;
	display: flex;
	flex-wrap: wrap;
/*	overflow-x: scroll;*/
}


/*#depth_menu dd:last-child{border-right:0px}
#depth_menu dd{ float:left; color:#fff; line-height:50px; display:inline; height:60px;}
#depth_menu dd a{ color:#333;  font-size:1.25em; display: block; line-height: 60px; font-weight:500; padding:0 25px; transition:all 0.4s;}
#depth_menu dd a:hover{color:#2e73a5; text-decoration:none; height:50px; transition:all 0.4s;}
#depth_menu dd a.current{color:#2e73a5; height:60px; font-weight:500; border-bottom:4px solid #2e73a5; width:100%}*/
#depth_menu dd {
	color: #333;
	line-height: 44px;
	min-width: 150px;
	display: inline-block;
	height: 65px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 20px 10px;
}
#depth_menu dd::after{
	content: '';
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 1px;
	height: 30px;
	background: #eee;
	transform: translateY(-50%);
}
#depth_menu dd.home,
#depth_menu dd.home a:hover{
	background: #fff;
	min-width: 50px;
/*	border: none;*/
	border-right: 0;
}
#depth_menu dd.home::after{
	display: none;
}

#depth_menu dd a {
	width: 100%;
	color: #333;
	font-size: 16px;
	font-weight: 400;
	transition: all 0.4s;
	padding: 0 10px;
}
#depth_menu dd.home a{
	color: #007dc6
}

#depth_menu dd a:hover,
#depth_menu dd a.current{
	color: #fff;
	background: #007dc6;
	line-height: 44px;
	text-decoration: none;
	transition: all 0.4s;
}

@media (max-width:1024px) {
	#depth_menu {
		position: absolute;
		transition: all 0.5s;
		overflow-x: scroll;
		bottom: 0px;
		width: 100%;
		height: 40px;
		background: #fff
	}

	#depth_menu dl {
		flex-wrap: nowrap;
		white-space: nowrap
	}

	#depth_menu dd {
		white-space: nowrap;
		float: none;
		display: inline-block;
	}

	#depth_menu dd:last-child {
		border-right: 0px
	}

	#depth_menu dd {
		float: none;
		color: #fff;
		line-height: 20px;
		display: inline-block;
		height: 40px;
		min-width: auto;
		padding: 10px;
	}

	#depth_menu dd a {
		color: #666;
		font-size: 1.02em;
		display: block;
		line-height: 18px;
		font-weight: 500;
		padding: 0 15px;
		transition: all 0.4s;
	}

	#depth_menu dd a:active,
	#depth_menu dd a:hover{
		color: #273169;
		text-decoration: none;
		height: 40px;
		transition: all 0.4s;
	}

	#depth_menu dd a.current {
		height: 19px;
		line-height: 19px;
		font-weight: 500;
		width: 100%;
		background: transparent;
		color: #007dc6;
	}

	/*#depth_menu{ display:none}*/
}

@media (max-width:767px) {
	#depth_menu dd a {
		padding: 0 10px;
		transition: all 0.4s;
	}
}
