@charset 'UTF-8';
@import url('fonts.css');
/* 1. 초기화 */
html {
    scroll-behavior: smooth;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
:before, :after {
    box-sizing: border-box;
}
header, main, footer, nav, section, article, aside {
    display: block;
}

/* 2. 요소별 설정 */
body {
    background-color: #fff;
    font-family: 'Pretendard-Regular';
    font-size: 16px;
    color: #222;
    line-height: 1.6;
}
body.hidden {
    overflow: hidden;
}
ul, ol {
    list-style-type: none;
}
img {
    border: 0;
    vertical-align: middle;
}
a {
    color: #222;
    text-decoration: none;
}
input, button, textarea, select {
    font-size: 1em;
    color: #222;
    font-family: 'Roboto', 'Noto Sans KR', 'Malgun Gothic', 'Dotum', sans-serif;
}
table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
label, button {
    cursor: pointer;
}
button {
    border: 0;
    background-color: transparent;
}

/* 3. 공용클래스 설정 */
.wrapper {
    max-width: 1680px;
    margin: auto;
}
.wrapper-s {
    max-width: 1400px;
    margin: auto;
}
.clearfix:after {
    content: '';
    display: block;
    clear: both;
}
.blind, .sound-only {
    position: absolute;
    left: -9999em;
}
.table {
    display: table;
    width: 100%;
}
.table-cell {
    display: table-cell;
    vertical-align: middle;
}
.relative {
    position: relative;
}
.center {
    text-align: center;
}
.auto {
    margin: auto;
}

/* 컬럼설계 */
.col-2 > * {float: left; width: 50%;}
.col-3 > * {float: left; width: 33.3333%;}
.col-4 > * {float: left; width: 50%;}
.col-5 > * {float: left; width: 33.3333%;}
.col-5 > *:nth-of-type(4), .col-5 > *:nth-of-type(5)  {
    width: 50%;
}
.col-6 > * {float: left; width: 33.3333%;}

/* 마진 */
.m1 {margin: 1em auto;}
.m2 {margin: 2em auto;}
.m3 {margin: 3em auto;}
.m4 {margin: 4em auto;}
.m5 {margin: 5em auto;}