:root{
	--font-color: #6B6B6B;
}

@import url('https://fonts.googleapis.com/css?family=Noto+Sans+KR');

@font-face{
font-family:'³ª´®¹Ù¸¥°íµñ';
src:url(/fonts/NanumBarunGothicOTF/NanumBarunGothic.otf);
}

@font-face{
font-family:'³ª´®¹Ù¸¥°íµñbold';
src:url(/fonts/NanumBarunGothicOTF/NanumBarunGothicBold.otf);
}

body{
margin:0px;
padding:0px;
background-color: #FFF;
color: var(--font-color);
/* font-family: 'Noto Sans KR', sans-serif; */

font-family: '³ª´®¹Ù¸¥°íµñ', 'Noto Sans KR',  sans-serif;
}

a{
	text-decoration: none;
}
ul{
	margin:0px;
	padding:0px;
	list-style: none;
}
body{
	background-color: #FFF;
	border:0px blue solid;
	width:100%;
}

*, *:after, *:before {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
	
	.pc-htm{
		display: block;
	}
	.mobile-htm{
		display: none;
	}

@media screen and (max-width: 945px) {
	.pc-htm{
		display: none;
	}
	.mobile-htm{
		display: block;
	}
}