   /* 2. 独自ヘッダー：テーマとの干渉を避ける独自タグ名 */
        cyber-storm-lp-header {
            display: flex;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 80px;
            background: transparent;
            backdrop-filter: blur(8px);
            z-index: 10000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            align-items: center;
            justify-content: space-between;
            padding: 0 5%;
            box-sizing: border-box;
        }

        /* ロゴコンテナのスタイル */
        cyber-storm-lp-header .lp-logo-container {
            display: flex;
            align-items: center;
            height: 100%;
        }

        /* 設定されたロゴ画像のスタイル */
        cyber-storm-lp-header .lp-logo-image {
            max-height: 50px;
            width: auto;
            display: block;
            object-fit: contain;
        }

        /* 画像がない場合のテキストロゴスタイル */
        cyber-storm-lp-header .lp-logo-text {
            font-family: 'Orbitron', sans-serif;
            font-weight: 900;
            color: #fff;
            letter-spacing: 0.2em;
            font-size: 1.2rem;
            text-transform: uppercase;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.8), 0 0 2px rgba(0, 0, 0, 1);
        }

        /* ナビゲーションメニュー */
        cyber-storm-lp-nav {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        cyber-storm-lp-nav a {
            color: #fff;
            text-decoration: none;
            font-family: 'Orbitron', sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            transition: all 0.3s ease;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.8), 0 0 2px rgba(0, 0, 0, 1);
            line-height: 1;
            padding: 10px 0;
        }

        cyber-storm-lp-nav a:hover {
            color: #00f3ff;
            text-shadow: 0 0 15px rgba(0, 243, 255, 0.8);
        }

        /* 3. メインコンテナ */
        .lp-full-container {
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }

        /* 4. 画像の隙間排除 */
        .lp-full-container img {
            width: 100% !important;
            height: auto !important;
            display: block !important;
            margin: 0 !important;
            padding: 0 !important;
            border: none !important;
            margin-bottom: -1px !important; 
        }

        /* 5. テキスト要素の可読性 */
        .lp-content-wrapper p,
        .lp-content-wrapper h1,
        .lp-content-wrapper h2,
        .lp-content-wrapper h3 {
            line-height: 1.8 !important;
            margin-bottom: 1.5rem;
            color: #fff;
        }
         .lp-content-wrapper p {
            font-size: 14pt;
         }

        .lp-content-wrapper h2 {
            font-size: 30pt;
            font-style:unset;
        }
    
        .lp-content-wrapper h3 {
            font-size: 24pt;
        }

        /* 6. スクロールボタン */
        #lp-scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 9999;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* デフォルトUI（画像がない場合） */
        .lp-scroll-default-ui {
            width: 54px;
            height: 54px;
            background: rgba(0, 0, 0, 0.85);
            border: 2px solid #00f3ff;
            color: #00f3ff;
            display: flex;
            align-items: center;
            justify-content: center;
            clip-path: polygon(20% 0%, 100% 0%, 100% 80%, 80% 100%, 0% 100%, 0% 20%);
        }

        /* カスタム画像UI */
        .lp-scroll-custom-img {
            width: 64px;
            height: auto;
        }
        .lp-scroll-custom-img img {
            width: 100% !important;
            height: auto !important;
            display: block !important;
            margin-bottom: 0 !important; /* ボタン画像にはマイナスマージン不要 */
        }

        #lp-scroll-top.is-visible {
            opacity: 1;
            visibility: visible;
        }

        /* 7. レスポンシブ */
        @media (max-width: 900px) {
            cyber-storm-lp-header {
                padding: 15px 20px;
                flex-direction: column;
                height: auto;
                background: rgba(0, 0, 0, 0.6);
            }
            cyber-storm-lp-header .lp-logo-image {
                max-height: 40px;
                margin-bottom: 10px;
            }
            cyber-storm-lp-nav {
                gap: 20px;
                width: 100%;
                justify-content: center;
            }
            cyber-storm-lp-nav a {
                font-size: 0.75rem;
            }
            .lp-full-container {
                padding-top: 110px;
            }
        }
