/* シンプル化されたカテゴリフィルター */
.simplified-category-filter {
  margin-bottom: 20px;
  width: 100%;
  background-color: #f8fafc; /* より淡いグレー */
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  padding: 20px;
}

/* メインカテゴリボタン */
.simplified-category-filter .main-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.simplified-category-filter button {
  padding: 8px 18px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb; /* 薄いグレーの枠線 */
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
  color: #4b5563;
  box-shadow: none; /* 影を削除 */
}

.simplified-category-filter button:hover {
  background-color: #f3f4f6;
  border-color: #d1d5db;
  transform: none; /* 浮き上がり効果を削除 */
  box-shadow: none; /* 影を削除 */
}

.simplified-category-filter button.active {
  background-color: #3b82f6;
  color: white;
  border-color: #3b82f6;
  font-weight: 600;
  box-shadow: none; /* 影を削除 */
}

/* ドロップダウンパート（現在未使用、将来的な拡張用に保持） */
/* .category-dropdown {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

#more-categories-btn {
  background-color: #efefef;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  gap: 5px;
}

#more-categories-btn i {
  font-size: 12px;
}

.dropdown-content {
  position: absolute;
  background-color: white;
  min-width: 600px;
  max-width: 800px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  z-index: 1000;
  border-radius: 8px;
  padding: 20px;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 5px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  display: none;
}

.dropdown-content.show {
  opacity: 1;
  visibility: visible;
  display: block;
}

/* カテゴリカラムレイアウト */
.category-columns {
  display: flex;
  gap: 20px;
}

.category-column {
  flex: 1;
}

.category-column h3 {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #eee;
}

.category-column button {
  display: block;
  width: 100%;
  text-align: left;
  margin-bottom: 5px;
  background-color: transparent;
  border: none;
  border-radius: 4px;
  padding: 5px 8px;
}

.category-column button:hover {
  background-color: #f5f5f5;
}

} */ /* ドロップダウン関連スタイルの終了 */

/* レスポンシブ対応 */
@media (max-width: 768px) {
  /* ドロップダウン関連のレスポンシブ対応もコメントアウト */
  /*
  .dropdown-content {
    min-width: 300px;
    max-width: 100%;
    width: calc(100vw - 40px);
    left: 50%;
    transform: translateX(-50%);
  }
  
  .category-columns {
    flex-direction: column;
    gap: 10px;
  }
  */
  
  .simplified-category-filter .main-categories {
    gap: 8px;
  }
  
  .simplified-category-filter button {
    padding: 7px 14px;
    font-size: 13px;
  }
}
