/* 📌 フィルターコンテナ（全体） */
.persona-filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
/*    background: #f8f9fa;
    border-radius: 8px;*/
    margin-bottom: 0px;
/*    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);*/
    align-items: flex-start;
    justify-content: flex-start; /* 左寄せ */
}

/* 📌 ラベルとセレクトボックスをグループ化 */
.persona-filter-group {
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
    white-space: nowrap;
}

/* 📌 ラベルのスタイル */
.persona-filter-label {
    margin-right: 10px;
    font-weight: bold;
/*    font-size: 14px;*/
    color: #333;
}

/* 📌 セレクトボックス */
.persona-filter-container select {
    padding: 8;
/*    font-size: 14px;*/
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    min-width: 120px;
    max-width: 200px;
}

/* 📌 セレクトボックスのホバー時 */
.persona-filter-container select:hover {
    border-color: #007bff;
}

/* 📌 セレクトボックスのフォーカス時 */
.persona-filter-container select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* 📌 画面サイズが狭くなったら2列 */
@media (max-width: 768px) {
    .persona-filter-item {
        width: 45%; /* 2列にする */
    }
}

/* 📌 さらに狭くなったら1列 */
@media (max-width: 500px) {
    .persona-filter-item {
        width: 100%; /* 1列にする */
    }
}


/* 📌 結果数のスタイル（シンプル） */
.persona-result-count {
    margin-bottom: 10px;
    font-size: 0.9em;
    color: #666;
    display: none; /* 初期状態で非表示 */
}

/* 📌 フィルターコンテナ（全体） */
.persona-filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
/*    background: #f8f9fa;
    border-radius: 8px;*/
    margin-bottom: 0px;
/*    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);*/
    align-items: flex-start;
    justify-content: flex-start; /* 左寄せ */
}

/* 📌 ラベルとセレクトボックスをグループ化 */
.persona-filter-group {
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
    white-space: nowrap;
}

/* 📌 ラベルのスタイル */
.persona-filter-label {
    margin-right: 5px;
    font-weight: bold;
    color: #333;
}

/* コロンの後に余白を追加 */
.persona-filter-label::after {
    content: "";
    display: inline-block;
    width: 5px; /* コロンの後の余白 */
}

/* 📌 セレクトボックス */
.persona-filter-container select {
    padding: 8;
/*    font-size: 14px;*/
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    min-width: 120px;
    max-width: 200px;
}

/* 📌 セレクトボックスのホバー時 */
.persona-filter-container select:hover {
    border-color: #007bff;
}

/* 📌 セレクトボックスのフォーカス時 */
.persona-filter-container select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* 📌 画面サイズが狭くなったら2列 */
@media (max-width: 768px) {
    .persona-filter-item {
        width: 45%; /* 2列にする */
    }
}

/* 📌 さらに狭くなったら1列 */
@media (max-width: 500px) {
    .persona-filter-item {
        width: 100%; /* 1列にする */
    }
}


/* 📌 結果数のスタイル（シンプル） */
.persona-result-count {
    margin-bottom: 10px;
    font-size: 0.9em;
    color: #666;
    display: none; /* 初期状態で非表示 */
}
