@charset 'utf-8';
* {box-sizing: border-box;
  /* iOS pinch touch 비활성화(두번 탭 확대기능은 활성화) */
  touch-action:pan-x pan-y;
}
html, body {padding: 0; margin: 0;}
header, main, footer, section, article, aside, nav, div {display: block;}
h1, h2, h3, h4, h5, h6, p {margin: 0;}
ul, ol {list-style: none; margin: 0; padding: 0;}
a {text-decoration: none; color: var(--black);}
button {outline: none; border:none; cursor: pointer;}
input {outline: none; border: none; -webkit-appearance: none; -webkit-border-radius: 0;}

/* input type=number 브라우저별 설정된 증감버튼 제거 */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {-webkit-appearance: none; margin: 0;}

/* Firefox */
input[type=number] {-moz-appearance: textfield;}

/* select 커스텀하기(∨ 화살표 제거) 사용시 아래 주석 해제 */
/*IE는 expand 속성을 사용해야 화살표 제거가능*/
/* select::-ms-expand { display: none;} */
/* IE 제외 나머지 브라우저 */
/* select {
  -o-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
} */