/* ========================================
   リセット & ベーススタイル
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #f5f5f5;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ========================================
   ヘッドライン
======================================== */
.headline {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: white;
    padding: 20px 16px 24px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.pr-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
}

.main-title {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.5;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.title-accent {
    display: inline-block;
    background-color: #ffff00;
    color: #cc0000;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 8px;
}

.title-highlight {
    font-size: 32px;
    color: #ffff00;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.title-sub {
    font-size: 18px;
    display: block;
    margin-top: 8px;
}

/* ========================================
   メインビジュアル
======================================== */
.hero {
    margin-bottom: 24px;
}

.hero-image {
    width: 100%;
    background-color: #e0e0e0;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px;
}

.hero-placeholder {
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-icon {
    font-size: 80px;
    margin-bottom: 16px;
}

.hero-placeholder p {
    font-size: 14px;
    opacity: 0.9;
}

/* ========================================
   導入文
======================================== */
.intro {
    background-color: white;
    padding: 32px 0;
    margin-bottom: 24px;
}

.intro-text {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.9;
}

.intro-emphasis {
    font-size: 18px;
    font-weight: 700;
    color: #ff4444;
    margin-top: 24px;
    text-align: center;
    padding: 16px;
    background-color: #fff5f5;
    border-left: 4px solid #ff4444;
    border-radius: 4px;
}

/* キャンペーンハイライト */
.campaign-highlight {
    background: linear-gradient(135deg, #ff4444 0%, #ff6b6b 100%);
    color: white;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    margin: 24px 0;
    box-shadow: 0 8px 24px rgba(255, 68, 68, 0.4);
    position: relative;
    overflow: hidden;
    animation: campaign-glow 3s ease-in-out infinite;
}

@keyframes campaign-glow {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(255, 68, 68, 0.4);
    }
    50% {
        box-shadow: 0 12px 32px rgba(255, 68, 68, 0.7);
    }
}

.campaign-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    animation: campaign-shine 3s infinite;
}

@keyframes campaign-shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.campaign-icon {
    font-size: 48px;
    margin-bottom: 12px;
    animation: bounce-icon 2s ease-in-out infinite;
}

@keyframes bounce-icon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.campaign-text {
    font-size: 18px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.campaign-label {
    display: inline-block;
    background-color: #ffff00;
    color: #ff4444;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 8px;
}

.campaign-amount {
    display: inline-block;
    font-size: 32px;
    font-weight: 900;
    color: #ffff00;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    padding: 8px 16px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin: 8px 0;
    animation: amount-pulse 2s ease-in-out infinite;
}

@keyframes amount-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

.campaign-cta {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe4b3 100%);
    border: 3px solid #ffaa00;
    box-shadow: 0 4px 16px rgba(255, 170, 0, 0.3);
}

/* ========================================
   セクションタイトル
======================================== */
.section-title {
    font-size: 22px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 24px;
    color: #333;
    position: relative;
    padding-bottom: 16px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff4444, #ffaa00);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* ========================================
   証拠画像セクション
======================================== */
.evidence {
    background-color: white;
    padding: 40px 0;
    margin-bottom: 24px;
}

.evidence-card {
    margin-bottom: 32px;
}

.evidence-image {
    margin-bottom: 20px;
}

/* 的中詳細情報 */
.winning-details {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #0ea5e9;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.winning-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.winning-badge {
    background-color: #22c55e;
    color: white;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
}

.winning-date {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}

.winning-race {
    font-size: 20px;
    font-weight: 900;
    color: #0c4a6e;
    margin-bottom: 16px;
    text-align: center;
}

.winning-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.winning-info-item {
    background-color: white;
    padding: 12px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.winning-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 4px;
}

.winning-value {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}

.odds-highlight {
    color: #dc2626;
    font-size: 20px;
    font-weight: 900;
}

.payout-highlight {
    color: #ff4444;
    font-size: 20px;
    font-weight: 900;
}

@media (max-width: 480px) {
    .winning-info-grid {
        grid-template-columns: 1fr;
    }
}

.image-placeholder {
    width: 100%;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
}

.ticket-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.image-placeholder.ticket {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 32px;
}

.ticket-content {
    text-align: center;
    color: white;
}

.ticket-title {
    font-size: 28px;
    margin-bottom: 20px;
}

.ticket-race {
    font-size: 18px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.ticket-bet {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.ticket-payout {
    font-size: 42px;
    font-weight: 900;
    color: #ffff00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.evidence-note {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-top: 12px;
}

/* ========================================
   リアクション
======================================== */
.reaction {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    padding: 24px;
    border-radius: 8px;
    margin: 32px 0;
    border: 2px solid #ff4444;
}

.reaction-text {
    font-size: 18px;
    text-align: center;
    line-height: 1.8;
}

.reaction-big {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: #ff4444;
    margin: 12px 0;
}

/* ========================================
   SNSセクション
======================================== */
.sns-section {
    margin-top: 40px;
}

.subsection-title {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    color: #333;
}

.tweet-card {
    background-color: #f8f9fa;
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.tweet-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.tweet-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 12px;
}

.tweet-user {
    flex: 1;
}

.tweet-name {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 2px;
}

.tweet-handle {
    font-size: 13px;
    color: #657786;
}

.tweet-text {
    font-size: 15px;
    line-height: 1.6;
    color: #14171a;
}

/* ========================================
   緊急性の演出
======================================== */
.urgency {
    padding: 24px 0;
    margin-bottom: 24px;
}

.urgency-box {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: white;
    padding: 24px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 68, 68, 0.7);
    }
}

.urgency-label {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.urgency-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.urgency-text .text-red {
    color: #ffff00;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 900;
    font-size: 18px;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: highlight-pulse 1.5s ease-in-out infinite;
}

@keyframes highlight-pulse {
    0%, 100% {
        transform: scale(1);
        background-color: rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        background-color: rgba(0, 0, 0, 0.5);
    }
}

.urgency-text strong {
    color: #ffff00;
    font-size: 18px;
    text-decoration: underline;
    text-decoration-color: #ffff00;
    text-decoration-thickness: 2px;
}

.urgency-timer {
    font-size: 14px;
    margin-top: 12px;
}

.countdown-timer {
    display: inline-block;
    font-size: 24px;
    font-weight: 900;
    color: #ffff00;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 8px 16px;
    border-radius: 4px;
    margin-left: 8px;
}

/* ========================================
   CTA（行動喚起）
======================================== */
.cta {
    padding: 32px 0;
    text-align: center;
}

.cta-inline {
    text-align: center;
    margin: 32px 0;
    padding: 24px 16px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.cta-pre-text {
    font-size: 18px;
    font-weight: 700;
    color: #ff4444;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00c853 0%, #00e676 100%);
    color: white;
    font-size: 20px;
    font-weight: 900;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.5);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button.pulse {
    animation: pulse-button 2s infinite;
}

@keyframes pulse-button {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.cta-icon {
    font-size: 28px;
    margin-right: 12px;
}

.cta-text {
    display: block;
}

.cta-button-large {
    font-size: 22px;
    padding: 24px 48px;
}

.cta-note {
    font-size: 13px;
    color: #666;
    margin-top: 12px;
}

.cta-emphasis {
    background-color: #fff5e6;
}

/* ========================================
   体験レポート
======================================== */
.report {
    background-color: white;
    padding: 40px 0;
    margin-bottom: 24px;
}

.report-content {
    max-width: 560px;
    margin: 0 auto;
}

.report-subtitle {
    font-size: 20px;
    font-weight: 700;
    color: #ff4444;
    margin: 32px 0 16px;
    padding-left: 12px;
    border-left: 4px solid #ff4444;
}

.report-text {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 16px;
}

.report-emphasis {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border-radius: 8px;
    margin: 24px 0;
}

.line-image-wrapper {
    margin: 24px 0;
    display: flex;
    justify-content: center;
}

.line-screen-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.image-placeholder.line-screen {
    background: linear-gradient(135deg, #00b900 0%, #00e600 100%);
    padding: 24px;
    min-height: 200px;
}

.line-content {
    text-align: center;
    color: white;
}

.line-title {
    font-size: 20px;
    margin-bottom: 20px;
}

.line-message {
    background-color: white;
    color: #333;
    padding: 16px;
    border-radius: 8px;
    text-align: left;
}

.line-message p {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* ========================================
   無料アピール
======================================== */
.free-appeal {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 40px 0;
    margin-bottom: 24px;
}

.free-box {
    background-color: white;
    padding: 32px 24px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.free-text {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 16px;
}

.free-emphasis {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    padding: 24px;
    background-color: #f5f5f5;
    border-radius: 8px;
    margin: 24px 0;
    line-height: 2;
}

/* ========================================
   ターゲット別訴求
======================================== */
.target {
    background-color: white;
    padding: 40px 0;
    margin-bottom: 24px;
}

.target-list {
    max-width: 560px;
    margin: 0 auto;
}

.target-item {
    display: flex;
    align-items: flex-start;
    padding: 16px;
    margin-bottom: 12px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #00c853;
}

.target-icon {
    font-size: 24px;
    margin-right: 12px;
    flex-shrink: 0;
}

.target-text {
    font-size: 16px;
    line-height: 1.6;
}

/* ========================================
   追記セクション
======================================== */
.appendix {
    background-color: #fffbf0;
    padding: 40px 0;
    margin-bottom: 24px;
}

.appendix-box {
    background-color: white;
    padding: 24px;
    border-radius: 8px;
    border: 2px solid #ffaa00;
}

.appendix-date {
    font-size: 14px;
    font-weight: 700;
    color: #ff6600;
    margin-bottom: 16px;
}

.appendix-text {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 12px;
}

/* ========================================
   最終CTA
======================================== */
.final-cta {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    padding: 48px 0;
    margin-bottom: 0;
}

.final-cta-title {
    font-size: 26px;
    font-weight: 900;
    color: white;
    text-align: center;
    margin-bottom: 20px;
}

.final-cta-text {
    font-size: 16px;
    color: white;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.8;
}

.final-cta .text-red {
    color: #ffff00;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 6px 16px;
    border-radius: 6px;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    display: inline-block;
    animation: final-pulse 2s ease-in-out infinite;
}

@keyframes final-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 0, 0.7);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 0 20px 5px rgba(255, 255, 0, 0.4);
    }
}

/* ========================================
   テキストユーティリティ
======================================== */
.text-red {
    color: #ff4444;
    font-weight: 700;
}

.text-green {
    color: #00c853;
    font-weight: 700;
}

.text-large {
    font-size: 20px;
}

.text-huge {
    font-size: 32px;
}

/* ========================================
   免責事項
======================================== */
.disclaimer {
    background-color: #f5f5f5;
    padding: 32px 0;
    border-top: 1px solid #ddd;
}

.disclaimer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #333;
}

.disclaimer-content {
    font-size: 12px;
    line-height: 1.8;
    color: #666;
}

.disclaimer-content p {
    margin-bottom: 8px;
}

/* ========================================
   フッター
======================================== */
.footer {
    background-color: #333;
    color: white;
    padding: 24px 0;
    text-align: center;
}

.footer-company {
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-links {
    margin-bottom: 16px;
    text-align: center;
}

.footer-link-item {
    color: #4fc3f7;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.footer-link-item:hover {
    color: #81d4fa;
    text-decoration: underline;
}

.footer-separator {
    color: #999;
}

.footer-copyright {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 8px;
}

/* ========================================
   レスポンシブ調整
======================================== */
@media (max-width: 480px) {
    .main-title {
        font-size: 20px;
    }
    
    .title-highlight {
        font-size: 28px;
    }
    
    .cta-button {
        font-size: 18px;
        padding: 18px 32px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .reaction-big {
        font-size: 28px;
    }
}

@media (min-width: 768px) {
    .hero-img {
        max-height: 600px;
    }
    
    .hero-placeholder {
        height: 400px;
    }
    
    .hero-icon {
        font-size: 120px;
    }
}