@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Nanum+Gothic+Coding');
@import url('https://fonts.googleapis.com/css?family=Nanum+Gothic&subset=korean');
@import url('https://fonts.googleapis.com/earlyaccess/notosanskr.css');
@import url('//cdn.rawgit.com/young-ha/webfont-archive/master/css/PureunJeonnam.css');
@import url('//cdn.rawgit.com/young-ha/webfont-archive/master/css/Godo.css');
@import url('//cdn.rawgit.com/young-ha/webfont-archive/master/css/Arita-dotum.css');
@import url('//cdn.rawgit.com/young-ha/webfont-archive/master/css/HANDotum.css');

/* 1. 박스 모델 통일 */
*, *::before, *::after {
	box-sizing: border-box;
}

/* 2. 기본 여백 제거 */
body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote, dl, dd {
	margin: 0;
	padding: 0;
}

/* 3. 리스트 스타일 제거 */
ul, ol {
	list-style: none;
}

/* 4. 링크 스타일 초기화 */
a {
	text-decoration: none;
	color: inherit;
}

/* 5. 이미지와 미디어: 반응형 기본값 */
img, video {
	max-width: 100%;
	height: auto;
	display: block;
}

/* 6. 테이블 초기화 */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* 7. HTML5 블록 요소 보장 */
article, aside, footer, header, nav, section, main {
	display: block;
}

/* 8. 기본 폰트 설정 */
body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: #333;
	background-color: #fff;
	-webkit-text-size-adjust: 100%; /* iOS 줌 방지 */
}

/* 9. 폼 요소 초기화 + 반응형 대응 */
input, textarea, select, button {
	font: inherit;
	color: inherit;
	background: none;
	border: none;
	outline: none;
	padding: 0;
	margin: 0;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

/* 10. 버튼 커서 */
button {
	cursor: pointer;
}

/* 11. 반응형 뷰포트 대응 */
html {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-size-adjust: 100%;
	scroll-behavior: smooth;
}

/* 12. 컨테이너에 필요한 유틸 (선택사항) */
/*
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 16px;
}
*/