@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*나눔스퀘어*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Pretendard', serif;
}

/*set_up-----------------------------------------------------------------------------------------------------------------*/
* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background: #fff;
  margin: 0;
  padding: 0;
  font-family: 'Pretendard', serif;
  font-size: 14px;
  width: 100%;
  height: auto;
}

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;
}
ul,
ol,
dl {
  list-style: none;
}
fieldset {
  border: none;
}
legend {
  display: none;
}
img {
  border: none;
}

/*텍스트 밑줄 없애기*/
a {
  text-decoration: none;
  color: #767676;
}
a:link {
  text-decoration: none;
}
a:visted {
  text-decoration: none;
}
a:active {
  text-decoration: none;
  color: #010101;
}
a:hover {
  text-decoration: none;
  color: #010101;
}

/*인용구*/
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
blockquote,
q {
  quotes: none;
}

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

/*clearfix*/
.cf:after {
  clear: both;
  content: '';
  display: block;
}

/*float*/
.FL {
  float: left;
}
.FR {
  float: right;
}
