* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 16px;
  color: #000;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
video,
input {
  vertical-align: middle;
}

img {
  user-drag: none;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

button {
  font-size: 16px;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-text-fill-color: currentColor !important;
  color: inherit;
}

body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-nav {
  position: absolute;
  top: -50px;
  /* 화면 위로 숨기기 */
  left: 0;
  z-index: 9999;
  padding: 12px 20px;
  background: #000;
  /* 대비 높은 색 */
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: top 0.3s ease;
}

.skip-nav:focus,
.skip-nav:active {
  top: 0;
  /* 포커스되면 화면에 등장 */
}