/* 記事コンテナ（親テンプレート内の .container .article-container のスタイルを上書きしないよう、.blog-article-page に適用） */
.blog-article-page {
    max-width: 760px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
    line-height: 1.8;
    color: #444;
}

/* ============================================
   ヘッダー・タイトル
============================================ */
.article-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #ffccdd; /* 柔らかいピンクのライン */
}

.article-title {
    font-size: 2rem;
    font-weight: 700;
    color: #555;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.article-meta {
    font-size: 0.9rem;
    color: #888;
}

/* ============================================
   記事本文の共通スタイル
============================================ */
.article-content p {
    margin-bottom: 1.5rem;
}

/* 感情的な表現のテキストを強調 */
.emotional-text {
    font-style: italic;
    color: #a0522d; /* シックなブラウン */
}

/* 前の記事へのリンクボックス */
.previous-article-link {
    display: block;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background-color: #fcefe7; /* 暖色系の淡い背景 */
    border: 1px solid #f9d8c3;
    border-radius: 8px;
    text-decoration: none;
    color: #555;
    transition: background-color 0.3s;
    font-size: 1rem;
    font-weight: 600;
}

.previous-article-link:hover {
    background-color: #f7e0d3;
}

/* 引用ボックス（知識記事からの再引用） */
.quotation-box {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f0f8ff; /* 涼しげなブルー系背景 */
    border-left: 5px solid #667eea; /* ブランドカラー強調 */
    font-style: italic;
    color: #555;
    border-radius: 4px;
}

/* ============================================
   セクション構造
============================================ */
.section-block {
    margin-top: 3.5rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #764ba2; /* アクセントカラー */
    padding: 0.5rem 0;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #764ba2;
}

.subsection-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #e74c3c; /* 警告・反省の赤 */
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

/* サブタイトル前の感情アイコン - 今回はポジティブな方向に合わせ、少しトーンを調整 */
.subsection-title::before {
    content: "💖"; /* ポジティブな感情、愛おしさを表現 */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1em;
}

/* ============================================
   リスト
============================================ */

/* 葛藤リスト */
.check-list {
    list-style: none;
    padding-left: 0;
    border: 1px solid #ffccdd;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    background-color: #fff8f8;
}

.check-list li {
    padding-left: 1.8rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.check-list li::before {
    content: "😢"; /* 過去の葛藤・悲しみを表現 */
    color: #e74c3c;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* ハイライトリスト（気づき） */
.highlight-list {
    list-style: none;
    padding-left: 0;
}

.highlight-list li {
    padding-left: 1.8rem;
    position: relative;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.highlight-list li::before {
    content: "✨";
    position: absolute;
    left: 0;
}

/* ============================================
   実践対策ブロック（ここではバランスの定義として使用）
============================================ */
.action-plan {
    margin: 2.5rem 0;
    padding: 1.5rem;
    border: 2px solid #667eea; /* 実行に移す決意を表現 */
    background-color: #f0f4ff; /* 薄い青 */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.1);
}

.plan-title {
    font-weight: 700;
    font-size: 1.15rem;
    color: #3f51b5; /* 濃い青 */
    margin-top: 0;
    margin-bottom: 1rem;
    display: inline-block;
    padding-bottom: 0.2rem;
}

.action-plan ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.action-plan ul li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.action-plan ul li::before {
    content: "⚖️"; /* バランスを表す */
    position: absolute;
    left: 0;
    font-size: 1.1em;
}

/* ============================================
   結論セクション
============================================ */
.conclusion-section {
    margin-top: 4rem;
    padding: 2.5rem;
    border-radius: 12px;
    background: linear-gradient(145deg, #fcefe7 0%, #fff0f5 100%); /* 優しいグラデーション */
    text-align: center;
    border: 1px solid #f9d8c3;
}

.conclusion-title {
    font-size: 1.5rem;
    color: #764ba2;
    margin-bottom: 1.5rem;
}

/* ============================================
   戻るボタン
============================================ */
.back-button-container {
    margin-top: 3rem;
    text-align: center;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    background-color: #667eea; /* アクセントカラー */
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px; /* 角丸を強くしてボタンらしさを出す */
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.4);
}

.btn-back:hover {
    background-color: #5a6cd6;
    transform: translateY(-2px);
}

.btn-back .arrow {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .article-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }

    .subsection-title {
        font-size: 1.1rem;
    }

    .action-plan {
        padding: 1rem;
    }
    
    .conclusion-section {
        padding: 1.5rem;
    }
}