/* 絞り込み選択項目の丸ポチ */
.filter-selected {
  padding-left: 1rem; /* pl-4 */
  position: relative;
}

.filter-selected::before {
  content: '';
  display: block;
  height: 0.25rem; /* h-1 */
  width: 0.25rem; /* w-1 */
  border-radius: 9999px; /* rounded-full */
  background-color: #3C4A3E; /* textカラー */
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
