@charset "utf-8";

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

li {
	list-style: none;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
}

body {
	min-height: 100vh;
}

#guide-nav {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	margin: 15px;
	transform: translate(calc(-100% - 15px), 0);
	transition: all 0.1s ease-in-out;
}

#guide-nav.on {
	transform: none;
}

#guide-nav .inner-guide-nav {
	padding: 25px 20px;
	width: 240px;
	max-height: calc(100vh - 30px);
	border-radius: 0.8rem;
	background-color: rgba(31, 29, 43, 0.9);
	font-family: "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
	line-height: 1.5;
	letter-spacing: -0.0rem;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	box-sizing: border-box;
	overflow-y: auto;
}

#guide-nav .sidebar-title {
	padding: 0 10px 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.31);
	font-size: 2.0rem;
	color: #fff;
}

#guide-nav .guide-list {
	font-size: 1.4rem;
}

#guide-nav .guide-list ul {
	display: none;
}

#guide-nav .guide-list > li {
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.31);
}

#guide-nav ul ul li a {
	display: flex;
	align-items: center;
	padding: 10px;
	border-radius: 6px;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
	transition: all 0.1s;
}

#guide-nav ul ul li a:hover {
	background: rgba(255, 255, 255, 0.35);
}

#guide-nav ul ul li a.active {
	position: relative;
	font-weight: 700;
}

#guide-nav ul ul li a.active:before {
	content: '';
	display: block;
	position: absolute;
	top: 7px;
	left: 3px;
	width: 4px;
	height: 4px;
	border-radius: 100%;
	background: #f94848;
}

#guide-nav ul ul ul li {
	padding-left: 28px;
}

#guide-nav .guide-list > li > a {
	display: flex;
	align-items: center;
	padding: 10px;
	width: 100%;
	font-size: 1.3rem;
	color: rgba(255, 255, 255, 0.5);
	font-weight: 700;
	letter-spacing: 0.1rem;
}

#guide-nav .guide-list li.collapse > a span {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	width: 100%;
}

#guide-nav .guide-list li.collapse > a span:after {
	font: normal normal normal 14px/1 FontAwesome;
	content: "\f107";
	transition: all 0.3s;
}

#guide-nav .guide-list li.collapse.on > a span:after {
	transform: rotate(180deg);
}

#guide-nav li a i {
	display: flex;
	align-items: center;
	margin: 0 10px 0 0;
	font-size: 1.1rem;
	color: #fff;
}

#guide-nav .btn-guide-nav {
	position: absolute;
	top: 0;
	left: calc(100% + 15px);
	width: 50px;
	height: 50px;
	border: 1px solid #eee;
	border-radius: 50%;
	background: #fff url(/_res/team2/team2/img/common/ico-apple.png) no-repeat center center/24px;
	font-weight: 700;
	transition: 0.3s;
	text-indent: -9999px;
	cursor: pointer;
	-moz-appearance: none;
	appearance: none;
}

#guide-nav .btn-guide-nav:hover {
	transform: scale(1.2);
}

@keyframes ring {
	0% {
		width: 30px;
		height: 30px;
		opacity: 1;
	}

	100% {
		width: 300px;
		height: 300px;
		opacity: 0;
	}
}

::-webkit-scrollbar {
	width: 6px;
	border-radius: 10px;
}

::-webkit-scrollbar-thumb {
	background: rgba(1, 2, 3, 0.4);
	border-radius: 10px;
}

@media screen and (max-width: 768px) {
	#guide-nav .btn-guide-nav {
		opacity: 0.7;
	}
}