/* ===== 기본 초기화 ===== */
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, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* Box sizing - 기본 박스모델 설정 */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

*, *:before, *:after {
  box-sizing: inherit;
}

/* 리스트 스타일 제거 */
ol, ul {
  list-style: none;
}

/* 링크 기본값 제거 */
a {
  text-decoration: none;
  color: inherit;
}

/* 테이블 초기화 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 기본 이미지 max-width */
img {
  max-width: 100%;
  height: auto;
/*  display: block;*/
  border-style: none;
}

/* 기본 strong/b 요소 bold 처리 */
b, strong {
  font-weight: bold;
}

/* 기본 i/em 요소 italic 처리 */
i, em {
  font-style: italic;
}

/* 기본 인라인 요소 블럭 처리 방지 */
button {
  border: none;
  background: none;
  cursor: pointer;
}

/* 입력 요소 초기화 */
input, textarea, select, button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* 기본 폰트 설정은 프로젝트에 맞게 추가하면 됩니다. */
body {
  line-height: 1;
  color: #000;
  background: #fff;
}

address {font-style: normal;}

