/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 27 2026 | 00:57:56 */
/* ==========================================================
 * 全固定ページ・全投稿：2重起動（リセットバグ）完全防止設定
 * ========================================================== */

/* 通常の固定ページ、および全てのシングル（詳細）ページのメインエリアを対象にする */
.page #main,
.single #main {
    opacity: 0;
    /* 1.2秒かけて、その場でじわっと静かに現れる設定 */
    animation: smoothPageFadeIn 1.2s cubic-bezier(0.25, 1, 0.3, 1) forwards !important;
    
    /* 【超重要】テーマの読み込み（1回目）が落ち着く「0.4秒後」まで起動を遅延させる */
    animation-delay: 0.4s !important;
    
    /* 2回目が動き出した際のリセット・巻き戻りをブラウザ側で強制ブロックするお守り */
    animation-iteration-count: 1 !important;
    animation-fill-mode: forwards !important;
    will-change: opacity;
}

/* アニメーションの動き（上下移動などを廃止し、最も軽量な透明度変化のみに絞る） */
@keyframes smoothPageFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1; /* 最終的に100%表示でピタッと固定 */
    }
}
