/* ==========================================================================
   Footer reveal（最背面固定＋最後に露出）
   - フッターは常に画面下で固定（背面）
   - コンテンツの末尾にフッター高ぶんの余白を作り、最後で「露出」させる
   ========================================================================== */

body.makuai-footer-reveal {
    /* フッターを全画面にする */
    --makuai-footer-h: 100svh;
}

body.makuai-footer-reveal #content {
    position: relative;
    z-index: 1;
    background-color: var(--off-white);
    margin-bottom: var(--makuai-footer-h, 0px);
}

body.makuai-footer-reveal .site-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: var(--makuai-footer-h, 100svh);
    min-height: 100svh;
    overflow: auto;

    /* 既存の「下からスライドイン」挙動を無効化して、常に背面固定にする */
    transform: none !important;
    transition: none !important;
    visibility: visible !important;
    pointer-events: auto !important;

    /* 背面に固定 */
    z-index: 0 !important;
}