/* 公開ページ: 刀剣目録の「刀剣サーチ」(絞り込み)と、刀の記事の下部のタグ。色と形は、トップページのカテゴリのチップと揃える。 */
.kcfgmk-tf {
	display: grid;
	gap: 10px;
	padding: 16px 20px;
	margin: 0 0 24px;
	background: #FAF8F4;
	border: 1px solid #E5E0D5;
	border-radius: 10px;
	font-size: 13px;
}
.kcfgmk-tf-head {
	display: flex;
	align-items: baseline;
	gap: 10px;
}
.kcfgmk-tf-title {
	font-weight: 700;
	font-size: 14px;
}
.kcfgmk-tf-count {
	margin-left: auto;
	font-size: 12.5px;
	color: #6B655C;
	font-variant-numeric: tabular-nums;
}
.kcfgmk-tf-row {
	display: grid;
	grid-template-columns: 6.5em 1fr;
	align-items: start;
	gap: 6px 10px;
}
.kcfgmk-tf-label {
	justify-self: start;
	margin-top: 6px;
	padding: 2px 9px;
	font-size: 11.5px;
	font-weight: 700;
	color: #6B655C;
	background: #EFE9DC;
	border-radius: 999px;
	white-space: nowrap;
}
.kcfgmk-tf-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.kcfgmk-tf-chip {
	display: inline-flex;
	align-items: baseline;
	gap: 6px;
	padding: 5px 12px;
	font-size: 12.5px;
	font-weight: 600;
	line-height: 1.4;
	color: #6B655C;
	background: #fff;
	border: 1px solid #DEDAD1;
	border-radius: 999px;
	cursor: pointer;
}
.kcfgmk-tf-chip:hover {
	color: #dd3333;
	border-color: #dd3333;
}
.kcfgmk-tf-chip:focus-visible,
.kcfgmk-tf-reset:focus-visible,
.kcfgmk-tf-reset2:focus-visible,
.kcfgmk-tf-help summary:focus-visible {
	outline: 2px solid #2C4A6E;
	outline-offset: 2px;
}
.kcfgmk-tf-n {
	font-size: 11px;
	font-weight: 500;
	color: #9C9384;
	font-variant-numeric: tabular-nums;
}
.kcfgmk-tf-chip[aria-pressed="true"] {
	color: #fff;
	background: #dd3333;
	border-color: #dd3333;
}
.kcfgmk-tf-chip[aria-pressed="true"] .kcfgmk-tf-n {
	color: rgba(255, 255, 255, .8);
}
.kcfgmk-tf-chip.is-zero {
	opacity: .45;
}
.kcfgmk-tf-foot {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 8px 12px;
	padding-top: 4px;
	border-top: 1px dashed #E5E0D5;
}
.kcfgmk-tf-help {
	flex: 1 1 auto;
	min-width: 0;
}
.kcfgmk-tf-help summary {
	display: inline-block;
	padding: 4px 2px;
	font-size: 12px;
	color: #6B655C;
	cursor: pointer;
}
.kcfgmk-tf-help summary::before {
	content: '＋';
	margin-right: 4px;
}
.kcfgmk-tf-help[open] summary::before {
	content: '－';
}
.kcfgmk-tf-help summary::-webkit-details-marker {
	display: none;
}
.kcfgmk-tf-help-body {
	padding: 6px 2px 4px;
	font-size: 12.5px;
	line-height: 1.7;
	color: #4A453E;
}
.kcfgmk-tf-help-lead {
	margin: 0 0 8px;
}
.kcfgmk-tf-help-cat + .kcfgmk-tf-help-cat {
	margin-top: 10px;
}
.kcfgmk-tf-help-name {
	margin: 0;
	font-weight: 700;
}
.kcfgmk-tf-help-mode {
	margin-left: 8px;
	font-weight: 400;
	font-size: 11.5px;
	color: #9C9384;
}
.kcfgmk-tf-help dl {
	display: grid;
	grid-template-columns: max-content 1fr;
	gap: 2px 12px;
	margin: 4px 0 0;
}
.kcfgmk-tf-help dt {
	font-weight: 600;
}
.kcfgmk-tf-help dd {
	margin: 0;
}
.kcfgmk-tf-reset {
	margin-left: auto;
	padding: 4px 2px;
	font-size: 12px;
	color: #6B655C;
	text-decoration: underline;
	background: none;
	border: none;
	cursor: pointer;
}
.kcfgmk-tf-reset:disabled {
	color: #C9C2B4;
	text-decoration: none;
	cursor: default;
}
.kcfgmk-tf-empty {
	margin: 0 0 24px;
	padding: 20px;
	text-align: center;
	color: #6B655C;
	border: 1px dashed #DEDAD1;
	border-radius: 10px;
}
.kcfgmk-tf-empty[hidden] {
	display: none;
}
.kcfgmk-tf-empty p {
	margin: 0 0 12px;
}
.kcfgmk-tf-reset2 {
	padding: 6px 18px;
	font-size: 13px;
	font-weight: 600;
	color: #fff;
	background: #dd3333;
	border: none;
	border-radius: 999px;
	cursor: pointer;
}
@media screen and (max-width: 600px) {
	.kcfgmk-tf {
		padding: 14px;
	}
	.kcfgmk-tf-row {
		grid-template-columns: 1fr;
		gap: 4px;
	}
	.kcfgmk-tf-label {
		margin-top: 0;
	}
	.kcfgmk-tf-help dl {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.kcfgmk-tf-help dd {
		margin-bottom: 6px;
	}
}

/* ---- 刀の記事の下部のタグ(テーマの #post_meta_bottom の中) ---- */
#post_meta_bottom li.kcfgmk-meta-tags {
	line-height: 2.2;
}
.kcfgmk-meta-cat {
	display: inline-block;
	margin-right: 12px;
	white-space: nowrap;
}
.kcfgmk-meta-name {
	margin-right: 4px;
	color: #9C9384;
}
.kcfgmk-meta-cat a {
	display: inline-block;
	margin-right: 4px;
	padding: 0 10px;
	line-height: 1.8;
	color: #6B655C;
	text-decoration: none;
	background: #fff;
	border: 1px solid #DEDAD1;
	border-radius: 999px;
}
.kcfgmk-meta-cat a:hover {
	color: #dd3333;
	border-color: #dd3333;
}
