/* =============================================
   wkw-meter.css — 5段階評価メーター
   商標記事の「虎の評価」ブロック用
   ファイル名から自動判定（本文に wkw-meter- があれば読み込み）
   ============================================= */

.wkw-meter {
	--wkw-pink:  #e8357a;
	--wkw-pink2: #f06fa0;
	--wkw-deep:  #a01848;
	--wkw-dark:  #c0206a;
	--wkw-pale:  #fde0ee;
	--wkw-ink:   #2a0f1a;

	font-family: inherit;
	max-width: 720px;
	margin: 26px auto;
	background: #fff;
	border: 1px solid var(--wkw-pale);
	border-radius: 14px;
	overflow: hidden;
	color: var(--wkw-ink);
}

.wkw-meter *,
.wkw-meter *::before,
.wkw-meter *::after { box-sizing: border-box; }

.wkw-meter-head {
	display: flex;
	align-items: baseline;
	gap: 10px;
	flex-wrap: wrap;
	padding: 12px 16px 11px;
	background: linear-gradient(90deg, var(--wkw-pink) 0%, var(--wkw-pink2) 55%, var(--wkw-pink) 100%);
	color: #fff;
	font-size: 14px;
	font-weight: 900;
	letter-spacing: 0.06em;
	position: relative;
	overflow: hidden;
}

.wkw-meter-head::before {
	content: '';
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(
		-55deg, transparent, transparent 6px,
		rgba(255,255,255,0.06) 6px, rgba(255,255,255,0.06) 7px);
	pointer-events: none;
}

.wkw-meter-head > * { position: relative; z-index: 1; }

.wkw-meter-head span {
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: rgba(255,255,255,0.85);
	background: rgba(0,0,0,0.18);
	border-radius: 20px;
	padding: 2px 9px;
	white-space: nowrap;
}

.wkw-meter-list {
	list-style: none !important;
	margin: 0 !important;
	padding: 6px 14px 8px !important;
}

.wkw-meter-row {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 3px 12px;
	margin: 0 !important;
	padding: 11px 0;
	border-bottom: 1px solid #f4f0f2;
}

.wkw-meter-row:last-child { border-bottom: none; }

.wkw-meter-label {
	font-size: 13px;
	font-weight: 900;
	color: #3a2028;
	line-height: 1.4;
}

.wkw-meter-dots {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	flex-shrink: 0;
}

.wkw-meter-dots i {
	display: block;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: #efe9eb;
	border: 1px solid #e4dcdf;
}

.wkw-meter-dots i.on {
	background: linear-gradient(160deg, var(--wkw-pink), var(--wkw-deep));
	border-color: transparent;
	box-shadow: 0 1px 4px rgba(232,53,122,0.35);
}

.wkw-meter-note {
	grid-column: 1 / -1;
	font-size: 11.5px;
	line-height: 1.7;
	color: #75696e;
}

.wkw-meter-note b { font-weight: 900; color: var(--wkw-dark); }

.wkw-meter-foot {
	padding: 10px 16px 12px;
	background: #fff8fb;
	border-top: 1px solid #f4f0f2;
	font-size: 11.5px;
	line-height: 1.8;
	color: #5a3a48;
}

.wkw-meter-foot b { font-weight: 900; color: var(--wkw-dark); }

@media (max-width: 560px) {
	.wkw-meter { margin: 20px auto; border-radius: 12px; }
	.wkw-meter-list { padding: 4px 12px 6px !important; }
	.wkw-meter-label { font-size: 12.5px; }
	.wkw-meter-dots i { width: 11px; height: 11px; }
	.wkw-meter-note { font-size: 11px; }
}
