@charset "utf-8";


@font-face {
    font-family: 'notoKrthin';
    font-style: normal;
    font-weight: 100;
    src: url(../font/NotoSansKR-Thin.woff2) format('woff2'),url(../font/NotoSansKR-Thin.woff) format('woff'),url(../font/NotoSansKR-Thin.otf) format('opentype');
}



@font-face {
    font-family: 'notoKrthinlight';
    font-style: normal;
    font-weight: 300;
    src: url(../font/NotoSansKR-Light.woff2) format('woff2'),url(../font/NotoSansKR-Light.woff) format('woff'),url(../font/NotoSansKR-Light.otf) format('opentype');
}



@font-face {
    font-family: 'notoKrregular';
    font-style: normal;
    font-weight: 400;
    src: url(../font/NotoSansKR-Regular.woff2) format('woff2'),url(../font/NotoSansKR-Regular.woff) format('woff'),url(../font/NotoSansKR-Regular.otf) format('opentype');
}



@font-face {
    font-family: 'notoKrmedium';
    font-style: normal;
    font-weight: 500;
    src: url(../font/NotoSansKR-Medium.woff2) format('woff2'),url(../font/NotoSansKR-Medium.woff) format('woff'),url(../font/NotoSansKR-Medium.otf) format('opentype');
}



@font-face {
    font-family: 'notoKrbold';
    font-style: normal;
    font-weight: 700;
    src: url(../font/NotoSansKR-Bold.woff2) format('woff2'),url(../font/NotoSansKR-Bold.woff) format('woff'),url(../font/NotoSansKR-Bold.otf) format('opentype');
}



@font-face {
    font-family: 'notoKrblack';
    font-style: normal;
    font-weight: 900;
    src: url(../font/NotoSansKR-Black.woff2) format('woff2'),url(../font/NotoSansKR-Black.woff) format('woff'),url(../font/NotoSansKR-Black.otf) format('opentype');
}

/* 2022.09.22_CJH - 다크모드 추가*/
:root {
    --text: #000;
    --bg: #fff;
    --imageBG: #fff;
    --menuBG: rgb(255,255,255,0.7);
    --menuFG: #333;
    --navFG: #000;
}

body {
    background-color: var(--bg);
    color: var(--text);
}

@media (prefers-color-scheme: dark) {
    :root {
        --text: #fff;
        --bg: #000;
        --imageBG: #000;
        --menuBG: rgb(0,0,0,0.7);
        --menuFG: #AAA;
        --navFG: #fff;
    }
}

* {
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    height: 100%;
}

html, body {
    width: 100%;
    height: 100%;
    color: #1B1B1B;
    color: #1B1B1B;
    margin: 0;
    padding: 0;
}

body {
    font: normal 100%/1.2 "notoKrregular";
    min-height: 100%;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, p, blockquote, th, td, select, label, img, figure {
    margin: 0;
    padding: 0;
}

input, textarea, select {
    outline: 0;
    outline: none;
    border: 0;
    border: none;
    vertical-align: middle;
    font-size: 1em;
    font-family: 'Nanum Squarebold';
    color: #000
}

table {
    border-collapse: collapse;
    width: 100%;
    background: #fff;
    margin: 0;
    padding: 0;
}

fieldset, img, table, button {
    border: 0;
}

ul, ol, li {
    list-style: none;
}

img {
    vertical-align: middle;
}

caption, legend {
    display: none;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: bold;
}

address, em {
    font-style: normal;
    padding: 0;
    margin: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, navi, section {
    display: block;
}

legend, hr {
    display: none;
    height: 0;
    font-size: 0;
}

a {
    color: var(--navFG);
    text-decoration: none;
}

p {
    padding: 0;
}

button {
    color: #555;
    text-decoration: none;
    cursor: pointer;
}
