.filter-group {
  margin-bottom: 12px;
}

.filter-title {
  font-weight: bold;
  margin-bottom: 4px;
}

.filter-item {
  display: inline-flex;       /* チェックボックス＋文字を1セットに */
  align-items: center;
  margin-right: 12px;
  margin-bottom: 6px;
  white-space: nowrap;        /* 文字だけ折り返す事故を防ぐ */
}

/* 表デザイン（必要に応じて調整） */
.item-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}

.item-table th, .item-table td {
  border: 1px solid #ccc;
  padding: 6px 10px;
}

.item-table th {
  background: #f5f5f5;
}