/* Google Fonts - Noto Sans JP を想定 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap');

/* 基本スタイル */
.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #ffffff;
}

/* パンくずリスト */
.breadcrumb-nav {
    margin-bottom: 20px;
}
.breadcrumb-wrapper {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #999;
    flex-wrap: wrap; /* スマホ対応 */
}
.breadcrumb-link {
    display: flex;
    align-items: center;
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb-link:hover {
    color: #4CAF50; /* テーマカラー */
}
.breadcrumb-separator {
    margin: 0 8px;
    color: #ccc;
}
.breadcrumb-icon {
    margin-right: 4px;
}
.breadcrumb-current {
    font-weight: 500;
    color: #333;
}

/* 記事タイトルとメタ情報 */
.article-title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
    color: #333;
    border-left: 5px solid #4CAF50; /* テーマカラー */
    padding-left: 15px;
    margin: 20px 0 10px;
}

.article-meta {
    font-size: 0.8rem;
    color: #999;
    text-align: right;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
}

/* 記事コンテンツ */
.article-content p {
    margin-bottom: 1.5em;
    text-align: justify;
}
.article-content strong {
    font-weight: 700;
    color: #4CAF50;
}

/* 導入文の強調 */
.lead-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #444;
}
.age-change {
    background-color: #f9fff9;
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #81C784;
}

/* セクション見出し */
.section-heading {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2e7d32; /* 深い緑 */
    padding: 8px 0;
    margin: 40px 0 20px;
    border-bottom: 2px solid #e8f5e9;
}
.section-heading.is-hidden {
    display: none; /* 導入見出しを非表示に */
}

/* セクションの区切り */
.content-section {
    padding-top: 10px;
    margin-bottom: 30px;
}

/* セクション2: 買い漁り選手権の試み */
.shopping-section .care-attempt {
    background-color: #f7f7f7;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.shopping-section .attempt-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #d32f2f; /* 赤系で「戦い」を表現 */
    margin-top: 0;
    margin-bottom: 10px;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 5px;
}
.husband-comment {
    font-style: italic;
    color: #777;
    margin-top: 15px;
}

/* セクション3: 話しかけの行動 */
.dialogue-box {
    background-color: #fffde7; /* 淡い黄色 */
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #ffeb3b;
    margin: 20px auto;
    max-width: 90%;
}
.dialogue-box p {
    text-align: center;
    margin: 0.5em 0;
    font-style: italic;
}
.wry-smile {
    text-align: right;
    color: #aaa;
    font-size: 0.9rem;
}

/* セクション4: 結論/学び */
.result-section .highlight-text {
    font-size: 1.1rem;
    color: #1976D2; /* 青系で「真理」を表現 */
    font-weight: 700;
}
.basic-care-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.basic-care-list li {
    background: #e3f2fd; /* 淡い青 */
    padding: 10px 15px;
    margin-bottom: 8px;
    border-radius: 5px;
    position: relative;
    padding-left: 35px;
}
.basic-care-list li::before {
    content: "✓";
    color: #1976D2;
    font-weight: bold;
    position: absolute;
    left: 10px;
}

/* 結論セクション */
.acceptance-message {
    font-size: 1.1rem;
    display: block;
    text-align: center;
    padding: 10px;
    margin: 20px 0;
    background-color: #fce4ec; /* 淡いピンクで優しさを表現 */
    border-radius: 10px;
    color: #ad1457;
    font-weight: 700;
}
.message-to-readers {
    text-align: center;
    padding: 15px;
    border: 2px dashed #b2dfdb;
    border-radius: 12px;
    font-style: italic;
    background-color: #f0fdfc;
}

/* 記事一覧に戻るボタン */
.back-button-container {
    text-align: center;
    margin-top: 40px;
}
.btn-back {
    display: inline-flex;
    align-items: center;
    background-color: #66bb6a; /* テーマカラー */
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.1s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.btn-back:hover {
    background-color: #4CAF50;
    transform: translateY(-1px);
}
.btn-back .arrow {
    margin-right: 8px;
    font-size: 1.2rem;
}

/* レスポンシブ対応 */
@media (max-width: 600px) {
    .article-title {
        font-size: 1.5rem;
        padding-left: 10px;
    }
    .article-container {
        padding: 10px;
    }
    .section-heading {
        font-size: 1.2rem;
        margin: 30px 0 15px;
    }
    .btn-back {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
}