/* ========================================
   CSS Reset - 새로운 랜딩페이지를 위한 기본 리셋
   인코딩: UTF-8
   ======================================== */

/* 기본 여백 제거 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* HTML 요소 초기화 */
html {
	overflow-y: scroll;
}

body {
	margin: 0;
	padding: 0;
	font-family: "Noto Sans KR", sans-serif;
	font-size: 12px;
	color: #333;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* 이미지 초기화 */
img {
	border: none;
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}

/* 링크 초기화 */
a {
	cursor: pointer;
	text-decoration: none;
	color: inherit;
}

a:link,
a:visited,
a:active {
	color: #06F;
	text-decoration: none;
}

a:hover {
	color: #006;
	text-decoration: underline;
}

/* 제목 요소 초기화 */
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal;
	margin: 0;
	padding: 0;
}

/* 목록 초기화 */
ul, ol, li {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* 폼 요소 초기화 */
form, fieldset, legend {
	margin: 0;
	padding: 0;
}

input, textarea, select {
	font-family: inherit;
	font-size: inherit;
	color: inherit;
}

button {
	font-family: inherit;
	font-size: inherit;
	cursor: pointer;
}

/* 테이블 초기화 */
table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}

th, td {
	padding: 0;
}

/* address 요소 초기화 */
address {
	font-style: normal;
}

/* clearfix */
.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

/* 숨김 클래스 */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
