@charset 'utf-8';

#page_wrap {
	width: 100vw;
	height: 100%;
}

/* GNB */
#header {
	position: fixed;
	z-index: 10;
}

#header .nav-bar {
	position: absolute;
	width: 50px;
	height: 100vh;
	background: #00A0F0;
}

#header .nav-bar a {
	display: block;
	position: relative;
	top: 25px;
	left: 0;
	width: 100%;
	height: 30px;
	background: url(../img/menu_btn.png) no-repeat center;
	cursor: pointer;
}

#header .nav-bar a.on {
	background: url(../img/close_btn.png) no-repeat center;
}

.gnb {
	/*position: fixed; left: 0; top: 0; width: 210px; height: 100vh; background: #dc042a; border-left: 1px solid #ce0024; box-sizing: border-box;*/
	padding: 15px 20px;
}

.gnb ul li {
	color: #fff;
	font-weight: 700;
	line-height: 3em;
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
	text-indent: 10px;
}

.gnb ul li a {
	font-size: 16px;
	color: #fff;
	text-decoration: none;
}

/* SUB - GNB */
#header {
	position: fixed;
	z-index: 10;
}

#header .nav-bar-sub {
	position: fixed;
	width: 100%;
	height: 60px;
	background: #dd042b;
	border-bottom: 1px solid #d40323;
}

#header .nav-bar-sub div.sub-logo {
	position: absolute;
	height: 100%;
}

#header .nav-bar-sub div.sub-logo img {
	height: 46px;
	margin-top: 8px;
	margin-left: 40px;
}

#header .nav-bar-sub div.sub-logo span {
	position: relative;
	top: -14px;
	font-size: 24px;
	color: #fff;
	font-weight: 500;
	margin-left: 10px;
}

#header .nav-bar-sub .gnb {
	position: relative;
	width: 100%;
	max-width: 1000px;
	height: 100%;
	background: none;
	border: none;
	margin: auto;
	padding: 10px 0;
}

#header .nav-bar-sub .gnb ul li {
	display: inline;
	color: #fff;
	font-weight: 700;
	line-height: 3em;
	border-bottom: none;
	text-indent: 10px;
	margin: 0 1.5em;
	padding: 0 1.5em;
}

#header .nav-bar-sub .gnb ul li a {
	font-size: 17px;
	color: #fff;
	text-decoration: none;
}

#header .nav-bar-sub .gnb ul li a:hover {
	border-bottom: 1px solid #fff;
}

.icon_download {
	background-color: transparent;
	background-image: url(../img/down_icon.png);
	width: 19px;
	height: 19px;
}

/* CONTENTS */
#content {
	position: fixed;
	left: 0;
	top: 0;
	width: calc(100% - 80px);
	height: calc(100% - 80px);
	margin: 40px;
	padding-left: 10px;
	border: 1px solid #00A0F0;
}

#content.sub {
	padding-left: 0;
}

/* FOOTER */
#footer {
	position: fixed;
	font-size: 12px;
	bottom: 0;
	left: 50px;
	width: calc(100% - 90px);
	height: 40px;
	line-height: 40px;
	text-align: center;
}

#footer a {
	text-decoration: none;
}

#footer span {
	display: inline;
	margin: 0 10px;
}

#footer address {
	display: inline;
	font-style: normal;
}

#footer p.copyright {
	display: inline;
}

@media screen and (max-width: 980px) {
	/* CONTENTS */
	#content {
		left: 0;
		top: 0;
		width: calc(100% - 50px);
		height: calc(100% - 60px);
		margin: 25px 25px 70px;
		padding-left: 25px;
		border: 1px solid #00a0f0;
	}

	#footer .mobile_hidden {
		display: none;
	}

	#footer .copyright {
		display: block;
	}
}