@charset "utf-8";

/** setting **/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap');


html, body { 
	width:100%; height:100%; overflow-y:auto; letter-spacing:-1px; color:#222; font-size:16px; font-weight: 300; font-family: 'Noto Sans KR', sans-serif; background-color:#fff;
}
/* basic html reset */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strong, sub, sup, var,
b, u, i,
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,
nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
caption {
    text-align: left;
    font-weight: normal;
}
img {
    vertical-align: bottom;
}
img, video, audio {
    max-width: 100%;
    height: auto;
}
input, textarea, select, button {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

button, input[type="button"], input[type="submit"] {
    cursor: pointer;
}

/* html5 reset */
article, aside, details, figcaption, figure, 
footer, header, menu, nav, section, picture, source {
    display: block;
}

/* global model reset */
body {
    line-height: 1.5;
    box-sizing: border-box;
}
*,
*::before,
*::after {
    box-sizing: inherit;
}

/* font size and line-height basic */
h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
    line-height: 1.2;
}
p {
    font-size: 1rem;
    line-height: 1.6;
}
a {
    text-decoration: none;
    color: inherit;
}

/* ios */
html {
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    -o-text-size-adjust: none;
}
input, button {
    appearance: auto;
    border-radius: 0;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
select::-ms-expand {
    display: none;
}

::-webkit-scrollbar {
    width: 14px;
    height: 14px;
}

::-webkit-scrollbar-thumb {
    outline: none;
    border-radius: 10px;
    border: 4px solid transparent;
    box-shadow: inset 6px 6px 0 rgba(255, 255, 255, 0.15);
}

::-webkit-scrollbar-thumb:hover {
    border: 4px solid transparent;
    box-shadow: inset 6px 6px 0 rgba(34, 34, 34, 0.3);
}

::-webkit-scrollbar-track {
    box-shadow: none;
    background-color: transparent;
}