﻿.lnb_select:not(:last-child) {
	display: none;
}
#wrap_lnb .container {
	display: flex;
	align-items: center;
	padding-top: 2.6rem;
}
#wrap_lnb .lnb_home {
	padding-right: 1.6rem;
	display: flex;
}
#wrap_lnb .lnb_home img {
	width: 1.3rem;
}
#wrap_lnb h3 {
	color: #a5a5a5;
	font-size: 1.8rem;
	font-weight: 500;
	padding: 0 1.6rem;
	position: relative;
}
#wrap_lnb h3::before {
	content: '';
	position: absolute;
	top: 0.2rem;
	left: 0;
	width: 1px;
	height: 1.3rem;
	background-color: #a5a5a5;
}
#wrap_lnb h3::after {
	content: '';
	position: absolute;
	top: 0.2rem;
	right: 0;
	width: 1px;
	height: 1.3rem;
	background-color: #a5a5a5;
}
.lnb_select {
	position: relative;
	min-width: 11.6rem;
}
.lnb_select_tit {
	padding-left: 1.6rem;
	padding-right: 3.6rem;
	width: 100%;
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--pc1);
	background: none;
	border: 0;
	position: relative;
	text-align: left;
}
.lnb_select_tit::after {
    content: '';
    position: absolute;
    top: 0.4rem;
    right: 1.6rem;
    border-left: 0.2rem solid var(--pc1);
    border-bottom: 0.2rem solid var(--pc1);
    width: 0.9rem;
    height: 0.9rem;
    transform: rotate(-45deg);
}
.lnb_select_list {
    position: absolute;
    top: 3rem;
    min-width: 100%;
    background-color: #151515;
    z-index: 1;
}
.lnb_select_list a {
    display: flex;
    align-items: center;
    height: 5.8rem;
    padding: 0 1.6rem;
    font-size: 1.7rem;
    color: #fff;
	white-space: nowrap;
}
.lnb_select_list .on a {
    background-color: var(--pc1);
    font-weight: 500;
}

/* 미디어쿼리 */
@media screen and (max-width: 767px){
	#wrap_lnb {
		border-bottom: 1px solid #ddd;
	}
	#wrap_lnb .container {
		position: relative;
		height: 5.8rem;
		padding-top: 0;
	}
	#wrap_lnb .lnb_home, #wrap_lnb h3 {
		display: none;
	}
	.lnb_select {
		position: static;
		width: 100%;
	}
	.lnb_select_tit {
		padding-left: 0;
	}
	.lnb_select_tit::after {
		right: 0;
	}
	.lnb_select_list {
		top: 5.8rem;
		width: 100%;
		left: 0;
	}
}