/* イベント向けLP専用スタイル */
:root {
    --event-primary: #0288d1;
    --event-secondary: #1976d2;
    --event-accent: #ff6f00;
}

/* フォント設定 - プロフェッショナルな印象 */
body {
    font-family: 'Noto Sans JP', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: 0.02em;
}

/* ヒーローセクションのカスタマイズ */
.hero-event {
    background: #e1f5fe;
    position: relative;
    overflow: hidden;
}


/* バッジのカスタマイズ */
.hero-event .badge {
    background: rgba(2, 136, 209, 0.1) !important;
    color: var(--event-primary) !important;
    border: 1px solid rgba(2, 136, 209, 0.2);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
}

/* タイトルのスタイリング */
.hero-event h1 {
    font-weight: 800;
    color: var(--event-primary);
}

/* ボタンのカスタマイズ */
.hero-event .hero-main-cta {
    background: var(--event-primary);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    padding: 1.2rem 3rem;
    position: relative;
    overflow: hidden;
}

.hero-event .hero-main-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-event .hero-main-cta:hover::after {
    width: 300px;
    height: 300px;
}

.hero-event .hero-main-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(2, 136, 209, 0.3);
}

/* QRボタンのカスタマイズ */
.hero-event .btn-light-primary {
    background-color: white;
    color: var(--event-primary);
    border: 2px solid var(--event-primary);
    font-weight: 600;
}

.hero-event .btn-light-primary:hover {
    background-color: var(--event-primary);
    color: white;
    transform: scale(1.05);
}

/* ヘッダーのカスタマイズ */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

/* 特徴セクション */
.features-section {
    background: #f5f5f5;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--event-primary);
}

.feature-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--event-primary);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: translateX(0);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.feature-card .material-icons-outlined {
    color: var(--event-primary);
    font-size: 56px;
    margin-bottom: 1.5rem;
}

/* フォトフローセクション */
.photo-flow-section {
    background: white;
}

.photo-flow-section .step-number {
    background: var(--event-primary);
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(2, 136, 209, 0.2);
}

.photo-flow-section .flow-step {
    border: 2px solid #e0e0e0;
    background: #fafafa;
}

.photo-flow-section .flow-step:hover {
    border-color: var(--event-primary);
    background: white;
}

.photo-flow-section .step-icon {
    color: var(--event-primary);
}

/* テスティモニアル */
.testimonial-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card::before {
    content: "“";
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--event-primary);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.testimonial-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--event-primary);
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* CTA セクション */
.cta-section.gradient {
    background: var(--event-primary);
    position: relative;
    overflow: hidden;
}

.cta-section.gradient::before,
.cta-section.gradient::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section.gradient::before {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -200px;
}

.cta-section.gradient::after {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -150px;
}

/* 価格ハイライトセクション */
.pricing-highlight {
    background: #f8f8f8;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
    .hero-event h1 {
        font-size: 2rem;
    }
    
    .hero-event .hero-main-cta {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .testimonial-stats {
        gap: 1rem;
    }
    
    .stat-value {
        font-size: 1.25rem;
    }
}