@charset "utf-8";


/* 기본 박스 모델 초기화 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* HTML5 요소 브라우저 호환성 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}

/* 본문 글꼴 설정 */
body {
    line-height: 1.6;
    font-family: 'S-CoreDream-3Light', sans-serif;
    font-size: 16px;
    color: #222;
    background-color: #fff;
    -webkit-text-size-adjust: 100%;
}

/* 리스트 스타일 제거 */
ul,
ol {
    list-style: none;
}

/* 링크 기본 스타일 제거 */
a {
    text-decoration: none;
    color: inherit;
}

/* 이미지 및 폼 요소 기본 스타일 초기화 */
img {
    max-width: 100%;
    display: block;
    border: 0;
}

/* 폼 요소 초기화 */
button,
input,
select,
textarea {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

/* 테이블 초기화 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* 제목 태그 초기화 */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    font-size: 100%;
}

.hidden {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    width: 1px;
    height: 1px;
    overflow: hidden;
    white-space: nowrap;
    border: 0;
    padding: 0;
    margin: 0;
}

:root {
    --primary: #f1f1f1;
    --primary-dark: #0b3270;
}
