/**
 * NEO Theme - モダンCSSリセット
 */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; -moz-tab-size: 4; tab-size: 4; scroll-behavior: smooth; }
body { font-family: var(--neo-font-family); font-size: var(--neo-font-size-base); line-height: var(--neo-line-height-base); color: var(--neo-color-text); background-color: var(--neo-color-bg); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-wrap: break-word; word-break: break-word; }
h1, h2, h3, h4, h5, h6 { line-height: var(--neo-line-height-tight); font-weight: var(--neo-font-weight-bold); }
a { color: var(--neo-color-primary); text-decoration: none; transition: color var(--neo-transition-fast); }
a:hover { color: var(--neo-color-primary-hover); }
img, video, svg { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }
table { border-collapse: collapse; border-spacing: 0; }
blockquote { margin: 0; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--neo-color-primary); outline-offset: 2px; }
::selection { background-color: var(--neo-color-primary-light); color: var(--neo-color-text); }
