/* =========================
   共通
========================= */
body {
    margin: 0;
    background: #f5f6f8;
}

/* =========================
   記事エリア
========================= */
.entry-content {
    line-height: 1.9;
    font-size: 16px;
}

/* =========================
   見出し（完全修正）
========================= */
article .entry-content h3 {
    background: var(--main-color, #3da2d5)  !important;
    color: #fff !important;
    padding: 14px 18px !important;
    border-radius: 6px !important;
    margin: 45px 0 20px !important;
    border: none !important;
}

/* =========================
   本文
========================= */
.entry-content p {
    margin: 0 0 20px;
}

/* =========================
   パンくず
========================= */
.breadcrumb {
    font-size: 13px;
    margin-bottom: 15px;
    color: #666;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

/* =========================
   レスポンシブ
========================= */
@media (max-width: 768px) {
    .entry-content {
        font-size: 15px;
    }

    .entry-content h3 {
        font-size: 16px;
        padding: 12px;
    }
}