@charset "UTF-8";
/* Font - KBIZ */
@font-face {
    font-family: 'KBIZHanmaumGothic';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_one@1.0/KBIZHanmaumGothic.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* Font - Gyeonggi_Batang */
@font-face {
    font-family: 'Gyeonggi_Batang_Regular';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2410-3@1.0/Batang_Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

/* :root */
:root {
    --mc: #b81f2a;
    --sc: #851018;
    --sc2: #ffd2d5;
    --mfont: 'Pretendard', 'Malgun Gothic', dotum, sans-serif;
    --sfont: 'KBIZHanmaumGothic', 'Pretendard', 'Malgun Gothic', dotum, sans-serif;
    --sfont2: 'Gyeonggi_Batang_Regular', '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: 1200px;
}

.img_cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* body */
body {
    font-size: 14px;
    font-family: var(--mfont);
    color: #333;
    overflow-x: hidden;
}