/* category-dropdown.css */

.category-dropdown-wrapper {
    position: relative;
    z-index: 1;
}

/* カテゴリーコンテナのスタイル */
.category-container {
    position: relative;
    margin-bottom: 10px;
    background: #fff;
}

/* カテゴリーヘッダー部分のスタイル */
.category-trigger {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    position: relative;
    z-index: 2;
}

/* カテゴリー画像のスタイル */
.category-trigger img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

/* カテゴリータイトルのスタイル */
.category-trigger h3 {
    margin: 0;
    font-size: 16px;
}

/* ドロップダウンメニューのスタイル */
.category-posts {
    display: none !important;
    position: relative;
    margin-top: -1px;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 5px 5px;
    z-index: 1;
}

/* アクティブ状態のコンテナ */
.category-container.active .category-trigger {
    border-radius: 5px 5px 0 0;
    border-bottom: none;
    position: relative;
    z-index: 2;
}

.category-container.active .category-posts {
    display: block !important; /* アクティブ時は強制的に表示 */
    position: relative;
    z-index: 1;
}

/* 記事リストのスタイル */
.category-posts ul {
    list-style: none;
    margin: 0;
    padding: 15px;
    background: #f9f9f9;
}

.category-posts li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.category-posts li:last-child {
    border-bottom: none;
}

/* 記事リンクのスタイル */
.category-posts a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 5px 10px;
}

.category-posts a:hover {
    background-color: #f0f0f0;
    color: #0066cc;
}

/* コンテナ間の余白調整 */
.category-container + .category-container {
    margin-top: 15px;
}