@charset "UTF-8";

/* font */
/* Pretendard - mfont */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

/* Gmarket Sans -sfont */
@import url('https://cdn.jsdelivr.net/gh/fonts-archive/GmarketSans/GmarketSans.css');
				
/* :root */
:root {
    --mc: #f9ba00;
    --sc: #f4cd71;
    --sc2: #fce3a8;
    --fc: #412e01;
    --mfont: 'Pretendard', 'Malgun Gothic', dotum, sans-serif;
    --sfont: 'Gmarket Sans', 'Pretendard', 'Malgun Gothic', dotum, sans-serif;
}

/* Reset CSS */
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

img,
video,
iframe {
    vertical-align: middle;
}

/* tag class */
.posi_rel {
    position: relative;
}

.posi_abs {
    position: absolute;
}

.posi_fix {
    position: fixed;
}

.mg_auto {
    margin: 0px auto;
    max-width: 1200px;
}

.img_cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pc_none {
    display: none;
}

@media (max-width:1439px) {
    .pc_none {
        display: block;
    }

    .mobile_none {
        display: none;
    }
}

/* body */
body {
    font-size: 14px;
    font-family: var(--mfont) !important;
    color: #333;
}