﻿#lnb {
	position: sticky;
	top: 23rem;
	padding-right: 4rem;
	width: 19%;
	/* min-width: 18rem; */
	flex-shrink: 0;
}
.lnb {
	display: inline-block;
}
.lnb_depth1:not(:first-child) {
	margin-top: 3.2rem;
}
.lnb_depth1 a {
	color: #fff;
	opacity: 0.4;
	white-space: nowrap;
	font-weight: 300;
	position: relative;
	transition: opacity 0.6s ease, color 0.6s ease, font-weight 0.1s linear;
}
.lnb_depth1 a::before {
	content: '';
    position: absolute;
    top: 0.3rem;
    right: -1.1rem;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
	opacity: 0;
    background-color: var(--pc2);
    transition: opacity 0.6s ease;
}
.lnb_depth1 a.on::before {
	opacity: 1;
}
.lnb_depth1 a.on {
	opacity: 1;
	color: var(--pc2);
	font-weight: 600;
}
.lnb_select {
	display: none;
	flex-direction: column;
	align-items: flex-start;
}
.lnb_select_tit {
	border: 0;
    font-size: 2rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    font-family: var(--ff1);
    position: relative;
    text-align: left;
    background-color: transparent;
}
.lnb_select_tit::after {
	position: absolute;
    content: '';
    top: 0.8rem;
    transform: rotate(90deg);
    width: 1rem;
    height: 1.3rem;
    right: -2.2rem;
    border: 0;
    opacity: 0.6;
    background: url('/images/contents/arrow1.png') no-repeat center / contain;
}
.lnb_select_list {
	margin-top: 2.7rem;
	margin-top: 1.2rem;
    padding-left: 1rem;
}
.lnb_select_list li:not(:first-child) {
    margin-top: 1.4rem;
}
.lnb_select_list a {
    font-size: 1.7rem;
    color: #fff;
    opacity: 0.6;
    font-weight: 200;
    letter-spacing: 0.02rem;
    font-family: var(--ff1);
}

/* 미디어쿼리 */
@media screen and (max-width: 1023px) {
	#lnb {
		width: 18rem;
		padding-right: 0;
	}
	.lnb_depth1:not(:first-child) {
		margin-top: 2.4rem;
	}
	.lnb_depth1 a {
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 767px) {
	#lnb {
		position: static;
		width: 100%;
		padding-right: 0;
	}
	.lnb {
		display: none;
	}
	.lnb_select {
		display: flex;
	}
}