@charset "UTF-8";

@font-face {
    font-family: 'SebangGothic';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2104@1.0/SEBANG_Gothic_Regular.woff') format('woff');
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SebangGothic';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2104@1.0/SEBANG_Gothic_Bold.woff') format('woff');
    font-weight: 700;
    font-display: swap;
}

/* :root */
:root {
    --mc: #7457a4;
    --sc: #1a043d;
    --sc2: #e5dce1;
    --sc3: #b59bde;
    /* --mfont:
        "Pretendard",
        'Malgun Gothic', dotum, sans-serif;
    --sfont:
        "SebangGothic",
        var(--mfont); */
    --mfont: "Noto Sans KR", "Noto Sans", "Pretendard", 'Malgun Gothic', dotum, sans-serif;
    --sfont: "Noto Sans KR", "Noto Sans", "Pretendard", 'Malgun Gothic', dotum, sans-serif;
}

/* Reset CSS */
* {
    margin: 0px;
    padding: 0px;
}

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: 1440px;
}

.img_cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* body */
body {
    font-size: 14px;
    font-family: var(--mfont);
    color: #333;
    overflow-x: hidden;
}