/* font */
@font-face {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 400;
  src: url(font/Pretendard-Regular.woff) format('woff'), url('../fonts/Pretendard-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 500;
  src: url(font/Pretendard-Medium.woff) format('woff'), url('../fonts/Pretendard-Medium.woff2') format('woff2');
}

@font-face {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 600;
  src: url(font/Pretendard-SemiBold.woff) format('woff'), url('../fonts/Pretendard-SemiBold.woff2') format('woff2');
}

@font-face {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 700;
  src: url(font/Pretendard-Bold.woff) format('woff'), url('../fonts/Pretendard-Bold.woff2') format('woff2');
}

/* 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;
	vertical-align: baseline;
  font-size: 1rem;
  color: #000;  
}

html {
  -webkit-font-smoothing: antialiased;
}

body {
  font-size: 1rem;
  font-family: 'Pretendard', sans-serif;
	line-height: 1;
  background-color: #EEEFF2;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

*,
*::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;
  outline: none;
}

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;
}