@charset "UTF-8";

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;

}

iframe {
  border: none;
}

ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* body {
  min-height: 100vh;
  line-height: 1.5;
} */

h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
  font-weight: normal;
}

a {
  text-decoration-line: none;
  color: currentColor;
}
/* a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
} */

img,
picture {
  max-width: 100%;
  display: block;
}

input:not([type="checkbox"]),
button,
textarea,
select {
  font: inherit;
  margin: 0;
  border: none;
}

textarea {
  resize: none;
}
textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

ul, li {
  list-style: none;
}

/* input 기본 스타일 초기화 */
input:not([type="checkbox"]) {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
input:focus,
select:focus {
  outline: transparent;
}

/* IE10 이상에서 input box 에 추가된 지우기 버튼 제거 */
input::-ms-clear {
	display: none;
}

/* input type number 에서 화살표 제거 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
/* Select box 스타일 초기화 */ 
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

/* IE 에서 Select box 화살표 제거 */ 
select::-ms-expand {
	display: none;
}

button {
	cursor: pointer;
}