/*------------------------------------*\
  #RESET
\*------------------------------------*/

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

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    font-size: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}
ul,
ol {
    list-style: none;
}
img,
svg,
video,
canvas {
    max-width: 100%;
    display: block;
}
button,
input,
select,
textarea {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}
