@charset "utf-8";

/* 초기화 */
*{
    margin: 0;
    padding: 0;
}
body{
    font: 14px "Noto Sans", sans-serif;
    color: #333;
    font-weight: 400;
}
a{
    text-decoration: none;
    color: #333;
}
li{
    list-style: none;

}
img{
    border: 0;
    vertical-align: top;
}

/* float 사용하는 경우 부모의 세로길이 적용되게 하는 clear */
.clearfix::after{
    content: '';
    display: table;
    clear: both;
}