/* カリスマ度診断64タイプ（2026-08-21）
 *
 * 配色はジャンル4色で通す。診断の主題がその4区分なので、画面もそれで作る。
 *   正義 金 #F2C14E ／ 必要悪 藍 #2E3A6E ／ 偶像 桃 #D65C9A ／ 悪 深紅 #8E1B2E
 * 320px実測で崩れないこと（モバイル優先）。
 *
 * 陰キャ診断で踏んだ落とし穴をここでは最初から避けている:
 *   ・立ち絵は白背景でなくジャンル色のグローで抜くので、白カードで囲う必要がない
 *   ・topics.css を読む前提で書く（読まないと本文幅も見出しも当たらない）
 *   ・画像は margin:0 auto を明示（topics.css が img を block にする）
 */

.ch-app { max-width: 640px; margin: 10px auto 0; padding: 0 4vw; }

/* ── 表紙（開始前だけ出す） ───────────────── */
.ch-cover[hidden] { display: none; }
.ch-cover img {
	width: 100%; max-width: 300px; height: auto; display: block; cursor: pointer;
	margin: 0 auto; border-radius: 20px;
	box-shadow: 0 10px 26px rgba(30, 20, 60, .22);
	transition: transform .15s ease;
}
.ch-cover img:hover { transform: translateY(-2px); }
.ch-cover__note {
	margin: 10px auto 0; max-width: 24em; text-align: center;
	font-size: 12px; line-height: 1.8; color: #8b7fb0;
}

/* ── 開始ボタン ───────────────────────────── */
.ch-start {
	display: block; width: 100%; max-width: 420px; margin: 14px auto 0;
	padding: 17px 20px; border: 0; border-radius: 999px; cursor: pointer;
	background: linear-gradient(135deg, #F2C14E, #8E1B2E);
	color: #fff; font-size: 16px; font-weight: 900; letter-spacing: .02em;
	box-shadow: 0 10px 26px rgba(142, 27, 46, .3);
}
.ch-start:hover { filter: brightness(1.05); }

/* ── 設問 ─────────────────────────────────── */
.ch-quiz { padding: 6px 0 10px; }
.ch-progress {
	height: 6px; border-radius: 3px; background: #ece7f6; overflow: hidden; margin: 0 0 14px;
}
.ch-progress span {
	display: block; height: 100%; border-radius: 3px;
	background: linear-gradient(90deg, #F2C14E, #8E1B2E); transition: width .3s ease;
}
.ch-shot {
	position: relative; margin: 0 0 14px; padding: 14px 15px;
	min-height: 96px; border-radius: 14px; overflow: hidden;
	display: flex; flex-direction: column; justify-content: flex-end;
	background-size: cover; background-position: center;
}
.ch-shot::before {
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(20, 12, 38, .18), rgba(20, 12, 38, .7));
}
.ch-shot > * { position: relative; }
.ch-count {
	margin: 0 0 5px; font-size: 11.5px; font-weight: 800; letter-spacing: .1em;
	color: rgba(255, 255, 255, .82);
}
.ch-scene {
	display: inline-block; align-self: flex-start; margin: 0; padding: 5px 13px;
	border-radius: 999px; background: rgba(255, 255, 255, .92); color: #4a2d78;
	font-size: 12.5px; font-weight: 900;
}
.ch-text { margin: 0 0 16px; font-size: 18px; font-weight: 900; line-height: 1.7; color: #2f2740; }
.ch-opts { display: grid; gap: 9px; }
.ch-opt {
	width: 100%; text-align: left; padding: 15px 16px; cursor: pointer;
	background: #fff; border: 2px solid #e6ddf5; border-radius: 14px;
	font-size: 14px; line-height: 1.75; color: #3a3050; transition: .15s;
}
.ch-opt b { font-weight: 700; }
.ch-opt:hover { border-color: #b79ae8; background: #faf7ff; transform: translateY(-1px); }
.ch-back {
	margin: 14px 0 0; padding: 8px 4px; background: none; border: 0; cursor: pointer;
	font-size: 13px; color: #8b7fb0;
}

/* ── 判定中 ───────────────────────────────── */
.ch-loading { text-align: center; padding: 26px 0; }
.ch-loading img {
	width: 190px; height: auto; margin-left: auto; margin-right: auto;
	border-radius: 18px; box-shadow: 0 8px 20px rgba(30, 20, 60, .16);
}
.ch-loading p { margin: 12px 0 0; font-size: 14px; font-weight: 800; color: #6b5bd6; }

/* ── 結果ヒーロー ─────────────────────────── */
/* 2026-08-24: 背景がほぼ真っ黒に見えていた。原因は二重の暗さで、
   ①素材そのものが暗い（bg-*.webp の平均輝度 12.8〜41.2）
   ②その上に .45→.78 の黒幕をかけていた
   素材は差し替えず、スクリーン合成で暗部を持ち上げてから、
   黒幕を「下だけ濃い」形に変える。文字が乗るのは下半分だけなので上は明るくてよい。 */
.ch-hero {
	position: relative; border-radius: 20px; overflow: hidden; text-align: center;
	padding: 24px 18px 26px; background-size: cover; background-position: center;
	background-color: #4b3b6e; background-blend-mode: screen;
	color: #fff; text-shadow: 0 2px 12px rgba(0, 0, 0, .78);
}
.ch-hero::before {
	content: ''; position: absolute; inset: 0;
	background:
		radial-gradient(58% 40% at 50% 26%, rgba(255, 236, 190, .20), transparent 70%),
		linear-gradient(180deg, rgba(16, 10, 28, .05) 0%, rgba(16, 10, 28, .18) 42%, rgba(16, 10, 28, .74) 100%);
}
.ch-hero > * { position: relative; }
.ch-hero__eyebrow { margin: 0 0 10px; font-size: 11px; font-weight: 900; letter-spacing: .22em; opacity: .85; }
/* 立ち絵はジャンル色のグローで抜いてあるので、白カードで囲わない。 */
/* 立ち絵が主役なので、幅の頭打ちを外して大きく見せる */
.ch-hero__art {
	width: 300px; height: auto; max-width: 84%; margin: 0 auto 6px; display: block;
	filter: drop-shadow(0 14px 30px rgba(0, 0, 0, .55));
}
.ch-hero__code { margin: 0 0 4px; font-size: 12px; font-weight: 900; letter-spacing: .18em; opacity: .8; }
.ch-hero__label { margin: 0 0 2px; font-size: 12px; font-weight: 800; letter-spacing: .12em; opacity: .8; }
.ch-hero__genre { margin: 0 0 6px; font-size: 32px; font-weight: 900; line-height: 1.2; }
.ch-hero__gsub { margin: 0 auto 16px; max-width: 30em; font-size: 12.5px; line-height: 1.9; opacity: .9; }
.ch-hero__name { margin: 16px 0 6px; font-size: 21px; font-weight: 900; line-height: 1.4; }
.ch-hero__catch { margin: 0 0 14px; font-size: 13.5px; line-height: 1.85; opacity: .95; }

/* ジャンルごとに枠の色を変える。背景写真が変わってもここで identity を保つ */
.ch-hero--jl { box-shadow: inset 0 0 0 3px rgba(242, 193, 78, .55); }
.ch-hero--jd { box-shadow: inset 0 0 0 3px rgba(120, 140, 210, .5); }
.ch-hero--el { box-shadow: inset 0 0 0 3px rgba(214, 92, 154, .55); }
.ch-hero--ed { box-shadow: inset 0 0 0 3px rgba(190, 60, 80, .55); }

.ch-meters { display: flex; gap: 10px; justify-content: center; margin: 0 0 4px; }
.ch-meter {
	flex: 1; max-width: 150px; padding: 10px 6px; border-radius: 14px;
	background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .28);
	display: flex; align-items: baseline; justify-content: center; gap: 3px;
	text-shadow: none;
}
.ch-meter b { font-size: 34px; font-weight: 900; line-height: 1; }
.ch-meter span { font-size: 14px; font-weight: 800; }
.ch-meter small { display: block; font-size: 10.5px; font-weight: 700; opacity: .9; }
.ch-meter--dark { background: rgba(142, 27, 46, .34); border-color: rgba(255, 160, 180, .4); }

.ch-chips { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; margin: 0; }
.ch-chips span {
	padding: 5px 13px; border-radius: 999px; font-size: 12.5px; font-weight: 800;
	background: rgba(255, 255, 255, .22); border: 1px solid rgba(255, 255, 255, .34);
	text-shadow: none;
}

/* ── 出現率 ───────────────────────────────── */
.ch-rare {
	margin: 14px 0 0; padding: 14px 16px; text-align: center;
	background: linear-gradient(135deg, #fff8ec, #f6eefb);
	border: 2px solid #efdcc0; border-radius: 16px;
}
.ch-rare__num { margin: 0; font-size: 15px; font-weight: 800; color: #a2621f; }
.ch-rare__num b { font-size: 30px; font-weight: 900; }
.ch-rare__sub { margin: 4px 0 0; font-size: 11.5px; line-height: 1.85; color: #8a7a68; }

/* ── 各セクション共通 ─────────────────────── */
.ch-body, .ch-genre, .ch-bars, .ch-att, .ch-cp {
	margin: 20px 0 0; padding: 18px 16px; background: #fff;
	border: 2px solid #eee5fa; border-radius: 18px;
}
.ch-body h3, .ch-genre h3, .ch-bars h3, .ch-att h3, .ch-cp h3 {
	margin: 0 0 10px; font-size: 16px; font-weight: 900; color: #3a2a55;
}
.ch-body p, .ch-genre__body { margin: 0; font-size: 13.5px; line-height: 2.05; color: #4a3560; }
.ch-body__formula {
	margin: 0 0 12px; padding: 9px 12px; border-radius: 10px;
	background: #f5f0ff; color: #5a3d8a; font-size: 12.5px; font-weight: 800; line-height: 1.8;
}
.ch-genre__catch {
	margin: 0 0 10px; font-size: 15px; font-weight: 900; line-height: 1.7; color: #8E1B2E;
}
.ch-note {
	margin: 12px 0 0; padding: 12px 14px; border-radius: 12px;
	background: #fff6f6; border-left: 4px solid #e8a0a0;
}
.ch-note--next { background: #f2fbf5; border-left-color: #7fc79a; }
.ch-note b { display: block; font-size: 12.5px; font-weight: 900; color: #3a2a55; }
.ch-note p { margin: 5px 0 0; font-size: 12.5px; line-height: 1.95; color: #5b5168; }

/* ── 軸のバー ─────────────────────────────── */
.ch-bar { margin: 0 0 15px; }
.ch-bar:last-child { margin-bottom: 0; }
.ch-bar__label { margin: 0 0 5px; font-size: 12.5px; font-weight: 800; color: #6b3fa0; }
.ch-bar__track {
	position: relative; height: 8px; border-radius: 4px;
	background: linear-gradient(90deg, #f0dcae, #c9a0b8);
}
.ch-bar__track span {
	position: absolute; top: 50%; width: 16px; height: 16px; border-radius: 50%;
	transform: translate(-50%, -50%); background: #fff; border: 3px solid #8E1B2E;
	box-shadow: 0 2px 6px rgba(0, 0, 0, .18);
}
.ch-bar__ends { display: flex; justify-content: space-between; margin: 6px 0 0; }
.ch-bar__ends i { font-style: normal; font-size: 11.5px; color: #8b7fb0; }
.ch-bar__read { margin: 8px 0 0; padding: 11px 13px; background: #faf7ff; border-radius: 12px; }
.ch-bar__read b { display: block; font-size: 12.5px; font-weight: 900; color: #5a3d8a; }
.ch-bar__read p { margin: 5px 0 0; font-size: 12.5px; line-height: 1.95; color: #5b5168; }

.ch-att__img {
	display: block; width: 132px; height: auto; margin: 0 auto 10px; border-radius: 14px;
}
.ch-att__catch {
	margin: 0 0 8px; font-size: 14.5px; font-weight: 900; line-height: 1.7;
	color: #6b3fa0; text-align: center;
}
.ch-att__desc { margin: 0 0 4px; font-size: 13.5px; line-height: 2; color: #4a3560; }
.ch-att__link { margin: 14px 0 0; text-align: center; font-size: 13px; font-weight: 800; }

/* ── 深層 ─────────────────────────────────── */
.ch-deep {
	margin: 20px 0 0; padding: 18px 16px; border-radius: 18px;
	background: #1c1226; color: #ece5f7;
}
.ch-deep h3 { margin: 0 0 14px; font-size: 15.5px; font-weight: 900; color: #fff; }
.ch-deep__item { margin: 0 0 14px; }
.ch-deep__item:last-child { margin-bottom: 0; }
.ch-deep__item b { display: block; font-size: 13px; font-weight: 900; color: #f0a8b8; }
.ch-deep__item p { margin: 6px 0 0; font-size: 13px; line-height: 2.05; color: #d8cfe8; }

/* ── 相性 ─────────────────────────────────── */
.ch-cp__grid { display: grid; gap: 12px; }
.ch-cp__card { padding: 14px; border-radius: 16px; text-align: center; background: #f7fbf8; border: 2px solid #cfe8d8; }
.ch-cp__card--bad { background: #fdf6f6; border-color: #f0cccc; }
.ch-cp__tag {
	display: inline-block; margin: 0 0 10px; padding: 4px 12px; border-radius: 999px;
	font-size: 11.5px; font-weight: 900; color: #fff; background: #5aa87a;
}
.ch-cp__card--bad .ch-cp__tag { background: #cf7b7b; }
.ch-cp__card img { width: 112px; height: auto; display: block; margin: 0 auto 8px; border-radius: 16px; }
.ch-cp__code { margin: 0; font-size: 11px; font-weight: 900; letter-spacing: .14em; color: #9b91ad; }
.ch-cp__card h4 { margin: 3px 0 4px; font-size: 15px; font-weight: 900; color: #2f2740; }
.ch-cp__catch { margin: 0 0 8px; font-size: 12.5px; line-height: 1.8; color: #6b5f7d; }
.ch-cp__why { margin: 0; font-size: 12.5px; line-height: 1.95; color: #4a3560; text-align: left; }
.ch-cp__link { display: inline-block; margin: 9px 0 0; font-size: 12.5px; font-weight: 800; }
.ch-cp__foot { margin: 12px 0 0; font-size: 12px; line-height: 1.85; color: #8b7fb0; }

/* ── シェア ───────────────────────────────── */
.ch-share {
	margin: 20px 0 0; padding: 18px 16px; border-radius: 18px;
	background: linear-gradient(135deg, #fdf3ec, #f3ecfb); text-align: center;
}
.ch-share__lead { margin: 0 0 12px; font-size: 13px; font-weight: 800; color: #5a4a70; line-height: 1.8; }
.ch-share__btns { display: grid; gap: 8px; }
.ch-share__btn {
	padding: 13px 16px; border: 0; border-radius: 999px; cursor: pointer;
	font-size: 14px; font-weight: 900; color: #fff;
}
.ch-share__btn--x { background: #111; }
.ch-share__btn--line { background: #06c755; }
.ch-share__btn--copy { background: #7a6aa8; }

/* ── 64タイプ診断への導線 ─────────────────── */
.ch-bridge {
	margin: 20px 0 0; padding: 20px 16px; text-align: center;
	background: #faf7ff; border: 2px dashed #d9c6f0; border-radius: 18px;
}
.ch-bridge__lead { margin: 0 0 12px; font-size: 13.5px; line-height: 1.9; color: #4a3560; }
.ch-bridge__btn {
	display: inline-block; padding: 14px 26px; border-radius: 999px; text-decoration: none;
	background: linear-gradient(135deg, #8b6cc1, #d65c9a); color: #fff;
	font-size: 14px; font-weight: 900;
}
.ch-bridge__sub { margin: 12px 0 0; font-size: 12.5px; line-height: 1.9; color: #6b5f7d; }

.ch-restart {
	display: block; width: 100%; margin: 18px 0 0; padding: 13px; cursor: pointer;
	background: #fff; border: 2px solid #e6ddf5; border-radius: 999px;
	font-size: 14px; font-weight: 800; color: #6b3fa0;
}
.ch-disclaimer { margin: 12px 0 0; font-size: 11.5px; line-height: 1.8; color: #9b91ad; text-align: center; }

/* ── 本文：ジャンル4区分カード ────────────── */
.ch-vd { display: grid; gap: 10px; margin: 16px 0; }
.ch-vd__card {
	padding: 15px 16px; border-radius: 16px; background: #fff;
	border: 2px solid #eee5fa; border-left-width: 7px;
}
.ch-vd__card--JL { border-left-color: #F2C14E; }
.ch-vd__card--JD { border-left-color: #2E3A6E; }
.ch-vd__card--EL { border-left-color: #D65C9A; }
.ch-vd__card--ED { border-left-color: #8E1B2E; }
.ch-vd__card h3 { margin: 0 0 6px; font-size: 15.5px; font-weight: 900; color: #3a2a55; }
.ch-vd__card p { margin: 0; font-size: 13px; line-height: 2; color: #4a3560; }

/* ── 本文：4つの軸カード ──────────────────── */
.ch-axis { margin: 16px 0 0; }
.ch-axis__row { margin: 0 0 16px; }
.ch-axis__name {
	margin: 0 0 8px; padding: 4px 12px; display: inline-block; border-radius: 999px;
	background: #6b5bd6; color: #fff; font-size: 12.5px; font-weight: 900;
}
.ch-axis__card {
	margin: 0 0 8px; padding: 13px 15px; background: #fff;
	border: 2px solid #eee5fa; border-radius: 14px;
}
.ch-axis__card h3 { margin: 0 0 6px; font-size: 14px; font-weight: 900; color: #5a3d8a; }
.ch-axis__card p { margin: 0; font-size: 13px; line-height: 2; color: #4a3560; }

/* ── 本文：64タイプ一覧 ───────────────────── */
.ch-zk__h3 {
	margin: 26px 0 4px; padding: 0 0 6px; font-size: 16px; font-weight: 900;
	color: #3a2a55; border-bottom: 3px solid #e6ddf5;
}
.ch-zk__lead { margin: 0 0 12px; font-size: 12.5px; line-height: 1.9; color: #8b7fb0; }
.ch-zk { display: grid; gap: 10px; }
.ch-zk__card {
	display: grid; grid-template-columns: 104px 1fr; gap: 12px; align-items: start;
	padding: 13px; background: #fff; border: 2px solid #eee5fa; border-radius: 14px;
	scroll-margin-top: 80px;
}
.ch-zk__card img { width: 104px; height: auto; border-radius: 12px; display: block; }
.ch-zk__code { margin: 0; font-size: 10.5px; font-weight: 900; letter-spacing: .12em; color: #9b91ad; }
.ch-zk__code span { font-weight: 800; letter-spacing: 0; color: #c08a3e; }
.ch-zk__vd {
	display: inline-block; margin: 4px 0 3px; padding: 3px 10px; border-radius: 999px;
	font-size: 11px; font-weight: 900; color: #fff; background: #6b5bd6;
}
.ch-zk__vd--JL { background: #c79a2e; }
.ch-zk__vd--JD { background: #2E3A6E; }
.ch-zk__vd--EL { background: #D65C9A; }
.ch-zk__vd--ED { background: #8E1B2E; }
.ch-zk__name { margin: 2px 0 3px; font-size: 15px; font-weight: 900; color: #2f2740; line-height: 1.4; }
.ch-zk__catch { margin: 0 0 7px; font-size: 12.5px; line-height: 1.75; color: #6b3fa0; font-weight: 700; }
.ch-zk__body { margin: 0; font-size: 12.5px; line-height: 2; color: #4a3560; }
.ch-zk__foot { margin: 20px 0 0; font-size: 13px; font-weight: 800; text-align: center; }

/* 一覧カードを 104px + 1fr のままにすると、390px幅で本文の段が痩せる。
   スマホでは画像を回り込ませて、本文は画像の下で全幅に戻す。 */
@media (max-width: 767px) {
	.ch-zk__card { display: flow-root; grid-template-columns: none; }
	.ch-zk__card img { float: left; width: 92px; margin: 2px 12px 6px 0; }
}

/* ── PC ───────────────────────────────────── */
@media (min-width: 768px) {
	.ch-hero { padding: 32px 26px 34px; }
	.ch-hero__art { width: 360px; max-width: 62%; }
	.ch-hero__genre { font-size: 40px; }
	.ch-hero__name { font-size: 24px; }
	.ch-text { font-size: 20px; }
	.ch-share__btns { grid-template-columns: repeat(3, 1fr); }
	.ch-cp__grid, .ch-vd, .ch-zk { grid-template-columns: 1fr 1fr; }
	.ch-axis__row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
	.ch-axis__name { grid-column: 1 / -1; }
	.ch-axis__card { margin: 0; }
	/* PCは表紙を横並びにして、開始ボタンを初画面に入れる */
	.ch-cover {
		display: grid; grid-template-columns: minmax(0, 320px) 1fr;
		gap: 28px; align-items: center;
	}
	.ch-cover img { max-width: none; }
	.ch-start { margin: 0; max-width: none; font-size: 17px; padding: 19px 20px; }
	.ch-cover__note { margin: 14px 0 0; text-align: left; max-width: none; font-size: 13px; }
}

/* ── 本文：愛着4種カード（card-att-*.webp は 1080x1350 の縦長） ── */
.ch-attgrid { display: grid; gap: 12px; margin: 16px 0; }
.ch-attgrid__card {
	padding: 16px; background: #fff; border: 2px solid #eee5fa;
	border-radius: 16px; text-align: center;
}
.ch-attgrid__card img {
	width: 100%; max-width: 220px; height: 190px; object-fit: cover; object-position: center 22%;
	display: block; margin: 0 auto 10px; border-radius: 14px;
}
.ch-attgrid__card h3 { margin: 0 0 4px; font-size: 15px; font-weight: 900; color: #3a2a55; }
.ch-attgrid__catch { margin: 0 0 8px; font-size: 13px; font-weight: 800; color: #6b3fa0; line-height: 1.7; }
.ch-attgrid__card p { margin: 0; font-size: 12.5px; line-height: 2; color: #4a3560; text-align: left; }
@media (min-width: 768px) { .ch-attgrid { grid-template-columns: 1fr 1fr; } }

/* 2026-08-21: 表紙画像が入ったら、開始ボタンが y=759（固定ナビの下端764の直前）まで
   落ちて初画面から外れた。トレンド流入はここで落ちるので、上の余白を詰める。
   topics.css の既定は hero 60/48・body 32。この診断だけ上書きする。 */
.tp-article__hero { padding: 30px 0 24px; }
.tp-article__body { padding-top: 16px; }

/* H1とリード文は、読点で明示的に2行にする。
   1行に流すと「カリスマ度診断あなたは正義か、悪か。」と続けて読まれる。
   text-wrap:balance は日本語だと文節を無視して割るので使わない。 */
.ch-h1 { line-height: 1.35; }
.ch-h1__sub {
	display: block; margin: 6px 0 0; font-size: .72em; font-weight: 800; opacity: .88;
}
.ch-sub span { display: block; }
@media (min-width: 768px) {
	.ch-sub span { display: inline; }
}


/* ── 2026-08-24 追加 ────────────────────────────────
   64タイプ一覧が縦37,706px（ジャニヲタ診断の3.5倍）あり、
   見たい群へ飛ぶ手段が無かった。ジャンルで絞り込めるようにする。
   愛着スタイルのバッジは、群の中で1枚ごとに変わる情報を出すため。 */
.ch-filter {
	display: flex; flex-wrap: wrap; gap: 7px;
	margin: 14px 0 18px; padding: 12px;
	background: #faf7ff; border: 1px solid #ece2fb; border-radius: 14px;
}
.ch-filter__chip {
	flex: 0 0 auto; padding: 8px 13px;
	font-size: 12px; font-weight: 800; line-height: 1;
	color: #6b5bd6; background: #fff;
	border: 2px solid #ddd0f5; border-radius: 999px;
	cursor: pointer; -webkit-appearance: none; appearance: none;
	transition: .15s;
}
.ch-filter__chip:hover { border-color: #a98cf0; }
.ch-filter__chip.is-on { color: #fff; background: #6b5bd6; border-color: #6b5bd6; }
.ch-filter__chip--JL.is-on { background: #c79a2e; border-color: #c79a2e; }
.ch-filter__chip--JD.is-on { background: #2E3A6E; border-color: #2E3A6E; }
.ch-filter__chip--EL.is-on { background: #D65C9A; border-color: #D65C9A; }
.ch-filter__chip--ED.is-on { background: #8E1B2E; border-color: #8E1B2E; }
.ch-zkgroup[hidden] { display: none; }

/* 愛着スタイルのバッジ。4色は診断結果側の配色に合わせる。 */
.ch-zk__vd--att-S { background: #2f8f6b; }
.ch-zk__vd--att-A { background: #d17a2e; }
.ch-zk__vd--att-V { background: #3d6ea8; }
.ch-zk__vd--att-F { background: #8a4a9e; }

/* 目次。h2が9本あるので、上から順に飛べるようにする。 */
.ch-toc {
	margin: 18px 0 4px; padding: 14px 16px;
	background: #fbfaff; border: 1px dashed #ddd0f5; border-radius: 14px;
}
.ch-toc__h { margin: 0 0 8px; font-size: 12px; font-weight: 900; color: #6b5bd6; letter-spacing: .06em; }
.ch-toc ul { margin: 0; padding: 0 0 0 1.1em; }
.ch-toc li { margin: 0 0 5px; font-size: 13px; line-height: 1.7; }
.ch-toc a { color: #4a3560; text-decoration: none; border-bottom: 1px solid #e0d4f7; }
.ch-toc a:hover { color: #6b5bd6; }
