/* ========================================
   グローバルデザイン最適化
   商談リード獲得を目的とした統一デザイン
   ======================================== */

/* セクション背景の統一パターン（ヒーロー以外） */
section:not(.hero):nth-child(odd) {
    background: #ffffff;
}

section:not(.hero):nth-child(even) {
    background: #f9fafb;
}

/* ヒーローセクションは背景画像を維持 */
.hero {
    background: transparent !important;
}

/* セクション間の余白統一 */
section {
    padding: 80px 0;
    scroll-margin-top: 100px; /* ヘッダー固定時のスクロール調整 */
}

/* CTAボタンの統一デザイン - 視認性最大化 */
.btn-primary,
.cta-button,
.btn-large,
.footer-cta-button,
.btn-hero-primary {
    background: linear-gradient(135deg, #fcd34d 0%, #f97316 50%, #c2410c 100%) !important;
    color: white !important;
    border: none !important;
    padding: 18px 40px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.btn-primary:hover,
.cta-button:hover,
.btn-large:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #ea580c 50%, #b91c1c 100%) !important;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.6) !important;
    transform: translateY(-3px) !important;
}

/* セクションタイトルの統一 */
.section-title {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    color: #1a202c;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: #6b7280;
    margin-bottom: 50px;
    line-height: 1.7;
}

/* アクセントカラーの統一 */
.accent-text {
    color: #f97316;
    font-weight: 700;
}

/* カードデザインの統一 */
.card,
.reason-card,
.problem-card,
.faq-item,
.case-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.card:hover,
.reason-card:hover,
.problem-card:hover {
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.15);
    transform: translateY(-5px);
}

/* アイコンの統一デザイン */
.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fcd34d 0%, #f97316 50%, #c2410c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.icon-circle i {
    font-size: 36px;
    color: white;
}

/* コンテナの最大幅統一 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 信頼性を高めるデザイン要素 */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    color: #065f46;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid #10b981;
}

.trust-badge i {
    color: #10b981;
}

/* フォーカス状態の統一 */
button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: 3px solid rgba(249, 115, 22, 0.4);
    outline-offset: 2px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .btn-primary,
    .cta-button,
    .btn-large {
        padding: 15px 30px !important;
        font-size: 16px !important;
    }
}

/* アクセシビリティ向上 */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* スムーズスクロール */
html {
    scroll-behavior: smooth;
}

/* セクション間の視覚的区切り */
section + section {
    position: relative;
}

section + section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(249, 115, 22, 0.2) 50%, 
        transparent 100%);
}
