
        /* Lenis スクロール時に html に lenis-scrolling クラスが付くので、
           モバイルでもスクロール演出が破綻しないよう html, body を準備 */
        html.lenis,
        html.lenis body {
            height: auto;
        }
        html.lenis-smooth {
            scroll-behavior: auto; /* CSS 側の smooth-scroll を無効化（二重発火防止） */
        }
        html.lenis-stopped {
            overflow: clip;
        }
        html.lenis-scrolling iframe {
            pointer-events: none; /* 慣性中の iframe 誤クリック防止 */
        }
        /* a11y: prefers-reduced-motion が ON のときは演出を完全停止 */
        @media (prefers-reduced-motion: reduce) {
            html, body {
                scroll-behavior: auto;
            }
        }
    