@charset "UTF-8";

/* ========================================
  Reset CSS
======================================== */

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

/* margin reset */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* base */
html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.7;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
}

/* list */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* media */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* form */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

/* link */
a {
  color: inherit;
  text-decoration: none;
}

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

/* address */
address {
  font-style: normal;
}

/* summary */
summary {
  display: block;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

/* hidden */
[hidden] {
  display: none !important;
}

/* accessibility */
:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}