/* Custom Reset */

/* 모든 요소에 border-box를 적용하여 레이아웃 계산을 쉽게 합니다. */
* {
  box-sizing: border-box;
}

/* 모든 HTML 요소의 기본 마진, 패딩, 보더를 제거합니다. */
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;
}

/* body 기본 설정 */
body {
  line-height: 1.5;
  font-family: 'Pretendard', 'Noto Sans KR', 'Malgun Gothic', '맑은 고딕', Dotum, '돋움', sans-serif;
  color: #000000;
}

/* 목록 스타일 제거 */
ol,
ul {
  list-style: none;
}

/* 테이블 기본 스타일 설정 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 버튼 기본 스타일 리셋 */
button {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background: none;
  border: 0;
  padding: 0;
  margin: 0;

  font: inherit;
  color: inherit;
  line-height: 1;

  cursor: pointer;
}

/* 링크 기본 스타일 설정 */
a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}