/* reset.css : 기본 브라우저 스타일 초기화 */

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 기본 마진 제거 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 엘리먼트 display 보정 */
article, aside, details, figcaption, figure,
footer, header, main, menu, nav, section {
  display: block;
}

/* 기본 body 설정은 여기서 최소만 잡고, 나머진 style.css에서 */
body {
  line-height: 1.5;
}

/* 리스트 마커 제거 (블로그에서 대부분 커스텀으로 쓰기 때문) */
/* ol, ul {
  list-style: none;
} */

/* 인용부호 제거 */
blockquote, q {
  quotes: none;
}
blockquote::before, blockquote::after,
q::before, q::after {
  content: '';
  content: none;
}

/* 테이블 기본 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 링크 기본값 */
a {
  text-decoration: none;
  color: inherit;
}

/* 이미지 기본 */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 버튼 / 인풋 등 폼 요소 기본값 정리 */
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
}

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

/* strong, b, em 등 의미 태그는 기본 의미 유지 */
strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

/* select 스타일 초기화 */
select{
    appearance: none;          /* 기본 화살표 제거 (표준) */
  -webkit-appearance: none;  /* Safari, iOS */
  -moz-appearance: none;     /* Firefox */
}