
/* =========================================================================
           モーダル用のCSSスタイル
           ========================================================================= */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.75); /* 透明的なグレー（黒） */
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999; /* 最前面に表示 */
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        /* モーダルが有効なときのクラス */
        .modal-overlay.is-active {
            opacity: 1;
            pointer-events: auto;
        }

        /* モーダル内の中央画像 */
        .modal-overlay img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            cursor: pointer; /* クリックして次へ進む合図 */
            user-select: none;
        }