.filter-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* ← 左揃えを強制 */
  gap: 6px;
  margin: 0;
  padding: 0;
}


#active-filters .a-badge {
  display: inline-flex;
  align-items: center;
  background-color: #f0f2f2;
  border-radius: 16px;
  padding: 4px 10px;
  font-size: 13px;
  color: #111;
  position: relative;
}

#active-filters .a-badge-text {
  margin-right: 6px;
  white-space: nowrap;
}

#active-filters .a-badge-delete {
  background: none;
  border: none;
  color: #565959;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  padding: 0 4px;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

#active-filters .a-badge-delete:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.a-radio {

    border: 2px solid #007185;

    background-color: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease;
  }
  
  .a-radio:checked {
    border-color: #007185;
  }
  
  .a-radio:checked::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background-color: #007185;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
  }


  