@charset "UTF-8";

:root {
  --color-white: #ffffff;
  --color-black: #111111;
  --color-overlay: rgba(0, 0, 0, 0.3);
  --header-height: 80px;
  --header-padding-x: clamp(20px, 4.17vw, 80px);
  --nav-col-width: 150px;
  --mega-height: 240px;
  --mega-bg: rgba(255, 255, 255, 0.8);
  --content-max-width: 1920px;
  --font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-base: 0.6s;
  --duration-fast: 0.35s;
  --duration-reveal: 2s;
  --duration-reveal-slow: 2s;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-family);
  color: var(--color-black);
  background: var(--color-white);
  overflow-x: hidden;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
