/**
 * カテゴリリンクのスタイル
 */

.category-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-title a:hover {
    color: #666; /* ホバー時の色 */
    text-decoration: underline;
}