/* --- 基本スタイル & 変数定義 --- */
:root {
    --bg-dark: #1a1a1a;
    --text-light: #f0f0f0;
    --text-muted: #dddddd;
    --accent-blue: #00ffff;
    /* サイバーパンク的な青 */
    --accent-purple: #9400d3;
    /* 紫 */
    --accent-gold: #ffd700;
    /* 知的なゴールド */
    --accent-hover: #4dffff;
    /* 青系のホバー色 */
    --font-body: 'Noto Sans JP', sans-serif;
    --font-heading: 'Orbitron', sans-serif;
    /* 未来的な見出しフォント */
    /* --font-heading: 'Shippori Mincho B1', serif; */
    /* または明朝体 */
    --container-width: 960px;
    --container-padding: 20px;
    --section-padding: 60px 0;
    --border-radius: 8px;
    --transition-speed: 0.3s ease;
}

/* --- グローバルスタイル --- */
body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    margin: 0;
    padding: 0;
    line-height: 1.7;
    font-size: 16px;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--text-light);
    font-weight: 700;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 0.8em;
}

h1 {
    font-size: 3em;
    /* キャッチコピーは大きく */
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 255, 255, 0.3);
    /* アクセントカラーの影 */
}

h2 {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    color: var(--accent-blue);
    /* 見出しにアクセントカラー */
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    /* グラデーション線 */
    border-radius: 2px;
}

h3 {
    font-size: 1.6em;
    color: var(--accent-gold);
    /* 小見出しに別のアクセントカラー */
    margin-bottom: 0.6em;
}

p {
    margin-bottom: 1.5em;
    color: var(--text-muted);
}

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

strong,
b {
    color: var(--accent-gold);
    /* 太字を強調 */
    font-weight: 700;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- セクション共通 --- */
main section {
    padding: var(--section-padding);
    border-bottom: 1px solid #333;
    /* セクション間に薄い区切り線 */
}

main section:last-child {
    border-bottom: none;
}

/* --- ヘッダー (ヒーローセクション) --- */
.hero-section {
    padding: 100px 0;
    text-align: center;
    /* 背景画像やグラデーションはここに設定 */
    background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.9)), url('placeholder-bg.jpg');
    /* プレースホルダー */
    /* background: linear-gradient(135deg, #2c0a3f, #0b132b); */
    /* グラデーション例 */
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid #333;
}

.hero-section .subtitle {
    font-size: 1.2em;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px auto;
}

/* --- 共感セクション --- */
.empathy-section {
    text-align: center;
}

/* --- 書籍紹介セクション --- */
.book-intro-section {
    text-align: center;
}

.book-intro-section .book-title {
    font-size: 1.8em;
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

/* .book-cover { margin: 30px auto; max-width: 300px; } */
/* 画像がある場合 */

/* --- ユニークな特徴セクション --- */
.features-section .feature-item {
    display: flex;
    align-items: flex-start;
    /* アイコンとテキストを上揃え */
    gap: 25px;
    margin-bottom: 40px;
}

.features-section .feature-item:last-child {
    margin-bottom: 0;
}

.features-section .feature-icon {
    font-size: 2.5em;
    color: var(--accent-purple);
    flex-shrink: 0;
    width: 50px;
    /* アイコンの幅を固定 */
    text-align: center;
    margin-top: 5px;
    /* テキストとの微調整 */
}

.features-section .feature-text h3 {
    margin-bottom: 0.5em;
}

.features-section .feature-text p {
    margin-bottom: 0;
}

/* --- ベネフィットセクション --- */
.benefits-section ul {
    padding-left: 0;
}

.benefits-section li {
    margin-bottom: 15px;
    padding-left: 35px;
    /* アイコンスペース */
    position: relative;
}

.benefits-section li i {
    position: absolute;
    left: 0;
    top: 4px;
    /* アイコン位置調整 */
    font-size: 1.3em;
    color: var(--accent-blue);
    width: 25px;
    /* アイコン幅 */
    text-align: center;
}

/* --- 読者の声セクション --- */
.testimonials-section blockquote {
    background-color: #2a2a2a;
    /* 少し明るい背景 */
    border-left: 5px solid var(--accent-gold);
    padding: 20px 30px;
    margin-bottom: 30px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.testimonials-section blockquote p {
    margin-bottom: 0.5em;
    font-style: italic;
    color: var(--text-light);
}

.testimonials-section blockquote cite {
    display: block;
    text-align: right;
    font-size: 0.9em;
    color: var(--text-muted);
    font-style: normal;
}

/* --- 著者セクション --- */
.author-section {
    /* 必要に応じてスタイル追加 */
}

/* --- CTAセクション --- */
.cta-section {
    text-align: center;
    background-color: #252525;
    /* 背景色を少し変える */
}

.cta-section .cta-lead {
    font-size: 1.3em;
    font-weight: 700;
    color: var(--text-light);
    margin-top: 30px;
    margin-bottom: 15px;
}

.cta-section .cta-arrow {
    font-size: 1.1em;
    color: var(--accent-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    color: var(--bg-dark);
    /* ボタンテキストは暗く */
    font-family: var(--font-heading);
    font-size: 1.3em;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    /* 丸みを強く */
    cursor: pointer;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
    margin: 20px 0;
}

.cta-button:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.4);
    text-decoration: none;
    color: var(--bg-dark);
}

.cta-button i {
    margin-right: 10px;
}

/* --- フッター --- */
.site-footer {
    padding: 30px 0;
    text-align: center;
    font-size: 0.9em;
    color: #666;
    border-top: 1px solid #333;
}

.site-footer a {
    color: #888;
}

.site-footer a:hover {
    color: var(--text-muted);
}

/* --- レスポンシブ対応 --- */
.sp-only {
    display: none;
}

/* スマホでのみ改行 */

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    h1 {
        font-size: 2.4em;
    }

    h2 {
        font-size: 1.9em;
    }

    h3 {
        font-size: 1.4em;
    }

    .container {
        padding: 0 15px;
    }

    main section {
        padding: 40px 0;
    }

    .hero-section {
        padding: 60px 0;
    }

    .features-section .feature-item {
        flex-direction: column;
        /* スマホでは縦並び */
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .features-section .feature-icon {
        margin-top: 0;
        margin-bottom: 10px;
    }

    .benefits-section li {
        padding-left: 30px;
    }

    .benefits-section li i {
        font-size: 1.2em;
        top: 5px;
        width: 20px;
    }

    .cta-button {
        padding: 15px 35px;
        font-size: 1.15em;
    }

    .sp-only {
        display: block;
    }

    /* スマホで改行を表示 */
}

@media (max-width: 480px) {
    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.7em;
    }

    h3 {
        font-size: 1.3em;
    }

    .hero-section .subtitle {
        font-size: 1.1em;
    }
}