/*
Theme Name: SWELL Child - LIVE配信研究所 v2 Advanced (Optimized)
Description: LIVE配信研究所のためのSWELL子テーマ。トップページのみカスタムデザインを適用。
Template: swell
Version: 2.2.0-live-text-fixed
Author: LIVE配信研究所
Text Domain: livecom-swell-child
*/

/* ==========================================================================
   カラーパレット & 共通設定
   ========================================================================== */

:root {
    --primary-pink: #ff0050;
    --primary-blue: #25f4ee;
    --dark-bg: #0a0a0a;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --gradient-primary: linear-gradient(135deg, var(--primary-pink), var(--primary-blue));
    --shadow-glow: 0 0 20px rgba(255, 0, 80, 0.3);
}

/* ==========================================================================
   トップページ専用スタイル
   ========================================================================== */

/* トップページの基本設定 */
body.home {
    background: var(--dark-bg) !important;
    font-family: 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Yu Gothic', 'メイリオ', sans-serif !important;
    line-height: 1.6 !important;
    color: #333 !important;
    overflow-x: hidden;
}

/* トップページでのみSWELL標準ヘッダー・フッターを非表示 */
body.home .l-header,
body.home #header,
body.home .l-footer,
body.home #footer {
    display: none !important;
}

/* トップページでのみSWELLメインコンテンツエリアの余白を削除 */
body.home .l-content,
body.home .l-main {
    margin: 0 !important;
    padding: 0 !important;
}

/* ==========================================================================
   トップページ専用 カスタムヘッダー
   ========================================================================== */

body.home .site-header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.home .header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

body.home .site-logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

body.home .main-navigation {
    display: flex;
    gap: 2rem;
}

body.home .main-navigation a {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

body.home .main-navigation a:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}


/* ==========================================================================
   トップページ専用 メインコンテンツ
   ========================================================================== */

body.home .site-main {
    margin-top: 80px; /* カスタムヘッダーの高さ分 */
    min-height: calc(100vh - 80px);
}

/* ヒーローセクション */
body.home .hero-section {
    background: var(--dark-bg);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

body.home .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 80, 0.1) 0%, transparent 70%);
}

body.home .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

body.home .hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.home .hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

body.home .hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

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

body.home .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-blue);
    display: block;
}

body.home .stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* コンテンツセクション */
body.home .content-section {
    padding: 4rem 0;
    background: var(--dark-bg);
}

body.home .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

body.home .section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
}

/* ==========================================================================
   トップページ専用 カスタムフッター
   ========================================================================== */

body.home .site-footer {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0 1rem;
    margin-top: 4rem;
}

body.home .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

body.home .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

body.home .footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

body.home .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

body.home .footer-tagline {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

body.home .footer-navigation {
    display: flex;
    gap: 2rem;
}

body.home .footer-navigation a {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

body.home .footer-navigation a:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

body.home .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ==========================================================================
   トップページ専用 ユーティリティ & その他
   ========================================================================== */

/* ユーティリティクラス */
body.home .text-center { text-align: center; }

body.home .text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* SWELLボタンの色をWordPress投稿画面から変更可能にするため、上書きを削除 */
/* body.home .btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    background: var(--gradient-primary);
    color: white;
}

body.home .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

body.home .btn-outline {
    background: transparent;
    border: 2px solid var(--primary-pink);
    color: var(--primary-pink);
}

body.home .btn-outline:hover {
    background: var(--gradient-primary);
    color: white;
} */

/* AIチャットボット (トップページでのみ有効にする場合) */
body.home .chatbot-float-btn {
    /* ... チャットボット関連のスタイル ... */
}
body.home .ai-chatbot {
    /* ... チャットボット関連のスタイル ... */
}
/* ※チャットボット関連のCSSは長いため、必要に応じて元のファイルからコピーしてください */


/* ==========================================================================
   レスポンシブデザイン（トップページ専用）
   ========================================================================== */

@media (max-width: 768px) {
    body.home .hero-title {
    font-size: 2.5rem;
    }
    
    body.home .hero-stats {
        flex-direction: column;
    gap: 2rem;
}

    body.home .main-navigation {
        display: none;
    }

    body.home .container {
        padding: 0 1rem;
    }

    body.home .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    body.home .footer-navigation {
        flex-direction: column;
        gap: 1rem;
    }
}

/*
 * これ以降、記事ページや固定ページに関するCSSは記述しません。
 * これにより、SWELLの標準スタイルがそのまま適用されます。
 */ 