body {
    font-family: ;
    margin: 20px;
    background-color: ;
}

h1 {
    color: #333;
    border-bottom: 0px solid #007bff;
    padding-bottom: 10px;
font-size:2em;
}

/* --- カテゴリフィルタボタンのスタイル --- */
.category-filters {
    margin-bottom: 20px;
}

.category-filters button {
    padding: 8px 18px;
    margin-right: 8px;
    border: 1px solid #ccc;
    background-color: #ffffff;
    color: #333;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
    font-size: 12px;
}

/* 💡 現在選択されているカテゴリボタンのスタイル */
.category-filters button.active {
    background-color: #c84a5b;
    color: white;
    border-color: #a61c4b;
    box-shadow: 0 2px 5px rgba(180, 50, 99, 0.3);
}

/* --- 記事一覧の基本スタイル --- */
.article-list {
    list-style: none; /* リストの点を非表示 */
    padding: 0;
}

.article-item {
    background-color: white;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.article-item time {
    color: #777;
    font-size: 0.9em;
    margin-right: 10px;
}

.article-item h2 a {
    color: #333;
    text-decoration: none;
    font-size: 0.9em;
}

.category-tag {
    display: inline-block;
    background-color: #e0f7fa;
    color: #00bcd4;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: bold;
}