/* styles.css */

/* カードニュース専用のスタイル */
p.card_news {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin: 1rem auto;
    max-width: 800px;
    /* デバッグ用: 赤いボーダー（確認後削除可） */
    border: 1px solid red;
}

/* カード内のリンク */
p.card_news a {
    color: #0066cc !important;
    font-weight: bold !important;
    text-decoration: none !important;
    /* デバッグ用: 赤いテキスト（確認後削除） */
    color: red !important;
}

p.card_news a:hover {
    text-decoration: underline !important;
}

/* カード内の水平線 */
p.card_news hr {
    border: 0 !important;
    border-top: 1px solid #d3d3d3 !important;
    margin: 1rem 0 !important;
    /* デバッグ用: 緑の太線（確認後削除） */
    border-top: 2px solid green !important;
}

/* カード内のスモールテキスト */
p.card_news small {
    font-size: 0.875rem !important;
    color: #333 !important;
    line-height: 1.5 !important;
    /* デバッグ用: 青いテキスト（確認後削除） */
    color: blue !important;
}

/* カード直下の要素（内容がsmall外に出た場合） */
p.card_news > * {
    font-size: 0.875rem !important;
    color: #333 !important;
    line-height: 1.5 !important;
}