<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset 'utf-8';

:root {
	--fw-100: 100;
    --fw-200: 200;
    --fw-300: 300;
    --fw-400: 400;
    --fw-500: 500;
    --fw-600: 600;
    --fw-700: 700;
    --fw-800: 800;
    --fw-900: 900;

	--color-white: #FFFFFF;
    --color-black: #010101;
	--color-black02: #282828;
    --color-gray: #666666;

	--color-purple: #b18ddc;
	--color-purple02: #dcccee;

	--color-red: #b10616;

	--color-pink: #eec9c9;

    --transition: all 0.3s
}

/* font */
/* Pretendard */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
/* Noto Serif */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@200;300;400;500;600;700;900&amp;display=swap');


body {
    scroll-behavior: smooth;
    min-width: 280px;
    /* overflow-x: hidden; */
    font-size: 18px;
    font-weight: 400;
    color: var(--color-black);
	letter-spacing: -1px;
}
div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, button,
address, code, em, img, select,
small, strong, sub, sup, var, button,
b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, input, textarea,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary, mark, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: inherit;
    font-family: 'Pretendard';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-break: keep-all;
	letter-spacing: inherit;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
a,
a:active,
a:hover,
a:visited {
    text-decoration: none;
}
a,
button {
    outline: none;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    color:inherit;
    font-size:inherit;
	letter-spacing: inherit;
}

iframe,
img,
table {
    border: 0;
}
button,
img,
input,
select,
textarea {
    vertical-align: middle;
}
li,
ol,
ul {
    list-style: none;
}
pre {
    white-space: pre-line;
    word-break: keep-all;
	line-height: 1.5;
	overflow: unset;
}
td,
tr {
    vertical-align: middle;
}
address,
em,
optgroup {
    font-style: normal;
}
/* img {
    width:100%
} */
caption {
    position: static;
    width: 0;
    height: 0;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
    visibility: hidden;
}
::-moz-selection {
    color:#fff;
    background:#2A2A2A
}
::-webkit-selection {
    color:#fff;
    background:#2A2A2A
}
::selection {
    color:#fff;
    background:#2A2A2A
}

svg {
    height: auto;
}

@media all and (max-width:1200px) {
    pre {
        white-space: normal;
    }
}
@media all and (max-width:640px) {
    body {
        font-size: 16px;
    }
}
@media all and (max-width:320px) {
	body, div, span, object, iframe,
    h1, h2, h3, h4, h5, h6, p, blockquote, pre,
    address, code, em, img,
    small, strong, sub, sup, var,
    b, i, dl, dt, dd, ol, ul, li,
    fieldset, form, label, legend,
    table, caption, tbody, tfoot, thead, tr, th, td,
    article, aside, canvas, details, figcaption, figure,
    footer, header, hgroup, menu, nav, section, summary, mark, video, a {
        font-size:14px;
	}
}

/* ë§ì¤„ìž„ */
.dot {
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: normal;
    overflow: hidden;
}
.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
}

/* ì¹´ì¹´ì˜¤ ì§€ë„ */
.root_daum_roughmap {
    width:100% !important;
    height: 100% !important;
}
.root_daum_roughmap .wrap_map {
    height: 100% !important;
}
.root_daum_roughmap .border1,
.root_daum_roughmap .border2,
.root_daum_roughmap .border3,
.root_daum_roughmap .border4{
    display: none !important;
}

.pc {
    display: block;
}
.mobile {
    display: none;
}
@media all and (max-width:1000px) {
    .pc {
        display: none;
    }
    .mobile {
        display: block;
    }
}
</pre></body></html>