@charset "utf-8";
/* ─── カテゴリフィルター ─── */
.obf-categories {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
	width:90%;
	margin:20px auto 70px auto;
	max-width:780px;
}

.obf-cat-btn {
  background: #F5F0EB;
  border: 2px solid #F5F0EB;
  color: #E95312;
  font-size: var(--min-font);
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  font-family: inherit;
  white-space: normal;
  word-break: break-word;
  flex: 1 1 0;
  text-align: center;
  min-width: 0;
  line-height: 1.4;
	padding:0;
}
.obf-cat-btn a{
	display:block;
	padding:10px 0;
	color: #E95312;
}
.obf-cat-btn.active,
.obf-cat-btn:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.obf-cat-btn.active a,
.obf-cat-btn a:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}


