@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/* -------------------------------------------
   全ページ共通：ローディング画面のスタイル
------------------------------------------- */
#loading-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #1a0f29 !important; /* 世界観に合わせた深紫色 */
    z-index: 999999 !important; /* 何があっても一番手前に表示 */
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto; /* ローディング中は下のボタンを押せないようにする */
}

/* 中央の文字 */
.loading-logo {
    color: #ffffff;
    font-family: 'IM Fell English SC', serif;
    font-size: 1.5rem;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    animation: loadingPulse 2s infinite ease-in-out; /* ぼんやり明滅させる */
}

@keyframes loadingPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}
