        /* ==============================
           画像付きヒーローエリア
           ============================== */
        .hero-section {
            position: relative;
            width: 100%;
            min-height: 80vh; /* 画面高さの約80%を確保 */
            display: flex;
            align-items: center;
            background-color: rgba(0, 0, 0, 0.5);
            overflow: hidden;
            box-sizing: border-box;
            padding: 60px 20px;
        }

        /* 背景のレース風斜めストライプ */
        .hero-section::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            pointer-events: none;
        }

        /* コンテナ（左右分割） */
        .hero-container {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
            width: 100%;
        }

        /* 左側：キャッチコピーブロック */
        .hero-text-block {
            flex: 1.1;
        }

        .hero-subtitle {
            
            font-weight: 700;
            color: #e60000;
            letter-spacing: 3px;
            margin-bottom: 20px;
            text-transform: uppercase;
            display: inline-block;
            padding: 4px 14px;
            background-color: rgba(230, 0, 0, 0.1);
            border-left: 3px solid #e60000;
            transform: skewX(-15deg);
        }

        .hero-subtitle span {
            display: inline-block;
            transform: skewX(15deg);
        }

        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4.8rem); /* 画面サイズに応じて伸縮 */
            font-weight: 900;
            font-style: italic;
            line-height: 1.05;
            color: #ffffff;
            margin: 0 0 25px 0;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
        }

        .hero-title .highlight {
            color: #e60000;
            text-shadow: 0 0 20px rgba(230, 0, 0, 0.6);
        }

        .hero-description {
          
            color: #aaaaaa;
            line-height: 1.8;
            margin-bottom: 35px;
            max-width: 540px;
        }

        .hero-btn {
            display: inline-block;
            background-color: #e60000;
            color: #ffffff;
            text-decoration: none;
            padding: 16px 45px;
            font-size: 15px;
            font-weight: bold;
            letter-spacing: 2px;
            transform: skewX(-15deg);
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(230, 0, 0, 0.4);
        }

        .hero-btn span {
            display: inline-block;
            transform: skewX(15deg);
        }

        .hero-btn:hover {
            background-color: #ff1a1a;
            box-shadow: 0 8px 25px rgba(230, 0, 0, 0.7);
            transform: skewX(-15deg) translateY(-2px);
        }

        /* 右側：メイン画像ブロック */
        .hero-image-block {
            flex: 0.9;
            position: relative;
            display: flex;
            justify-content: center;
        }

        /* 画像を包むフレーム（光るエフェクト） */
        .image-wrapper {
            position: relative;
            width: 100%;
            max-width: 550px;
            transform: skewX(-6deg); /* 全体を少し傾けて斜めにカット */
            border-left: 4px solid #e60000;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8),
                        0 0 30px rgba(230, 0, 0, 0.2);
            overflow: hidden;
            background-color: #1a1a1a;
        }

        .image-wrapper img {
            width: 100%;
            height: auto;
            display: block;
            transform: skewX(6deg) scale(1.1); /* 傾きを打ち消して画像を正位置に */
            transition: transform 0.5s ease;
            filter: brightness(0.9) contrast(1.1);
        }

        .image-wrapper:hover img {
            transform: skewX(6deg) scale(1.15); /* ホバー時にズームイン */
            filter: brightness(1);
        }

        /* ==============================
           スマートフォン対応
           ============================== */
        @media (max-width: 992px) {
            .hero-container {
                flex-direction: column;
                gap: 40px;
                text-align: center;
            }

            .hero-description {
                margin-left: auto;
                margin-right: auto;
            }

            .image-wrapper {
                transform: none; /* スマホでは傾きを解除してシンプルに */
                border-left: none;
                border-top: 4px solid #e60000;
            }

            .image-wrapper img {
                transform: scale(1);
            }

            .image-wrapper:hover img {
                transform: scale(1.05);
            }
        }