/* font */
@font-face {
    font-family: 'Pretendard';
    src: url('fonts/Pretendard-Light.subset.woff2'), url('fonts/Pretendard-Light.subset.woff');
    font-weight: 300;
}

@font-face {
    font-family: 'Pretendard';
    src: url('fonts/Pretendard-Regular.subset.woff2'), url('fonts/Pretendard-Regular.subset.woff');
    font-weight: 400;
}

@font-face {
    font-family: 'Pretendard';
    src: url('fonts/Pretendard-Medium.subset.woff2'), url('fonts/Pretendard-Medium.subset.woff');
    font-weight: 500;
}

@font-face {
    font-family: 'Pretendard';
    src: url('fonts/Pretendard-SemiBold.subset.woff2'), url('fonts/Pretendard-SemiBold.subset.woff');
    font-weight: 600;
}

@font-face {
    font-family: 'Pretendard';
    src: url('fonts/Pretendard-Bold.subset.woff2'), url('fonts/Pretendard-Bold.subset.woff');
    font-weight: 700;
}


/* reset */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, address, big, cite, code,
del, em, img, samp,
small, strike, strong, sub, sup, 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, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: inherit;
    font-weight: 400;
    vertical-align: baseline;
}

html {
    -webkit-font-smoothing: antialiased;
}

body {
    font-size: 1rem;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    line-height: 1;
}

ul, ol {
    list-style:none;
}

blockquote, q {
	quotes: none;
}

strong {
  font-weight: 500;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

a {
  text-decoration: none;
}

input, button, textarea, select, fieldset {
  font: inherit;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  outline: none;
  vertical-align: middle;
}

button {
  cursor: pointer;
}

select:focus {
  outline: none;
}

button, input[type=button], input[type=submit], input[type=reset] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}