* {
  box-sizing: border-box;
}

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%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

* {
  font-family: 'Noto Sans', sans-serif;
  color: black;
  line-height: 1;
}
/* 한국어일 때의 폰트 설정 */
html[lang="ko"] * {
  font-family: 'Noto Sans KR', sans-serif;
}
/* 영어일 때의 폰트 설정 */
html[lang="en"] * {
  font-family: 'Noto Sans', sans-serif;
}
/* 일본어일 때의 폰트 설정 */
html[lang="ja"] * {
  font-family: 'Noto Sans JP', sans-serif;
}
/* 중국어일 때의 폰트 설정 */
html[lang="zh"] * {
  font-family: 'Noto Sans SC', sans-serif;
}

html,
body {
  font-size: 62.5%;
  line-height: 1.285;
}

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: black;
  text-decoration: none;
}

button {
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
}

/* scrollbar setting*/
/* ::-webkit-scrollbar {
    width: 13px;
    background-color: #fff;
}
::-webkit-scrollbar-track {
    background-color:  #fff;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb { 
    background-color:  rgba(153, 153, 153, 0.5);
    border: 3px solid #fff;
    border-radius: 10px;
}
::-webkit-scrollbar-button {
    display: none;
}
::-webkit-scrollbar-corner {
    background-color: #fff;
} */