@charset "utf-8";
/*
 * reset.css — base normalization (clean-room rewrite)
 * 목적: 브라우저 기본 스타일을 평탄화하고 공통 타이포그래피 baseline을 잡는다.
 */

/* 웹폰트: Noto Sans KR */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap");

/* 박스 여백 초기화 */
html, body,
h1, h2, h3, h4, h5, h6,
p, blockquote, pre, code,
dl, dt, dd, ol, ul, li,
form, fieldset, legend, textarea,
th, td,
input, select, button {
  margin: 0;
  padding: 0;
}

/* 리스트 마커 제거 */
ol, ul, li {
  list-style: none;
}

/* 미디어 / 폼 테두리 및 정렬 */
img, fieldset {
  border: 0;
  vertical-align: top;
}

input, select, textarea, button {
  vertical-align: middle;
}

/* 버튼 평탄화 */
button {
  border: 0;
  background-color: transparent;
  cursor: pointer;
}

/* 인용부호 자동 삽입 제거 */
blockquote, q {
  quotes: none;
}
blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}

/* 강조/약어류 기본 기울임·굵기 제거 */
address, caption, cite, code, dfn, em, var {
  font-style: normal;
  font-weight: normal;
}

/* 공통 타이포그래피 baseline */
body {
  background: #fff;
}

body, th, td,
input, select, textarea, button {
  font-family: "Noto Sans KR", "Malgun Gothic", "맑은 고딕", AppleGothic, Dotum, "돋움", sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: #000;
}

/* 링크 */
a {
  color: #333;
  text-decoration: none;
}
a:hover, a:active {
  text-decoration: none;
}
