*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

/* 문서 기본 설정 */
html {
  font-size: 10px;
}

body {
  height: 100%;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #222;
  background-color: #fff;
}

/* 기본 텍스트 스타일 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/* 링크 기본 스타일 제거 */
a {
  color: inherit;
  text-decoration: none;
}

/* 리스트 스타일 제거 */
ul,
ol {
  list-style: none;
}

/* 이미지, 미디어 요소 */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 폼 요소 통일 */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}

/* 버튼 커서 */
button {
  cursor: pointer;
}

/* 테이블 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 인용문, 강조 등 기본 리셋 */
blockquote,
q {
  quotes: none;
}
blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
}

/* strong, em 기본 두께 복원 */
strong {
  font-weight: 600;
}
em {
  font-style: italic;
}
