/* common */

* {
    font-family: 'Noto Sans KR', sans-serif;
    box-sizing: border-box;
}

html, body {
    margin: 0;
}

.container {
    position: relative;
	width: 100%;
	height: 100%;
}

.top {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	height: 60px;
	background-color: #666666;
}

.top .menu {
	margin-left: auto;
	display: flex;
}

.top .menu .menu_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0px 50px;
	text-decoration: none;
	font-size: 21px;
	color : white;
}

.top .menu .menu_btn.up {
	background-color: tomato;
}

.vr {
	padding-top: 60px;
}

.botom_coment {
	font-size: 12px;
	margin: 20px 60px;
	color:#575757;
	line-height:17px; 
}

