/* ============================================================
   modern-css-reset (Andy Bell, MIT) — ローカル自前ホスト版
   出典: https://github.com/Andy-Bell/modern-css-reset
   ------------------------------------------------------------
   変更点(重要):
     オリジナルの
       @media (prefers-reduced-motion: reduce){
         *,*::before,*::after{ animation-duration:.01ms!important;
           animation-iteration-count:1!important;
           transition-duration:.01ms!important; ... } }
     という「全アニメ/トランジションを 0.01ms に潰す」ブロックを撤去した。
     当サイトの演出(Vamos マーキー / スクロール出現 / 動画クロスフェード等)は
     ブランディングの一部であり、OS の reduce-motion 設定(特に Windows が
     既定で reduce を報告するケース)に関わらず再生させるため。
     ※ CDN(unpkg) 依存も外し、オフライン/独自CMS 環境でも安定動作させる。
   ============================================================ */

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

/* Remove default margin */
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }

/* Remove list styles on ul, ol elements with a list role */
ul[role='list'], ol[role='list'] { list-style: none; }

/* Set core root defaults */
html:focus-within { scroll-behavior: smooth; }

/* Set core body defaults */
body { min-height: 100vh; text-rendering: optimizeSpeed; line-height: 1.5; }

/* A elements that don't have a class get default styles */
a:not([class]) { text-decoration-skip-ink: auto; }

/* Make images easier to work with */
img, picture { max-width: 100%; display: block; }

/* Inherit fonts for inputs and buttons */
input, button, textarea, select { font: inherit; }

/* reduce-motion: スムーススクロールのみ無効化（アニメの全停止はしない） */
@media (prefers-reduced-motion: reduce) {
  html:focus-within { scroll-behavior: auto; }
}
