@charset "utf-8";

/* ============================================================
   ★★★  피씨, 모바일 공통 사용파일 ★★★
   ============================================================ */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
  width: 100%;
  height: 100%;
  scrollbar-gutter: stable;
}

body {
  width: 100%;
  min-height: 100%;
}

main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* table td {
  word-wrap: break-word;
  word-break: normal;
} */


ul,
ol,
li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}


button {
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
}


input,
textarea,
select {
  font: inherit;
  color: inherit;
}

/* IR 기법 (접근성 및 SEO용 숨김 처리) */
caption,
hr,
legend {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  /* 0보다 1px이 스크린 리더 호환성에 더 좋음 */
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  /*  숨김 처리 */
  white-space: nowrap;
  border: 0;
}