/* ベース設定 */
:root {
    --primary-gold: #ffcc00;
    --secondary-orange: #ff6600;
    --bg-dark: #050505;
    --text-white: #ffffff;
    --glass-bg: rgba(0, 0, 0, 0.7);
    --border-neon: rgba(255, 204, 0, 0.5);
    --font-main: 'Noto Sans JP', sans-serif;
    --font-tech: 'Orbitron', sans-serif; /* 数字や英語用 */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
}

/* 背景動画設定 */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    filter: contrast(1.2) brightness(0.6); /* 少し暗くして文字を見やすく */
}

/* style.css の .video-background .overlay を修正 */
.video-background .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* グラデーションを強化：中央は少し見せて、周囲を暗くする */
    background: radial-gradient(circle, rgba(0,0,0,0.4) 0%, #000000 90%);
    /* 全体的に暗くするフィルタを追加 */
    backdrop-filter: brightness(0.4); 
    background-size: 4px 4px;
    background-image: linear-gradient(rgba(0,0,0,.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.1) 1px, transparent 1px);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* ヘッダー */
.main-header {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 60px;
    height: auto;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 0 15px var(--primary-gold);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .sub {
    font-size: 0.8rem;
    color: #aaa;
    letter-spacing: 2px;
}

.logo-text .main {
    font-family: var(--font-tech);
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--primary-gold), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

/* ヒーローセクション */
.hero-section {
    padding-bottom: 100px;
}

.hero-content {
    text-align: center;
    margin-bottom: 40px;
}

/* style.css の .main-horse-img を修正・追加 */
.main-horse-img {
    width: 100%;
    max-width: 350px; /* 少し大きく */
    height: auto;
    /* 角丸は削除または控えめに */
    border-radius: 10px; 
    /* 枠線は削除し、光の効果のみにする */
    border: none;
    box-shadow: 0 0 50px rgba(255, 102, 0, 0.3); /* オレンジの光を広範囲に */
    margin-bottom: 30px;
    
    /* 下部分をフェードアウトさせて背景と馴染ませる魔法のコード */
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

/* ふわふわ浮くアニメーション */
.floating {
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.hero-title {
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.glitch {
    font-family: var(--font-tech);
    color: var(--text-white);
    letter-spacing: 3px;
    position: relative;
}

.highlight {
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.5rem;
    display: block;
    margin-top: 10px;
}

.hero-desc {
    font-size: 1rem;
    color: #ddd;
    line-height: 1.8;
}

/* 利益ダッシュボード（サイバー風パネル） */
.profit-dashboard {
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid var(--border-neon);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 40px;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.1), inset 0 0 50px rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
}

/* 修正後 */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.dashboard-header h2 {
    flex: 1;
    min-width: 0;
    font-size: 1.1rem;
    color: #ccc;
    word-break: keep-all;   /* 「推」「移」みたいな1文字分断を防ぐ */
    overflow-wrap: normal;  /* 余計な強制改行を抑える */
}

/* 追加：極小スマホでの逃げ（1行維持しやすくする） */
@media (max-width: 480px) {
    .dashboard-header h2 {
        font-size: 0.95rem;
    }

    .live-badge {
        font-size: 0.75rem;
    }
}


.live-badge {
    flex-shrink: 0;
    white-space: nowrap;    /* 「● LIVE DATA」を改行させない */
    color: #ff0000;
    font-weight: bold;
    font-family: var(--font-tech);
    font-size: 0.8rem;
    animation: blink 2s infinite;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.profit-main-display {
    text-align: center;
    margin-bottom: 20px;
}

.profit-main-display .label {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-gold);
    margin-bottom: 5px;
    font-family: var(--font-tech);
}

.profit-main-display .yen-mark {
    font-size: 2rem;
    vertical-align: top;
    color: var(--text-white);
}

#total-profit-counter {
    font-family: var(--font-tech);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-white);
    text-shadow: 0 0 15px var(--primary-gold);
    line-height: 1;
}

/* チャートエリア */
.chart-container {
    width: 100%;
    height: 250px;
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 0.7rem;
    color: #777;
    text-align: right;
    border-top: 1px solid #333;
    padding-top: 10px;
}

/* CTAエリア */
.cta-area {
    text-align: center;
}

.timer-box {
    margin-bottom: 15px;
}

.timer-label {
    font-size: 0.9rem;
    color: #aaa;
}

#countdown {
    font-family: var(--font-tech);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--secondary-orange);
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.8);
}

.scarcity-box {
    margin-bottom: 30px;
    background: rgba(255,255,255,0.05);
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
    width: 100%;
}

.scarcity-box p {
    font-weight: bold;
    margin-bottom: 5px;
}

.scarcity-box .alert {
    color: #ff3333;
    font-size: 1.2rem;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #333;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    width: 80%; /* 残り8名/10名なので、在庫が減った感ではなく「埋まった」感を出すなら80%だが、ここでは残りを強調 */
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-orange), #ff0000);
    width: 90%; /* 残り2枠しかない＝80%埋まっている演出 */
    margin-left: 0;
    animation: fillBar 1.5s ease-out forwards;
}

/* 購入ボタン */
.cta-button {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-orange));
    color: #000;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 900;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.6);
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(255, 204, 0, 0.8);
}

.btn-glare {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: glare 3s infinite;
}

@keyframes glare {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

/* レスポンシブ対応 */
@media (min-width: 768px) {
    .hero-title { font-size: 3.5rem; }
    .highlight { font-size: 2rem; }
    #total-profit-counter { font-size: 5rem; }
    .scarcity-box { width: auto; min-width: 300px; }
}

/* style.css の .hero-text-area を修正 */
.hero-text-area {
    position: relative;
    z-index: 2;
    /* 文字の背景に少しだけ黒い座布団を敷く（ぼかし付き） */
    text-shadow: 0 0 20px rgba(0,0,0,0.9);
}

/* タイトルを大きく、より強く */
.hero-title {
    font-size: 2.5rem; /* スマホでも大きく */
    line-height: 1.2;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    /* 強い光彩 */
    text-shadow: 0 0 10px rgba(0,0,0,1), 0 0 20px rgba(255, 204, 0, 0.3);
}

/* --- セクション共通見出し --- */
.history-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #050505, #0a0a0a);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.en-title {
    display: block;
    font-family: var(--font-tech);
    color: var(--primary-gold);
    letter-spacing: 4px;
    font-size: 0.9rem;
    margin-bottom: 5px;
    opacity: 0.8;
}

.ja-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-white);
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

/* --- サイバータイムライン --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto 80px;
    padding-left: 30px; /* 左側の線のスペース */
}

/* 縦線 */
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 9px; /* マーカーの中心に合わせる */
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.1), var(--primary-gold), var(--secondary-orange));
    box-shadow: 0 0 10px var(--primary-gold);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* マーカー（点） */
.timeline-marker {
    position: absolute;
    left: -26px; /* 線の位置に合わせる */
    top: 5px;
    width: 12px;
    height: 12px;
    background: #333;
    border: 2px solid #666;
    border-radius: 50%;
    z-index: 2;
    transition: all 0.3s;
}

/* 最新（Active）のマーカー */
.timeline-item.active .timeline-marker {
    background: var(--secondary-orange);
    border-color: var(--primary-gold);
    box-shadow: 0 0 15px var(--secondary-orange);
    width: 16px;
    height: 16px;
    left: -28px;
}

/* パルスアニメーション */
.pulse {
    animation: pulseEffect 2s infinite;
}
@keyframes pulseEffect {
    0% { box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 102, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 102, 0, 0); }
}

.timeline-content {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid #444;
    padding: 20px;
    border-radius: 0 10px 10px 0;
}

/* 最新版のボックス強調 */
.glow-box {
    background: rgba(255, 102, 0, 0.05);
    border-left: 3px solid var(--secondary-orange);
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 102, 0, 0.2);
}

.timeline-date {
    display: block;
    font-family: var(--font-tech);
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.timeline-date.current {
    color: var(--secondary-orange);
    font-weight: bold;
}

.timeline-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}

.timeline-content p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
}

.text-gold { color: var(--primary-gold); font-weight: bold; }
.text-orange { color: var(--secondary-orange); font-weight: bold; }

/* --- アラートボックス（募集要項） --- */
.alert-box {
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid #ff3333;
    background: rgba(20, 0, 0, 0.8);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

/* ストライプ背景（注意喚起） */
.alert-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background: repeating-linear-gradient(
        45deg,
        #ff3333,
        #ff3333 10px,
        #000 10px,
        #000 20px
    );
}

.alert-header {
    background: #ff3333;
    color: #000;
    font-family: var(--font-tech);
    font-weight: bold;
    padding: 5px 15px;
    display: inline-block;
    margin-top: 5px; /* 上部のストライプを避ける */
    font-size: 0.9rem;
}

.alert-body {
    padding: 30px;
    text-align: center;
}

.alert-desc {
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.8;
}

.big-number {
    font-size: 1.5rem;
    color: var(--primary-gold);
    font-weight: bold;
    font-family: var(--font-tech);
}

.recruit-info {
    border: 1px dashed rgba(255, 255, 255, 0.3);
    padding: 20px;
    background: rgba(0,0,0,0.3);
    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
}

.recruit-info dl {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 10px 0;
    flex-wrap: wrap; /* スマホ対策 */
}

.recruit-info dl:last-child {
    border-bottom: none;
}

.recruit-info dt {
    width: 30%;
    color: #aaa;
    font-weight: bold;
    min-width: 120px;
}

.recruit-info dd {
    width: 70%;
    color: #fff;
    font-weight: bold;
    min-width: 200px;
}

.alert-footer {
    font-size: 0.9rem;
    color: #ddd;
}

.red-highlight {
    background: rgba(255, 0, 0, 0.2);
    color: #ff3333;
    padding: 2px 5px;
    font-weight: bold;
}

/* スマホ対応 */
@media (max-width: 600px) {
    .recruit-info dt, .recruit-info dd {
        width: 100%;
        text-align: center;
        display: block;
    }
    .recruit-info dt {
        margin-bottom: 5px;
        color: var(--secondary-orange);
    }
}

/* --- 機能紹介セクション --- */
.about-section {
    padding: 80px 0;
    background-color: #080808;
    position: relative;
}

.section-lead {
    color: #ccc;
    font-size: 1rem;
    margin-top: 15px;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: linear-gradient(145deg, rgba(20,20,20,0.9), rgba(10,10,10,0.95));
    border: 1px solid rgba(255, 204, 0, 0.2);
    padding: 30px;
    border-radius: 15px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.1);
}

.card-icon {
    font-family: var(--font-tech);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: #aaa;
    line-height: 1.6;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* --- 開発者セクション --- */
.developer-section {
    padding: 100px 0 0; /* 下部はスライダーがあるのでpaddingなし */
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
    position: relative;
    overflow: hidden;
}

/* 背景に幾何学模様を入れる */
.video-background-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.dev-profile-area {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-bottom: 60px;
}

.dev-card {
    flex: 1;
    min-width: 320px;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    overflow: hidden;
}

.dev-header {
    background: linear-gradient(90deg, #111, #222);
    padding: 20px;
    border-bottom: 2px solid var(--primary-gold);
    text-align: center;
}

.dev-header .role {
    display: block;
    font-family: var(--font-tech);
    color: var(--secondary-orange);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.dev-header h3 {
    font-size: 1.8rem;
    margin: 5px 0;
}

.dev-header .name-en {
    font-family: var(--font-tech);
    color: #666;
    font-size: 0.9rem;
}

.dev-body {
    padding: 25px;
}

.dev-body p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* エビデンス画像（新聞記事） */
.evidence-img-wrapper {
    margin-bottom: 20px;
    border: 1px solid #444;
    padding: 5px;
    background: #000;
    text-align: center;
}

.evidence-img {
    width: 100%;
    height: auto;
    display: block;
    filter: sepia(0.2) contrast(1.1); /* 少し古紙っぽくカッコよく */
}

.evidence-caption {
    display: block;
    font-size: 0.7rem;
    color: #888;
    margin-top: 5px;
    text-align: right;
}

.specs-box {
    background: rgba(0, 0, 0, 0.4);
    border-left: 3px solid var(--primary-gold);
    padding: 15px;
}

.specs-box h4 {
    font-family: var(--font-tech);
    color: var(--primary-gold);
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.specs-box ul {
    list-style: none;
    padding: 0;
}

.specs-box li {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #ddd;
}

.specs-box li strong {
    color: #fff;
}

/* 修正後 */
/* 理由テキストボックス */
.reason-text-box {
    text-align: left;
    max-width: 700px;
    margin: 0 auto 80px;
    padding: 40px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.1) 0%, transparent 70%);
}

.reason-text-box h3 {
    text-align: center;
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 20px;
}

.highlight-text {
    font-size: 1.4rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
}

/* --- 書籍スライダー（無限スクロール） --- */
.books-slider-wrapper {
    background: #000;
    padding: 40px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    overflow: hidden;
}

.slider-title {
    text-align: center;
    font-family: var(--font-tech);
    color: #444;
    letter-spacing: 5px;
    margin-bottom: 20px;
    font-size: 0.8rem;
}

.infinite-slider {
    width: 100%;
    position: relative;
    display: flex;
    overflow: hidden;
}

.slide-track {
    display: flex;
    width: max-content; /* 中身の幅に合わせる */
    animation: scroll 40s linear infinite;
}

.slide-track img {
    height: 180px; /* 高さを統一 */
    width: auto;
    margin: 0 15px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transition: transform 0.3s;
    filter: brightness(0.8);
}

.slide-track img:hover {
    filter: brightness(1.1);
    transform: scale(1.1);
    z-index: 10;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.4);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* 半分（1セット分）移動したらループ */
}

/* スマホ対応 */
@media (max-width: 768px) {
    .slide-track img {
        height: 120px; /* スマホでは少し小さく */
        margin: 0 10px;
    }
    
    .feature-card {
        padding: 20px;
    }
}

```css
/* --- 使い方セクション --- */
.usage-section {
    padding: 80px 0;
    background-color: #0b0b0b;
    background-image: 
        linear-gradient(rgba(255, 204, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 204, 0, 0.03) 1px, transparent 1px);
    background-size: 30px 30px; /* グリッド背景 */
}

/* モニター風動画枠 */
.monitor-wrapper {
    max-width: 800px;
    margin: 0 auto 60px;
    perspective: 1000px;
}

.monitor-frame {
    position: relative;
    background: #000;
    border: 2px solid #333;
    border-top: 2px solid var(--primary-gold);
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.15);
}

/* 画面の映り込み演出 */
.screen-glare {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.demo-video {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #222;
}

.monitor-ui-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 5px;
    font-family: var(--font-tech);
    font-size: 0.7rem;
    color: var(--primary-gold);
}

/* ステップフロー */
.usage-steps {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-card {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    align-items: flex-start;
    transition: transform 0.3s;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 204, 0, 0.3);
}

.step-number {
    font-family: var(--font-tech);
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    margin-right: 25px;
    line-height: 1;
}

/* アクティブなステップ（購入） */
.highlight-step {
    border-color: var(--secondary-orange);
    background: rgba(255, 102, 0, 0.05);
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.1);
}

.highlight-step .step-number {
    color: var(--secondary-orange);
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.step-content p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
}

/* 3頭の役割ボックス（HUD） */
.horses-role-box {
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #444;
    padding: 20px;
    border-radius: 8px;
}

.horses-role-box h4 {
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.role-grid {
    display: flex;
    gap: 15px;
}

.role-item {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
}

.rank-1 { border-bottom: 3px solid var(--primary-gold); }
.rank-2 { border-bottom: 3px solid #silver; } /* 銀色はCSS色名silver */
.rank-3 { border-bottom: 3px solid #cd7f32; } /* 銅色 */

.role-label {
    display: block;
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 5px;
}

.role-desc {
    display: block;
    font-size: 0.85rem;
    color: #fff;
    line-height: 1.4;
}

.role-desc strong {
    display: block;
    font-size: 1rem;
    margin-top: 2px;
}

.rank-1 .role-desc strong { color: var(--primary-gold); }

.closing-msg {
    margin-top: 20px;
    font-weight: bold;
    color: #fff !important;
    text-align: center;
    border-top: 1px dashed rgba(255,255,255,0.2);
    padding-top: 15px;
}

/* 最後の注釈 */
.final-note {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
}

.final-note p {
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
}

.glitch-text {
    font-size: 1.3rem;
    color: var(--primary-gold);
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* スマホ対応 */
@media (max-width: 600px) {
    .step-card {
        flex-direction: column;
    }
    .step-number {
        margin-bottom: 10px;
    }
    .role-grid {
        flex-direction: column;
    }
    .role-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }
    .role-desc strong {
        display: inline;
        margin-left: 10px;
    }
}

/* ▼▼▼ 追加：スマホの文字改行・レイアウト修正 ▼▼▼ */

/* 文節の途中で改行させない魔法のクラス */
.bunsetsu {
    display: inline-block;
}

/* スマホでは改行タグ<br>を無効にするクラス */
@media (max-width: 768px) {
    .pc-br {
        display: none;
    }
    
    /* スマホでの長文の読みやすさ改善 */
    .section-lead, 
    .reason-text-box p,
    .feature-card p,
    .dev-body p {
        text-align: justify; /* 両端揃えで見栄えを整える */
        text-align-last: center; /* 最後の行は中央寄せ（お好みでleftでも可） */
        word-break: break-all; /* 不自然な空白を作らせない */
    }

    /* 「穴馬殿とは？」などのリード文調整 */
    .section-lead {
        font-size: 0.9rem;
        padding: 0 15px; /* 横に余白を持たせて窮屈さを解消 */
        line-height: 1.8;
    }

    /* 開発者セクションのテキスト調整 */
    .reason-text-box {
        padding: 30px 20px;
    }
}

/* --- 直近成績セクション --- */
.results-section {
    padding: 80px 0;
    background-color: #050505;
    /* わずかなノイズパターン背景 */
    background-image: radial-gradient(rgba(30,30,30,0.3) 1px, transparent 1px);
    background-size: 20px 20px;
}

.results-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.result-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.3s;
}

.result-card:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.1);
    transform: translateY(-2px);
}

.result-header-bar {
    padding: 15px 20px;
    background: linear-gradient(90deg, #111, #080808);
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.date-badge {
    background: #222;
    color: var(--primary-gold);
    font-family: var(--font-tech);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.result-text {
    color: #fff;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.5;
}

.result-img-container {
    position: relative;
    padding: 10px;
    background: #000;
    line-height: 0; /* 画像の下の隙間を消す */
}

.evidence-pic {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #222;
    filter: brightness(0.9) contrast(1.1); /* 少しコントラストを上げて文字を見やすく */
    transition: filter 0.3s;
}

.result-card:hover .evidence-pic {
    filter: brightness(1) contrast(1);
}

/* スキャンライン演出（1つ目のカードのみ適用など） */
.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 204, 0, 0.5);
    box-shadow: 0 0 10px var(--primary-gold);
    animation: scan 3s linear infinite;
    pointer-events: none;
    opacity: 0.5;
}

@keyframes scan {
    0% { top: 0%; opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { top: 100%; opacity: 0; }
}

/* スマホ対応 */
@media (max-width: 600px) {
    .result-header-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .result-text {
        font-size: 1rem;
    }
}

/* --- ユーザー様の声セクション --- */
.voice-section {
    padding: 80px 0;
    background-color: #080808;
    background-image: linear-gradient(0deg, #000 0%, transparent 100%);
}

.voice-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.voice-card {
    display: flex;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    /* PCでは横並び */
    flex-direction: row; 
    align-items: flex-start;
}

/* プロフィールエリア（左側） */
.voice-profile {
    width: 250px;
    background: rgba(0,0,0,0.5);
    padding: 30px 20px;
    text-align: center;
    border-right: 1px solid #333;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%; /* 高さいっぱい */
}

.profile-img-box {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
}

.user-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary-gold);
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.3);
}

.user-since {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-orange);
    color: #fff;
    font-family: var(--font-tech);
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    white-space: nowrap;
    border: 1px solid #fff;
}

.user-name {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 5px;
}

.user-attr {
    font-size: 0.8rem;
    color: #aaa;
}

.interview-date {
    font-size: 0.75rem;
    color: #666;
    border: 1px solid #444;
    padding: 2px 10px;
    border-radius: 4px;
}

/* インタビュー内容（右側） */
.interview-content {
    flex: 1;
    padding: 30px;
}

.interview-item {
    margin-bottom: 25px;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    padding-bottom: 20px;
}

.interview-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.question {
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

/* Q. の文字を目立たせる */
.question::before {
    content: 'Q.';
    margin-right: 10px;
    font-family: var(--font-tech);
    font-size: 1.1rem;
    color: var(--secondary-orange);
}

.answer {
    color: #ddd;
    line-height: 1.8;
    font-size: 0.95rem;
    padding-left: 28px; /* Q.の分だけインデント */
}

/* 強調テキスト（ゴールド） */
.highlight-text {
    color: #fff;
    font-weight: bold;
    background: linear-gradient(transparent 70%, rgba(255, 204, 0, 0.3) 70%);
}

/* スマホ対応 */
@media (max-width: 768px) {
    .voice-card {
        flex-direction: column;
    }

    .voice-profile {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #333;
        flex-direction: row; /* スマホでは顔と名前を横並びに */
        padding: 20px;
        align-items: center;
        text-align: left;
        gap: 20px;
    }

    .profile-img-box {
        width: 80px;
        height: 80px;
        margin-bottom: 0;
    }
    
    .voice-profile > div:not(.profile-img-box) {
        display: flex;
        flex-direction: column;
    }

    .interview-content {
        padding: 20px;
    }

    .answer {
        padding-left: 0; /* スマホはインデント解除 */
    }
}

/* ▼▼▼ 追加：ユーザーの声セクションの文字修正 ▼▼▼ */

.voice-section .highlight-text {
    /* 以前のグラデーション文字設定を強制リセット */
    -webkit-text-fill-color: #fff !important; /* 文字色を白に戻す */
    background: none !important;
    font-size: inherit !important; /* 文字サイズを本文に合わせる */
    text-shadow: none !important;
    
    /* 新しい強調スタイル：読みやすいマーカー風 */
    color: #fff !important;
    font-weight: bold;
    /* 下半分にオレンジの蛍光ペン風ライン */
    background: linear-gradient(transparent 60%, rgba(255, 102, 0, 0.6) 60%) !important;
    padding: 0 4px;
}

/* --- ロジック解説セクション --- */
.logic-section {
    padding: 80px 0;
    background-color: #0d0d0d;
    position: relative;
    /* 背景にうっすらとデータグリッドを表示 */
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.logic-block {
    margin-bottom: 100px;
}

.logic-block:last-child {
    margin-bottom: 0;
}

.logic-content {
    max-width: 800px;
    margin: 0 auto;
    color: #ccc;
    font-size: 1.05rem;
    line-height: 2;
}

.logic-content p {
    margin-bottom: 25px;
}

/* 画像ボックス */
.img-box {
    text-align: center;
    margin-bottom: 40px;
    background: #000;
    padding: 20px;
    border: 1px solid #333;
    border-radius: 10px;
}

.concept-img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.img-caption {
    display: block;
    font-size: 0.8rem;
    color: #777;
    margin-top: 10px;
}

/* 強調ボックス（結論） */
.emphasis-box {
    border: 2px solid var(--primary-gold);
    background: rgba(255, 204, 0, 0.05);
    padding: 30px;
    text-align: center;
    margin: 40px 0;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.1);
}

.emphasis-box p {
    margin: 0;
    font-weight: bold;
    color: #fff;
    font-size: 1.1rem;
}

/* ケーススタディボックス */
.case-study-box {
    background: linear-gradient(135deg, #222, #111);
    border-left: 5px solid var(--secondary-orange);
    padding: 25px;
    margin: 30px 0;
    position: relative;
}

.case-title {
    font-family: var(--font-tech);
    color: var(--secondary-orange);
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.case-study-box p {
    margin-bottom: 0;
    color: #ddd;
}

/* 文字装飾 */
.text-orange {
    color: var(--secondary-orange);
    font-weight: bold;
}

/* スマホ対応 */
@media (max-width: 600px) {
    .logic-content {
        font-size: 0.95rem;
        line-height: 1.8;
        padding: 0 10px;
    }
    .emphasis-box {
        padding: 20px;
    }
}

.voice-section .highlight-text,
.logic-section .highlight-text {
    /* 透明化を解除して白文字にする */
    -webkit-text-fill-color: #ffffff !important; 
    color: #ffffff !important;
    
    /* グラデーション背景を解除し、マーカー線を引く */
    background: linear-gradient(transparent 60%, rgba(255, 102, 0, 0.8) 60%) !important;
    
    /* 背景の切り抜き設定をリセット */
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    
    /* 文字サイズや影を本文に合わせる */
    font-size: inherit !important;
    text-shadow: none !important;
    font-weight: bold;
    padding: 0 4px;
}


/* --- 解析ロジック（ターミナル風）セクション --- */
.analysis-case-section {
    padding: 80px 0;
    background-color: #000;
}

.terminal-window {
    max-width: 800px;
    margin: 0 auto;
    background-color: #1e1e1e; /* エディタっぽい濃いグレー */
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.1); /* 緑の光彩 */
    border: 1px solid #333;
    overflow: hidden;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace; /* 等幅フォント */
}

.terminal-header {
    background-color: #2d2d2d;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #333;
}

.terminal-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
    display: inline-block;
}

.dot.red { background-color: #ff5f56; }
.dot.yellow { background-color: #ffbd2e; }
.dot.green { background-color: #27c93f; }

.terminal-title {
    margin-left: 15px;
    color: #999;
    font-size: 0.8rem;
}

.terminal-body {
    padding: 20px;
    min-height: 400px; /* 高さを確保 */
    color: #d4d4d4;
    font-size: 0.95rem;
    line-height: 1.6;
    overflow-y: auto;
}

/* コードの色分け（JSでクラス付与） */
.log-line { margin-bottom: 5px; display: block; }
.log-label { color: #569cd6; font-weight: bold; margin-right: 10px; } /* 青 */
.log-val { color: #ce9178; } /* オレンジ */
.log-highlight { color: #4ec9b0; } /* エメラルド */
.log-warning { color: #dcdcaa; } /* 黄色 */
.log-success { color: #b5cea8; font-weight: bold; } /* 緑 */
.log-result { 
    color: var(--primary-gold); 
    font-weight: bold; 
    border: 1px solid var(--primary-gold);
    padding: 5px 10px;
    display: inline-block;
    margin-top: 10px;
}

/* カーソル点滅 */
.cursor {
    display: inline-block;
    width: 8px;
    height: 15px;
    background-color: #fff;
    animation: blinkCursor 1s infinite;
    vertical-align: middle;
}

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

.terminal-note {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    margin-top: 20px;
}

/* スマホ対応 */
@media (max-width: 600px) {
    .terminal-body {
        font-size: 0.8rem; /* 文字を小さくして折り返しを防ぐ */
        min-height: 300px;
    }
}

/* --- 5つの理由セクション --- */
.reasons-section {
    padding: 80px 0;
    background-color: #0a0a0a;
    position: relative;
}

/* 背景にうっすら斜線を入れる */
.reasons-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.01),
        rgba(255, 255, 255, 0.01) 1px,
        transparent 1px,
        transparent 10px
    );
    pointer-events: none;
}

.reasons-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.reason-item {
    display: flex;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
}

.reason-item:hover {
    border-color: var(--primary-gold);
    transform: translateX(10px); /* ホバーで少し右にずれる */
    background: rgba(30, 30, 30, 0.9);
}

.reason-num {
    background: linear-gradient(135deg, #222, #000);
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-tech);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    border-right: 1px solid #333;
    flex-shrink: 0;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.reason-item:hover .reason-num {
    color: var(--primary-gold);
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.2);
}

.reason-content {
    padding: 25px 30px;
    flex: 1;
}

.reason-content h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.4;
    border-bottom: 1px dashed #444;
    padding-bottom: 10px;
}

.reason-content h3 .text-gold {
    font-size: 1.5rem;
    display: block;
    margin-top: 5px;
}

.reason-content p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* スマホ対応 */
@media (max-width: 600px) {
    .reason-item {
        flex-direction: column;
    }
    
    .reason-num {
        width: 100%;
        height: 60px;
        border-right: none;
        border-bottom: 1px solid #333;
        flex-direction: row;
        justify-content: flex-start;
        padding-left: 20px;
        font-size: 2.5rem;
    }

    .reason-item:hover {
        transform: translateY(-5px); /* スマホでは上にずれる */
    }

    .reason-content {
        padding: 20px;
    }
    
    .reason-content h3 .text-gold {
        font-size: 1.3rem;
    }
}

/* ▼▼▼ 完全修正：すべての強調テキストを可視化 ▼▼▼ */

/* セクションを問わず、highlight-text クラスは全てこのスタイルにする */
.highlight-text {
    /* 透明化設定を強制解除して白文字にする */
    -webkit-text-fill-color: #ffffff !important; 
    color: #ffffff !important;
    
    /* グラデーション背景を解除し、オレンジのマーカー線を引く */
    background: linear-gradient(transparent 60%, rgba(255, 102, 0, 0.8) 60%) !important;
    
    /* 背景の切り抜き設定をリセット */
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    
    /* その他のリセット */
    font-size: inherit !important;
    text-shadow: none !important;
    font-weight: bold;
    padding: 0 4px;
}

/* --- 料金プラン・クロージングセクション --- */
.pricing-section {
    padding: 80px 0 60px;
    background: #080808;
    background-image: radial-gradient(circle at top, #1a1a1a 0%, #000 80%);
}

/* 利益実績（アンカリング） */
.anchor-profit-box {
    text-align: center;
    background: rgba(255, 204, 0, 0.05);
    border: 1px solid var(--primary-gold);
    border-radius: 10px;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto 50px;
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.1);
}

.anchor-label {
    color: var(--primary-gold);
    font-size: 0.9rem;
    margin-bottom: 5px;
    font-family: var(--font-tech);
    letter-spacing: 2px;
}

.anchor-price {
    font-family: var(--font-tech);
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 204, 0, 0.5);
}

.anchor-price .yen { font-size: 1.5rem; color: #aaa; margin-right: 5px; }

.anchor-note {
    font-size: 0.8rem;
    color: #888;
    margin-top: 5px;
}

/* プランカードグリッド */
.plans-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.plan-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    position: relative;
    transition: transform 0.3s;
}

/* 無期限プラン（推奨）のデザイン */
.plan-card.recommended {
    border: 2px solid var(--primary-gold);
    background: linear-gradient(180deg, rgba(255, 204, 0, 0.05) 0%, rgba(0,0,0,0) 100%);
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.15);
    transform: scale(1.05); /* 少し大きく */
    z-index: 2;
}

.recommend-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gold);
    color: #000;
    font-weight: bold;
    padding: 5px 20px;
    border-radius: 20px;
    font-family: var(--font-tech);
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.plan-name {
    text-align: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
    margin-top: 10px;
}

.plan-price {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #444;
}

.plan-price .currency { font-size: 1.5rem; color: #888; }
.plan-price .amount { font-family: var(--font-tech); font-size: 3rem; font-weight: bold; color: #fff; }
.plan-price .tax { font-size: 0.8rem; color: #666; }

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #ccc;
    display: flex;
    align-items: center;
}

.plan-features .check {
    color: var(--primary-gold);
    margin-right: 10px;
    font-weight: bold;
}

.plan-features .faint {
    color: #666;
    font-size: 0.8rem;
    margin-left: 25px; /* チェックマーク分ずらす */
}

/* ボタン */
.plan-button {
    display: block;
    text-align: center;
    padding: 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.gold-btn {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-orange));
    color: #000;
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.4);
    font-weight: 900;
}

.gold-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.6);
}

.silver-btn {
    background: #333;
    color: #fff;
    border: 1px solid #555;
}

.silver-btn:hover {
    background: #444;
}

/* 動作環境スペック表 */
.specs-panel {
    max-width: 800px;
    margin: 0 auto 60px;
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
}

.specs-header {
    background: #222;
    padding: 10px 20px;
    font-family: var(--font-tech);
    color: #aaa;
    font-size: 0.9rem;
    border-bottom: 1px solid #333;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1px;
    background: #333; /* 罫線用 */
}

.spec-item {
    background: #0e0e0e;
    padding: 20px;
}

.spec-item dt {
    color: #666;
    font-size: 0.8rem;
    font-family: var(--font-tech);
    margin-bottom: 5px;
}

.spec-item dd {
    color: #ddd;
    font-size: 0.95rem;
}

/* 最終警告ボックス */
.final-warning-box {
    max-width: 700px;
    margin: 0 auto;
    border: 2px solid #ff3333;
    background: rgba(20, 0, 0, 0.8);
    position: relative;
    /* 斜線背景 */
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255, 0, 0, 0.05),
        rgba(255, 0, 0, 0.05) 10px,
        transparent 10px,
        transparent 20px
    );
}

.warning-header {
    background: #ff3333;
    color: #000;
    font-weight: bold;
    font-family: var(--font-tech);
    text-align: center;
    padding: 8px;
}

.warning-body {
    padding: 30px;
    text-align: center;
}

.recruit-details {
    background: rgba(0,0,0,0.5);
    border: 1px dashed rgba(255,255,255,0.2);
    display: inline-block;
    padding: 15px 30px;
    margin: 20px 0;
}

.final-timer-wrapper p {
    color: #ff3333;
    font-weight: bold;
    margin-bottom: 5px;
}

.timer-display-large {
    font-family: var(--font-tech);
    font-size: 3rem;
    color: #ff3333;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.closing-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #ddd;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .plan-card.recommended { transform: none; }
    .specs-grid { grid-template-columns: 1fr; }
}


/* --- FAQセクション --- */
.faq-section {
    padding: 80px 0;
    background-color: #050505;
}

.faq-grid {
    display: grid;
    /* PCでは2列表示で効率よく見せる */
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    padding: 30px;
    border-radius: 10px;
    transition: background 0.3s, border-color 0.3s;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #555;
}

.faq-question {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.q-icon {
    color: var(--primary-gold);
    font-family: var(--font-tech);
    font-size: 1.5rem;
    font-weight: 900;
    margin-right: 15px;
    line-height: 1;
    flex-shrink: 0; /* アイコンが潰れないように */
}

.faq-answer {
    display: flex;
    align-items: flex-start;
    padding-top: 20px;
    border-top: 1px dashed #333;
}

.a-icon {
    color: var(--secondary-orange);
    font-family: var(--font-tech);
    font-size: 1.5rem;
    font-weight: 900;
    margin-right: 15px;
    line-height: 1;
    flex-shrink: 0;
}

.faq-answer p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.note-text {
    font-size: 0.85rem;
    color: #888;
    display: block;
    margin-top: 5px;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr; /* スマホでは1列 */
    }
    
    .faq-item {
        padding: 20px;
    }

    .faq-question {
        font-size: 1rem;
    }
}

/* --- 追伸（P.S.）セクション --- */
.ps-section {
    padding: 80px 0 120px; /* 下に余裕を持たせる */
    background: #000;
    position: relative;
    overflow: hidden;
}

/* 背景にうっすらと光の粒子（高級感） */
.ps-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
}

.ps-frame {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #333;
    background: linear-gradient(180deg, rgba(20,20,20,0.9), rgba(0,0,0,1));
    padding: 60px 40px;
    border-radius: 2px; /* 手紙っぽく角張らせる */
    position: relative;
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
}

/* 上部のアクセントライン */
.ps-frame::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.ps-title {
    font-size: 1.5rem;
    color: #888;
    margin-bottom: 40px;
    font-family: var(--font-main);
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}

.ps-highlight {
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
    display: block;
    margin-top: 10px;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.ps-body p {
    font-size: 1.05rem;
    line-height: 2.2;
    color: #bbb;
    margin-bottom: 30px;
}

.ps-emphasis {
    font-size: 1.2rem !important;
    color: #fff !important;
    font-weight: bold;
    border-left: 4px solid var(--primary-gold);
    padding-left: 20px;
    background: linear-gradient(90deg, rgba(255, 204, 0, 0.05), transparent);
    padding: 20px;
}

.ps-closing-msg {
    font-size: 1.3rem !important;
    color: #fff !important;
    font-weight: 900;
    text-align: center;
    margin-top: 50px;
    letter-spacing: 2px;
}

.ps-signature {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 40px;
    margin-bottom: 60px;
    gap: 15px;
}

.sig-logo {
    width: 50px;
    opacity: 0.8;
    filter: grayscale(100%);
}

.sig-text {
    text-align: left;
    font-family: var(--font-tech);
    font-weight: bold;
    color: #666;
    line-height: 1.2;
}

.sig-sub {
    font-size: 0.7rem;
    letter-spacing: 2px;
}

/* --- 最後のCTAボタンエリア --- */
.final-action-area {
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px dashed #333;
}

.final-timer-label {
    color: #ff3333;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 0.9rem;
    animation: blink 1.5s infinite;
}

.final-cta-button {
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: linear-gradient(135deg, var(--secondary-orange), #ff3300);
    border-radius: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 51, 0, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(255,255,255,0.2);
}

.final-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 51, 0, 0.6);
}

.btn-main-text {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 5px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.btn-sub-text {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    font-weight: bold;
}

.shine-effect {
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    animation: shineFast 3s infinite;
}

@keyframes shineFast {
    0% { left: -100%; }
    10% { left: 200%; }
    100% { left: 200%; }
}

/* テキストカラー */
.text-white { color: #fff; font-weight: bold; }

/* スマホ対応 */
@media (max-width: 600px) {
    .ps-frame { padding: 40px 20px; }
    .ps-highlight { font-size: 1.6rem; }
    .btn-main-text { font-size: 1.4rem; }
    .ps-body p { text-align: left; } /* スマホでは左揃えの方が見やすい場合も */
}

/* --- スタンプ演出 --- */
.stamp-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 10;
    font-family: 'Courier New', sans-serif;
    font-weight: 900;
    color: #ff3333;
    border: 3px solid #ff3333;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 1.2rem;
    transform: rotate(15deg);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    text-transform: uppercase;
    opacity: 0;
    animation: stampIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation-delay: 0.5s; /* カードが表示されてから少し遅れてドン！ */
}

/* 2つ目のカードは少し遅らせるなどの変化用 */
.result-card:nth-child(even) .stamp-badge {
    animation-delay: 0.7s;
    border-color: #ff9900;
    color: #ff9900;
}

@keyframes stampIn {
    0% { opacity: 0; transform: scale(3) rotate(15deg); }
    100% { opacity: 1; transform: scale(1) rotate(15deg); }
}


/* ボタンの強化デザイン */
.cta-button, .final-cta-button {
    /* 既存のスタイルは維持しつつ、以下を追加/調整 */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-button:hover, .final-cta-button:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 153, 0, 0.8), 0 0 60px rgba(255, 102, 0, 0.4);
    border-color: #fff;
    letter-spacing: 2px; /* 文字間隔を広げて「開く」感じを出す */
}

/* ボタン内部のテキストのアニメーション */
.cta-button span, .final-cta-button span {
    transition: all 0.3s;
}

/* =========================================
   ▼▼▼ 最終調整：スマホ表示・文字修正パッチ ▼▼▼
   ========================================= */

/* 1. 黒文字になってしまうバグの完全修正 */
.highlight-text,
.voice-section .highlight-text,
.logic-section .highlight-text {
    color: #ffffff !important; /* 強制的に白文字 */
    background: linear-gradient(transparent 60%, #ff6600 60%) !important; /* オレンジマーカー */
    -webkit-text-fill-color: #ffffff !important; /* 透明化を解除 */
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
    text-shadow: none !important;
    font-weight: bold;
}

/* 2. スマホでの「不要な改行」を無効化 */
/* 修正後 */
@media (max-width: 768px) {
    .pc-br {
        display: none !important; /* PC用の<br>をスマホで消す */
    }
    
    /* 3. スマホでは「左揃え」にして読みやすくする */
    .section-lead, 
    .hero-desc,
    .feature-card p,
    .dev-body p,
    .ps-body p,
    .logic-content p,
    .warning-body p,
    .closing-msg,
    .reason-text-box p {
        text-align: left !important; /* 強制的に左揃え */
        text-align-last: left !important;
        line-height: 1.8 !important;
        letter-spacing: 0.05em;
        word-break: break-all; /* 単語の途中でも折り返す（変な隙間防止） */
    }

    .reason-text-box p {
        word-break: normal !important;
        overflow-wrap: anywhere;
    }

    /* 文節キープ（bunsetsu）の設定 */
    .bunsetsu {
        display: inline-block;
    }


    /* 見出し周りの余白調整 */
    .section-header {
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .section-lead {
        font-size: 0.95rem;
    }

    /* 追伸エリアの調整 */
    .ps-frame {
        padding: 30px 20px;
    }
}

/* =================================================================
   ▼▼▼ 修正パッチ（スマホ左揃え・3頭の階層・タイマー） ▼▼▼
   ================================================================= */

/* 1) スマホで変な右揃え・中央揃えになる箇所を「左揃え」に強制統一 */
@media (max-width: 768px) {
    /* 実績の注釈 */
    .disclaimer { 
        text-align: left !important; 
        padding-left: 10px;
    }

    /* 注意事項・開発者・理由・最後の注釈など */
    .alert-body, 
    .alert-desc, 
    .alert-footer,
    .reason-text-box,
    .final-note,
    .ps-body {
        text-align: left !important;
    }
    
    /* 読みやすくするための行間調整 */
    .reason-text-box p, 
    .alert-desc,
    .ps-body p {
        line-height: 1.9 !important;
        letter-spacing: 0.05em;
    }
}

/* 2) 3頭の役割：1頭目＞2頭目＞3頭目のヒエラルキーデザイン */
.role-grid {
    align-items: flex-end; /* 下揃えにして高さの違いを出す */
    margin-top: 30px;
    gap: 10px;
}

/* 1頭目：最強の強調（大きく、金色、発光） */
.role-item.rank-1 {
    order: 1; /* スマホで並び順が崩れないように */
    background: linear-gradient(180deg, rgba(255, 204, 0, 0.2), rgba(0,0,0,0.8));
    border: 2px solid var(--primary-gold);
    transform: scale(1.1); /* サイズアップ */
    z-index: 2;
    box-shadow: 0 0 25px rgba(255, 204, 0, 0.3);
    padding: 20px 10px;
}
.role-item.rank-1 .role-label {
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.role-item.rank-1 .role-desc strong {
    font-size: 1.4rem; /* 文字も大きく */
    color: #fff;
    text-shadow: 0 0 10px var(--primary-gold);
}

/* 2頭目：銀色ベース */
.role-item.rank-2 {
    order: 2;
    border: 1px solid #a0a0a0;
    background: rgba(160, 160, 160, 0.1);
    transform: scale(1.0);
}
.role-item.rank-2 .role-label { color: #a0a0a0; }

/* 3頭目：銅色ベース、少し小さく */
.role-item.rank-3 {
    order: 3;
    border: 1px solid #cd7f32;
    background: rgba(205, 127, 50, 0.1);
    transform: scale(0.95);
    opacity: 0.8;
}
.role-item.rank-3 .role-label { color: #cd7f32; }

/* スマホでは縦並びに戻すが、強調度は維持 */
@media (max-width: 600px) {
    .role-grid { flex-direction: column; align-items: stretch; }
    .role-item.rank-1 { transform: scale(1); border-width: 2px; margin-bottom: 10px; }
    .role-item.rank-2, .role-item.rank-3 { transform: scale(1); margin-bottom: 5px; }
}

/* 3) スマホでの改行・文字サイズ調整 */
@media (max-width: 480px) {
    /* 「なぜ、穴馬を～」などの見出しが2行になるのを防ぐ、または綺麗に見せる */
    .ja-title {
        font-size: 1.6rem; /* 少し小さく */
        line-height: 1.4;
        white-space: nowrap; /* 強制的に1行にする場合（はみ出すリスクあり） */
    }
    
    /* あるいは改行を許容しつつ綺麗に見せる */
    .section-header .ja-title {
        white-space: normal;
        font-size: 1.5rem;
    }

    /* 追伸の強調文 */
    .ps-emphasis {
        font-size: 1rem !important; /* スマホでは少し控えめに */
        padding: 15px !important;
    }
}

/* 4) 最後のボタン下のタイマー＆残り人数エリア */
.final-timer-container {
    margin-top: 20px;
    padding: 15px;
    background: rgba(0,0,0,0.6);
    border: 1px dashed #444;
    border-radius: 10px;
    display: inline-block;
    width: 100%;
    max-width: 500px;
}

.final-timer-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.timer-part, .stock-part {
    text-align: center;
}

.timer-val {
    font-family: var(--font-tech);
    font-size: 1.8rem;
    color: var(--secondary-orange);
    font-weight: bold;
}

.stock-val {
    font-family: var(--font-tech);
    font-size: 1.8rem;
    color: #ff3333;
    font-weight: bold;
}

.tiny-label {
    display: block;
    font-size: 0.7rem;
    color: #888;
}

/* ロゴ表示の調整 */
.feature-logo-container {
    text-align: center;
    margin: 20px 0;
}
.feature-logo {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 204, 0, 0.3));
}

/* スマホでの見出し改行調整 */
@media (max-width: 480px) {
    .ja-title {
        word-break: keep-all; /* 単語の途中での改行を防ぐ */
        overflow-wrap: normal;
    }
    .bunsetsu {
        display: inline-block; /* 文節ごとの塊を維持 */
    }
}

/* 解析ログ・的中事例の調整 */
.analysis-result-box {
    border-top: 1px dashed #444;
    padding-top: 20px;
}

/* フッターロゴの調整 */
.footer-logo {
    width: 120px;
    opacity: 0.7;
    filter: grayscale(0%); /* ロゴの色を生かす */
    margin-bottom: 20px;
}

.ja-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-white);
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

/* --- 追記：ヒストリー画像 --- */
.history-visual {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.history-img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 204, 0, 0.3);
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.15); /* ほんのりオレンジの光 */
    transition: transform 0.3s, box-shadow 0.3s;
}

.history-img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(255, 204, 0, 0.3);
}

/* --- サイバータイムライン --- */
.timeline {
    position: relative;
    max-width: 800px;
}

.monitor-ui-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 5px;
    font-family: var(--font-tech);
    font-size: 0.7rem;
    color: var(--primary-gold);
}


.usage-flow-visual {
    text-align: center;
    margin-bottom: 60px; /* 下のステップエリアとの間隔 */
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.usage-flow-img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 15px;
    /* 画像内の青いネオンに合わせて青系の発光を追加 */
    border: 1px solid rgba(0, 200, 255, 0.3);
    box-shadow: 0 0 40px rgba(0, 150, 255, 0.15);
    transition: transform 0.3s ease-out;
}

.usage-flow-img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 50px rgba(0, 150, 255, 0.3);
}



/* --- 追記：ユーザーの声・追加報告エリア --- */
.voice-update-box {
    margin-top: 25px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6); /* 少し暗い背景 */
    border: 1px dashed var(--primary-gold); /* 金色の点線枠 */
    border-radius: 10px;
    text-align: center;
    position: relative;
}

/* 「追加報告」のピン留め風アイコン装飾 */
.voice-update-box::before {
    content: 'NEW POST';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-orange);
    color: #fff;
    font-family: var(--font-tech);
    font-size: 0.7rem;
    padding: 2px 10px;
    border-radius: 4px;
    font-weight: bold;
}


.update-text {
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
    display: block;
}

.update-img {
    width: 100%;
    max-width: 320px; /* スマホ画面のスクショなので、巨大になりすぎないよう制限 */
    height: auto;
    border-radius: 8px;
    border: 2px solid #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    display: block;
    margin: 0 auto; /* 中央寄せ */
}

/* 100万円獲得の祝い文字スタイル */
.million-title {
    font-size: 1.8rem; /* 文字を大きく */
    font-weight: 900;
    text-align: center;
    margin-bottom: 15px;
    font-family: var(--font-main);
    
    /* 金色のグラデーション文字 */
    background: linear-gradient(to bottom, #fff 0%, #ffcc00 50%, #ff6600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* 発光演出 */
    filter: drop-shadow(0 0 5px rgba(255, 204, 0, 0.5));
    letter-spacing: 2px;
}

/* スマホ表示時の調整 */
@media (max-width: 600px) {
    .million-title {
        font-size: 1.4rem;
    }
}

/* ============================================
   ▼▼▼ 追尾型CTAボタンのスタイル ▼▼▼
   ============================================ */

/* バー全体の枠組み */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    border-top: 2px solid var(--primary-gold);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.8);
    z-index: 9999;
    padding: 10px 15px;
    
    /* アニメーション用：最初は画面外（下に隠しておく） */
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    
    /* グラスモーフィズム効果（磨りガラス） */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* 表示クラスがついた時 */
.sticky-cta-bar.is-visible {
    transform: translateY(0);
}

.sticky-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

/* 左側の情報エリア（残り人数） */
.sticky-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    line-height: 1.2;
}

.sticky-label {
    font-size: 0.7rem;
    color: #aaa;
    font-weight: bold;
}

.sticky-count {
    font-size: 1rem;
    font-weight: bold;
    color: #ff3333; /* 警告色 */
}

.sticky-count .num {
    font-family: var(--font-tech);
    font-size: 1.4rem;
    margin: 0 3px;
    color: #ff3333;
}

/* ボタン本体 */
.sticky-btn {
    flex: 1; /* 残りの幅を全部使う */
    display: block;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-orange));
    color: #000;
    text-decoration: none;
    text-align: center;
    font-weight: 900;
    font-size: 1.1rem;
    padding: 12px 0;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.5);
    border: 1px solid rgba(255,255,255,0.3);
    transition: transform 0.2s;
}

.sticky-btn:active {
    transform: scale(0.96);
}

/* スマホ調整 */
@media (max-width: 480px) {
    .sticky-cta-bar {
        padding: 10px;
        padding-bottom: max(10px, env(safe-area-inset-bottom)); /* iPhoneの下部バー対策 */
    }
    
    .sticky-btn {
        font-size: 1rem;
        padding: 10px 0;
    }
    
    .sticky-count .num {
        font-size: 1.2rem;
    }
}

.high-roller-box {
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(0, 0, 0, 0.95));
    border: 2px solid var(--primary-gold);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 0 50px rgba(255, 204, 0, 0.15);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* 上部の光るライン演出 */
.high-roller-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--secondary-orange), var(--primary-gold), var(--secondary-orange));
    box-shadow: 0 0 15px var(--primary-gold);
}

.hr-sub {
    display: block;
    font-family: var(--font-tech);
    color: var(--secondary-orange);
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.hr-title {
    font-size: 1.8rem;
    color: #fff;
    font-weight: 900;
    margin-bottom: 40px;
    line-height: 1.4;
    text-shadow: 0 0 20px rgba(0,0,0,0.8);
}

/* プロフィール部分 */
.hr-profile-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hr-img-box {
    position: relative;
}

.hr-face {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--primary-gold);
    object-fit: cover;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.3);
}

.hr-badge {
    position: absolute;
    bottom: -5px;
    right: -10px;
    background: linear-gradient(45deg, #FFD700, #DAA520);
    color: #000;
    font-family: var(--font-tech);
    font-weight: bold;
    font-size: 0.7rem;
    padding: 2px 10px;
    border-radius: 10px;
    border: 1px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.hr-comment {
    color: #ddd;
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: left;
    margin: 0;
}

/* 証拠画像グリッド */
.hr-evidence-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hr-evidence-item {
    flex: 1;
    max-width: 45%;
}

.evidence-label {
    color: #fff;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1rem;
    background: rgba(0,0,0,0.5);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 4px;
}

.evidence-label .num {
    color: var(--primary-gold);
    font-family: var(--font-tech);
    font-size: 1.4rem;
    margin-left: 5px;
}

.hr-evidence-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #444;
    transition: transform 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hr-evidence-img:hover {
    transform: scale(1.03);
    border-color: var(--primary-gold);
}

.hr-footer-note {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #777;
    text-align: right;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .high-roller-box {
        padding: 20px;
        margin-top: 40px;
    }
    
    .hr-title {
        font-size: 1.4rem;
    }
    
    .hr-profile-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .hr-comment {
        text-align: justify; /* スマホでは両端揃えで見やすく */
        font-size: 0.95rem;
    }
    
    .hr-evidence-grid {
        flex-direction: column;
    }
    
    .hr-evidence-item {
        max-width: 100%;
        margin-bottom: 20px;
    }
}


.high-roller-box + .high-roller-box {
    margin-top: 40px;
}

/* 女性会員向けのアレンジ（少し柔らかいアクセント） */
.style-housewife {
    border-color: #ff6699; /* ピンク系の枠線 */
    box-shadow: 0 0 50px rgba(255, 102, 153, 0.15);
}

.style-housewife::before {
    background: linear-gradient(90deg, #ff6699, #ffcc00, #ff6699);
    box-shadow: 0 0 15px #ff6699;
}

.pink-badge {
    background: linear-gradient(45deg, #ff6699, #ff3366);
    border: 1px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

/* 3列グリッド用のスタイル調整 */
.hr-evidence-grid.three-col {
    gap: 15px;
}

.hr-evidence-grid.three-col .hr-evidence-item {
    max-width: 32%; /* 3列並び */
}

/* 証拠画像のラベル調整（文字数に合わせてフォントサイズ微調整） */
.hr-evidence-grid.three-col .evidence-label {
    font-size: 0.85rem;
    padding: 3px 10px;
}

.hr-evidence-grid.three-col .evidence-label .num {
    font-size: 1.1rem;
}

/* スマホ対応（主婦ブロック用） */
@media (max-width: 768px) {
    /* スマホでは1列に戻す */
    .hr-evidence-grid.three-col .hr-evidence-item {
        max-width: 100%;
        margin-bottom: 20px;
    }
}