/* アニソン・イントロクイズ フロント */
:root{
	--aq-bg:#0f1024; --aq-bg2:#1a1c3a; --aq-card:#20234a; --aq-line:#33376b;
	--aq-txt:#eef0ff; --aq-sub:#a7abd8; --aq-acc:#ff4d8d; --aq-acc2:#6c7bff;
	--aq-ok:#31d089; --aq-ng:#ff5a6a;
}
*{box-sizing:border-box}
body{margin:0;background:linear-gradient(160deg,var(--aq-bg),var(--aq-bg2));color:var(--aq-txt);
	font-family:"Hiragino Kaku Gothic ProN","Noto Sans JP",system-ui,-apple-system,"Segoe UI",sans-serif;
	-webkit-font-smoothing:antialiased;min-height:100vh}
.aq-wrap{min-height:100vh;display:flex;flex-direction:column}
.aq-main{flex:1;display:flex;align-items:center;justify-content:center;padding:24px 16px}
.aq-app{width:100%;max-width:680px}
.aq-screen{background:rgba(255,255,255,.02);border:1px solid var(--aq-line);border-radius:20px;
	padding:28px 24px;box-shadow:0 20px 60px rgba(0,0,0,.35)}

/* スタート */
.aq-logo{font-size:34px;font-weight:800;text-align:center;margin:.2em 0 .1em;letter-spacing:.02em}
.aq-logo span{color:var(--aq-acc)}
.aq-lead{text-align:center;color:var(--aq-sub);margin:0 0 24px}
.aq-field{margin:0 0 20px}
.aq-field h3{font-size:15px;margin:0 0 10px;color:var(--aq-txt)}
.aq-field h3 small{color:var(--aq-sub);font-weight:400;margin-left:6px}
.aq-chips{display:flex;flex-wrap:wrap;gap:8px}
.aq-chip{position:relative;cursor:pointer}
.aq-chip input{position:absolute;opacity:0;pointer-events:none}
.aq-chip span{display:inline-block;padding:8px 14px;border-radius:999px;border:1px solid var(--aq-line);
	background:var(--aq-card);color:var(--aq-sub);font-size:14px;transition:.15s}
.aq-chip input:checked+span{background:var(--aq-acc2);border-color:var(--aq-acc2);color:#fff}
#aq-count{background:var(--aq-card);color:var(--aq-txt);border:1px solid var(--aq-line);
	border-radius:10px;padding:10px 14px;font-size:15px}
.aq-range{display:flex;align-items:center;gap:10px}
.aq-range select{flex:1;background:var(--aq-card);color:var(--aq-txt);border:1px solid var(--aq-line);
	border-radius:10px;padding:10px 12px;font-size:15px}
.aq-range-sep{color:var(--aq-sub);font-weight:700}

.aq-btn{appearance:none;border:1px solid var(--aq-line);background:var(--aq-card);color:var(--aq-txt);
	padding:12px 20px;border-radius:12px;font-size:15px;cursor:pointer;transition:.15s}
.aq-btn:hover{border-color:var(--aq-acc2)}
.aq-btn-primary{background:linear-gradient(90deg,var(--aq-acc),var(--aq-acc2));border:0;font-weight:700;
	width:100%;padding:15px;font-size:17px;margin-top:8px}
.aq-btn-primary:hover{filter:brightness(1.08)}
.aq-msg{text-align:center;color:var(--aq-sub);min-height:1.2em;margin:12px 0 0}

/* クイズ */
.aq-topbar{display:flex;justify-content:space-between;font-weight:700;color:var(--aq-sub);margin-bottom:14px}
.aq-stage{position:relative;width:100%;max-width:640px;margin:0 auto;aspect-ratio:16/9;
	border-radius:14px;overflow:hidden;background:#000}
.aq-stage iframe,#aq-player{width:100%!important;height:100%!important;border:0}
.aq-cover{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;
	gap:16px;background:radial-gradient(circle at 50% 40%,#2a2d5c,#0c0d1f);z-index:5}
.aq-cover[hidden]{display:none}
.aq-cover-text{color:var(--aq-sub);font-size:15px;margin:0}
.aq-vinyl{width:96px;height:96px;border-radius:50%;
	background:radial-gradient(circle,#444 0 18%,#111 19% 22%,#222 23% 100%);
	border:4px solid #000;animation:aq-spin 2.4s linear infinite}
@keyframes aq-spin{to{transform:rotate(360deg)}}

/* 自動再生制限の回避用ゲート */
.aq-begin{background:linear-gradient(90deg,var(--aq-acc),var(--aq-acc2));border:0;font-weight:800;
	padding:14px 30px;font-size:16px;border-radius:999px;box-shadow:0 10px 30px rgba(0,0,0,.45)}
.aq-begin:hover{filter:brightness(1.08)}
.aq-begin[hidden]{display:none}
.aq-begin-pv{width:100%;max-width:460px;margin:0 auto 14px;display:flex}
.aq-begin-pv[hidden]{display:none}

.aq-controls{text-align:center;margin:14px 0}
.aq-choices{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:6px}
.aq-choice{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2px;
	padding:13px 12px;border-radius:12px;border:1px solid var(--aq-line);background:var(--aq-card);
	color:var(--aq-txt);cursor:pointer;transition:.12s;text-align:center;min-height:60px}
.aq-c-anime{font-weight:700;font-size:14px;line-height:1.25}
.aq-c-song{font-size:12px;opacity:.72;line-height:1.2}
.aq-choice:hover:not(:disabled){border-color:var(--aq-acc2);transform:translateY(-1px)}
.aq-choice:disabled{cursor:default;opacity:.9}
.aq-choice.is-correct{background:var(--aq-ok);border-color:var(--aq-ok);color:#04231a;font-weight:700}
.aq-choice.is-wrong{background:var(--aq-ng);border-color:var(--aq-ng);color:#2a0207}

/* 正解発表 */
.aq-reveal{margin-top:18px;text-align:center}
.aq-reveal[hidden]{display:none}
.aq-verdict{font-size:26px;font-weight:800;margin-bottom:8px}
.aq-verdict.ok{color:var(--aq-ok)}
.aq-verdict.ng{color:var(--aq-ng)}
.aq-answer-anime{font-size:22px;font-weight:800}
.aq-answer-song{font-size:16px;color:var(--aq-txt);margin-top:2px}
.aq-answer-meta{font-size:13px;color:var(--aq-sub);margin-top:4px}
.aq-chorus-note{color:var(--aq-acc);font-size:13px;margin:12px 0 6px}

/* 結果 */
.aq-result{text-align:center}
.aq-result-score{font-size:20px;margin:10px 0 20px}
.aq-drop-note{font-size:12px;color:var(--aq-sub);margin-top:8px}

/* ===== 結果ヒーロー（称号） ===== */
.aq-rank{position:relative;overflow:hidden;border-radius:22px;padding:28px 20px 24px;margin:6px 0 22px;
	border:1px solid var(--aq-line);
	background:radial-gradient(130% 130% at 50% 0,rgba(108,123,255,.28),rgba(255,77,141,.08) 55%,transparent 80%);
	box-shadow:0 18px 60px rgba(0,0,0,.4),inset 0 0 60px rgba(108,123,255,.08);
	animation:aq-pop .5s cubic-bezier(.2,1.2,.3,1) both}
.aq-rank::before{content:"";position:absolute;top:-40%;left:-60%;width:60%;height:200px;pointer-events:none;
	background:linear-gradient(90deg,transparent,rgba(255,255,255,.16),transparent);transform:skewX(-20deg);
	animation:aq-shine 2.6s ease-in-out infinite}
@keyframes aq-pop{0%{transform:scale(.85);opacity:0}100%{transform:scale(1);opacity:1}}
@keyframes aq-shine{0%{left:-60%}55%{left:130%}100%{left:130%}}
/* 背景の放射グロー */
.aq-rank-glow{position:absolute;top:-30px;left:50%;width:340px;height:340px;transform:translateX(-50%);pointer-events:none;z-index:0;
	background:conic-gradient(from 0deg,rgba(108,123,255,.18),transparent 25%,rgba(255,77,141,.16) 50%,transparent 75%,rgba(108,123,255,.18));
	border-radius:50%;filter:blur(14px);animation:aq-spin 18s linear infinite}
.aq-rank>*:not(.aq-rank-glow){position:relative;z-index:1}
/* メダル（回転するグローリング＋アイコン） */
.aq-medal{position:relative;width:116px;height:116px;margin:2px auto 4px;display:grid;place-items:center;
	animation:aq-medal-in .6s cubic-bezier(.2,1.3,.3,1) both}
@keyframes aq-medal-in{0%{transform:scale(0) rotate(-30deg);opacity:0}100%{transform:scale(1) rotate(0);opacity:1}}
.aq-medal-ring{position:absolute;inset:0;border-radius:50%;
	background:conic-gradient(from 0deg,var(--aq-acc),#8ad3ff,var(--aq-acc2),#ffcf3f,var(--aq-acc));
	-webkit-mask:radial-gradient(farthest-side,transparent calc(100% - 7px),#000 calc(100% - 6px));
	mask:radial-gradient(farthest-side,transparent calc(100% - 7px),#000 calc(100% - 6px));
	filter:drop-shadow(0 0 12px rgba(108,123,255,.7));animation:aq-spin 5s linear infinite}
.aq-medal-ico{position:relative;width:84px;height:84px;border-radius:50%;display:grid;place-items:center;
	background:radial-gradient(circle at 50% 32%,#2c3060,#161832);border:1px solid rgba(255,255,255,.14);
	box-shadow:inset 0 2px 16px rgba(0,0,0,.55),0 8px 22px rgba(0,0,0,.45)}
.aq-medal-ico svg{width:46px;height:46px;color:var(--aq-acc2);filter:drop-shadow(0 0 7px rgba(108,123,255,.7))}
/* 星評価 */
.aq-rank-stars{display:flex;justify-content:center;gap:5px;margin:10px 0 6px}
.aq-star{width:21px;height:21px;color:#3a3f63;line-height:0}
.aq-star svg{width:21px;height:21px;fill:currentColor;stroke:none}
.aq-star.on{color:#ffce3a;filter:drop-shadow(0 0 6px rgba(255,200,60,.6));animation:aq-star-pop .45s both}
.aq-rank-stars .aq-star:nth-child(1){animation-delay:.35s}
.aq-rank-stars .aq-star:nth-child(2){animation-delay:.44s}
.aq-rank-stars .aq-star:nth-child(3){animation-delay:.53s}
.aq-rank-stars .aq-star:nth-child(4){animation-delay:.62s}
.aq-rank-stars .aq-star:nth-child(5){animation-delay:.71s}
@keyframes aq-star-pop{0%{transform:scale(0) rotate(-40deg)}70%{transform:scale(1.3)}100%{transform:scale(1) rotate(0)}}
.aq-rank-label{font-size:11px;letter-spacing:.35em;color:var(--aq-sub);text-indent:.35em}
.aq-rank-title{font-size:40px;font-weight:900;line-height:1.15;margin:2px 0 8px;letter-spacing:.02em;
	color:#f1efff;
	background-image:linear-gradient(90deg,var(--aq-acc),var(--aq-acc2));-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;
	filter:drop-shadow(0 2px 18px rgba(108,123,255,.45))}
.aq-rank-pct{color:var(--aq-sub);font-weight:700;margin-top:6px}
.aq-rank-pct .lbl{display:block;font-size:11px;letter-spacing:.25em;color:var(--aq-sub);text-indent:.25em;margin-bottom:-6px}
.aq-rank-pct .big{font-size:64px;font-weight:900;color:var(--aq-txt);letter-spacing:-.02em;
	text-shadow:0 2px 24px rgba(108,123,255,.5)}
.aq-rank-pct .pc{font-size:24px;font-weight:800;color:var(--aq-txt);margin-left:2px}
.aq-rank-score{font-size:16px;font-weight:700;color:var(--aq-txt);margin-top:2px}
.aq-rank-msg{max-width:440px;margin:15px auto 0;font-size:15px;line-height:1.65;color:var(--aq-txt);
	background:rgba(0,0,0,.24);border:1px solid rgba(255,255,255,.06);border-radius:12px;padding:12px 16px}
/* 称号ごとの色 */
.aq-rank.r-god{border-color:#ffcf3f;
	background:radial-gradient(130% 130% at 50% 0,rgba(255,205,63,.32),rgba(255,120,0,.12) 55%,transparent 80%);
	box-shadow:0 18px 60px rgba(0,0,0,.4),0 0 40px rgba(255,190,60,.25),inset 0 0 60px rgba(255,190,60,.1)}
.aq-rank.r-god .aq-rank-title{background-image:linear-gradient(90deg,#ffe14d,#ff8a00);filter:drop-shadow(0 2px 18px rgba(255,180,40,.6))}
.aq-rank.r-god .aq-medal-ring{background:conic-gradient(from 0deg,#ffe14d,#ff8a00,#fff2b0,#ffcf3f,#ffe14d);filter:drop-shadow(0 0 14px rgba(255,190,60,.85))}
.aq-rank.r-god .aq-medal-ico svg{color:#ffd54a;filter:drop-shadow(0 0 8px rgba(255,190,60,.8))}
.aq-rank.r-master .aq-rank-title{background-image:linear-gradient(90deg,#ffd93f,#ff4d8d)}
.aq-rank.r-master .aq-medal-ico svg{color:#ffd93f}
.aq-rank.r-heavy .aq-rank-title{background-image:linear-gradient(90deg,#8ad3ff,#6c7bff)}
.aq-rank.r-fan .aq-rank-title{background-image:linear-gradient(90deg,#ffd36b,#ff8ac0)}
.aq-rank.r-light .aq-rank-title{background-image:linear-gradient(90deg,#6be59a,#31d089)}
.aq-rank.r-light .aq-medal-ico svg{color:#57dd97}
.aq-rank.r-niwaka{background:radial-gradient(130% 130% at 50% 0,rgba(150,120,90,.22),transparent 70%)}
.aq-rank.r-niwaka .aq-rank-title{background-image:linear-gradient(90deg,#d7b58a,#b08a5a);filter:none}
.aq-rank.r-niwaka .aq-medal-ring{background:conic-gradient(from 0deg,#d7b58a,#8a7150,#d7b58a);filter:drop-shadow(0 0 8px rgba(180,150,100,.5))}
.aq-rank.r-niwaka .aq-medal-ico svg{color:#c8a878}
.aq-rank.r-normal{border-color:#4a4f6b;
	background:radial-gradient(130% 130% at 50% 0,rgba(120,130,160,.22),transparent 70%);box-shadow:0 18px 60px rgba(0,0,0,.4)}
.aq-rank.r-normal .aq-rank-title{background-image:linear-gradient(90deg,#aab0cc,#7a8098);filter:none}
.aq-rank.r-normal .aq-medal-ring{background:conic-gradient(from 0deg,#8a90b0,#4a4f6b,#8a90b0);filter:none}
.aq-rank.r-normal .aq-medal-ico svg{color:#9aa0c0;filter:none}
@media(prefers-reduced-motion:reduce){
	.aq-rank,.aq-rank::before,.aq-rank-glow,.aq-medal,.aq-medal-ring,.aq-star.on{animation:none}
}
.aq-result-list{text-align:left;margin-bottom:20px}
.aq-result-row{display:flex;gap:10px;align-items:baseline;padding:9px 12px;border-radius:10px;
	background:var(--aq-card);margin-bottom:6px}
.aq-result-row .mark{font-weight:800}
.aq-result-row.ok .mark{color:var(--aq-ok)}
.aq-result-row.ng .mark{color:var(--aq-ng)}
.aq-result-row em{color:var(--aq-sub);font-style:normal}

.aq-footer{flex-shrink:0;text-align:center;color:var(--aq-sub);font-size:12px;padding:16px}
.aq-nav{display:flex;gap:16px;justify-content:center;margin-bottom:8px}
.aq-nav a{color:var(--aq-sub);text-decoration:none;font-size:13px;padding:4px 2px;border-bottom:1px solid transparent}
.aq-nav a:hover{color:var(--aq-txt);border-bottom-color:var(--aq-acc)}
.aq-songlink{display:inline-block;margin-top:12px;margin-right:14px;color:var(--aq-sub);text-decoration:none;font-size:14px}
.aq-songlink:hover{color:var(--aq-acc2)}
.aq-share-btn{background:#000;border-color:#000;color:#fff;margin:0 0 10px}
.aq-share-btn:hover{border-color:#000;filter:brightness(1.2)}

/* 報告 */
.aq-report-btn{background:transparent;border:1px solid var(--aq-line);color:var(--aq-sub);
	padding:8px 12px;border-radius:10px;font-size:13px;cursor:pointer;margin-top:8px}
.aq-report-btn:hover{color:var(--aq-txt);border-color:var(--aq-ng)}
.aq-controls .aq-btn,.aq-controls .aq-report-btn{margin:5px 4px;vertical-align:middle}
.aq-report-pop{position:fixed;inset:0;margin:auto;width:min(420px,92vw);height:max-content;max-height:90vh;
	background:var(--aq-card);border:1px solid var(--aq-line);border-radius:16px;padding:20px;z-index:100;
	box-shadow:0 24px 70px rgba(0,0,0,.55);display:flex;flex-direction:column;gap:10px}
.aq-report-pop[hidden]{display:none}
.aq-report-title{margin:0 0 6px;font-weight:700}
.aq-report-reason{padding:13px;border-radius:10px;border:1px solid var(--aq-line);background:var(--aq-bg2);
	color:var(--aq-txt);font-size:14px;cursor:pointer;text-align:left}
.aq-report-reason:hover{border-color:var(--aq-acc2)}
.aq-report-cancel{margin-top:4px;padding:10px;background:transparent;border:0;color:var(--aq-sub);cursor:pointer}
.aq-toast{position:fixed;left:50%;bottom:28px;transform:translateX(-50%) translateY(20px);
	background:rgba(0,0,0,.85);color:#fff;padding:12px 20px;border-radius:999px;font-size:14px;z-index:120;
	opacity:0;transition:opacity .25s,transform .25s;pointer-events:none}
.aq-toast.show{opacity:1;transform:translateX(-50%) translateY(0)}

/* 音量（固定） */
.aq-volume{position:fixed;left:16px;bottom:16px;z-index:90;display:flex;align-items:center;gap:8px;
	background:rgba(20,22,46,.92);border:1px solid var(--aq-line);border-radius:999px;padding:8px 14px;
	box-shadow:0 8px 24px rgba(0,0,0,.35)}
.aq-vol-ico{font-size:16px;line-height:1}
#aq-vol{width:120px;accent-color:var(--aq-acc);cursor:pointer}
@media(max-width:480px){.aq-volume{left:10px;bottom:10px;padding:6px 10px}#aq-vol{width:90px}}

/* アイコン（インラインSVG・色は文字色に追従） */
.aq-ico{width:1.05em;height:1.05em;flex:0 0 auto;vertical-align:-0.18em;
	stroke:currentColor;stroke-width:2;fill:none;stroke-linecap:round;stroke-linejoin:round}
.aq-btn{display:inline-flex;align-items:center;justify-content:center;gap:7px}
.aq-report-btn{display:inline-flex;align-items:center;gap:6px}
.aq-cover-text{display:inline-flex;align-items:center;gap:8px}
.aq-vol-ico{display:inline-flex;align-items:center}
.aq-vol-ico .aq-ico{width:18px;height:18px}

@media(max-width:480px){
	.aq-screen{padding:20px 16px;border-radius:16px}
	.aq-logo{font-size:27px}
	.aq-choice{font-size:14px;padding:13px 8px}
}

/* スマホ：正解発表中は「次の問題」を画面下部に固定して、スクロール不要にする */
@media(max-width:640px){
	.aq-reveal:not([hidden]){padding-bottom:88px}
	.aq-reveal:not([hidden]) #aq-next{
		position:fixed;left:12px;right:12px;bottom:calc(12px + env(safe-area-inset-bottom));
		width:auto;margin:0;z-index:95;padding:16px;font-size:16px;
		box-shadow:0 8px 30px rgba(0,0,0,.6)}
}

/* ===== ヘッダーナビ（全ページ共通） ===== */
.aq-head{display:flex;flex-wrap:wrap;align-items:center;gap:6px 16px;padding:12px 18px;
	border-bottom:1px solid var(--aq-line);background:rgba(0,0,0,.18)}
.aq-head-logo{font-weight:900;font-size:16px;color:var(--aq-txt);text-decoration:none;white-space:nowrap}
.aq-head-logo span{color:var(--aq-acc)}
.aq-head-nav{display:flex;flex-wrap:wrap;gap:4px 6px}
.aq-head-nav a{font-size:12.5px;color:var(--aq-sub);text-decoration:none;padding:5px 10px;border-radius:999px;
	border:1px solid transparent;white-space:nowrap}
.aq-head-nav a:hover{color:var(--aq-txt);border-color:var(--aq-acc2);background:rgba(108,123,255,.12)}
.aq-head-toggle{display:none}
@media(max-width:640px){
	.aq-head{justify-content:space-between;gap:8px}
	.aq-head-toggle{display:inline-flex;flex-direction:column;justify-content:center;gap:4px;
		width:42px;height:38px;padding:9px 10px;background:transparent;border:1px solid var(--aq-line);
		border-radius:10px;cursor:pointer}
	.aq-head-toggle span{display:block;height:2px;border-radius:2px;background:var(--aq-txt);transition:.2s}
	.aq-head.is-open .aq-head-toggle span:nth-child(1){transform:translateY(6px) rotate(45deg)}
	.aq-head.is-open .aq-head-toggle span:nth-child(2){opacity:0}
	.aq-head.is-open .aq-head-toggle span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}
	.aq-head-nav{display:none;width:100%;flex-direction:column;gap:2px;padding:6px 0 4px}
	.aq-head.is-open .aq-head-nav{display:flex}
	.aq-head-nav a{display:block;font-size:14px;padding:11px 12px;border-radius:10px}
}

/* ===== トップの解説・FAQ（SEO兼ユーザー向け） ===== */
.aq-home-seo{max-width:760px;margin:28px auto 0;padding:24px 20px;border-top:1px solid var(--aq-line);
	color:var(--aq-txt);line-height:1.85;font-size:14.5px}
.aq-home-seo h2{font-size:19px;font-weight:800;margin:26px 0 10px;color:var(--aq-txt)}
.aq-home-seo h2:first-child{margin-top:0}
.aq-home-seo p{margin:0 0 12px;color:var(--aq-sub)}
.aq-home-seo p a{color:var(--aq-acc2);text-decoration:underline;text-underline-offset:3px}
.aq-home-seo p a:hover{color:var(--aq-txt)}
.aq-home-seo strong{color:var(--aq-txt)}
.aq-seo-list{margin:0 0 12px;padding-left:1.4em;color:var(--aq-sub)}
.aq-seo-list li{margin-bottom:6px}
.aq-seo-links{list-style:none;padding:0;margin:0 0 12px;display:flex;flex-wrap:wrap;gap:8px}
.aq-seo-links a{display:inline-block;padding:8px 14px;border-radius:999px;background:var(--aq-card);
	border:1px solid var(--aq-line);color:var(--aq-sub);text-decoration:none;font-size:13px}
.aq-seo-links a:hover{color:var(--aq-txt);border-color:var(--aq-acc2)}
.aq-faq{margin:0}
.aq-faq dt{font-weight:800;color:var(--aq-txt);margin:14px 0 4px}
.aq-faq dt::before{content:"Q. ";color:var(--aq-acc)}
.aq-faq dd{margin:0;color:var(--aq-sub)}
.aq-faq dd::before{content:"A. ";color:var(--aq-acc2);font-weight:700}

/* ===== ハンズフリー再生モード ===== */
.aq-passive-start{margin:10px 0 0;width:100%;background:var(--aq-card);border-color:var(--aq-line);color:var(--aq-sub)}
.aq-passive-start:hover{border-color:var(--aq-acc2);color:var(--aq-txt)}
.aq-passive{text-align:center}
.aq-passive-video{max-width:480px;margin:0 auto 16px;border-radius:14px;overflow:hidden;aspect-ratio:16/9;background:#000}
#aq-passive-player,#aq-passive-player iframe{width:100%;height:100%;display:block;border:0}
.aq-passive-phase{font-size:22px;font-weight:800;color:var(--aq-acc2);margin:8px 0 18px;min-height:1.4em}
.aq-passive-answer{background:rgba(255,255,255,.03);border:1px solid var(--aq-line);border-radius:16px;
	padding:22px 18px;margin:0 auto 18px;max-width:460px;animation:aq-pop .35s ease both}
.aq-passive-answer .pv-label{font-size:11px;letter-spacing:.35em;color:var(--aq-sub);text-indent:.35em;margin-bottom:8px}
.aq-passive-answer .pv-anime{font-size:26px;font-weight:900;color:var(--aq-txt);line-height:1.25}
.aq-passive-answer .pv-song{font-size:17px;color:var(--aq-acc);margin-top:6px}
.aq-passive-answer .pv-meta{font-size:13px;color:var(--aq-sub);margin-top:8px}
.aq-passive-progress{font-size:13px;color:var(--aq-sub);font-weight:700;margin-bottom:6px}
.aq-passive-note{font-size:12px;color:var(--aq-sub);line-height:1.7;margin:6px 0 18px}
.aq-passive-ctrl{display:flex;gap:10px;justify-content:center;flex-wrap:wrap}
.aq-passive-ctrl .aq-btn{min-width:130px}
