/* Reset 기본값 (공용 초기화) */
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,
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,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset */
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
  display: block;
}

/* Pretendard 폰트 적용 */
body {
  line-height: 1.5;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans KR", sans-serif;
  font-weight: 400;
  color: #222;
  background-color: #fff;
}

/* font-weight 프리셋 */
.fw-100 {
  font-weight: 100;
}

/* Thin */
.fw-200 {
  font-weight: 200;
}

/* Extra Light */
.fw-300 {
  font-weight: 300;
}

/* Light */
.fw-400 {
  font-weight: 400;
}

/* Regular */
.fw-500 {
  font-weight: 500;
}

/* Medium */
.fw-600 {
  font-weight: 600;
}

/* Semi Bold */
.fw-700 {
  font-weight: 700;
}

/* Bold */
.fw-800 {
  font-weight: 800;
}

/* Extra Bold */
.fw-900 {
  font-weight: 900;
}

/* Black */

/* 리스트 초기화 */
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 {
  color: inherit;
  text-decoration: none;
}

/* 버튼 & 폼 초기화 */
button,
input,
select,
textarea {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
}

* {
  box-sizing: border-box;
}