@charset "utf-8";

html, body {
  letter-spacing: 0.06em;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 요소에 대한 기본 스타일 적용 */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
  -webkit-text-size-adjust: 100%
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

a {text-decoration: none;}
b {font-weight: bold;}
b.ex-b {font-weight:800;}

*,*::before,*::after {
  box-sizing: border-box; /* 모든 요소의 box-sizing을 border-box로 설정 */
}

p,h1,h2,h3,h4,h5,h6 {
  overflow-wrap: break-word; /* 긴 단어 또는 URL이 레이아웃을 깨지 않도록 함 */
}
img {width: 100%;}
img,
picture,
video,
canvas,
svg {
  display: block; /* 미디어 요소를 block으로 표시하여 공백 제거 */
  max-width: 100%; /* 반응형 이미지 처리를 위한 최대 너비 설정 */
}

input,
button,
textarea,
select {
  font: inherit; /* 폼 요소가 부모의 폰트를 상속받도록 설정 */
}

/* 사용자가 애니메이션을 줄이는 설정을 했을 경우, 애니메이션 및 전환 효과를 최소화 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* html {  font-family: 'SUIT', Inter, system-ui, Avenir, Helvetica, Arial, sans-serif; } */