@charset "UTF-8";
@font-face {
    font-family: 'yg-jalnan';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_four@1.2/JalnanOTF00.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* :root */
:root {
    --mc: #a62225;
    --sc: #db7375;
    --sc2: #ffbfc1;
    --mfont: 'Noto Sans KR';
    --sfont: 'Pretendard';
    --tfont: 'yg-jalnan';
}

/* 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), var(--sfont), sans-serif;
    color: #333;
    overflow-x: hidden;
}