/* ========================================
   シークワーズ: ヒントバッジ
   ======================================== */

.hint-item {
  display: inline-block;
  padding: 4px 10px;
  background: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.9rem;
  color: #333;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s, color 0.2s;
}

.hint-item:hover {
  background: #e0e0e0;
}

.hint-item.hint-checked {
  background: #666;
  border-color: #444;
  color: #fff;
  text-decoration: line-through;
}
