/* 모든 태그들에 대한 공통 초기값 세팅 */
html, body, h1, h2, h3, h4, h5, h6,
p, dl, dt, dd, ul, ol, li, div, hr, address, blockquote, video,
header, footer, nav, aside, article, section, figure, figcaption, main, details, summary,
form, fieldset, legend, input, button, select, option, textarea,
span, em, strong, img, sup, sub, br, del, q, s, mark, code, a,
table, thead, tbody, tfoot, tr, td, th {
    margin: 0; padding: 0;
    line-height: 1.2; letter-spacing: -0.02em; word-spacing: 0;
    font-size:1em; font-weight: 400; font-style: normal;
    color: #000;
    font-family: 'Noto Sans KR', sans-serif; /* 폰트 변경하기 */
    box-sizing: border-box;
}
/* 개별 태그 초기값 */
a {text-decoration: none;}
ul, ol,li {list-style: none;}
fieldset {border: 0;}
legend {display: none;}
input {border:0; outline: none;}
button {border: 0; background: none; cursor: pointer; }
table, th, tr, td {border-collapse: collapse;}
select, option {border:0; appearance: none;}
/* chrome, safari, edge, opera */
/* 웹브라우저 엔진 -webkit-, -moz-(firefox), -m-(micro), -o- */
input[type=number]::-webkit-outer-spin-button, 
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance:none;
    margin: 0;
}
/* firefox */
input[type=number] {
    -moz-appearance: none;
    margin: 0;
}