:root {
	--pst-bg: #030b16;
	--pst-bg-2: #071322;
	--pst-panel: rgba(8, 22, 38, .92);
	--pst-panel-2: rgba(12, 29, 49, .92);
	--pst-line: rgba(153, 181, 214, .22);
	--pst-line-strong: rgba(170, 198, 229, .38);
	--pst-red: #ff2028;
	--pst-red-dark: #d80f19;
	--pst-white: #f7f9fc;
	--pst-muted: #9ba9bb;
	--pst-muted-2: #748398;
	--pst-blue: #2d8cff;
	--pst-green: #21c777;
	--pst-orange: #ff9f1c;
	--pst-purple: #b36bff;
	--pst-shadow: 0 18px 55px rgba(0, 0, 0, .32);
}

html { scroll-behavior: smooth; }
body.pst-app-route {
	margin: 0;
	background: var(--pst-bg);
	color: var(--pst-white);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
	-webkit-font-smoothing: antialiased;
}
body.pst-app-route * { box-sizing: border-box; }
body.pst-app-route a { color: inherit; }
body.pst-app-route img { max-width: 100%; height: auto; }
body.pst-app-route svg { display: block; width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
body.pst-app-route .screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.pst-app-shell { min-height: 100vh; background: radial-gradient(circle at 50% -10%, #12233b 0, #07111f 34%, var(--pst-bg) 68%); }
.pst-site-main { min-height: 72vh; }

/* Header */
.pst-site-header {
	position: sticky;
	top: 0;
	z-index: 9990;
	background: rgba(2, 9, 18, .94);
	border-bottom: 1px solid rgba(147, 176, 207, .18);
	backdrop-filter: blur(18px);
}
.pst-site-header-inner {
	max-width: 1500px;
	min-height: 82px;
	margin: 0 auto;
	padding: 0 24px;
	display: grid;
	grid-template-columns: minmax(230px, 1fr) auto minmax(235px, 1fr);
	align-items: center;
	gap: 28px;
}
.pst-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	min-width: 0;
}
.pst-brand-mark {
	position: relative;
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	color: var(--pst-white);
}
.pst-brand-mark::before {
	content: "";
	position: absolute;
	inset: 0;
	border: 6px solid var(--pst-red);
	border-right-color: transparent;
	border-radius: 50%;
	transform: rotate(-18deg);
}
.pst-brand-mark svg { width: 31px; height: 31px; position: relative; z-index: 1; stroke-width: 2; }
.pst-brand strong { display: block; font-size: 24px; line-height: 1.05; letter-spacing: .02em; white-space: nowrap; }
.pst-brand small { display: block; margin-top: 5px; color: #c3cbd6; font-size: 10px; white-space: nowrap; }

.pst-desktop-nav { display: flex; align-items: stretch; gap: 22px; height: 82px; }
.pst-desktop-nav a {
	position: relative;
	min-width: 66px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 7px;
	color: #eef3f8;
	text-decoration: none;
	font-size: 13px;
	font-weight: 700;
	transition: color .2s ease, transform .2s ease;
}
.pst-desktop-nav a svg { width: 23px; height: 23px; stroke-width: 2; }
.pst-desktop-nav a:hover { color: var(--pst-red); transform: translateY(-1px); }
.pst-desktop-nav a.is-current { color: var(--pst-red); }
.pst-desktop-nav a.is-current::after {
	content: "";
	position: absolute;
	left: 10px; right: 10px; bottom: 0;
	height: 3px;
	border-radius: 3px 3px 0 0;
	background: var(--pst-red);
}
.pst-header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 12px; }
.pst-login-button, .pst-ask-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 22px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 800;
	white-space: nowrap;
}
.pst-login-button { border: 1px solid rgba(255,255,255,.42); color: #fff; background: rgba(255,255,255,.02); }
.pst-ask-button { gap: 8px; background: linear-gradient(135deg, #ff2931, #ea0b15); box-shadow: 0 8px 28px rgba(255,32,40,.22); }
.pst-ask-button svg { width: 18px; height: 18px; }

/* Home */
.pst-home { max-width: 1420px; margin: 0 auto; padding: 0 20px 32px; }
.pst-hero {
	position: relative;
	min-height: 355px;
	margin: 0 -20px 18px;
	padding: 34px max(24px, calc((100vw - 1420px) / 2 + 20px)) 24px;
	display: grid;
	grid-template-columns: 1fr;
	justify-items: center;
	align-items: center;
	gap: 18px;
	overflow: hidden;
	border-bottom: 1px solid rgba(98, 145, 205, .25);
	background:
		radial-gradient(circle at 19% 42%, rgba(71, 79, 255, .17), transparent 25%),
		radial-gradient(circle at 82% 40%, rgba(255, 42, 104, .12), transparent 25%),
		linear-gradient(180deg, #050d1a 0%, #071425 62%, #06101e 100%);
}
.pst-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(84, 129, 187, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(84, 129, 187, .05) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: linear-gradient(to bottom, #000, transparent 88%);
	pointer-events: none;
}
.pst-hero-copy { position: relative; z-index: 2; width: min(100%, 760px); margin: 0 auto; text-align: center; }
.pst-hero h1 { margin: 0; font-size: clamp(34px, 3.45vw, 49px); line-height: 1.16; letter-spacing: .01em; text-shadow: 0 3px 18px rgba(0,0,0,.38); }
.pst-hero-title-top { display: block; white-space: nowrap; }
.pst-hero h1 em { display: block; color: var(--pst-red); font-style: normal; }
.pst-hero-copy > p { margin: 12px 0 22px; color: #e0e6ef; font-size: clamp(14px, 1.5vw, 18px); font-weight: 700; }
.pst-hero-search {
	width: min(100%, 780px);
	height: 62px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	border-radius: 10px;
	background: #f9fafc;
	box-shadow: 0 12px 34px rgba(0,0,0,.34);
	overflow: hidden;
}
.pst-hero-search input {
	flex: 1 1 auto;
	min-width: 0;
	height: 100%;
	border: 0;
	outline: 0;
	padding: 0 24px;
	background: transparent;
	color: #273246;
	font: inherit;
	font-size: 16px;
	font-weight: 600;
}
.pst-hero-search input::placeholder { color: #758195; }
.pst-hero-search button {
	flex: 0 0 66px;
	height: 100%;
	border: 0;
	background: transparent;
	color: #07111f;
	cursor: pointer;
	display: grid;
	place-items: center;
}
.pst-hero-search button svg { width: 28px; height: 28px; stroke-width: 2.3; }
.pst-hero-actions { margin-top: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.pst-hero-button {
	min-height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 11px;
	border-radius: 8px;
	text-decoration: none;
	font-size: 18px;
	font-weight: 900;
	letter-spacing: .04em;
}
.pst-hero-button svg { width: 22px; height: 22px; }
.pst-hero-button-primary { background: linear-gradient(135deg, #ff2931, #e90b15); box-shadow: 0 10px 28px rgba(255,32,40,.18); }
.pst-hero-button-ghost { border: 1px solid rgba(255,255,255,.56); background: rgba(7,16,28,.62); }
.pst-hero-tags { margin-top: 15px; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.pst-hero-tags a {
	padding: 6px 12px;
	border: 1px solid rgba(179, 200, 226, .38);
	border-radius: 6px;
	background: rgba(5, 14, 26, .72);
	color: #dbe3ee;
	text-decoration: none;
	font-size: 12px;
	font-weight: 700;
}
.pst-hero-art {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 300px;
	justify-self: center;
	color: #75acff;
	opacity: .98;
	filter: drop-shadow(0 0 10px rgba(91, 148, 255, .25)) drop-shadow(0 0 28px rgba(255, 93, 133, .12));
}
.pst-hero-art::before {
	content: "";
	position: absolute;
	inset: 16% 10%;
	border-radius: 999px;
	background: radial-gradient(circle at center, rgba(83,125,255,.18), rgba(255,93,133,.07) 45%, transparent 72%);
	filter: blur(22px);
	pointer-events: none;
}
.pst-hero-art > * { position: relative; z-index: 1; }
.pst-hero-art { pointer-events: none; }
/* body.pst-app-route svg の共通指定より詳細度を上げ、背景イラストを縮小させない */
body.pst-app-route .pst-hero .pst-hero-art > svg {
	display: block;
	width: 100%;
	height: auto;
	overflow: visible;
}
.pst-hero-art svg text { fill: #ff4457; stroke: none; font-size: 29px; font-weight: 900; letter-spacing: 3px; }
.pst-hero-art .pst-art-stroke { fill: none; stroke-width: 2.5; }
.pst-hero-art .pst-art-small { stroke: #ff6f94; }
.pst-hero-art svg circle, .pst-hero-art svg > path:not(.pst-art-stroke) { fill: none; stroke: currentColor; stroke-width: 1.75; }
.pst-hero-art-left,
.pst-hero-art-right {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.pst-hero-art-left { left: clamp(18px, 5.5vw, 88px); }
.pst-hero-art-right { right: clamp(18px, 5.5vw, 88px); }

/* Shared panels */
.pst-home-panel {
	margin-top: 12px;
	padding: 14px 16px 16px;
	border: 1px solid var(--pst-line);
	border-radius: 14px;
	background: linear-gradient(145deg, rgba(11,27,46,.96), rgba(5,17,31,.96));
	box-shadow: var(--pst-shadow);
}
.pst-home-panel-heading { min-height: 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 12px; }
.pst-home-panel-heading h2 { margin: 0; display: inline-flex; align-items: center; gap: 9px; font-size: 17px; letter-spacing: .02em; }
.pst-home-panel-heading h2 svg { width: 19px; height: 19px; color: #fff; }
.pst-home-panel-heading a { color: var(--pst-red); text-decoration: none; font-size: 12px; font-weight: 800; }
.pst-home-panel-heading a span { font-size: 19px; vertical-align: -1px; }

/* Popular machines without official machine images */
.pst-popular-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.pst-popular-card {
	position: relative;
	min-width: 0;
	padding: 0 0 12px;
	overflow: hidden;
	border: 1px solid rgba(164,187,215,.26);
	border-radius: 10px;
	background: #f7f8fa;
	color: #111827 !important;
	text-decoration: none;
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.pst-popular-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.7); box-shadow: 0 11px 24px rgba(0,0,0,.28); }
.pst-popular-card > strong { display: block; margin: 10px 11px 5px; font-size: 13px; line-height: 1.35; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.pst-popular-card > span:last-child { display: block; margin: 0 11px; color: #475569; font-size: 10px; }
.pst-machine-abstract {
	height: 98px;
	display: grid;
	place-items: center;
	border-bottom: 1px solid rgba(0,0,0,.08);
}
.pst-machine-abstract svg { width: 82px; height: 58px; stroke-width: 2.2; }
.pst-machine-abstract-1 { color: #2f58ff; background: linear-gradient(135deg, #ebe8ff, #c6d1ff); }
.pst-machine-abstract-2 { color: #d97706; background: linear-gradient(135deg, #fff4d3, #ffd5a8); }
.pst-machine-abstract-3 { color: #059669; background: linear-gradient(135deg, #dcfce7, #a7f3d0); }
.pst-machine-abstract-4 { color: #7c3aed; background: linear-gradient(135deg, #ede9fe, #c4b5fd); }
.pst-machine-abstract-5 { color: #0284c7; background: linear-gradient(135deg, #e0f2fe, #a5d8ff); }
.pst-machine-abstract-6 { color: #e11d48; background: linear-gradient(135deg, #ffe4e6, #fecdd3); }
.pst-rank-badge {
	position: absolute;
	z-index: 2;
	top: 7px;
	left: 7px;
	width: 27px;
	height: 27px;
	display: grid;
	place-items: center;
	border-radius: 6px;
	background: #fff;
	color: #334155;
	font-size: 12px;
	font-weight: 900;
	box-shadow: 0 3px 10px rgba(0,0,0,.12);
}
.pst-rank-badge svg { width: 18px; height: 18px; fill: currentColor; stroke-width: 1.2; }
.pst-rank-badge b { position: absolute; top: 8px; font-size: 8px; color: #172033; }
.pst-rank-1 { color: #d9a414; }
.pst-rank-2 { color: #8f9aa7; }
.pst-rank-3 { color: #c8792b; }
.pst-empty-state {
	min-height: 112px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 7px;
	padding: 18px;
	text-align: center;
	color: var(--pst-muted);
	border: 1px dashed rgba(154,184,219,.28);
	border-radius: 10px;
	background: rgba(4,13,24,.45);
}
.pst-empty-state strong { color: #e5eaf1; font-size: 14px; }
.pst-empty-state span { font-size: 12px; }

/* Categories */
.pst-category-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.pst-category-grid > a {
	min-height: 88px;
	display: grid;
	grid-template-columns: 58px 1fr;
	align-items: center;
	gap: 13px;
	padding: 13px 18px;
	border-radius: 9px;
	background: #f7f8fa;
	color: #111827 !important;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease;
}
.pst-category-grid > a:hover { transform: translateY(-2px); box-shadow: 0 9px 20px rgba(0,0,0,.25); }
.pst-category-icon { width: 50px; height: 50px; display: grid; place-items: center; color: #101827; }
.pst-category-icon svg { width: 38px; height: 38px; stroke-width: 1.7; }
.pst-category-grid strong { display: block; margin-bottom: 5px; font-size: 15px; }
.pst-category-grid small { display: block; color: #5b6573; font-size: 11px; line-height: 1.45; }

/* Feeds */
.pst-home-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pst-feed-panel { min-width: 0; }
.pst-question-tabs { display: flex; gap: 0; overflow-x: auto; margin: 0 0 4px; padding-bottom: 4px; scrollbar-width: thin; }
.pst-question-tabs a {
	flex: 0 0 auto;
	padding: 7px 15px;
	border: 1px solid rgba(148,178,212,.22);
	border-right: 0;
	background: rgba(4,14,26,.5);
	color: #c1ccd9;
	text-decoration: none;
	font-size: 10px;
	font-weight: 700;
}
.pst-question-tabs a:first-child { border-radius: 6px 0 0 6px; }
.pst-question-tabs a:last-child { border-right: 1px solid rgba(148,178,212,.22); border-radius: 0 6px 6px 0; }
.pst-question-tabs a.is-active { background: var(--pst-red); border-color: var(--pst-red); color: #fff; }
.pst-feed-list { overflow: hidden; border-top: 1px solid rgba(152,181,216,.15); }
.pst-question-row {
	min-height: 58px;
	display: grid;
	grid-template-columns: 86px minmax(0, 1fr) 42px;
	align-items: center;
	gap: 10px;
	padding: 8px 7px;
	border-bottom: 1px solid rgba(152,181,216,.14);
}
.pst-question-row:last-child, .pst-report-row:last-child { border-bottom: 0; }
.pst-category-label {
	display: block;
	padding: 6px 6px;
	border-radius: 5px;
	text-align: center;
	text-decoration: none;
	font-size: 9px;
	font-weight: 800;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.pst-cat-settings { color: #1f5d98 !important; background: #bfe0ff; }
.pst-cat-effects { color: #5f4597 !important; background: #ddd2ff; }
.pst-cat-secret { color: #28684b !important; background: #c8f0dd; }
.pst-cat-hall { color: #875019 !important; background: #ffddb2; }
.pst-cat-other, .pst-cat-default { color: #475569 !important; background: #dbe1e9; }
.pst-question-row-main { min-width: 0; }
.pst-question-title { display: block; color: #f4f7fb !important; text-decoration: none; font-size: 12px; font-weight: 800; line-height: 1.4; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pst-question-row-main > span { display: block; margin-top: 3px; color: var(--pst-muted); font-size: 9px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pst-question-row-main > span a { color: #b8c6d8; text-decoration: none; }
.pst-answer-count { display: inline-flex; align-items: center; justify-content: flex-end; gap: 4px; color: #dfe6ef !important; text-decoration: none; font-size: 11px; }
.pst-answer-count svg { width: 14px; height: 14px; }

.pst-report-row {
	position: relative;
	min-height: 64px;
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) auto;
	align-items: center;
	gap: 10px;
	margin: 0;
	padding: 9px 10px;
	border: 1px solid rgba(212, 168, 67, .62);
	border-radius: 10px;
	background: linear-gradient(145deg, rgba(12, 29, 49, .82), rgba(6, 18, 32, .92));
	box-shadow: 0 6px 18px rgba(0, 0, 0, .13);
	cursor: pointer;
	transition: border-color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.pst-report-row:last-child { border-bottom: 1px solid rgba(212, 168, 67, .62); }
.pst-report-row:hover {
	border-color: rgba(242, 196, 84, .94);
	background: linear-gradient(145deg, rgba(16, 38, 63, .94), rgba(8, 24, 42, .96));
	box-shadow: 0 9px 24px rgba(0, 0, 0, .20);
	transform: translateY(-1px);
}
.pst-report-row:active { transform: translateY(0); }
.pst-report-row:focus-visible {
	outline: 3px solid rgba(242, 196, 84, .58);
	outline-offset: 2px;
}
.pst-report-icon {
	width: 36px;
	height: 36px;
	display: grid;
	place-items: center;
	border-radius: 9px;
	background: linear-gradient(180deg, rgba(255,173,87,.14), rgba(255,138,61,.07));
	border: 1px solid rgba(255,173,87,.34);
	color: #ff9f43 !important;
	text-decoration: none;
}
.pst-report-icon svg { width: 20px; height: 20px; }
.pst-report-row-main { min-width: 0; }
.pst-report-title,
.pst-report-row-main > a {
	display: block;
	color: #f7f9fc !important;
	text-decoration: none;
	font-size: 13px;
	font-weight: 850;
	line-height: 1.35;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.pst-report-meta {
	display: flex;
	align-items: center;
	gap: 7px;
	min-width: 0;
	margin-top: 4px;
	white-space: nowrap;
	overflow: hidden;
}
.pst-report-row-main .pst-machine-kind-mini {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 2px 8px;
	border: 1px solid rgba(240, 184, 62, .72);
	border-radius: 999px;
	background: rgba(240, 184, 62, .10);
	color: #ffd66d !important;
	font-size: 10px;
	font-weight: 850;
	line-height: 1.25;
}
.pst-report-meta-text {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #b9c6d6 !important;
	font-size: 9px;
	font-weight: 650;
}
.pst-report-meta-text small { color: #98a9bd; }


/* Features */
.pst-feature-panel { margin-bottom: 8px; }
.pst-feature-panel > h2 { margin: 0 0 13px; padding-bottom: 10px; border-bottom: 1px solid rgba(153,181,214,.22); font-size: 17px; }
.pst-feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.pst-feature-grid > div { display: grid; grid-template-columns: 54px 1fr; align-items: center; gap: 12px; min-width: 0; }
.pst-feature-icon { width: 50px; height: 50px; display: grid; place-items: center; border: 2px solid currentColor; border-radius: 50%; }
.pst-feature-icon svg { width: 28px; height: 28px; }
.pst-feature-icon-1 { color: #ff2d35; }
.pst-feature-icon-2 { color: #3c9cff; }
.pst-feature-icon-3 { color: #28c76f; }
.pst-feature-icon-4 { color: #ff9f1c; }
.pst-feature-grid strong { display: block; margin-bottom: 4px; font-size: 12px; }
.pst-feature-grid small { display: block; color: var(--pst-muted); font-size: 9px; line-height: 1.55; }

/* Footer */
.pst-site-footer { margin-top: 10px; border-top: 1px solid rgba(153,181,214,.19); background: #020912; }
.pst-site-footer-inner {
	max-width: 1500px;
	min-height: 92px;
	margin: 0 auto;
	padding: 18px 24px;
	display: grid;
	grid-template-columns: minmax(230px, 1fr) auto minmax(260px, 1fr);
	align-items: center;
	gap: 24px;
}
.pst-brand-footer strong { font-size: 19px; }
.pst-brand-footer small { font-size: 8px; }
.pst-brand-footer .pst-brand-mark { width: 38px; height: 38px; flex-basis: 38px; }
.pst-footer-links { display: flex; gap: 34px; color: #b9c4d1; font-size: 11px; }
.pst-footer-links a { text-decoration: none; }
.pst-footer-links span { cursor: default; }
.pst-copyright { margin: 0; text-align: right; color: #99a7b8; font-size: 10px; }

/* Inner pages */
.pst-content-wrap, .pst-wrap { max-width: 1180px; margin: 0 auto; padding: 34px 20px 84px; }
.pst-single-card, .pst-archive-card, .pst-panel, .pst-hero:not(.pst-home .pst-hero) {
	border: 1px solid var(--pst-line);
	border-radius: 14px;
	background: linear-gradient(145deg, rgba(11,27,46,.98), rgba(5,17,31,.98));
	box-shadow: var(--pst-shadow);
}
.pst-single-card, .pst-archive-card, .pst-panel { padding: 26px; }
.pst-single-header, .pst-archive-header { padding-bottom: 20px; margin-bottom: 22px; border-bottom: 1px solid var(--pst-line); }
.pst-single-header h1, .pst-archive-header h1, .pst-panel h1 { margin: 6px 0 0; color: #fff; font-size: clamp(25px, 4vw, 40px); line-height: 1.3; }
.pst-single-kicker { color: var(--pst-red); font-size: 12px; font-weight: 900; letter-spacing: .08em; }
.pst-single-meta { margin: 8px 0 0; color: var(--pst-muted); font-size: 12px; }
.pst-single-content, .pst-panel { color: #dbe3ec; line-height: 1.8; }
.pst-single-content a, .pst-panel a { color: #72b7ff; }
.pst-single-content h2, .pst-panel h2 { color: #fff; }
.pst-archive-machine-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pst-pagination { margin-top: 24px; }
.pst-pagination .nav-links { display: flex; justify-content: center; gap: 8px; }
.pst-pagination a, .pst-pagination span { min-width: 38px; height: 38px; display: grid; place-items: center; padding: 0 10px; border: 1px solid var(--pst-line); border-radius: 7px; color: #e4ebf3; text-decoration: none; }
.pst-pagination .current { background: var(--pst-red); border-color: var(--pst-red); }

/* Forms and legacy components */
.pst-search-form { display: flex; gap: 10px; margin-top: 20px; }
.pst-search-form input, .pst-search-form select,
.pst-entry-form input, .pst-entry-form select, .pst-entry-form textarea,
.pst-login-panel input[type="text"], .pst-login-panel input[type="email"], .pst-login-panel input[type="password"],
.comment-form textarea, .comment-form input[type="text"], .comment-form input[type="email"] {
	width: 100%;
	border: 1px solid rgba(166,190,217,.38);
	border-radius: 8px;
	background: #f8fafc;
	padding: 13px 14px;
	color: #172033;
	font: inherit;
}
.pst-search-form button, .pst-submit, .pst-login-panel input[type="submit"], .comment-form input[type="submit"] {
	border: 0;
	border-radius: 8px;
	padding: 12px 22px;
	background: var(--pst-red);
	color: #fff;
	font-weight: 900;
	cursor: pointer;
}
.pst-search-form-stacked { flex-wrap: wrap; }
.pst-search-form-stacked input { flex: 1 1 360px; }
.pst-search-form-stacked select { flex: 0 1 170px; }
.pst-primary-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; }
.pst-button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 11px 16px; border-radius: 8px; text-decoration: none; font-weight: 900; }
.pst-button-primary { background: var(--pst-red); color: #fff !important; }
.pst-button-secondary { border: 1px solid rgba(255,255,255,.38); color: #fff !important; background: rgba(255,255,255,.03); }
.pst-section { margin-top: 28px; }
.pst-section h2 { color: #fff; }
.pst-card-list { display: grid; gap: 10px; }
.pst-card { padding: 14px; border: 1px solid var(--pst-line); border-radius: 10px; background: rgba(8,22,38,.8); }
.pst-card h3 { margin: 8px 0; }
.pst-card h3 a { color: #fff; text-decoration: none; }
.pst-card p { margin: 0; color: var(--pst-muted); }
.pst-card-meta { display: flex; justify-content: space-between; gap: 10px; color: var(--pst-muted); font-size: 11px; }
.pst-chip { display: inline-block; max-width: 75%; padding: 4px 9px; border-radius: 999px; background: rgba(255,32,40,.16); color: #ff858a !important; text-decoration: none; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pst-machine-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.pst-machine-card { display: grid; grid-template-columns: 84px 1fr; align-items: center; gap: 14px; padding: 12px; border: 1px solid var(--pst-line); border-radius: 10px; background: rgba(8,22,38,.82); color: #fff !important; text-decoration: none; }
.pst-machine-search-icon { width: 84px; height: 64px; display: grid; place-items: center; border-radius: 8px; }
.pst-machine-search-icon svg { width: 62px; height: 45px; }
.pst-machine-card strong { display: block; margin-bottom: 5px; }
.pst-machine-card small, .pst-machine-summary small { color: var(--pst-muted); }
.pst-entry-form { display: grid; gap: 17px; margin-top: 20px; }
.pst-entry-form label { display: grid; gap: 7px; color: #f3f6fa; font-weight: 800; }
.pst-entry-form textarea { min-height: 130px; resize: vertical; }
.pst-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pst-required { color: #ff6168; font-size: 11px; }
.pst-optional { color: var(--pst-muted); font-size: 11px; font-weight: 400; }
.pst-submit { width: 100%; min-height: 52px; }
.pst-alert { padding: 12px; border-left: 4px solid var(--pst-red); background: rgba(255,32,40,.12); color: #ffadb1; }
.pst-profile-head { display: flex; align-items: center; gap: 15px; }
.pst-profile-head img { border-radius: 50%; }
.pst-profile-head h1 { margin: 0; }
.pst-machine-hub { margin-bottom: 22px; padding: 15px; border: 1px solid var(--pst-line); border-radius: 10px; background: rgba(8,22,38,.74); }
.pst-related-machine { padding: 10px 12px; border-left: 4px solid var(--pst-red); background: rgba(255,32,40,.09); }
.pst-answer-guide { margin-top: 24px; padding: 14px; border: 1px solid var(--pst-line); border-radius: 9px; background: rgba(8,22,38,.72); }
.pst-report-data { display: grid; overflow: hidden; margin-bottom: 20px; border: 1px solid var(--pst-line); border-radius: 9px; }
.pst-report-data div { display: grid; grid-template-columns: 150px 1fr; border-bottom: 1px solid var(--pst-line); }
.pst-report-data div:last-child { border-bottom: 0; }
.pst-report-data dt, .pst-report-data dd { margin: 0; padding: 11px 13px; }
.pst-report-data dt { background: rgba(255,255,255,.05); font-weight: 800; }
.pst-report-gallery { display: grid; gap: 12px; margin-top: 22px; }
.pst-report-gallery img { border-radius: 10px; }
.pst-note, .pst-empty { color: var(--pst-muted); }
.comment-respond, .comments-area { max-width: 1180px; margin: 18px auto 0; padding: 22px; border: 1px solid var(--pst-line); border-radius: 14px; background: var(--pst-panel); color: #dbe3ec; }
.comment-list { padding-left: 20px; }
.comment-list li { margin-bottom: 15px; }

/* Mobile bottom navigation */
.pst-mobile-nav { display: none; }

@media (max-width: 1180px) {
	.pst-site-header-inner { grid-template-columns: minmax(210px, 1fr) auto auto; gap: 16px; padding: 0 16px; }
	.pst-hero-copy { width: min(100%, 700px); }
	.pst-hero-art { max-width: 250px; }
	.pst-hero-art-left { left: 18px; }
	.pst-hero-art-right { right: 18px; }
	.pst-desktop-nav { gap: 10px; }
	.pst-desktop-nav a { min-width: 58px; font-size: 11px; }
	.pst-header-actions .pst-login-button { display: none; }
	.pst-popular-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.pst-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.pst-site-footer-inner { grid-template-columns: 1fr; text-align: center; }
	.pst-site-footer .pst-brand { justify-content: center; }
	.pst-footer-links { justify-content: center; flex-wrap: wrap; }
	.pst-copyright { text-align: center; }
}

@media (max-width: 900px) {
	body.pst-app-route { padding-bottom: 72px; }
	.pst-site-header { position: relative; }
	.pst-site-header-inner { min-height: 68px; grid-template-columns: 1fr auto; }
	.pst-brand strong { font-size: 19px; }
	.pst-brand small { font-size: 8px; }
	.pst-brand-mark { width: 38px; height: 38px; flex-basis: 38px; }
	.pst-desktop-nav { display: none; }
	.pst-header-actions .pst-ask-button { min-height: 40px; padding: 0 15px; font-size: 12px; }
	.pst-hero { min-height: auto; padding-top: 35px; padding-bottom: 30px; }
	.pst-hero-copy { width: min(100%, 640px); }
	.pst-hero-art { display: block; position: absolute; width: 210px; max-width: none; opacity: .14; filter: none; }
	.pst-hero-art-left { left: -48px; top: 54px; transform: none; }
	.pst-hero-art-right { right: -48px; top: 54px; transform: none; }
	.pst-hero h1 { font-size: clamp(29px, 6.5vw, 42px); }
	.pst-hero-title-top { white-space: nowrap; }
	.pst-home-columns { grid-template-columns: 1fr; }
	.pst-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.pst-archive-machine-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.pst-mobile-nav {
		position: fixed;
		z-index: 9998;
		left: 0; right: 0; bottom: 0;
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		align-items: end;
		min-height: 66px;
		padding: 6px max(4px, env(safe-area-inset-right)) calc(6px + env(safe-area-inset-bottom)) max(4px, env(safe-area-inset-left));
		border-top: 1px solid rgba(153,181,214,.26);
		background: rgba(3,11,22,.96);
		backdrop-filter: blur(16px);
		box-shadow: 0 -8px 28px rgba(0,0,0,.35);
	}
	.pst-mobile-nav a { display: grid; justify-items: center; gap: 3px; color: #b6c2d1 !important; text-decoration: none; font-size: 9px; line-height: 1.1; }
	.pst-mobile-nav a span { font-size: 21px; line-height: 1; }
	.pst-mobile-nav a .pst-mobile-nav-icon { display: grid; place-items: center; }
	.pst-mobile-nav a .pst-mobile-nav-icon .pst-icon { width: 1em; height: 1em; }
	.pst-mobile-nav-main span { width: 43px; height: 43px; margin-top: -22px; display: grid; place-items: center; border-radius: 50%; background: var(--pst-red); color: #fff; box-shadow: 0 5px 17px rgba(255,32,40,.35); }
	.pst-mobile-nav-avatar-wrap {
		display: grid !important;
		place-items: center;
		width: 25px;
		height: 25px;
		margin: 0;
		border-radius: 50%;
		overflow: hidden;
		background: #aebbd0;
		box-shadow: 0 0 0 1px rgba(255,255,255,.22);
	}
	.pst-mobile-nav .pst-mobile-nav-avatar {
		display: block;
		width: 25px !important;
		height: 25px !important;
		max-width: none;
		border: 0;
		border-radius: 50%;
		object-fit: cover;
	}
	.pst-mobile-nav-account-fallback {
		display: grid !important;
		place-items: center;
		width: 25px;
		height: 25px;
		font-size: 20px !important;
		color: #b6c2d1;
	}
}

@media (max-width: 620px) {
	.pst-home { padding-left: 10px; padding-right: 10px; }
	.pst-hero { margin-left: -10px; margin-right: -10px; padding-left: 15px; padding-right: 15px; }
	.pst-hero-copy { width: 100%; }
	.pst-hero h1 { font-size: 25px; line-height: 1.18; }
	.pst-hero-title-top { font-size: clamp(22px, 6.5vw, 25px); letter-spacing: 0; white-space: nowrap; }
	.pst-hero h1 em { font-size: clamp(26px, 8vw, 38px); }
	.pst-hero-art { width: 178px; opacity: .16; }
	.pst-hero-art-left { left: -52px; top: 46px; }
	.pst-hero-art-right { right: -52px; top: 46px; }
	.pst-hero-copy > p { font-size: 12px; line-height: 1.6; }
	.pst-hero-search { height: 54px; }
	.pst-hero-search input { padding: 0 15px; font-size: 13px; }
	.pst-hero-actions { grid-template-columns: 1fr; gap: 9px; }
	.pst-hero-button { min-height: 48px; font-size: 15px; }
	.pst-hero-tags { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 5px; }
	.pst-hero-tags a { flex: 0 0 auto; }
	.pst-home-panel { padding: 12px 10px 13px; }
	.pst-popular-grid { display: flex; overflow-x: auto; gap: 10px; padding-bottom: 5px; scroll-snap-type: x mandatory; }
	.pst-popular-card { flex: 0 0 154px; scroll-snap-align: start; }
	.pst-empty-state strong {
		font-size: clamp(11px, 3.35vw, 14px);
		white-space: nowrap;
		letter-spacing: 0;
	}
	.pst-category-grid { grid-template-columns: 1fr; gap: 8px; }
	.pst-category-grid > a { min-height: 76px; grid-template-columns: 49px 1fr; padding: 10px 14px; }
	.pst-category-icon { width: 44px; height: 44px; }
	.pst-category-icon svg { width: 32px; height: 32px; }
	.pst-question-row { grid-template-columns: 76px minmax(0,1fr) 34px; gap: 7px; }
	.pst-question-title { font-size: 11px; }
	.pst-report-row { min-height: 64px; grid-template-columns: 36px minmax(0,1fr) auto; gap: 8px; padding: 9px 8px; border-radius: 10px; }
	.pst-report-icon { width: 34px; height: 34px; }
	.pst-report-title,
	.pst-report-row-main > a { font-size: 12px; }
	.pst-feature-grid { grid-template-columns: 1fr; }
	.pst-feature-grid > div { grid-template-columns: 48px 1fr; }
	.pst-content-wrap, .pst-wrap { padding: 22px 10px 82px; }
	.pst-single-card, .pst-archive-card, .pst-panel { padding: 18px 14px; }
	.pst-machine-grid, .pst-archive-machine-grid { grid-template-columns: 1fr; }
	.pst-form-grid, .pst-primary-actions { grid-template-columns: 1fr; }
	.pst-search-form { flex-direction: column; }
	.pst-report-data div { grid-template-columns: 1fr; }
	.pst-report-data dt { padding-bottom: 4px; }
	.pst-report-data dd { padding-top: 4px; }
	.pst-footer-links { gap: 16px; }
}

/* v0.4.0 design refinement */
.pst-site-header-inner {
	grid-template-columns: minmax(250px, 1fr) auto auto;
	gap: 22px;
	max-width: 1440px;
}
.pst-desktop-nav { gap: 18px; }
.pst-desktop-nav a { min-width: 60px; gap: 6px; font-size: 12px; }
.pst-desktop-nav a svg { width: 21px; height: 21px; }
.pst-header-actions { gap: 10px; }
.pst-header-search,
.pst-register-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 18px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 800;
	white-space: nowrap;
}
.pst-header-search {
	width: 46px;
	padding: 0;
	border: 1px solid rgba(255,255,255,.22);
	background: rgba(255,255,255,.03);
	color: #fff;
}
.pst-header-search svg { width: 20px; height: 20px; }
.pst-register-button {
	background: linear-gradient(135deg, #f2c35f, #c9952d);
	color: #101620;
	box-shadow: 0 8px 24px rgba(242,195,95,.18);
}

.pst-hero {
	min-height: 400px;
	padding-top: 40px;
	padding-bottom: 28px;
	background:
		radial-gradient(circle at 17% 45%, rgba(71, 88, 255, .19), transparent 24%),
		radial-gradient(circle at 84% 42%, rgba(255, 45, 116, .16), transparent 24%),
		linear-gradient(180deg, #030b19 0%, #071322 62%, #06101d 100%);
}
.pst-hero::before {
	background-size: 44px 44px;
	mask-image: linear-gradient(to bottom, #000, rgba(0,0,0,.92) 72%, transparent 96%);
}
.pst-hero-copy { width: min(100%, 800px); }
.pst-hero h1 { font-size: clamp(38px, 3.8vw, 58px); line-height: 1.14; }
.pst-hero-copy > p { font-size: clamp(15px, 1.45vw, 20px); margin-top: 14px; margin-bottom: 24px; }
.pst-hero-search { width: min(100%, 760px); height: 64px; border-radius: 14px; }
.pst-hero-search button { flex-basis: 68px; border-left: 1px solid rgba(39,50,70,.16); }
.pst-hero-actions { width: min(100%, 760px); margin-inline: auto; gap: 16px; }
.pst-hero-button { min-height: 56px; border-radius: 10px; }
.pst-hero-tags { max-width: 800px; margin-inline: auto; gap: 10px; }
.pst-hero-tags a { padding: 8px 14px; border-radius: 8px; font-size: 12px; }
.pst-hero-art {
	max-width: 340px;
	filter: drop-shadow(0 0 12px rgba(103,150,255,.36)) drop-shadow(0 0 34px rgba(255,92,133,.18));
}
.pst-hero-art::before { inset: 12% 8%; filter: blur(30px); }
.pst-hero-art .pst-art-fine { stroke-width: 1.9; }
.pst-hero-art .pst-art-orbits path,
.pst-hero-art .pst-art-orbits circle { fill: none; stroke-width: 1.7; stroke: rgba(114, 168, 255, .92); }
.pst-hero-art-left,
.pst-hero-art-right { top: 50%; transform: translateY(-46%); }
.pst-hero-art-left { left: clamp(16px, 6vw, 72px); }
.pst-hero-art-right { right: clamp(16px, 6vw, 72px); }
#pst-features .pst-feature-grid > div {
	background: linear-gradient(180deg, rgba(9,20,34,.72), rgba(5,13,24,.82));
	border: 1px solid rgba(164,190,222,.18);
	border-radius: 16px;
	padding: 18px 16px;
}

@media (max-width: 1200px) {
	.pst-site-header-inner { grid-template-columns: minmax(220px, 1fr) auto auto; gap: 14px; }
	.pst-desktop-nav { gap: 12px; }
	.pst-hero-copy { width: min(100%, 720px); }
	.pst-hero-art { max-width: 280px; }
	.pst-hero-art-left { left: 8px; }
	.pst-hero-art-right { right: 8px; }
}

@media (max-width: 980px) {
	.pst-site-header-inner { grid-template-columns: 1fr auto; }
	.pst-header-actions { justify-content: flex-end; }
	.pst-register-button { display: none; }
	.pst-hero { min-height: auto; padding-top: 36px; }
	.pst-hero-art { width: 220px; max-width: none; opacity: .5; }
	.pst-hero-art-left { left: -36px; top: 124px; transform: none; }
	.pst-hero-art-right { right: -36px; top: 124px; transform: none; }
}

@media (max-width: 767px) {
	.pst-header-search { display: none; }
	.pst-hero { padding-top: 34px; padding-bottom: 24px; }
	.pst-hero-copy { width: 100%; }
	.pst-hero h1 { font-size: clamp(28px, 8vw, 38px); }
	.pst-hero-title-top { font-size: clamp(22px, 6.9vw, 30px); white-space: normal; }
	.pst-hero h1 em { font-size: clamp(33px, 10vw, 42px); }
	.pst-hero-copy > p { font-size: 12px; }
	.pst-hero-art { width: 170px; opacity: .28; }
	.pst-hero-art-left { left: -58px; top: 78px; }
	.pst-hero-art-right { right: -58px; top: 78px; }
	.pst-hero-search { height: 56px; border-radius: 12px; }
	.pst-hero-search input { padding: 0 16px; font-size: 14px; }
	.pst-hero-tags { justify-content: flex-start; }
}
/* v0.4.1 centering + refreshed hero art */
.pst-home {
	width: 100%;
	margin: 0 auto;
}
.pst-hero {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding-left: 24px;
	padding-right: 24px;
	overflow: hidden;
}
.pst-hero-copy {
	position: relative;
	z-index: 3;
	width: min(100%, 760px) !important;
	max-width: 760px;
	margin-left: auto !important;
	margin-right: auto !important;
	left: 0 !important;
	right: 0 !important;
}
.pst-hero h1 {
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
}
.pst-hero-copy > p,
.pst-hero-search,
.pst-hero-actions,
.pst-hero-tags {
	margin-left: auto !important;
	margin-right: auto !important;
}
.pst-hero-art {
	width: min(24vw, 300px);
	max-width: 300px;
	color: rgba(110,167,255,.95);
	filter: drop-shadow(0 0 14px rgba(101,153,255,.42)) drop-shadow(0 0 36px rgba(255,89,145,.17));
}
.pst-hero-art::before {
	inset: 14% 12%;
	background: radial-gradient(circle, rgba(103,149,255,.24), rgba(255,88,143,0));
	filter: blur(34px);
}
.pst-hero-art svg text {
	fill: #ff506f;
	font-size: 29px;
	font-weight: 900;
	letter-spacing: 2px;
}
.pst-hero-art .pst-art-stroke {
	stroke-width: 2.45;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.pst-hero-art .pst-art-fine {
	stroke-width: 1.85;
}
.pst-hero-art .pst-art-orbits path,
.pst-hero-art .pst-art-orbits circle {
	fill: none;
	stroke: rgba(117,171,255,.9);
	stroke-width: 1.7;
}
.pst-hero-art-left,
.pst-hero-art-right {
	top: 50%;
	transform: translateY(-50%);
}
.pst-hero-art-left {
	left: clamp(12px, calc(50% - 610px), 96px) !important;
}
.pst-hero-art-right {
	right: clamp(12px, calc(50% - 610px), 96px) !important;
}

@media (max-width: 1200px) {
	.pst-hero-art {
		width: min(25vw, 250px);
		max-width: 250px;
	}
	.pst-hero-art-left {
		left: clamp(10px, calc(50% - 530px), 48px) !important;
	}
	.pst-hero-art-right {
		right: clamp(10px, calc(50% - 530px), 48px) !important;
	}
}

@media (max-width: 980px) {
	.pst-hero {
		padding-left: 18px;
		padding-right: 18px;
	}
	.pst-hero-copy {
		width: min(100%, 680px) !important;
	}
	.pst-hero-art {
		width: 190px;
		max-width: none;
		opacity: .36;
	}
	.pst-hero-art-left {
		left: -22px !important;
		top: 108px;
		transform: none;
	}
	.pst-hero-art-right {
		right: -22px !important;
		top: 108px;
		transform: none;
	}
}

@media (max-width: 767px) {
	.pst-hero {
		padding-left: 16px;
		padding-right: 16px;
	}
	.pst-hero-copy {
		width: 100% !important;
		max-width: 100%;
	}
	.pst-hero h1 {
		max-width: 100%;
	}
	.pst-hero-title-top {
		display: block;
		white-space: nowrap !important;
		font-size: clamp(20px, 6.2vw, 28px) !important;
	}
	.pst-hero h1 em {
		font-size: clamp(28px, 9vw, 40px) !important;
	}
	.pst-hero-copy > p {
		max-width: 330px;
	}
	.pst-hero-art {
		width: 138px;
		opacity: .22;
	}
	.pst-hero-art-left {
		left: -44px !important;
		top: 58px;
	}
	.pst-hero-art-right {
		right: -44px !important;
		top: 58px;
	}
}
/* v0.4.2 header balance + branding settings */
.pst-site-header-inner {
	max-width: 1480px;
	grid-template-columns: minmax(320px, 1fr) auto minmax(320px, 1fr);
	gap: 20px;
}
.pst-brand { justify-self: start; }
.pst-desktop-nav {
	justify-self: center;
	justify-content: center;
	margin: 0 auto;
}
.pst-header-actions {
	justify-self: end;
	min-width: 320px;
}
.pst-brand-mark-image-wrap::before { display: none; }
.pst-brand-mark-image-wrap {
	width: 44px;
	height: 44px;
	flex-basis: 44px;
	border-radius: 10px;
	overflow: hidden;
}
.pst-brand-mark-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}
.pst-brand-footer .pst-brand-mark-image-wrap {
	width: 38px;
	height: 38px;
	flex-basis: 38px;
}
.pst-icon-crown {
	color: #f6c55b;
	filter: drop-shadow(0 0 8px rgba(246,197,91,.22));
}
.pst-icon-tap {
	color: #67d8ff;
	filter: drop-shadow(0 0 8px rgba(103,216,255,.22));
}
.pst-admin-logo-preview {
	margin: 10px 0 12px;
	padding: 12px;
	border: 1px solid #d0d7de;
	border-radius: 8px;
	background: #fff;
	min-height: 74px;
	display: flex;
	align-items: center;
	gap: 12px;
}
.pst-admin-logo-preview img {
	max-width: 64px;
	max-height: 64px;
	display: block;
}
@media (max-width: 1180px) {
	.pst-site-header-inner {
		grid-template-columns: minmax(250px, 1fr) auto minmax(250px, 1fr);
		gap: 14px;
	}
	.pst-header-actions { min-width: 250px; }
}
@media (max-width: 980px) {
	.pst-site-header-inner { grid-template-columns: minmax(220px, 1fr) auto auto; gap: 14px; }
	.pst-header-actions { min-width: auto; }
}
@media (max-width: 767px) {
	.pst-site-header-inner { grid-template-columns: 1fr auto; }
}

/* v0.4.3 hero image mode + global icon colors */
.pst-hero-art {
	width: min(25vw, 330px);
	max-width: 330px;
	filter: drop-shadow(0 0 10px rgba(74,131,255,.22)) drop-shadow(0 0 30px rgba(255,67,144,.16));
}
.pst-hero-art::before {
	content: none;
}
.pst-hero-art > img.pst-hero-art-image {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}
.pst-hero-art-left { left: clamp(8px, calc(50% - 650px), 72px) !important; }
.pst-hero-art-right { right: clamp(8px, calc(50% - 650px), 72px) !important; }

.pst-icon-home { color: #ff4b57; }
.pst-icon-fire { color: #ff9d31; }
.pst-icon-latest { color: #ff9d31; filter: drop-shadow(0 0 8px rgba(255,157,49,.20)); }
.pst-icon-qa,
.pst-icon-comment,
.pst-icon-chat { color: #66d7ff; }
.pst-icon-building { color: #b67cff; }
.pst-icon-machine,
.pst-icon-document { color: #8bb7ff; }
.pst-icon-crown { color: #f6c55b; filter: drop-shadow(0 0 8px rgba(246,197,91,.22)); }
.pst-icon-search { color: #c7ecff; }
.pst-icon-grid { color: #7bcfff; }
.pst-icon-bars,
.pst-icon-chart { color: #ffb14a; }
.pst-icon-eye { color: #9fc9df; filter: drop-shadow(0 0 5px rgba(159,201,223,.12)); }
.pst-icon-reportup { color: #ffae57; filter: drop-shadow(0 0 7px rgba(255,174,87,.18)); }
.pst-icon-sparkles { color: #d58cff; }
.pst-icon-tap,
.pst-icon-edit { color: #67d8ff; filter: drop-shadow(0 0 8px rgba(103,216,255,.22)); }
.pst-icon-users { color: #5fd0ff; }
.pst-icon-shield { color: #6fe2a4; }
.pst-icon-guide { color: #73a8ff; }
.pst-icon-logo { color: #ffffff; }

.pst-hero-search button .pst-icon-search { color: #111827; }
.pst-header-search .pst-icon-search { color: #e4eef8; }
.pst-ask-button .pst-icon-edit,
.pst-hero-button-primary .pst-icon-edit { color: #fff; filter: none; }
.pst-hero-button-ghost .pst-icon-crown { color: #f2c257; }
.pst-home-panel-heading h2 .pst-icon-fire,
.pst-home-panel-heading h2 .pst-icon-grid,
.pst-home-panel-heading h2 .pst-icon-qa,
.pst-home-panel-heading h2 .pst-icon-chart { filter: none; }

@media (max-width: 1200px) {
	.pst-hero-art { width: min(23vw, 250px); max-width: 250px; }
	.pst-hero-art-left { left: clamp(8px, calc(50% - 560px), 30px) !important; }
	.pst-hero-art-right { right: clamp(8px, calc(50% - 560px), 30px) !important; }
}
@media (max-width: 980px) {
	.pst-hero-art { width: 180px; opacity: .9; }
	.pst-hero-art-left { left: -10px !important; top: 108px; transform: none; }
	.pst-hero-art-right { right: -10px !important; top: 108px; transform: none; }
}
@media (max-width: 767px) {
	.pst-hero-title-top { white-space: normal !important; }
	.pst-hero-art { width: 130px; opacity: .36; }
	.pst-hero-art-left { left: -34px !important; top: 68px; }
	.pst-hero-art-right { right: -34px !important; top: 68px; }
}


/* v0.4.3.1 mobile header + search text fix */
@media (max-width: 767px) {
	.pst-site-header-inner {
		grid-template-columns: 1fr !important;
		justify-items: center;
		align-items: center;
		gap: 10px;
		padding: 10px 12px 12px;
		min-height: auto;
	}
	.pst-brand {
		justify-self: center;
	}
	.pst-desktop-nav {
		display: flex !important;
		align-items: stretch;
		justify-content: flex-start;
		gap: 8px;
		width: 100%;
		overflow-x: auto;
		padding: 2px 0 6px;
		scrollbar-width: none;
	}
	.pst-desktop-nav::-webkit-scrollbar { display: none; }
	.pst-desktop-nav a {
		flex: 0 0 auto;
		min-width: 64px;
		padding: 0 8px;
	}
	.pst-header-actions {
		display: flex !important;
		justify-content: center;
		align-items: center;
		gap: 8px;
		flex-wrap: nowrap;
		width: 100%;
	}
	.pst-header-search {
		display: grid !important;
		width: 42px;
		height: 42px;
		flex: 0 0 42px;
	}
	.pst-login-button {
		display: inline-flex !important;
		min-height: 42px;
		padding: 0 16px;
		font-size: 13px;
		white-space: nowrap;
	}
	.pst-register-button {
		display: inline-flex !important;
		min-height: 42px;
		padding: 0 14px;
		font-size: 13px;
		white-space: nowrap;
	}
}
@media (max-width: 420px) {
	.pst-login-button { padding: 0 13px; font-size: 12px; }
	.pst-register-button { padding: 0 12px; font-size: 12px; }
	.pst-desktop-nav a { min-width: 60px; font-size: 10px; }
}


/* v0.4.3.3 distinct report graph icon */
.pst-icon-linechart {
	color: #ff8a3d;
	filter: drop-shadow(0 0 7px rgba(255,138,61,.20));
}


/* v0.4.3.3.1 mobile machine-search form fix */
@media (max-width: 620px) {
  .pst-search-form-stacked {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .pst-search-form-stacked input,
  .pst-search-form-stacked select,
  .pst-search-form-stacked button {
    flex: none !important;
    width: 100% !important;
    min-height: 52px !important;
    height: 52px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  .pst-search-form-stacked input,
  .pst-search-form-stacked select {
    padding: 0 14px !important;
    font-size: 16px !important;
  }

  .pst-search-form-stacked button {
    padding: 0 18px !important;
    font-size: 16px !important;
  }
}


/* v0.4.3.3.4 reduce blank space below mobile machine search */
@media (max-width: 900px) {
  body.pst-machine-search-page .pst-site-main {
    min-height: auto !important;
  }

  body.pst-machine-search-page .pst-wrap {
    padding-bottom: 32px !important;
  }
}


/* v0.4.3.3.5 header title logo image */
.pst-brand-copy {
	display: flex;
	flex-direction: column;
	min-width: 0;
}
.pst-brand-copy-header {
	gap: 5px;
}
.pst-brand-title-image-wrap {
	display: block;
	line-height: 0;
	max-width: min(100%, 270px);
}
.pst-brand-title-image {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 2px 12px rgba(255, 42, 42, .16));
}
.pst-brand-header .pst-brand-mark {
	align-self: flex-start;
	margin-top: 4px;
}
.pst-brand-header small {
	margin-top: 0;
	font-size: 11px;
	color: #d2dae5;
	letter-spacing: .01em;
	text-shadow: 0 1px 10px rgba(0,0,0,.18);
}
.pst-brand-copy-footer strong { display:block; }

@media (max-width: 980px) {
	.pst-brand-title-image-wrap {
		max-width: 240px;
	}
	.pst-brand-header small {
		font-size: 10px;
	}
}

@media (max-width: 767px) {
	.pst-brand-header {
		width: 100%;
		justify-content: center;
		gap: 10px;
	}
	.pst-brand-header .pst-brand-mark {
		margin-top: 0;
		align-self: center;
	}
	.pst-brand-copy-header {
		align-items: flex-start;
	}
	.pst-brand-title-image-wrap {
		max-width: min(100%, 228px);
	}
	.pst-brand-header small {
		font-size: 9px;
		line-height: 1.35;
	}
}

@media (max-width: 420px) {
	.pst-brand-header {
		gap: 9px;
	}
	.pst-brand-mark-image-wrap,
	.pst-brand-mark {
		width: 42px;
		height: 42px;
		flex-basis: 42px;
	}
	.pst-brand-title-image-wrap {
		max-width: min(100%, 210px);
	}
	.pst-brand-header small {
		font-size: 8px;
	}
}


/* v0.4.3.3.6 exact mobile header centering + cache refresh */
@media (max-width: 767px) {
	.pst-brand-header {
		display: grid !important;
		grid-template-columns: 44px minmax(0, 228px) 44px;
		column-gap: 10px !important;
		align-items: center !important;
		justify-content: center !important;
		width: 100% !important;
	}
	.pst-brand-header .pst-brand-mark {
		grid-column: 1;
		justify-self: center;
		margin: 0 !important;
	}
	.pst-brand-copy-header {
		grid-column: 2;
		width: 100%;
		align-items: center !important;
		text-align: center;
	}
	.pst-brand-title-image-wrap {
		width: 100%;
		max-width: 228px;
		margin: 0 auto;
	}
	.pst-brand-header::after {
		content: "";
		grid-column: 3;
		width: 44px;
		height: 44px;
	}
}

@media (max-width: 420px) {
	.pst-brand-header {
		grid-template-columns: 42px minmax(0, 210px) 42px;
		column-gap: 8px !important;
	}
	.pst-brand-header::after {
		width: 42px;
		height: 42px;
	}
}


/* v0.4.3.3.7 lock the mobile title logo to the exact screen center */
@media (max-width: 767px) {
	.pst-brand-header {
		position: relative !important;
		display: block !important;
		width: 100% !important;
		height: 76px !important;
		min-height: 76px !important;
	}
	.pst-brand-header .pst-brand-mark {
		position: absolute !important;
		left: 0 !important;
		top: 50% !important;
		transform: translateY(-50%) !important;
		margin: 0 !important;
	}
	.pst-brand-copy-header {
		position: absolute !important;
		left: 50% !important;
		top: 50% !important;
		transform: translate(-50%, -50%) !important;
		width: 228px !important;
		max-width: calc(100% - 96px) !important;
		align-items: center !important;
		text-align: center !important;
	}
	.pst-brand-title-image-wrap {
		display: flex !important;
		justify-content: center !important;
		align-items: center !important;
		width: 100% !important;
		max-width: 228px !important;
		margin: 0 auto !important;
		overflow: visible !important;
	}
	.pst-brand-title-image {
		margin: 0 auto !important;
		object-position: center center !important;
		transform: translateX(5px) !important;
	}
	.pst-brand-header::after {
		display: none !important;
	}
}

@media (max-width: 420px) {
	.pst-brand-header {
		height: 72px !important;
		min-height: 72px !important;
	}
	.pst-brand-copy-header {
		width: 210px !important;
		max-width: calc(100% - 92px) !important;
	}
	.pst-brand-title-image-wrap {
		max-width: 210px !important;
	}
}


/* v0.4.3.3.8 member dashboard protection + front-end profile */
.pst-profile-summary { min-width: 0; }
.pst-profile-username {
	margin: 5px 0 7px;
	color: var(--pst-muted);
	font-size: 12px;
}
.pst-profile-settings h2 { margin-top: 0; }
.pst-profile-form { max-width: 720px; }
.pst-notice-success {
	margin: 0 0 16px;
	padding: 12px 14px;
	border-left: 4px solid var(--pst-green);
	background: rgba(33, 199, 119, .12);
	color: #a9f0ca;
}
@media (max-width: 620px) {
	.pst-profile-head {
		align-items: flex-start;
	}
	.pst-profile-head img {
		width: 58px;
		height: 58px;
	}
	.pst-profile-settings {
		margin-top: 14px;
	}
}


/* v0.4.3.3.9 hide Cocoon table of contents on the member my page */
body.pst-my-page-route .toc,
body.pst-my-page-route #toc,
body.pst-my-page-route .toc-widget-box {
	display: none !important;
}


/* v0.4.3.3.11 user profile image */
.pst-profile-head .avatar,
.pst-profile-avatar-preview .avatar {
	display: block;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
	background: #06101e;
	border: 2px solid rgba(255,255,255,.22);
	box-shadow: 0 9px 26px rgba(0,0,0,.28), 0 0 0 4px rgba(255,32,40,.08);
}
.pst-profile-head .avatar {
	flex: 0 0 72px;
	width: 72px;
	height: 72px;
}
.pst-profile-avatar-editor {
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr);
	align-items: center;
	gap: 20px;
	padding: 16px;
	border: 1px solid rgba(153,181,214,.22);
	border-radius: 12px;
	background: rgba(4,14,26,.48);
}
.pst-profile-avatar-preview .avatar {
	width: 112px;
	height: 112px;
}
.pst-profile-avatar-fields {
	display: grid;
	gap: 9px;
	min-width: 0;
}
.pst-profile-avatar-fields input[type="file"] {
	width: 100%;
	margin-top: 7px;
	padding: 11px;
	border: 1px dashed rgba(166,190,217,.44);
	border-radius: 8px;
	background: rgba(255,255,255,.04);
	color: #e7edf5;
}
.pst-profile-avatar-fields input[type="file"]::file-selector-button {
	margin-right: 10px;
	padding: 8px 12px;
	border: 0;
	border-radius: 6px;
	background: #e9eef5;
	color: #172033;
	font-weight: 800;
	cursor: pointer;
}
.pst-profile-avatar-fields .pst-note {
	margin: 0;
	font-size: 11px;
	line-height: 1.65;
}
.pst-profile-avatar-remove {
	display: inline-flex !important;
	grid-template-columns: none !important;
	align-items: center;
	gap: 8px !important;
	font-size: 12px;
	font-weight: 700 !important;
	color: #ffb4b7 !important;
}
.pst-profile-avatar-remove input {
	width: auto !important;
	margin: 0;
}

@media (max-width: 620px) {
	.pst-profile-avatar-editor {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: left;
	}
	.pst-profile-avatar-fields {
		width: 100%;
	}
}


/* v0.4.3.3.12 compact profile image editor */
.pst-profile-avatar-editor {
	grid-template-columns: 84px minmax(0, 1fr);
	gap: 14px;
	padding: 12px;
}
.pst-profile-avatar-preview .avatar {
	width: 84px;
	height: 84px;
}
.pst-profile-avatar-fields {
	gap: 7px;
}
.pst-profile-avatar-fields input[type="file"] {
	margin-top: 5px;
	padding: 8px;
	font-size: 12px;
}
.pst-profile-avatar-fields input[type="file"]::file-selector-button {
	margin-right: 8px;
	padding: 7px 10px;
	font-size: 12px;
}
.pst-profile-avatar-fields .pst-note {
	font-size: 10px;
	line-height: 1.55;
}

@media (max-width: 620px) {
	.pst-profile-avatar-editor {
		grid-template-columns: 68px minmax(0, 1fr);
		align-items: start;
		justify-items: stretch;
		gap: 11px;
		padding: 11px;
		text-align: left;
	}
	.pst-profile-avatar-preview .avatar {
		width: 68px;
		height: 68px;
	}
	.pst-profile-avatar-fields {
		width: 100%;
		min-width: 0;
	}
	.pst-profile-avatar-fields input[type="file"] {
		min-width: 0;
		padding: 7px;
		font-size: 10px;
	}
	.pst-profile-avatar-fields input[type="file"]::file-selector-button {
		margin-right: 6px;
		padding: 6px 8px;
		font-size: 11px;
	}
	.pst-profile-avatar-fields .pst-note {
		font-size: 9px;
		line-height: 1.5;
	}
	.pst-profile-avatar-remove {
		font-size: 10px;
	}
}


/* v0.4.3.3.13 account withdrawal */
.pst-withdraw-panel {
	border-color: rgba(255, 75, 87, .32);
	background: linear-gradient(145deg, rgba(35, 12, 22, .92), rgba(9, 17, 30, .97));
}
.pst-withdraw-panel h2 { color: #fff; }
.pst-button-danger-outline {
	border: 1px solid rgba(255, 75, 87, .72);
	color: #ff9ca2 !important;
	background: rgba(255, 32, 40, .06);
}
.pst-button-danger-outline:hover {
	background: rgba(255, 32, 40, .14);
}
.pst-withdraw-warning {
	padding: 14px 16px;
	border: 1px solid rgba(255, 75, 87, .42);
	border-radius: 9px;
	background: rgba(255, 32, 40, .08);
	color: #ffd8da;
}
.pst-withdraw-warning strong { color: #ff858b; }
.pst-withdraw-warning p { margin: 7px 0 0; }
.pst-withdraw-checkbox {
	display: flex !important;
	grid-template-columns: none !important;
	align-items: flex-start;
	gap: 9px !important;
	font-weight: 700 !important;
}
.pst-withdraw-checkbox input {
	width: auto !important;
	margin: 4px 0 0;
	flex: 0 0 auto;
}
.pst-withdraw-actions {
	display: grid;
	grid-template-columns: .75fr 1.25fr;
	gap: 12px;
}
.pst-submit-danger {
	background: linear-gradient(135deg, #cf111b, #970712) !important;
}

@media (max-width: 620px) {
	.pst-withdraw-actions { grid-template-columns: 1fr; }
}


/* v0.4.3.3.15 compact neutral withdrawal panel + one-time image size notice */
.pst-profile-size-notice {
	margin: 0 0 16px;
	padding: 11px 14px;
	border-left: 4px solid #e7bd58;
	border-radius: 8px;
	background: rgba(231, 189, 88, .12);
	color: #f4dda2;
	font-size: 14px;
	line-height: 1.65;
}

.pst-withdraw-panel {
	border-color: rgba(116, 151, 194, .34);
	background: linear-gradient(145deg, rgba(12, 26, 43, .94), rgba(7, 17, 30, .98));
}
.pst-withdraw-panel h2 {
	color: #f5f8fc;
}
.pst-button-danger-outline {
	border-color: rgba(226, 185, 83, .68);
	color: #f1d17e !important;
	background: rgba(226, 185, 83, .07);
}
.pst-button-danger-outline:hover {
	background: rgba(226, 185, 83, .14);
}
.pst-withdraw-warning {
	border-color: rgba(226, 185, 83, .38);
	background: rgba(226, 185, 83, .08);
	color: #f6e5b5;
}
.pst-withdraw-warning strong {
	color: #f1d17e;
}
.pst-submit-danger {
	background: linear-gradient(135deg, #b68b2d, #82601b) !important;
}

@media (max-width: 620px) {
	.pst-profile-size-notice {
		margin: 0 0 10px;
		padding: 8px 10px;
		border-left-width: 3px;
		border-radius: 7px;
		font-size: 11px;
		line-height: 1.5;
	}

	.pst-withdraw-panel {
		margin-top: 14px;
		padding: 13px 12px !important;
		border-radius: 12px;
	}
	.pst-withdraw-panel h2 {
		margin: 0 0 6px;
		font-size: 21px;
		line-height: 1.3;
	}
	.pst-withdraw-panel > p {
		margin: 0 0 11px;
		font-size: 12px;
		line-height: 1.65;
	}
	.pst-withdraw-panel > p:last-child {
		margin-bottom: 0;
	}
	.pst-withdraw-panel .pst-button-danger-outline {
		min-height: 40px;
		padding: 8px 12px;
		font-size: 13px;
		border-radius: 8px;
	}
	.pst-withdraw-warning {
		padding: 10px 11px;
		font-size: 12px;
		line-height: 1.55;
	}
	.pst-withdraw-form {
		gap: 12px;
	}
	.pst-withdraw-form label,
	.pst-withdraw-checkbox {
		font-size: 12px !important;
	}
	.pst-withdraw-actions {
		gap: 8px;
	}
}


/* v0.4.3.3.16 email-only registration + stable public user ID */
.pst-register-panel,
.pst-login-panel {
	max-width: 680px;
	margin-inline: auto;
}
.pst-register-intro {
	margin: 8px 0 20px;
	color: #c7d2df;
	line-height: 1.75;
}
.pst-email-registration-form {
	max-width: 100%;
}
.pst-email-registration-form input[type="email"] {
	min-height: 54px;
}
.pst-account-switch {
	margin: 18px 0 0;
	text-align: center;
}
.pst-registration-complete {
	font-size: 16px;
	font-weight: 800;
}
.pst-profile-username,
.pst-single-meta small,
.pst-question-row-main small,
.pst-report-row-main small,
.pst-comment-public-id {
	color: #8fa2ba;
	font-weight: 600;
	letter-spacing: .02em;
}
.pst-comment-public-id {
	display: inline-block;
	margin-left: 4px;
	font-size: .78em;
}

@media (max-width: 620px) {
	.pst-account-wrap {
		padding-left: 12px;
		padding-right: 12px;
	}
	.pst-register-panel,
	.pst-login-panel {
		padding: 20px 16px;
	}
	.pst-register-panel h1,
	.pst-login-panel h1 {
		font-size: 27px;
	}
	.pst-register-intro,
	.pst-registration-complete {
		font-size: 14px;
	}
}


/* v0.4.3.3.18 custom initial password setup */
.pst-password-setup-panel {
	max-width: 720px;
	margin-inline: auto;
}
.pst-password-setup-panel .pst-entry-form {
	margin-top: 22px;
}
@media (max-width: 620px) {
	.pst-password-setup-panel {
		padding: 20px 15px;
	}
	.pst-password-setup-panel h1 {
		font-size: 26px;
	}
	.pst-password-setup-panel .pst-entry-form {
		gap: 14px;
	}
}

/* v0.4.3.3.19 site-local login form */
.pst-entry-form .pst-login-remember {
	display: flex;
	align-items: center;
	gap: 9px;
	font-weight: 600;
	color: #d7e0eb;
}
.pst-entry-form .pst-login-remember input[type="checkbox"] {
	width: 18px;
	height: 18px;
	min-height: 0;
	margin: 0;
	padding: 0;
	flex: 0 0 18px;
}


/* v0.4.3.3.21 password visibility toggle */
.pst-password-field {
	position: relative;
	display: block;
	width: 100%;
}
.pst-password-field .pst-password-toggle-target {
	width: 100%;
	padding-right: 92px !important;
}
.pst-password-toggle {
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	min-width: 68px;
	height: 38px;
	padding: 0 10px;
	border: 1px solid rgba(80, 102, 127, .42);
	border-radius: 8px;
	background: #e9eef4;
	color: #172334;
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
}
.pst-password-toggle:hover {
	background: #dce4ed;
}
.pst-password-toggle:focus-visible {
	outline: 3px solid rgba(255, 43, 52, .32);
	outline-offset: 2px;
}
.pst-password-toggle svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}
@media (max-width: 620px) {
	.pst-password-field .pst-password-toggle-target {
		padding-right: 82px !important;
	}
	.pst-password-toggle {
		right: 8px;
		min-width: 62px;
		height: 36px;
		padding: 0 8px;
		font-size: 12px;
	}
}


/* v0.4.3.3.26: Desktop-only question form sizing */
@media (min-width: 769px) {
	.pst-question-form-wrap {
		max-width: 1040px;
		padding-top: 28px;
	}

	.pst-question-form-panel {
		padding: 28px 32px;
	}

	.pst-question-form-panel h1 {
		font-size: 34px;
	}

	.pst-question-form-panel > p {
		margin: 8px 0 14px;
	}

	.pst-question-entry-form {
		gap: 14px;
		margin-top: 16px;
	}

	.pst-question-entry-form label {
		gap: 5px;
	}

	.pst-question-entry-form input[type="text"],
	.pst-question-entry-form select {
		min-height: 50px;
		padding: 10px 14px;
	}

	.pst-question-entry-form textarea {
		height: 108px;
		min-height: 108px;
		padding: 12px 14px;
	}

	.pst-question-entry-form input[type="file"] {
		padding: 9px 10px;
	}

	.pst-question-entry-form .pst-submit {
		min-height: 50px;
	}
}

/* Question machine-name helper */
.pst-input-help {
	display: block;
	margin-top: 7px;
	color: var(--pst-muted);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.6;
}

/* v0.4.3.3.28: Question machine type selector */
.pst-machine-kind-field {
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
}
.pst-machine-kind-field legend {
	margin: 0 0 8px;
	padding: 0;
	color: #f3f6fa;
	font-weight: 800;
}
.pst-machine-kind-options {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}
.pst-entry-form .pst-machine-kind-option {
	position: relative;
	display: block;
	min-width: 0;
	cursor: pointer;
}
.pst-machine-kind-option input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
.pst-machine-kind-option span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 10px 14px;
	border: 1px solid rgba(160, 185, 214, .42);
	border-radius: 9px;
	background: rgba(7, 18, 32, .72);
	color: #e7edf5;
	font-weight: 800;
	transition: border-color .18s ease, background .18s ease, color .18s ease;
}
.pst-machine-kind-option input:checked + span {
	border-color: #f0b83e;
	background: rgba(240, 184, 62, .14);
	color: #ffd66d;
}
.pst-machine-kind-option input:focus-visible + span {
	outline: 3px solid rgba(45, 140, 255, .36);
	outline-offset: 2px;
}
.pst-machine-kind-badge,
.pst-machine-kind-mini {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(240, 184, 62, .5);
	border-radius: 999px;
	background: rgba(240, 184, 62, .12);
	color: #ffd66d;
	font-weight: 800;
	white-space: nowrap;
}
.pst-machine-kind-badge {
	padding: 3px 9px;
	font-size: 12px;
}
.pst-machine-kind-mini {
	margin-right: 6px;
	padding: 2px 7px;
	font-size: 10px;
}
@media (max-width: 480px) {
	.pst-machine-kind-option span {
		min-height: 46px;
		padding: 9px 8px;
	}
}


/* v0.4.3.3.29 Question detail readability */
.pst-question-detail {
	padding: 0;
	overflow: hidden;
}
.pst-question-detail-header {
	margin: 0;
	padding: 26px 28px 24px;
	border-bottom: 1px solid var(--pst-line);
	background:
		radial-gradient(circle at 100% 0, rgba(45,140,255,.11), transparent 35%),
		linear-gradient(145deg, rgba(13,31,53,.98), rgba(7,20,36,.98));
}
.pst-question-heading-row {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 16px;
}
.pst-question-status-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 25px;
	padding: 3px 10px;
	border: 1px solid rgba(114,183,255,.38);
	border-radius: 999px;
	background: rgba(45,140,255,.11);
	color: #a9d4ff;
	font-size: 11px;
	font-weight: 800;
}
.pst-question-field-label {
	margin: 0 0 7px;
	color: #8fa2b9;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .06em;
}
.pst-question-detail-header h1 {
	margin: 0;
	font-size: clamp(27px, 4vw, 42px);
	line-height: 1.35;
	letter-spacing: .01em;
}
.pst-question-author-row {
	display: flex;
	align-items: center;
	gap: 11px;
	margin-top: 20px;
}
.pst-question-author-avatar {
	width: 42px !important;
	height: 42px !important;
	border: 1px solid rgba(171,196,224,.34);
	border-radius: 50%;
	object-fit: cover;
}
.pst-question-author-row strong,
.pst-question-author-row span { display: block; }
.pst-question-author-row strong { color: #f5f8fc; font-size: 14px; }
.pst-question-author-row span { margin-top: 2px; color: #8fa2b9; font-size: 11px; }
.pst-question-detail > .pst-single-content {
	padding: 24px 28px 28px;
}
.pst-question-overview {
	display: grid;
	grid-template-columns: .75fr 1.6fr 1fr;
	gap: 10px;
	margin-bottom: 22px;
}
.pst-question-overview-item {
	min-width: 0;
	padding: 13px 15px;
	border: 1px solid rgba(145,177,212,.22);
	border-radius: 10px;
	background: rgba(12,30,50,.78);
}
.pst-question-overview-label {
	display: block;
	margin-bottom: 5px;
	color: #8fa2b9;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .06em;
}
.pst-question-overview-item strong {
	display: block;
	color: #f7f9fc;
	font-size: 15px;
	line-height: 1.45;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.pst-question-overview-machine strong { color: #ffd66d; }
.pst-question-overview-item strong a { color: inherit !important; text-decoration: none; }
.pst-question-body-section {
	padding: 20px;
	border: 1px solid rgba(145,177,212,.25);
	border-radius: 12px;
	background: rgba(4,14,26,.62);
}
.pst-question-section-heading {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 17px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(145,177,212,.18);
}
.pst-question-section-icon,
.pst-answer-guide-icon {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	font-weight: 900;
}
.pst-question-section-icon {
	background: rgba(255,32,40,.14);
	color: #ff6c72;
}
.pst-question-section-heading small {
	display: block;
	color: #71869f;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .12em;
}
.pst-question-section-heading h2 {
	margin: 1px 0 0;
	font-size: 18px;
	line-height: 1.3;
}
.pst-question-body-text {
	color: #f0f4f8;
	font-size: 17px;
	line-height: 1.9;
	overflow-wrap: anywhere;
}
.pst-question-body-text > :first-child { margin-top: 0; }
.pst-question-body-text > :last-child { margin-bottom: 0; }
.pst-question-detail .pst-answer-guide {
	display: flex;
	align-items: center;
	gap: 13px;
	margin-top: 16px;
	padding: 14px 16px;
	border-color: rgba(33,199,119,.28);
	background: rgba(33,199,119,.07);
}
.pst-answer-guide-icon {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(33,199,119,.14);
	color: #65dfa4;
}
.pst-question-detail .pst-answer-guide strong,
.pst-question-detail .pst-answer-guide span { display: block; }
.pst-question-detail .pst-answer-guide strong { color: #eaf9f2; font-size: 14px; }
.pst-question-detail .pst-answer-guide span { margin-top: 2px; color: #9eb9aa; font-size: 11px; line-height: 1.6; }

@media (max-width: 767px) {
	.pst-question-detail-header { padding: 21px 18px 19px; }
	.pst-question-detail-header h1 { font-size: 27px; }
	.pst-question-author-row { margin-top: 17px; }
	.pst-question-detail > .pst-single-content { padding: 18px; }
	.pst-question-overview {
		grid-template-columns: 1fr 1fr;
		gap: 8px;
		margin-bottom: 16px;
	}
	.pst-question-overview-machine { grid-column: 1 / -1; grid-row: 1; }
	.pst-question-overview-item { padding: 11px 12px; }
	.pst-question-overview-item strong { font-size: 14px; }
	.pst-question-body-section { padding: 16px 14px; }
	.pst-question-section-heading { margin-bottom: 14px; padding-bottom: 12px; }
	.pst-question-body-text { font-size: 16px; line-height: 1.85; }
	.pst-question-detail .pst-answer-guide { align-items: flex-start; padding: 13px; }
}

/* v0.4.3.3.30 Question header and author deletion */
.pst-question-detail-header .pst-question-author-row {
	margin: 0;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(145,177,212,.18);
}
.pst-question-author-copy { min-width: 0; }
.pst-question-title-block { margin-top: 20px; }
.pst-question-title-block .pst-question-field-label { margin-bottom: 7px; }
.pst-delete-question-form {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 9px 12px;
	margin-top: 20px;
}
.pst-delete-question-form button {
	min-height: 34px;
	padding: 6px 12px;
	border: 1px solid rgba(255,128,133,.36);
	border-radius: 7px;
	background: rgba(255,65,73,.07);
	color: #ff9ca0;
	font: inherit;
	font-size: 12px;
	font-weight: 800;
	cursor: pointer;
}
.pst-delete-question-form button:hover { background: rgba(255,65,73,.13); }
.pst-delete-question-form span { color: #8395aa; font-size: 10px; }
.pst-question-action-notice {
	margin: 0 0 16px;
	padding: 11px 13px;
	border: 1px solid rgba(145,177,212,.24);
	border-radius: 8px;
	font-size: 12px;
	line-height: 1.6;
}
.pst-question-action-notice.is-success {
	border-color: rgba(33,199,119,.30);
	background: rgba(33,199,119,.08);
	color: #bcefd3;
}
.pst-question-action-notice.is-error {
	border-color: rgba(255,145,85,.30);
	background: rgba(255,145,85,.08);
	color: #ffd0b4;
}
@media (max-width: 767px) {
	.pst-question-detail-header .pst-question-author-row { padding-bottom: 15px; }
	.pst-question-title-block { margin-top: 16px; }
	.pst-delete-question-form { margin-top: 16px; }
	.pst-delete-question-form span { flex-basis: 100%; }
}

/* v0.4.3.3.31 Social threads and likes */
.pst-machine-fields[hidden] { display: none !important; }
.pst-social-thread-type {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
	padding: 8px 12px;
	border: 1px solid rgba(179,107,255,.32);
	border-radius: 999px;
	background: rgba(179,107,255,.10);
	color: #d8baff;
	font-size: 12px;
}
.pst-question-body-section.is-social-thread {
	border-color: rgba(179,107,255,.28);
	background: rgba(40,20,62,.20);
}
.pst-question-body-section.is-social-thread .pst-question-section-icon {
	background: rgba(179,107,255,.14);
	color: #d8baff;
	font-size: 16px;
}
.pst-answer-guide.is-social-guide {
	border-color: rgba(179,107,255,.28);
	background: rgba(179,107,255,.07);
}
.pst-answer-guide.is-social-guide .pst-answer-guide-icon {
	background: rgba(179,107,255,.15);
	color: #d8baff;
}
.pst-thread-like-wrap {
	display: flex;
	justify-content: flex-start;
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px solid rgba(145,177,212,.16);
}
.pst-like-button {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 38px;
	padding: 7px 12px;
	border: 1px solid rgba(255,132,147,.30);
	border-radius: 999px;
	background: rgba(255,75,96,.07);
	color: #f4bbc2;
	font: inherit;
	font-size: 12px;
	font-weight: 800;
	cursor: pointer;
	transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.pst-like-button:hover { transform: translateY(-1px); background: rgba(255,75,96,.12); }
.pst-like-button.is-liked {
	border-color: rgba(255,75,96,.58);
	background: rgba(255,75,96,.18);
	color: #ff8b99;
}
.pst-like-button:disabled { cursor: wait; opacity: .65; }
.pst-like-heart { font-size: 15px; line-height: 1; }
.pst-like-count {
	min-width: 22px;
	padding-left: 7px;
	border-left: 1px solid currentColor;
	text-align: center;
}
.pst-comment-like-wrap { margin-top: 10px; }
.pst-comment-like-wrap .pst-like-button { min-height: 32px; padding: 5px 10px; font-size: 11px; }
.pst-question-row-stats {
	display: flex;
	align-items: center;
	gap: 7px;
}
.pst-card-like-count {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	min-height: 32px;
	padding: 4px 8px;
	border: 1px solid rgba(255,132,147,.20);
	border-radius: 7px;
	color: #dc9ca5;
	font-size: 11px;
	font-weight: 800;
}

@media (max-width: 767px) {
	.pst-thread-like-wrap .pst-like-button { width: 100%; justify-content: center; }
	.pst-question-row-stats { align-self: stretch; justify-content: flex-end; }
}
.pst-question-row { grid-template-columns: 86px minmax(0, 1fr) auto; }
@media (max-width: 767px) {
	.pst-question-row { grid-template-columns: 76px minmax(0, 1fr) auto; }
}


/* v0.4.3.3.35 Gold borders for tappable question cards */
.pst-feed-list {
	border-top: 0;
	display: grid;
	gap: 9px;
}
.pst-question-row {
	position: relative;
	margin: 0;
	padding: 12px 13px;
	border: 1px solid rgba(212, 168, 67, .58);
	border-radius: 11px;
	background: linear-gradient(145deg, rgba(12, 29, 49, .78), rgba(6, 18, 32, .88));
	box-shadow: 0 7px 20px rgba(0, 0, 0, .12);
	cursor: pointer;
	transition: border-color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.pst-question-row:last-child { border-bottom: 1px solid rgba(212, 168, 67, .58); }
.pst-question-row:hover {
	border-color: rgba(242, 196, 84, .92);
	background: linear-gradient(145deg, rgba(16, 38, 63, .92), rgba(8, 24, 42, .94));
	box-shadow: 0 10px 28px rgba(0, 0, 0, .20);
	transform: translateY(-1px);
}
.pst-question-row:active { transform: translateY(0); }
.pst-question-row:focus-visible {
	outline: 3px solid rgba(242, 196, 84, .72);
	outline-offset: 2px;
}
.pst-question-row .pst-category-label,
.pst-question-row .pst-answer-count,
.pst-question-row .pst-question-row-main > span a {
	position: relative;
	z-index: 2;
}
.pst-question-title { font-size: 13px; }

@media (max-width: 767px) {
	.pst-feed-list { gap: 8px; }
	.pst-question-row {
		min-height: 72px;
		padding: 10px 10px;
		border-radius: 10px;
	}
	.pst-question-title { font-size: 13px; line-height: 1.45; }
}


/* v0.4.3.3.34 Category thread search */
.pst-category-search {
	margin: -2px 0 22px;
	padding: 14px;
	border: 1px solid rgba(212, 168, 67, .58);
	border-radius: 11px;
	background: rgba(5, 17, 31, .56);
}
.pst-category-search-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 9px;
	align-items: stretch;
}
.pst-category-search-input-wrap {
	position: relative;
	display: block;
	min-width: 0;
}
body.pst-app-route .pst-category-search-input-wrap > svg {
	position: absolute;
	left: 14px;
	top: 50%;
	width: 20px;
	height: 20px;
	transform: translateY(-50%);
	color: #62738a;
	pointer-events: none;
}
.pst-category-search-form input[type="search"] {
	width: 100%;
	height: 48px;
	margin: 0;
	padding: 0 14px 0 44px;
	border: 1px solid rgba(166, 190, 217, .38);
	border-radius: 8px;
	background: #f8fafc;
	color: #172033;
	font: inherit;
	font-size: 14px;
	font-weight: 700;
}
.pst-category-search-form input[type="search"]:focus {
	outline: 3px solid rgba(72, 161, 255, .28);
	border-color: #4da6ff;
}
.pst-category-search-form button {
	min-width: 92px;
	border: 0;
	border-radius: 8px;
	padding: 0 20px;
	background: linear-gradient(135deg, #2d8cff, #1767cf);
	color: #fff;
	font: inherit;
	font-size: 13px;
	font-weight: 900;
	cursor: pointer;
}
.pst-category-search-help {
	margin: 8px 2px 0;
	color: var(--pst-muted);
	font-size: 11px;
	line-height: 1.6;
}
.pst-category-search-result {
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid rgba(145, 177, 212, .16);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	color: #dce7f3;
	font-size: 12px;
}
.pst-category-search-result a {
	flex: 0 0 auto;
	color: #72b7ff;
	font-weight: 800;
	text-decoration: none;
}

@media (max-width: 767px) {
	.pst-category-search {
		margin-bottom: 16px;
		padding: 10px;
		border-radius: 10px;
	}
	.pst-category-search-form {
		grid-template-columns: minmax(0, 1fr) 72px;
		gap: 7px;
	}
	.pst-category-search-form input[type="search"] {
		height: 44px;
		padding-left: 39px;
		font-size: 13px;
	}
	body.pst-app-route .pst-category-search-input-wrap > svg {
		left: 12px;
		width: 18px;
		height: 18px;
	}
	.pst-category-search-form button {
		min-width: 0;
		padding: 0 10px;
		font-size: 12px;
	}
	.pst-category-search-help {
		font-size: 10px;
	}
	.pst-category-search-result {
		align-items: flex-start;
		font-size: 11px;
	}
}


/* v0.4.3.3.36 Question attachment display */
.pst-question-attachment {
	margin: 20px 0 0;
	padding: 14px;
	border: 1px solid rgba(214, 171, 74, .34);
	border-radius: 12px;
	background: rgba(4, 12, 22, .72);
}
.pst-question-attachment figcaption {
	margin: 0 0 10px;
	color: #d8bd79;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .05em;
}
.pst-question-attachment a {
	display: block;
	text-decoration: none;
}
body.pst-app-route .pst-question-attachment-image {
	display: block;
	width: auto;
	max-width: min(100%, 720px);
	height: auto;
	max-height: 480px;
	margin: 0 auto;
	border-radius: 8px;
	object-fit: contain;
	background: #020812;
}
@media (max-width: 767px) {
	.pst-question-attachment {
		margin-top: 16px;
		padding: 9px;
	}
	body.pst-app-route .pst-question-attachment-image {
		width: auto;
		max-width: 100%;
		max-height: 340px;
	}
}


/* v0.4.3.3.38 Compact attachment preview and clearer comment threads */
.pst-question-attachment {
	width: fit-content;
	max-width: 100%;
	padding: 8px;
}
.pst-question-attachment figcaption {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 7px;
}
.pst-question-attachment figcaption span {
	color: #93a4b9;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0;
}
.pst-question-attachment a {
	position: relative;
	width: 240px;
	max-width: 100%;
	border-radius: 8px;
	overflow: hidden;
}
.pst-question-attachment a::after {
	content: "拡大";
	position: absolute;
	right: 7px;
	bottom: 7px;
	padding: 4px 7px;
	border: 1px solid rgba(255,255,255,.28);
	border-radius: 999px;
	background: rgba(2,8,18,.78);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	line-height: 1;
}
body.pst-app-route .pst-question-attachment-image {
	width: 240px;
	height: 170px;
	max-width: 100%;
	max-height: none;
	margin: 0;
	object-fit: cover;
}

body.pst-app-route .comments-area {
	padding: 20px;
	border-color: rgba(209,167,70,.28);
	background: linear-gradient(180deg, rgba(8,22,38,.92), rgba(4,14,25,.96));
}
body.pst-app-route .comments-title,
body.pst-app-route .comment-reply-title {
	margin: 0 0 18px;
	color: #f7f9fc;
	font-style: normal;
	font-size: clamp(23px, 3vw, 32px);
	line-height: 1.25;
}
body.pst-app-route .comment-list,
body.pst-app-route .comment-list .children {
	list-style: none;
}
body.pst-app-route .comment-list {
	margin: 0;
	padding: 0;
}
body.pst-app-route .comment-list > li.comment,
body.pst-app-route .comment-list > li.pingback {
	margin: 0 0 14px;
}
body.pst-app-route .comment-list .comment-body {
	position: relative;
	margin: 0;
	padding: 16px;
	border: 1px solid rgba(151,181,216,.28);
	border-radius: 13px;
	background: linear-gradient(145deg, rgba(13,31,52,.96), rgba(7,19,34,.98));
	box-shadow: 0 8px 24px rgba(0,0,0,.16);
	color: #eef3f8;
}
body.pst-app-route .comment-list .comment-author.vcard {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 5px 8px;
	min-height: 44px;
	margin: 0;
	color: #fff;
	font-style: normal;
}
body.pst-app-route .comment-list .comment-author .avatar {
	position: static !important;
	float: none !important;
	flex: 0 0 42px;
	width: 42px !important;
	height: 42px !important;
	margin: 0 4px 0 0 !important;
	border: 1px solid rgba(219,180,86,.48);
	border-radius: 50% !important;
	object-fit: cover;
}
body.pst-app-route .comment-list .comment-author .fn,
body.pst-app-route .comment-list .comment-author .fn a {
	color: #fff;
	font-style: normal !important;
	font-weight: 900;
	text-decoration: none;
}
body.pst-app-route .comment-list .comment-author .says {
	display: none;
}
body.pst-app-route .comment-list .pst-comment-public-id {
	margin-left: 0;
	color: #8398b2;
	font-size: 11px;
	font-style: normal;
	font-weight: 700;
}
body.pst-app-route .comment-list .comment-metadata {
	margin: -7px 0 0 54px;
	font-size: 11px;
	line-height: 1.5;
}
body.pst-app-route .comment-list .comment-metadata a,
body.pst-app-route .comment-list .comment-metadata time {
	color: #8295ad;
	font-style: normal;
	text-decoration: none;
}
body.pst-app-route .comment-list .comment-content {
	margin: 16px 0 0;
	padding: 14px 15px;
	border: 1px solid rgba(150,181,216,.16);
	border-radius: 10px;
	background: rgba(1,9,18,.44);
	color: #f4f7fb;
	font-size: 15px;
	font-style: normal;
	line-height: 1.8;
}
body.pst-app-route .comment-list .comment-content p {
	margin: 0 0 10px;
	font-style: normal;
}
body.pst-app-route .comment-list .comment-content p:last-child {
	margin-bottom: 0;
}
body.pst-app-route .comment-list .reply {
	display: flex;
	justify-content: flex-end;
	margin-top: 10px;
}
body.pst-app-route .comment-list .comment-reply-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 6px 12px;
	border: 1px solid rgba(96,188,239,.48);
	border-radius: 8px;
	background: rgba(39,151,214,.08);
	color: #9ddcff;
	font-size: 12px;
	font-style: normal;
	font-weight: 900;
	text-decoration: none;
}
body.pst-app-route .comment-list .comment-reply-link::before {
	content: "↩";
	margin-right: 5px;
	font-size: 14px;
}
body.pst-app-route .comment-list .children {
	position: relative;
	margin: 14px 0 0 20px;
	padding: 0 0 0 18px;
	border-left: 3px solid rgba(215,174,74,.62);
}
body.pst-app-route .comment-list .children > li.comment {
	position: relative;
	margin: 0 0 12px;
}
body.pst-app-route .comment-list .children > li.comment::before {
	content: "";
	position: absolute;
	left: -18px;
	top: 27px;
	width: 16px;
	height: 2px;
	background: rgba(215,174,74,.62);
}
body.pst-app-route .comment-list .children .comment-body {
	border-color: rgba(215,174,74,.36);
	background: linear-gradient(145deg, rgba(25,31,50,.98), rgba(10,19,34,.98));
}
.pst-reply-context {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	margin: 0 0 10px;
	padding: 6px 10px;
	border: 1px solid rgba(215,174,74,.42);
	border-radius: 999px;
	background: rgba(215,174,74,.10);
}
.pst-reply-context-label {
	display: block;
	max-width: 100%;
	overflow: hidden;
	color: #f0cf7e;
	font-size: 12px;
	font-style: normal;
	font-weight: 900;
	line-height: 1.4;
	text-overflow: ellipsis;
	white-space: nowrap;
}
body.pst-app-route .comment-list .pst-comment-like-wrap {
	margin-top: 12px;
}

@media (max-width: 767px) {
	.pst-question-attachment {
		padding: 7px;
	}
	.pst-question-attachment a {
		width: 170px;
	}
	body.pst-app-route .pst-question-attachment-image {
		width: 170px;
		height: 120px;
	}
	body.pst-app-route .comments-area {
		padding: 13px 10px;
		border-radius: 12px;
	}
	body.pst-app-route .comment-list .comment-body {
		padding: 13px;
		border-radius: 11px;
	}
	body.pst-app-route .comment-list .comment-author .avatar {
		flex-basis: 38px;
		width: 38px !important;
		height: 38px !important;
	}
	body.pst-app-route .comment-list .comment-metadata {
		margin-left: 50px;
	}
	body.pst-app-route .comment-list .comment-content {
		margin-top: 13px;
		padding: 12px;
		font-size: 14px;
	}
	body.pst-app-route .comment-list .children {
		margin-left: 8px;
		padding-left: 13px;
	}
	body.pst-app-route .comment-list .children > li.comment::before {
		left: -13px;
		width: 11px;
	}
}


/* Ver0.4.3.3.40: コメント入力欄の見出し・余白調整 */
body.pst-app-route .comments-area .comment-respond {
	margin-top: 38px;
	padding-top: 28px;
	border-top: 1px solid rgba(151,181,216,.22);
}
body.pst-app-route .comments-area .comment-list + .comment-respond {
	margin-top: 42px;
}
body.pst-app-route .comment-respond .logged-in-as {
	display: none;
}

@media (max-width: 767px) {
	body.pst-app-route .comments-area .comment-respond,
	body.pst-app-route .comments-area .comment-list + .comment-respond {
		margin-top: 30px;
		padding-top: 24px;
	}
}


/* Ver0.4.3.3.41: ゴールドの返信ラインは返信コメントだけに表示 */
body.pst-app-route .comment-list > li.comment,
body.pst-app-route .comment-list > li.pingback {
	padding-left: 0 !important;
	border-left: 0 !important;
}
body.pst-app-route .comment-list > li.comment::before,
body.pst-app-route .comment-list > li.comment::after,
body.pst-app-route .comment-list > li.pingback::before,
body.pst-app-route .comment-list > li.pingback::after {
	display: none !important;
	content: none !important;
}

/* 返信のまとまりだけ、ゴールドの枝線で親コメントとの関係を示す */
body.pst-app-route .comment-list .children {
	border-left: 3px solid rgba(215,174,74,.72) !important;
}
body.pst-app-route .comment-list .children > li.comment::before {
	display: block !important;
	content: "" !important;
	background: rgba(215,174,74,.72) !important;
}


/* Ver0.4.3.3.42: カテゴリ検索・雑談ガイド・返信UIの最終調整 */

/* カテゴリ内検索は説明文を省き、検索操作だけが目に入るデザインにする */
.pst-category-search {
	margin-bottom: 20px;
	padding: 12px;
	border: 1px solid rgba(214, 177, 86, .34);
	border-radius: 13px;
	background: linear-gradient(145deg, rgba(12, 29, 49, .88), rgba(5, 16, 29, .94));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
}
.pst-category-search-form input[type="search"] {
	border-color: rgba(170, 194, 222, .28);
	border-radius: 10px;
	background: #f7f9fc;
}
.pst-category-search-form input[type="search"]:focus {
	outline: 3px solid rgba(216, 175, 77, .18);
	border-color: rgba(216, 175, 77, .78);
}
.pst-category-search-form button {
	border: 1px solid rgba(255, 224, 145, .18);
	border-radius: 10px;
	background: linear-gradient(135deg, #e9b83f, #bb7917);
	box-shadow: 0 7px 18px rgba(160, 101, 12, .20);
	color: #07111f;
}
.pst-category-search-form button:active {
	transform: translateY(1px);
}
.pst-category-search-help {
	display: none !important;
}

/* 雑談ガイドのアイコンを中央に固定し、文字との位置を揃える */
.pst-answer-guide.is-social-guide {
	align-items: center;
	gap: 14px;
	padding: 15px 16px;
	border-color: rgba(179, 107, 255, .30);
	background: linear-gradient(145deg, rgba(50, 30, 78, .26), rgba(17, 24, 43, .72));
}
.pst-answer-guide.is-social-guide .pst-answer-guide-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid rgba(190, 135, 255, .22);
	background: rgba(179, 107, 255, .16);
	line-height: 1;
}
body.pst-app-route .pst-answer-guide.is-social-guide .pst-answer-guide-icon svg {
	display: block;
	width: 22px;
	height: 22px;
	margin: 0;
	color: #d9bcff;
	stroke: currentColor;
}
.pst-answer-guide.is-social-guide strong {
	font-size: 15px;
	line-height: 1.45;
}

/* 長く伸びるツリー線は廃止。返信はカードと宛先ラベルだけで判別させる */
body.pst-app-route .comment-list .children,
body.pst-app-route .comment-list .children .children {
	margin: 14px 0 0 16px !important;
	padding: 0 !important;
	border-left: 0 !important;
}
body.pst-app-route .comment-list .children > li.comment::before,
body.pst-app-route .comment-list .children > li.comment::after,
body.pst-app-route .comment-list .children > li.pingback::before,
body.pst-app-route .comment-list .children > li.pingback::after {
	display: none !important;
	content: none !important;
	width: 0 !important;
	height: 0 !important;
	background: transparent !important;
}
body.pst-app-route .comment-list .children .comment-body {
	border: 1px solid rgba(215, 174, 74, .42);
	background: linear-gradient(145deg, rgba(24, 31, 50, .98), rgba(8, 18, 33, .98));
	box-shadow: 0 9px 24px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255, 230, 164, .025);
}
.pst-reply-context {
	margin-bottom: 12px;
	padding: 6px 11px;
	border-color: rgba(215, 174, 74, .38);
	background: linear-gradient(135deg, rgba(215, 174, 74, .12), rgba(215, 174, 74, .06));
}

@media (max-width: 767px) {
	.pst-category-search {
		padding: 9px;
		border-radius: 12px;
	}
	.pst-answer-guide.is-social-guide {
		align-items: center;
		gap: 11px;
		padding: 13px;
	}
	.pst-answer-guide.is-social-guide .pst-answer-guide-icon {
		width: 38px;
		height: 38px;
	}
	body.pst-app-route .comment-list .children,
	body.pst-app-route .comment-list .children .children {
		margin-left: 10px !important;
	}
}


/* v0.4.3.3.43 Up to three question/thread images */
.pst-question-entry-form .pst-input-help.is-error {
	color: #ff9aa2;
	font-weight: 800;
}
.pst-question-attachment {
	width: fit-content;
	max-width: 100%;
}
.pst-question-attachment-gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 120px));
	gap: 8px;
	max-width: 376px;
}
.pst-question-attachment-count-1 .pst-question-attachment-gallery {
	grid-template-columns: 170px;
}
.pst-question-attachment-count-2 .pst-question-attachment-gallery {
	grid-template-columns: repeat(2, 150px);
}
.pst-question-attachment-item {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border: 1px solid rgba(216, 189, 121, .24);
	border-radius: 8px;
	background: #020812;
	text-decoration: none;
}
.pst-question-attachment-item::after {
	content: "拡大";
	position: absolute;
	right: 6px;
	bottom: 6px;
	padding: 3px 6px;
	border: 1px solid rgba(255,255,255,.26);
	border-radius: 999px;
	background: rgba(2,8,18,.78);
	color: #fff;
	font-size: 9px;
	font-weight: 800;
	line-height: 1;
}
body.pst-app-route .pst-question-attachment-gallery .pst-question-attachment-image {
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	max-height: none;
	margin: 0;
	border-radius: 0;
	object-fit: cover;
}
@media (max-width: 767px) {
	.pst-question-attachment-gallery {
		grid-template-columns: repeat(3, minmax(0, 92px));
		gap: 6px;
		max-width: 288px;
	}
	.pst-question-attachment-count-1 .pst-question-attachment-gallery {
		grid-template-columns: 150px;
	}
	.pst-question-attachment-count-2 .pst-question-attachment-gallery {
		grid-template-columns: repeat(2, 120px);
	}
}


/* v0.4.3.3.44 Image viewer and compact My Page question list */
.pst-question-attachment-item[type="button"] {
	appearance: none;
	padding: 0;
	font: inherit;
	cursor: zoom-in;
}
.pst-question-attachment-item[type="button"]:focus-visible {
	outline: 3px solid rgba(238, 191, 78, .7);
	outline-offset: 3px;
}
html.pst-image-viewer-open,
html.pst-image-viewer-open body {
	overflow: hidden;
}
.pst-image-viewer[hidden] {
	display: none !important;
}
.pst-image-viewer {
	position: fixed;
	inset: 0;
	z-index: 10050;
	display: grid;
	place-items: center;
	padding: 20px;
}
.pst-image-viewer-backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	background: rgba(0, 5, 12, .9);
	cursor: zoom-out;
}
.pst-image-viewer-panel {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: min(100%, 1100px);
	max-height: calc(100vh - 40px);
}
.pst-image-viewer-image {
	display: block;
	max-width: 100%;
	max-height: calc(100vh - 40px);
	width: auto;
	height: auto;
	border: 1px solid rgba(222, 190, 111, .45);
	border-radius: 12px;
	background: #050b14;
	box-shadow: 0 24px 80px rgba(0, 0, 0, .58);
	object-fit: contain;
}
.pst-image-viewer-close {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255,255,255,.34);
	border-radius: 50%;
	background: rgba(2, 8, 18, .82);
	color: #fff;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

.pst-my-posts-section.is-question-list {
	margin-top: 26px;
}
.pst-my-posts-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 10px;
}
.pst-my-posts-heading h2 {
	margin: 0;
}
.pst-my-posts-view-link {
	flex: 0 0 auto;
	padding: 7px 10px;
	border: 1px solid rgba(218, 184, 101, .38);
	border-radius: 999px;
	color: #e5c46f !important;
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
}
.pst-my-post-list {
	display: grid;
	gap: 7px;
}
.pst-my-post-row {
	margin: 0;
	border: 1px solid rgba(142, 172, 207, .24);
	border-radius: 10px;
	background: rgba(7, 20, 35, .78);
	overflow: hidden;
}
.pst-my-post-row-link {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto auto;
	align-items: center;
	gap: 10px;
	min-height: 64px;
	padding: 10px 12px;
	color: #fff !important;
	text-decoration: none;
}
.pst-my-post-row-link:hover,
.pst-my-post-row-link:focus-visible {
	background: rgba(215, 178, 86, .07);
}
.pst-my-post-row-main {
	min-width: 0;
}
.pst-my-post-row-main strong {
	display: block;
	overflow: hidden;
	color: #f7f9fc;
	font-size: 15px;
	line-height: 1.35;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.pst-my-post-row-main small {
	display: block;
	margin-top: 4px;
	color: var(--pst-muted);
	font-size: 10px;
}
.pst-my-post-row-comments {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: #8edcff;
	font-size: 11px;
}
.pst-my-post-row-comments svg {
	width: 15px;
	height: 15px;
}
.pst-my-post-row-arrow {
	color: #d8b65b;
	font-size: 24px;
	line-height: 1;
}
.pst-my-posts-pagination {
	margin-top: 14px;
}

@media (max-width: 767px) {
	.pst-image-viewer {
		padding: 12px;
	}
	.pst-image-viewer-panel,
	.pst-image-viewer-image {
		max-height: calc(100vh - 24px);
	}
	.pst-image-viewer-close {
		top: 7px;
		right: 7px;
		width: 40px;
		height: 40px;
	}
	.pst-my-posts-section.is-question-list {
		margin-top: 22px;
	}
	.pst-my-posts-heading h2 {
		font-size: 24px;
	}
	.pst-my-posts-view-link {
		padding: 6px 9px;
		font-size: 11px;
	}
	.pst-my-post-row-link {
		min-height: 58px;
		padding: 9px 10px;
	}
	.pst-my-post-row-main strong {
		font-size: 14px;
	}
}

/* v0.4.3.3.45 Comment form collapse and answer guide polish */
body.pst-app-route .pst-answer-guide {
	position: relative;
	overflow: hidden;
}
body.pst-app-route .pst-answer-guide-copy {
	min-width: 0;
	flex: 1 1 auto;
}
body.pst-app-route .pst-question-detail .pst-answer-guide-copy strong,
body.pst-app-route .pst-question-detail .pst-answer-guide-copy span {
	display: block;
}
body.pst-app-route .pst-question-detail .pst-answer-guide-copy strong {
	margin: 0;
	color: #eaf9f2;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.45;
}
body.pst-app-route .pst-question-detail .pst-answer-guide-copy span {
	margin: 4px 0 0;
	color: #9eb9aa;
	font-size: 12px;
	line-height: 1.65;
}
body.pst-app-route .pst-answer-guide-icon,
body.pst-app-route .pst-question-detail .pst-answer-guide-icon {
	display: grid;
	place-items: center;
	align-self: center;
	box-sizing: border-box;
	margin: 0 !important;
	padding: 0 !important;
	font-size: 16px !important;
	line-height: 1 !important;
}
body.pst-app-route .pst-answer-guide-icon.is-answer-icon {
	position: relative;
	width: 46px;
	height: 46px;
	border: 1px solid rgba(95, 228, 165, .38);
	border-radius: 50%;
	background: radial-gradient(circle at 35% 28%, rgba(80, 226, 158, .27), rgba(16, 85, 61, .35) 55%, rgba(5, 31, 25, .76));
	box-shadow: inset 0 1px 0 rgba(220, 255, 239, .13), 0 7px 18px rgba(22, 136, 91, .16);
	color: #9bf2c5;
}
body.pst-app-route .pst-answer-guide-icon.is-answer-icon::after {
	position: absolute;
	inset: 5px;
	border: 1px solid rgba(143, 242, 195, .13);
	border-radius: inherit;
	content: '';
}
body.pst-app-route .pst-answer-guide-icon.is-answer-icon b {
	position: relative;
	z-index: 1;
	display: block;
	margin: 0;
	font-size: 18px;
	font-weight: 900;
	line-height: 1;
	transform: translateY(-.5px);
}
body.pst-app-route .pst-answer-guide.is-answer-guide {
	align-items: center;
	gap: 14px;
	padding: 16px;
	border-color: rgba(61, 211, 140, .30);
	background: linear-gradient(145deg, rgba(9, 58, 47, .38), rgba(5, 24, 31, .80));
	box-shadow: inset 0 1px 0 rgba(151, 247, 202, .035);
}

body.pst-app-route #respond .comment-reply-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}
body.pst-app-route #respond .comment-reply-title #cancel-comment-reply-link {
	margin-left: auto;
	font-size: 12px;
}
body.pst-app-route .pst-comment-collapse-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	flex: 0 0 auto;
	min-height: 34px;
	margin-left: auto;
	padding: 6px 11px;
	border: 1px solid rgba(149, 183, 218, .32);
	border-radius: 999px;
	background: rgba(8, 22, 38, .86);
	color: #dbe6f2;
	font: inherit;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
	transition: border-color .18s ease, background .18s ease, color .18s ease;
}
body.pst-app-route .pst-comment-collapse-toggle:hover,
body.pst-app-route .pst-comment-collapse-toggle:focus-visible {
	border-color: rgba(216, 175, 77, .62);
	background: rgba(216, 175, 77, .10);
	color: #f6d77f;
}
body.pst-app-route .pst-comment-collapse-icon {
	display: grid;
	place-items: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .07);
	font-size: 15px;
	font-weight: 500;
	line-height: 1;
}
body.pst-app-route #respond.is-pst-collapsed {
	padding-bottom: 0;
}
body.pst-app-route #respond.is-pst-collapsed > :not(.comment-reply-title) {
	display: none !important;
}
body.pst-app-route #respond.is-pst-collapsed .comment-reply-title {
	margin-bottom: 0;
}

@media (max-width: 767px) {
	body.pst-app-route .pst-answer-guide.is-answer-guide {
		gap: 12px;
		padding: 14px;
	}
	body.pst-app-route .pst-answer-guide-icon.is-answer-icon {
		width: 42px;
		height: 42px;
	}
	body.pst-app-route .pst-answer-guide-icon.is-answer-icon b {
		font-size: 17px;
	}
	body.pst-app-route .pst-question-detail .pst-answer-guide-copy strong {
		font-size: 14px;
	}
	body.pst-app-route .pst-question-detail .pst-answer-guide-copy span {
		font-size: 11px;
	}
	body.pst-app-route #respond .comment-reply-title {
		font-size: 24px;
	}
	body.pst-app-route .pst-comment-collapse-toggle {
		min-height: 32px;
		padding: 6px 10px;
		font-size: 11px;
	}
}


/* Ver0.4.3.3.46: コメント見出しと開閉ボタンの仕上げ */
body.pst-app-route #respond .comment-reply-title {
	min-height: 48px;
	margin-bottom: 18px;
	padding: 10px 12px 10px 16px;
	border: 1px solid rgba(216, 175, 77, .28);
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(13, 34, 58, .92), rgba(7, 20, 35, .96));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
}
body.pst-app-route .pst-comment-collapse-toggle {
	position: relative;
	isolation: isolate;
	min-height: 38px;
	padding: 7px 13px 7px 9px;
	gap: 8px;
	border: 1px solid rgba(216, 175, 77, .55);
	border-radius: 999px;
	background: linear-gradient(145deg, rgba(69, 52, 18, .86), rgba(18, 31, 48, .96));
	color: #f6dc91;
	box-shadow:
		inset 0 1px 0 rgba(255, 239, 174, .13),
		0 5px 16px rgba(0, 0, 0, .22);
	letter-spacing: .04em;
	transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
}
body.pst-app-route .pst-comment-collapse-toggle::before {
	content: '';
	position: absolute;
	inset: 1px;
	z-index: -1;
	border-radius: inherit;
	background: linear-gradient(120deg, rgba(255,255,255,.035), transparent 52%);
	pointer-events: none;
}
body.pst-app-route .pst-comment-collapse-toggle:hover,
body.pst-app-route .pst-comment-collapse-toggle:focus-visible {
	transform: translateY(-1px);
	border-color: rgba(247, 207, 108, .88);
	background: linear-gradient(145deg, rgba(94, 70, 20, .92), rgba(20, 38, 59, .98));
	color: #fff0bc;
	box-shadow:
		inset 0 1px 0 rgba(255, 239, 174, .18),
		0 7px 20px rgba(0, 0, 0, .28);
}
body.pst-app-route .pst-comment-collapse-toggle:active {
	transform: translateY(0) scale(.98);
}
body.pst-app-route .pst-comment-collapse-icon {
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	border: 1px solid rgba(246, 220, 145, .34);
	border-radius: 50%;
	background: rgba(255, 255, 255, .055);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
body.pst-app-route .pst-comment-collapse-icon svg {
	display: block;
	width: 15px;
	height: 15px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform .2s ease;
}
body.pst-app-route .pst-comment-collapse-toggle[aria-expanded="false"] .pst-comment-collapse-icon svg {
	transform: rotate(180deg);
}
body.pst-app-route #respond.is-pst-collapsed .comment-reply-title {
	margin-bottom: 0;
}
@media (max-width: 767px) {
	body.pst-app-route #respond .comment-reply-title {
		min-height: 44px;
		padding: 8px 9px 8px 13px;
		font-size: 21px;
	}
	body.pst-app-route .pst-comment-collapse-toggle {
		min-height: 36px;
		padding: 6px 11px 6px 7px;
		font-size: 11px;
	}
	body.pst-app-route .pst-comment-collapse-icon {
		width: 22px;
		height: 22px;
	}
}


/* v0.4.3.3.47: 返信ボタンの誤タップ対策 */
body.pst-app-route .comment-list .reply {
	display: flex;
	justify-content: flex-start;
	margin: 12px 0 0;
	padding-left: 2px;
}
body.pst-app-route .comment-list .comment-reply-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	min-width: 0;
	min-height: 38px;
	padding: 7px 13px;
	border: 1px solid rgba(96, 188, 239, .42);
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(25, 107, 154, .16), rgba(11, 32, 52, .72));
	box-shadow: inset 0 1px 0 rgba(190, 231, 255, .05);
	color: #a9ddfb;
	font-size: 12px;
	font-style: normal;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
	touch-action: pan-y;
	user-select: none;
	-webkit-user-select: none;
	-webkit-tap-highlight-color: transparent;
}
body.pst-app-route .comment-list .comment-reply-link::before {
	content: "↩";
	margin-right: 5px;
	font-size: 13px;
	line-height: 1;
}
body.pst-app-route .comment-list .comment-reply-link:hover,
body.pst-app-route .comment-list .comment-reply-link:focus-visible {
	border-color: rgba(123, 211, 255, .72);
	background: linear-gradient(135deg, rgba(31, 138, 196, .24), rgba(13, 41, 66, .86));
	color: #d7f3ff;
}
body.pst-app-route .comment-list .comment-reply-link:active {
	transform: translateY(1px);
}
@media (max-width: 767px) {
	body.pst-app-route .comment-list .reply {
		justify-content: flex-start;
		margin-top: 10px;
	}
	body.pst-app-route .comment-list .comment-reply-link {
		min-height: 36px;
		padding: 7px 12px;
		font-size: 12px;
	}
}


/* v0.4.3.3.48: 返信ボタンを左右どちらの操作にも干渉しにくい中央へ配置 */
body.pst-app-route .comment-list .reply {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 14px 0 0;
	padding: 0;
}
body.pst-app-route .comment-list .comment-reply-link {
	margin-inline: auto;
}
@media (max-width: 767px) {
	body.pst-app-route .comment-list .reply {
		justify-content: center;
		margin-top: 12px;
		padding: 0;
	}
	body.pst-app-route .comment-list .comment-reply-link {
		min-height: 36px;
		padding: 7px 14px;
	}
}


/* v0.4.3.3.49: スマホのコメント・回答欄を下部ナビ上へ固定 */
@media (min-width: 901px) {
	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond textarea#comment {
		min-height: 150px;
	}
}

@media (max-width: 900px) {
	body.pst-app-route:is(.single-pst_question, .single-pst_report).pst-has-sticky-comment-composer {
		padding-bottom: calc(82px + var(--pst-sticky-composer-height, 64px) + env(safe-area-inset-bottom)) !important;
	}

	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond.pst-sticky-comment-composer,
	body.pst-app-route:is(.single-pst_question, .single-pst_report) .comments-area #respond.pst-sticky-comment-composer,
	body.pst-app-route:is(.single-pst_question, .single-pst_report) .comments-area .comment-list + #respond.pst-sticky-comment-composer {
		position: fixed;
		z-index: 9997;
		left: 0;
		right: 0;
		bottom: calc(66px + env(safe-area-inset-bottom));
		width: 100%;
		max-width: none;
		margin: 0 !important;
		padding: 8px max(10px, env(safe-area-inset-right)) 8px max(10px, env(safe-area-inset-left)) !important;
		border: 0;
		border-top: 1px solid rgba(151, 181, 216, .24);
		border-radius: 0;
		background: rgba(5, 14, 25, .97);
		box-shadow: 0 -10px 28px rgba(0, 0, 0, .36);
		backdrop-filter: blur(16px);
		-webkit-backdrop-filter: blur(16px);
		box-sizing: border-box;
	}

	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond.pst-sticky-comment-composer .comment-reply-title,
	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond.pst-sticky-comment-composer .comment-notes,
	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond.pst-sticky-comment-composer .pst-note,
	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond.pst-sticky-comment-composer .logged-in-as,
	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond.pst-sticky-comment-composer .pst-comment-collapse-toggle {
		display: none !important;
	}

	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond.pst-sticky-comment-composer form {
		margin: 0;
	}

	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond.pst-sticky-comment-composer .pst-sticky-compose-row {
		display: flex;
		align-items: flex-end;
		gap: 8px;
		width: 100%;
	}

	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond.pst-sticky-comment-composer .comment-form-comment {
		flex: 1 1 auto;
		min-width: 0;
		margin: 0;
	}

	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond.pst-sticky-comment-composer textarea#comment {
		display: block;
		width: 100%;
		height: 44px;
		min-height: 44px;
		max-height: 104px;
		margin: 0;
		padding: 10px 16px;
		border: 1px solid rgba(160, 185, 214, .32);
		border-radius: 22px;
		background: rgba(244, 247, 251, .98);
		box-shadow: inset 0 1px 2px rgba(0, 0, 0, .10);
		color: #172033;
		font-size: 16px;
		line-height: 1.4;
		resize: none;
		box-sizing: border-box;
		transition: border-color .18s ease, box-shadow .18s ease;
	}

	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond.pst-sticky-comment-composer textarea#comment:focus {
		border-color: rgba(239, 194, 73, .78);
		box-shadow: 0 0 0 3px rgba(239, 194, 73, .12), inset 0 1px 2px rgba(0, 0, 0, .08);
		outline: none;
	}

	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond.pst-sticky-comment-composer .form-submit {
		flex: 0 0 auto;
		margin: 0;
	}

	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond.pst-sticky-comment-composer .form-submit input[type="submit"],
	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond.pst-sticky-comment-composer .form-submit button[type="submit"] {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: auto;
		min-width: 66px;
		height: 44px;
		min-height: 44px;
		margin: 0;
		padding: 0 17px;
		border: 1px solid rgba(255, 255, 255, .10);
		border-radius: 22px;
		background: linear-gradient(145deg, #ff3037, #e71820);
		box-shadow: 0 7px 18px rgba(255, 34, 42, .20), inset 0 1px 0 rgba(255, 255, 255, .14);
		color: #fff;
		font-size: 14px;
		font-weight: 900;
		line-height: 1;
		white-space: nowrap;
	}

	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond.pst-sticky-comment-composer .pst-sticky-reply-context {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
		width: 100%;
		margin: 0 0 7px;
		padding: 6px 8px 6px 12px;
		border: 1px solid rgba(226, 184, 76, .38);
		border-radius: 11px;
		background: rgba(75, 56, 14, .30);
		color: #f4d77d;
		font-size: 12px;
		font-weight: 800;
		box-sizing: border-box;
	}

	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond.pst-sticky-comment-composer .pst-sticky-reply-context[hidden] {
		display: none !important;
	}

	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond.pst-sticky-comment-composer .pst-sticky-reply-text::before {
		content: "↳";
		margin-right: 5px;
	}

	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond.pst-sticky-comment-composer .pst-sticky-reply-cancel {
		display: grid;
		place-items: center;
		flex: 0 0 28px;
		width: 28px;
		height: 28px;
		padding: 0;
		border: 1px solid rgba(244, 215, 125, .28);
		border-radius: 50%;
		background: rgba(255, 255, 255, .055);
		color: #f7e5aa;
		font-size: 18px;
		line-height: 1;
	}
}


/* v0.4.3.3.50: スマホの投稿欄を常時ビューポート下部に固定 */
@media (max-width: 900px) {
	body.pst-app-route:is(.single-pst_question, .single-pst_report) > #respond.pst-sticky-comment-composer {
		position: fixed !important;
		inset: auto 0 calc(66px + env(safe-area-inset-bottom)) 0 !important;
		transform: none !important;
		visibility: visible !important;
		opacity: 1 !important;
	}

	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond.pst-sticky-comment-composer textarea#comment::placeholder {
		color: #6f7887;
		opacity: 1;
	}
}


/* v0.4.3.3.51: スマホ固定コメント欄と重複するCocoon開閉ボタンを非表示 */
@media (max-width: 900px) {
	body.pst-app-route:is(.single-pst_question, .single-pst_report) .comment-form-button,
	body.pst-app-route:is(.single-pst_question, .single-pst_report) #comment-reply-btn.comment-btn,
	body.pst-app-route:is(.single-pst_question, .single-pst_report) a.comment-btn[href*="#comment-area"] {
		display: none !important;
		margin: 0 !important;
		padding: 0 !important;
	}
}

/* 通報機能 */
.pst-report-control{position:relative;display:inline-block;margin-left:10px;font-size:12px;color:#858b96}.pst-report-control>summary{cursor:pointer;list-style:none;text-decoration:underline;text-underline-offset:3px}.pst-report-control>summary::-webkit-details-marker{display:none}.pst-report-control[open]::before{content:"";position:fixed;inset:0;z-index:9998;background:rgba(0,0,0,.58)}.pst-report-form{position:fixed;left:50%;top:50%;z-index:9999;box-sizing:border-box;width:min(420px,calc(100vw - 34px));max-height:calc(100vh - 40px);overflow:auto;transform:translate(-50%,-50%);padding:16px;border:1px solid rgba(255,255,255,.14);border-radius:12px;background:#17191e;box-shadow:0 18px 50px rgba(0,0,0,.52);text-align:left}.pst-report-form label{display:block;margin:0 0 12px;font-weight:700;color:#f2f2f2}.pst-report-form select,.pst-report-form textarea{box-sizing:border-box;width:100%;margin-top:6px;padding:10px;border:1px solid rgba(255,255,255,.16);border-radius:8px;background:#0f1115;color:#fff}.pst-report-form textarea{min-height:90px;resize:vertical}.pst-report-form button{display:block;width:100%;margin-top:4px;padding:11px 12px;border:0;border-radius:8px;background:#b3261e;color:#fff;font-weight:700;cursor:pointer}.pst-report-login-link{margin-left:10px;font-size:12px;color:#858b96;text-decoration:underline}.pst-thread-like-wrap{display:flex;align-items:center;justify-content:flex-end;gap:4px;flex-wrap:wrap}.pst-comment-like-wrap{display:flex;align-items:center;justify-content:flex-end;gap:4px;flex-wrap:wrap}
@media(max-width:600px){.pst-report-form{top:auto;left:17px;right:17px;bottom:92px;width:auto;max-height:70vh;transform:none;padding:14px}}


/* v0.4.3.3.55 Whole question card opens the post */
.pst-question-row[data-pst-href] {
	cursor: pointer;
	-webkit-tap-highlight-color: rgba(242, 196, 84, .18);
}
.pst-question-row[data-pst-href]:active {
	filter: brightness(.94);
}
@media (hover: none) {
	.pst-question-row[data-pst-href]:hover {
		transform: none;
	}
}

/* Notifications v0.4.3.3.57 */
.pst-notification-bell{position:relative;display:inline-flex;align-items:center;justify-content:center;width:42px;height:42px;border:1px solid rgba(212,175,55,.55);border-radius:50%;background:#161616;text-decoration:none;font-size:19px;line-height:1}
.pst-notification-bell:hover{transform:translateY(-1px);border-color:#f1cc5b}
.pst-notification-bell b{position:absolute;right:-5px;top:-7px;min-width:20px;height:20px;padding:0 5px;border-radius:999px;background:#e32929;color:#fff;font-size:11px;line-height:20px;text-align:center;box-shadow:0 0 0 2px #111}
.pst-notification-heading{display:flex;align-items:center;justify-content:space-between;gap:12px}.pst-notification-heading h2{margin:0}.pst-notification-heading-count{display:inline-flex;align-items:center;justify-content:center;min-width:25px;height:25px;padding:0 7px;border-radius:999px;background:#e32929;color:#fff;font-size:13px}
.pst-mark-all{display:inline-flex;padding:8px 12px;border:1px solid rgba(212,175,55,.5);border-radius:9px;color:#f1cc5b;text-decoration:none;font-size:13px;font-weight:700}
.pst-notification-list{overflow:hidden;margin-top:14px;border:1px solid rgba(212,175,55,.25);border-radius:12px}.pst-notification-item{position:relative;display:flex;align-items:center;gap:12px;padding:14px 15px;border-bottom:1px solid rgba(255,255,255,.08);background:#161616;color:#eee;text-decoration:none}.pst-notification-item:last-child{border-bottom:0}.pst-notification-item:hover{background:#202020}.pst-notification-item.is-unread{background:rgba(92,16,16,.34)}
.pst-notification-dot{width:9px;height:9px;flex:0 0 9px;border-radius:50%;background:transparent}.pst-notification-item.is-unread .pst-notification-dot{background:#f02b2b;box-shadow:0 0 8px rgba(240,43,43,.7)}.pst-notification-icon{display:inline-flex;align-items:center;justify-content:center;width:32px;height:32px;border-radius:50%;background:#292929;color:#efc952;font-weight:800}.pst-notification-copy{display:flex;min-width:0;flex:1;flex-direction:column;gap:3px}.pst-notification-copy strong{font-size:14px}.pst-notification-copy small{color:#aaa;font-size:12px}
.pst-notification-settings-form{display:grid;gap:12px;margin-top:15px}.pst-toggle-row{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:14px;border:1px solid rgba(212,175,55,.25);border-radius:11px;background:#171717;cursor:pointer}.pst-toggle-row>span{display:flex;flex-direction:column;gap:3px}.pst-toggle-row small{color:#aaa}.pst-toggle-row input{position:absolute;opacity:0;pointer-events:none}.pst-toggle-row i{position:relative;width:48px;height:26px;flex:0 0 48px;border-radius:99px;background:#555;transition:.2s}.pst-toggle-row i:after{content:"";position:absolute;top:3px;left:3px;width:20px;height:20px;border-radius:50%;background:#fff;transition:.2s}.pst-toggle-row input:checked+i{background:#b88a18}.pst-toggle-row input:checked+i:after{transform:translateX(22px)}
@media(max-width:700px){.pst-header-actions .pst-notification-bell{width:38px;height:38px}.pst-notification-heading{align-items:flex-start}.pst-mark-all{padding:7px 9px;font-size:12px}.pst-notification-item{padding:13px 11px}.pst-toggle-row{padding:13px 11px}}

/* My page tabs v0.4.3.3.58 */
.pst-mypage-tabs{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:8px;margin:22px 0 14px;padding:8px;border:1px solid rgba(212,175,55,.38);border-radius:14px;background:#111}
.pst-mypage-tab{min-height:48px;padding:10px 12px;border:1px solid rgba(212,175,55,.28);border-radius:10px;background:#1b1b1b;color:#ddd;font:inherit;font-size:14px;font-weight:700;line-height:1.35;cursor:pointer;transition:transform .16s ease,border-color .16s ease,background .16s ease,color .16s ease}
.pst-mypage-tab:hover{border-color:rgba(241,204,91,.75);background:#242424;transform:translateY(-1px)}
.pst-mypage-tab.is-active{border-color:#e5bd47;background:linear-gradient(180deg,#3b2c09,#231a07);color:#ffe79b;box-shadow:inset 0 0 0 1px rgba(255,226,129,.12),0 0 14px rgba(212,175,55,.12)}
.pst-mypage-tab:focus-visible{outline:2px solid #f1cc5b;outline-offset:2px}
.pst-mypage-tab-panel[hidden]{display:none!important}
.pst-mypage-tab-panel>.pst-section:first-child{margin-top:0}
@media(max-width:700px){.pst-mypage-tabs{grid-template-columns:repeat(2,minmax(0,1fr));gap:7px;padding:7px}.pst-mypage-tab{min-height:52px;padding:9px 7px;font-size:13px}}


/* v0.4.3.3.61 統合検索 */
.pst-search-lead { margin: 8px 0 0; color: var(--pst-muted, #a8b3c4); }
.pst-community-search-form { align-items: stretch; }
.pst-community-search-form input { min-width: 260px; }
.pst-community-search-form select { min-width: 150px; }
.pst-search-hint { margin-top: 12px; font-size: 13px; color: var(--pst-muted, #9ca9bb); }
.pst-search-summary { padding-bottom: 0; }
.pst-search-summary-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.pst-search-summary-row h2 { margin: 0; }
.pst-search-summary-row > span { flex: 0 0 auto; padding: 6px 12px; border: 1px solid rgba(232,196,91,.45); border-radius: 999px; color: #f0d36c; font-weight: 700; }
.pst-search-machine-section h2,
.pst-search-post-section h2 { margin-bottom: 16px; }
.pst-search-pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 24px; }
.pst-search-pagination .page-numbers { min-width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; text-decoration: none; }
.pst-search-pagination .current { border-color: rgba(232,196,91,.8); color: #f0d36c; background: rgba(232,196,91,.09); }
@media (max-width: 700px) {
  .pst-community-search-form { display: grid; grid-template-columns: 1fr 1fr; }
  .pst-community-search-form input { grid-column: 1 / -1; min-width: 0; }
  .pst-community-search-form select { min-width: 0; width: 100%; }
  .pst-community-search-form button { grid-column: 1 / -1; width: 100%; }
  .pst-search-summary-row { align-items: flex-start; }
}


/* v0.4.3.3.62 スペース区切りAND検索 */
.pst-hero-search-help { margin: 9px 0 0; color: #a9b5c5; font-size: 12px; font-weight: 700; }
.pst-search-hint strong { color: #f0d36c; }
.pst-search-hint-sub { margin-top: 5px; }
.pst-category-search-help { margin: 9px 2px 0; color: var(--pst-muted, #9ca9bb); font-size: 12px; }
@media (max-width: 700px) {
  .pst-hero-search-help { font-size: 11px; }
  .pst-category-search-help { line-height: 1.55; }
}


/* v0.4.3.3.63: 実戦報告検索・並べ替え */
.pst-category-search-form select {
	min-height: 46px;
	padding: 0 38px 0 14px;
	border: 1px solid rgba(225, 190, 92, .34);
	border-radius: 12px;
	background: rgba(10, 16, 28, .94);
	color: #f7f1df;
	font: inherit;
}
.pst-category-search-form select:focus {
	outline: 2px solid rgba(238, 196, 86, .42);
	outline-offset: 1px;
}
@media (max-width: 640px) {
	.pst-report-archive-search .pst-category-search-form {
		grid-template-columns: 1fr 1fr;
	}
	.pst-report-archive-search .pst-category-search-input-wrap {
		grid-column: 1 / -1;
	}
	.pst-report-archive-search .pst-category-search-form select,
	.pst-report-archive-search .pst-category-search-form button {
		width: 100%;
	}
}

/* v0.4.3.3.64: カテゴリTOPへの導線・同カテゴリ関連投稿 */
.pst-post-next-navigation {
	margin: 24px 0 4px;
}
.pst-category-return-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	width: 100%;
	min-height: 52px;
	padding: 12px 18px;
	border: 1px solid rgba(237, 196, 84, .58);
	border-radius: 14px;
	background: linear-gradient(180deg, rgba(45, 35, 14, .94), rgba(23, 20, 13, .96));
	box-shadow: inset 0 0 0 1px rgba(255, 229, 143, .08), 0 8px 24px rgba(0, 0, 0, .2);
	color: #f5d878;
	font-size: 15px;
	font-weight: 800;
	text-decoration: none;
	transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.pst-category-return-button:hover,
.pst-category-return-button:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(255, 220, 111, .88);
	box-shadow: inset 0 0 0 1px rgba(255, 229, 143, .12), 0 12px 28px rgba(0, 0, 0, .28);
	color: #ffe59a;
}
.pst-related-category-block {
	margin-top: 22px;
}
.pst-related-category-heading {
	margin: 0 0 12px;
}
.pst-related-category-heading > span {
	display: block;
	margin-bottom: 3px;
	color: #d6b752;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .1em;
}
.pst-related-category-heading h2 {
	margin: 0;
	font-size: clamp(18px, 2.4vw, 23px);
}
.pst-related-category-list {
	display: grid;
	gap: 12px;
}
@media (max-width: 640px) {
	.pst-post-next-navigation {
		margin-top: 18px;
	}
	.pst-category-return-button {
		min-height: 50px;
		font-size: 14px;
	}
}

/* v0.4.3.3.65 Post engagement stats: likes / comments / views */
.pst-question-row-stats {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 6px;
	white-space: nowrap;
}
.pst-card-stat {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	min-height: 30px;
	padding: 3px 7px;
	border: 0;
	border-radius: 7px;
	background: rgba(255,255,255,.035);
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none !important;
}
.pst-card-stat svg { width: 14px; height: 14px; }
.pst-card-like-count { color: #ff8b99; }
.pst-stat-heart { font-size: 15px; line-height: 1; }
.pst-answer-count { color: #9cc8ff !important; }
.pst-view-count { color: #9fc9df; }
.pst-report-row .pst-question-row-stats { margin-left: 3px; }
.pst-report-row .pst-card-stat { min-width: 0; padding: 4px 6px; }
.pst-report-row .pst-card-stat svg { width: 13px; height: 13px; }
.pst-report-row .pst-report-icon,
.pst-report-row .pst-report-row-main > span a,
.pst-report-row .pst-answer-count {
	position: relative;
	z-index: 2;
}
.pst-report-row[data-pst-href] { cursor: pointer; }
.pst-report-row[data-pst-href]:active { transform: translateY(0); }
@media (max-width: 767px) {
	.pst-question-row-stats { gap: 3px; }
	.pst-card-stat { min-height: 28px; padding: 3px 5px; font-size: 10px; }
	.pst-card-stat svg { width: 13px; height: 13px; }
	.pst-report-row { grid-template-columns: 36px minmax(0,1fr) auto; gap: 8px; }
	.pst-report-row .pst-question-row-stats { grid-column: auto; justify-self: end; margin-top: 0; gap: 2px; }
}

/* v0.4.3.3.66 Detail engagement stats: compact, consistent and tappable */
.pst-thread-like-wrap {
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}
.pst-thread-engagement {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	white-space: nowrap;
}
.pst-thread-engagement .pst-card-stat {
	min-width: 52px;
	min-height: 36px;
	padding: 5px 10px;
	font-size: 13px;
}
.pst-thread-like-button {
	width: auto;
	font: inherit;
	box-shadow: none;
	cursor: pointer;
	transition: background .18s ease, color .18s ease, transform .18s ease;
}
.pst-thread-like-button:hover {
	transform: translateY(-1px);
	background: rgba(255,75,96,.10);
}
.pst-thread-like-button.is-liked {
	border: 0;
	background: rgba(255,75,96,.15);
	color: #ff8b99;
}
.pst-thread-like-button .pst-like-count {
	min-width: 0;
	padding-left: 0;
	border-left: 0;
}
.pst-thread-like-wrap .pst-report-control,
.pst-thread-like-wrap .pst-report-login-link {
	margin-left: auto;
}

@media (max-width: 767px) {
	.pst-thread-like-wrap {
		align-items: flex-end;
		flex-wrap: wrap;
	}
	.pst-thread-engagement {
		gap: 5px;
	}
	.pst-thread-engagement .pst-card-stat {
		min-width: 46px;
		min-height: 34px;
		padding: 5px 8px;
		font-size: 12px;
	}
	.pst-thread-like-wrap .pst-thread-like-button {
		width: auto;
		justify-content: center;
	}
}

/* v0.4.3.3.67 Comment/reply engagement stats */
body.pst-app-route .comment-list .pst-comment-like-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 14px;
	padding-top: 12px;
	border-top: 1px solid rgba(145,177,212,.14);
}
body.pst-app-route .comment-list .pst-comment-engagement {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	white-space: nowrap;
}
body.pst-app-route .comment-list .pst-comment-engagement .pst-card-stat {
	min-width: 48px;
	min-height: 32px;
	padding: 4px 8px;
	font-size: 12px;
}
body.pst-app-route .comment-list .pst-comment-like-button {
	width: auto;
	font: inherit;
	box-shadow: none;
	cursor: pointer;
}
body.pst-app-route .comment-list .pst-comment-like-button .pst-like-count {
	min-width: 0;
	padding-left: 0;
	border-left: 0;
}
body.pst-app-route .comment-list .pst-comment-like-button.is-liked {
	border: 0;
	background: rgba(255,75,96,.15);
	color: #ff8b99;
}
body.pst-app-route .comment-list .pst-comment-reply-count {
	color: #9cc8ff;
}
body.pst-app-route .comment-list .pst-comment-like-wrap .pst-report-control,
body.pst-app-route .comment-list .pst-comment-like-wrap .pst-report-login-link {
	margin-left: auto;
}
@media (max-width: 767px) {
	body.pst-app-route .comment-list .pst-comment-like-wrap {
		align-items: flex-end;
		flex-wrap: wrap;
		gap: 8px;
	}
	body.pst-app-route .comment-list .pst-comment-engagement {
		gap: 4px;
	}
	body.pst-app-route .comment-list .pst-comment-engagement .pst-card-stat {
		min-width: 44px;
		min-height: 30px;
		padding: 4px 6px;
		font-size: 11px;
	}
}



/* v0.4.3.3.71: 実戦報告フォームを簡潔化 */
.pst-entry-form textarea.pst-report-comment-input {
    min-height: 92px;
    height: 92px;
    resize: vertical;
}


/* v0.4.3.3.76 Compact My Page report list */
.pst-my-posts-section.is-report-list {
	margin-top: 20px;
}
.pst-my-posts-section.is-report-list .pst-my-posts-heading {
	margin-bottom: 9px;
}
.pst-my-posts-section.is-report-list .pst-my-posts-heading h2 {
	position: relative;
	padding-left: 13px;
	font-size: clamp(25px, 3.8vw, 34px);
	line-height: 1.2;
}
.pst-my-posts-section.is-report-list .pst-my-posts-heading h2::before {
	content: '';
	position: absolute;
	left: 0;
	top: .12em;
	bottom: .12em;
	width: 3px;
	border-radius: 999px;
	background: linear-gradient(180deg, #ffd66b, #ff8a3d);
	box-shadow: 0 0 10px rgba(255, 179, 61, .24);
}
.pst-my-report-list {
	display: grid;
	gap: 7px;
}
.pst-my-report-row {
	margin: 0;
	border: 1px solid rgba(145, 177, 213, .23);
	border-radius: 11px;
	background: linear-gradient(145deg, rgba(9, 25, 43, .94), rgba(5, 16, 29, .96));
	overflow: hidden;
	box-shadow: 0 7px 18px rgba(0, 0, 0, .12);
	transition: border-color .16s ease, transform .16s ease, box-shadow .16s ease;
}
.pst-my-report-row:hover {
	border-color: rgba(229, 189, 71, .62);
	transform: translateY(-1px);
	box-shadow: 0 9px 24px rgba(0, 0, 0, .2);
}
.pst-my-report-row-link {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr) auto 10px;
	align-items: center;
	gap: 9px;
	min-height: 66px;
	padding: 8px 10px;
	color: #fff !important;
	text-decoration: none !important;
}
.pst-my-report-row-link:focus-visible {
	outline: 2px solid #efc75f;
	outline-offset: -2px;
}
.pst-my-report-icon {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(255, 174, 87, .34);
	border-radius: 10px;
	background: linear-gradient(180deg, rgba(255, 174, 87, .14), rgba(255, 138, 61, .06));
	color: #ffae57;
}
.pst-my-report-icon svg {
	width: 21px;
	height: 21px;
}
.pst-my-report-main {
	min-width: 0;
}
.pst-my-report-main strong {
	display: block;
	overflow: hidden;
	color: #f7f9fc;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.35;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.pst-my-report-main small {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-top: 4px;
	color: #8192a8;
	font-size: 9px;
}
.pst-my-report-status {
	display: inline-flex;
	align-items: center;
	min-height: 18px;
	padding: 1px 6px;
	border: 1px solid rgba(117, 221, 165, .26);
	border-radius: 999px;
	background: rgba(65, 181, 118, .09);
	color: #85dcae;
	font-weight: 800;
}
.pst-my-report-status.is-pending {
	border-color: rgba(255, 196, 87, .28);
	background: rgba(255, 179, 61, .08);
	color: #efc66b;
}
.pst-my-report-status.is-draft {
	border-color: rgba(158, 173, 194, .25);
	background: rgba(132, 150, 177, .08);
	color: #aeb9c9;
}
.pst-my-report-stats {
	display: inline-flex;
	align-items: center;
	gap: 3px;
}
.pst-my-report-stats > span {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	min-height: 26px;
	padding: 3px 5px;
	border-radius: 8px;
	background: rgba(16, 34, 56, .82);
	font-size: 9px;
	font-weight: 800;
	line-height: 1;
}
.pst-my-report-stats svg {
	width: 12px;
	height: 12px;
}
.pst-my-report-stats .is-like { color: #ff8e9d; }
.pst-my-report-stats .is-like > span { font-size: 13px; }
.pst-my-report-stats .is-comment { color: #83cfff; }
.pst-my-report-stats .is-view { color: #84d6af; }
.pst-my-report-arrow {
	color: #d9b95f;
	font-size: 20px;
	line-height: 1;
}
@media (max-width: 520px) {
	.pst-my-posts-section.is-report-list .pst-my-posts-heading h2 {
		font-size: 27px;
	}
	.pst-my-report-row-link {
		grid-template-columns: 34px minmax(0, 1fr) auto 8px;
		gap: 7px;
		min-height: 60px;
		padding: 7px 8px;
	}
	.pst-my-report-icon {
		width: 32px;
		height: 32px;
		border-radius: 9px;
	}
	.pst-my-report-icon svg {
		width: 19px;
		height: 19px;
	}
	.pst-my-report-main strong {
		font-size: 13px;
	}
	.pst-my-report-main small {
		gap: 5px;
		font-size: 8px;
	}
	.pst-my-report-stats > span {
		min-height: 24px;
		padding: 3px 4px;
		font-size: 8px;
	}
	.pst-my-report-stats svg {
		width: 11px;
		height: 11px;
	}
}
@media (max-width: 390px) {
	.pst-my-report-row-link {
		grid-template-columns: 31px minmax(0, 1fr) auto 7px;
		gap: 5px;
		padding-inline: 7px;
	}
	.pst-my-report-icon {
		width: 30px;
		height: 30px;
	}
	.pst-my-report-icon svg {
		width: 18px;
		height: 18px;
	}
	.pst-my-report-stats {
		gap: 2px;
	}
	.pst-my-report-stats > span {
		min-height: 22px;
		padding: 2px 3px;
		font-size: 8px;
	}
	.pst-my-report-stats .is-like > span {
		font-size: 11px;
	}
	.pst-my-report-stats svg {
		width: 10px;
		height: 10px;
	}
	.pst-my-report-arrow {
		font-size: 17px;
	}
}


/* v0.4.3.3.78 my page user header + notifications refine */
.pst-profile-head-refined {
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr);
	align-items: center;
	gap: 18px;
	padding: 18px 20px;
	background: linear-gradient(145deg, rgba(10, 26, 47, .92), rgba(5, 16, 31, .95));
	border: 1px solid rgba(116, 149, 188, .22);
	box-shadow: 0 10px 28px rgba(0,0,0,.18);
}
.pst-profile-head-avatar-wrap {
	display: grid;
	place-items: center;
	width: 92px;
	height: 92px;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, rgba(255,192,82,.18), rgba(255,68,90,.04) 58%, rgba(11,24,43,.1) 72%);
	box-shadow: inset 0 0 0 1px rgba(212,175,55,.28);
}
.pst-profile-head-refined .avatar {
	flex: 0 0 82px;
	width: 82px;
	height: 82px;
	border: 2px solid rgba(255,255,255,.18);
	box-shadow: 0 10px 22px rgba(0,0,0,.24), 0 0 0 5px rgba(255,170,64,.06);
}
.pst-profile-summary { display: grid; gap: 8px; }
.pst-profile-kicker {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 4px 9px;
	border-radius: 999px;
	background: rgba(255,184,76,.1);
	border: 1px solid rgba(255,184,76,.22);
	color: #f4ca72;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .08em;
}
.pst-profile-head-refined h1 {
	margin: 0;
	font-size: clamp(34px, 5.8vw, 50px);
	line-height: 1.05;
}
.pst-profile-meta-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}
.pst-profile-head-refined .pst-profile-username {
	margin: 0;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.08);
	font-size: 13px;
}
.pst-profile-actions { display: flex; align-items: center; gap: 10px; }
.pst-profile-logout {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 14px;
	border-radius: 10px;
	border: 1px solid rgba(212,175,55,.42);
	background: rgba(22,24,29,.62);
	color: #f3f5f8 !important;
	text-decoration: none;
	font-weight: 700;
}
.pst-profile-logout:hover {
	border-color: rgba(242, 196, 84, .92);
	background: rgba(29,34,41,.88);
}
.pst-notification-panel-refined {
	padding: 18px 20px;
	background: linear-gradient(145deg, rgba(10, 26, 47, .92), rgba(5, 16, 31, .95));
}
.pst-notification-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}
.pst-notification-heading-main {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}
.pst-notification-heading-icon,
.pst-notification-empty-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(180deg, rgba(255,193,81,.16), rgba(255,132,61,.08));
	border: 1px solid rgba(255,193,81,.24);
	font-size: 20px;
}
.pst-notification-heading-copy { min-width: 0; }
.pst-notification-heading-copy h2 { margin: 0; font-size: 18px; }
.pst-notification-heading-copy p {
	margin: 4px 0 0;
	color: var(--pst-muted);
	font-size: 12px;
}
.pst-notification-heading-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: flex-end;
}
.pst-notification-heading-count {
	min-width: 30px;
	height: 30px;
	padding: 0 10px;
	font-size: 14px;
	font-weight: 800;
	box-shadow: 0 0 0 3px rgba(227,41,41,.12);
}
.pst-notification-empty {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	margin-top: 15px;
	padding: 16px 14px;
	border: 1px solid rgba(212,175,55,.18);
	border-radius: 14px;
	background: rgba(255,255,255,.02);
}
.pst-notification-empty-copy strong {
	display: block;
	font-size: 16px;
	color: #eff4fa;
}
.pst-notification-empty-copy p {
	margin: 4px 0 0;
	color: var(--pst-muted);
	font-size: 12px;
}
@media (max-width: 700px) {
	.pst-profile-head-refined {
		grid-template-columns: 74px minmax(0, 1fr);
		gap: 14px;
		padding: 16px 15px;
	}
	.pst-profile-head-avatar-wrap {
		width: 74px;
		height: 74px;
	}
	.pst-profile-head-refined .avatar {
		width: 66px;
		height: 66px;
		flex-basis: 66px;
	}
	.pst-profile-kicker { font-size: 10px; padding: 3px 8px; }
	.pst-profile-head-refined h1 { font-size: clamp(26px, 8vw, 38px); }
	.pst-profile-head-refined .pst-profile-username { font-size: 12px; padding: 6px 10px; }
	.pst-profile-logout { min-height: 34px; padding: 0 12px; font-size: 13px; }
	.pst-notification-panel-refined { padding: 16px 15px; }
	.pst-notification-heading { align-items: flex-start; flex-direction: column; }
	.pst-notification-heading-actions { width: 100%; justify-content: space-between; }
	.pst-notification-heading-icon, .pst-notification-empty-icon { width: 40px; height: 40px; font-size: 18px; }
	.pst-notification-heading-copy h2 { font-size: 17px; }
	.pst-notification-empty { grid-template-columns: 40px minmax(0, 1fr); gap: 12px; padding: 14px 12px; }
	.pst-notification-empty-copy strong { font-size: 15px; }
}


/* v0.4.3.3.79 compact mobile profile + notifications */
.pst-notification-empty {
	grid-template-columns: minmax(0, 1fr);
}
@media (max-width: 700px) {
	.pst-profile-head-refined {
		grid-template-columns: 58px minmax(0, 1fr);
		gap: 11px;
		padding: 12px 13px;
		border-radius: 14px;
		box-shadow: 0 7px 20px rgba(0,0,0,.15);
	}
	.pst-profile-head-avatar-wrap {
		width: 58px;
		height: 58px;
		box-shadow: inset 0 0 0 1px rgba(212,175,55,.22);
	}
	.pst-profile-head-refined .avatar {
		width: 52px;
		height: 52px;
		flex-basis: 52px;
		border-width: 1px;
		box-shadow: 0 6px 14px rgba(0,0,0,.22), 0 0 0 3px rgba(255,170,64,.05);
	}
	.pst-profile-summary {
		gap: 4px;
	}
	.pst-profile-kicker {
		display: none;
	}
	.pst-profile-head-refined h1 {
		font-size: 24px;
		line-height: 1.15;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.pst-profile-meta-row {
		flex-wrap: nowrap;
		gap: 7px;
	}
	.pst-profile-head-refined .pst-profile-username {
		min-width: 0;
		padding: 0;
		border: 0;
		background: transparent;
		font-size: 10px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.pst-profile-logout {
		min-height: 28px;
		padding: 0 9px;
		border-radius: 8px;
		font-size: 11px;
		white-space: nowrap;
	}
	.pst-notification-panel-refined {
		padding: 12px 13px;
		border-radius: 14px;
		box-shadow: 0 7px 20px rgba(0,0,0,.14);
	}
	.pst-notification-heading {
		align-items: center;
		flex-direction: row;
		gap: 8px;
	}
	.pst-notification-heading-main {
		gap: 10px;
	}
	.pst-notification-heading-icon {
		width: 34px;
		height: 34px;
		font-size: 15px;
		flex: 0 0 34px;
	}
	.pst-notification-heading-copy h2 {
		font-size: 16px;
		line-height: 1.1;
	}
	.pst-notification-heading-copy p {
		display: none;
	}
	.pst-notification-heading-actions {
		width: auto;
		margin-left: auto;
		justify-content: flex-end;
		gap: 7px;
		flex-wrap: nowrap;
	}
	.pst-notification-heading-count {
		min-width: 25px;
		height: 25px;
		padding: 0 7px;
		font-size: 12px;
		box-shadow: none;
	}
	.pst-mark-all {
		padding: 5px 7px;
		font-size: 10px;
		white-space: nowrap;
	}
	.pst-notification-empty {
		margin-top: 9px;
		padding: 10px 11px;
		border-radius: 10px;
		background: rgba(255,255,255,.018);
	}
	.pst-notification-empty-copy strong {
		font-size: 13px;
	}
	.pst-notification-empty-copy p {
		margin-top: 2px;
		font-size: 10px;
		line-height: 1.45;
	}
}


/* v0.4.3.3.80 compact mobile profile settings */
.pst-profile-help-mobile { display: none; }
.pst-profile-settings-refined {
	background: linear-gradient(145deg, rgba(10, 26, 47, .92), rgba(5, 16, 31, .95));
	border-color: rgba(116, 149, 188, .22);
}
.pst-profile-settings-refined > h2 {
	display: flex;
	align-items: center;
	gap: 10px;
}
.pst-profile-settings-refined > h2::before {
	content: "";
	width: 4px;
	height: 1.25em;
	border-radius: 999px;
	background: linear-gradient(180deg, #ffc35b, #ff8a3d);
	box-shadow: 0 0 10px rgba(255,163,67,.22);
}
@media (max-width: 700px) {
	.pst-profile-settings-refined {
		padding: 13px;
		border-radius: 14px;
		box-shadow: 0 7px 20px rgba(0,0,0,.14);
	}
	.pst-profile-settings-refined > h2 {
		margin: 0;
		gap: 8px;
		font-size: 19px;
		line-height: 1.2;
	}
	.pst-profile-settings-refined > h2::before {
		width: 3px;
		height: 21px;
	}
	.pst-profile-settings-intro {
		margin: 6px 0 0;
		font-size: 10px;
		line-height: 1.45;
	}
	.pst-profile-settings-refined .pst-profile-form {
		gap: 11px;
		margin-top: 11px;
	}
	.pst-profile-avatar-editor {
		grid-template-columns: 50px minmax(0, 1fr);
		align-items: center;
		gap: 9px;
		padding: 9px;
		border-radius: 10px;
		background: rgba(255,255,255,.018);
		border-color: rgba(212,175,55,.18);
	}
	.pst-profile-avatar-preview .avatar {
		width: 50px;
		height: 50px;
		border-width: 1px;
		box-shadow: 0 5px 13px rgba(0,0,0,.22), 0 0 0 3px rgba(255,170,64,.05);
	}
	.pst-profile-avatar-fields {
		gap: 4px;
	}
	.pst-profile-avatar-upload {
		gap: 4px !important;
		font-size: 11px;
		line-height: 1.25;
	}
	.pst-profile-avatar-upload .pst-optional {
		font-size: 9px;
	}
	.pst-profile-avatar-fields input[type="file"] {
		min-width: 0;
		max-width: 100%;
		margin-top: 2px;
		padding: 4px;
		border-radius: 7px;
		font-size: 9px;
		line-height: 1.2;
	}
	.pst-profile-avatar-fields input[type="file"]::file-selector-button {
		margin-right: 5px;
		padding: 5px 7px;
		border-radius: 5px;
		font-size: 10px;
	}
	.pst-profile-help-desktop { display: none; }
	.pst-profile-help-mobile { display: inline; }
	.pst-profile-avatar-fields .pst-profile-avatar-help {
		font-size: 8.5px;
		line-height: 1.4;
		color: #8494a8;
	}
	.pst-profile-avatar-remove {
		gap: 5px !important;
		font-size: 9px !important;
		line-height: 1.25;
	}
	.pst-profile-settings-refined .pst-profile-form > label {
		gap: 5px;
		font-size: 11px;
	}
	.pst-profile-settings-refined .pst-profile-form > label input[type="text"],
	.pst-profile-settings-refined .pst-profile-form > label input[type="email"] {
		min-height: 42px;
		padding: 9px 11px;
		font-size: 13px;
		border-radius: 9px;
	}
	.pst-profile-settings-refined .pst-submit {
		min-height: 44px;
		font-size: 13px;
		border-radius: 10px;
	}
}


/* v0.4.3.3.82 notification email diagnostics */
.pst-notification-self-note {
	margin-top: 8px;
	padding: 9px 11px;
	border-radius: 9px;
	background: rgba(255, 193, 81, .06);
	border: 1px solid rgba(255, 193, 81, .14);
}
@media (max-width: 700px) {
	.pst-notification-self-note { font-size: 11px; line-height: 1.55; }
}


/* v0.4.3.3.83 question detail + comment composer refinement */
body.pst-app-route .pst-question-detail {
	border: 1px solid rgba(118, 151, 188, .22);
	box-shadow: 0 14px 36px rgba(0,0,0,.18);
}
body.pst-app-route .pst-question-detail-header {
	padding: 22px 22px 18px;
	background:
		radial-gradient(circle at 100% 0, rgba(70,152,255,.10), transparent 34%),
		linear-gradient(145deg, rgba(11,28,48,.98), rgba(6,18,33,.99));
}
body.pst-app-route .pst-question-detail-header .pst-question-author-row {
	padding-bottom: 14px;
}
body.pst-app-route .pst-question-title-block {
	margin-top: 16px;
}
body.pst-app-route .pst-question-field-label {
	margin-bottom: 5px;
	font-size: 11px;
	letter-spacing: .1em;
}
body.pst-app-route .pst-question-detail-header h1 {
	font-size: clamp(24px, 4.5vw, 38px);
	line-height: 1.32;
}
body.pst-app-route .pst-question-detail > .pst-single-content {
	padding: 20px 22px 24px;
}
body.pst-app-route .pst-question-overview {
	gap: 9px;
	margin-bottom: 18px;
}
body.pst-app-route .pst-question-overview-item {
	padding: 12px 13px;
	border-radius: 12px;
	background: linear-gradient(180deg, rgba(11,29,49,.88), rgba(7,20,35,.92));
}
body.pst-app-route .pst-question-body-section {
	padding: 16px 16px 14px;
	border-radius: 16px;
	background: linear-gradient(180deg, rgba(3,12,22,.76), rgba(3,10,19,.92));
	box-shadow: inset 0 1px 0 rgba(255,255,255,.02);
}
body.pst-app-route .pst-question-section-heading {
	gap: 11px;
	margin-bottom: 13px;
	padding-bottom: 12px;
}
body.pst-app-route .pst-question-section-icon {
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: linear-gradient(180deg, rgba(255,63,84,.18), rgba(255,63,84,.08));
	box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
body.pst-app-route .pst-question-section-heading small {
	font-size: 10px;
}
body.pst-app-route .pst-question-section-heading h2 {
	font-size: 20px;
}
body.pst-app-route .pst-question-body-text {
	font-size: 16px;
	line-height: 1.82;
}
body.pst-app-route .pst-question-attachment {
	margin-top: 16px;
	padding: 11px;
	border-radius: 14px;
	background: linear-gradient(180deg, rgba(18,15,7,.28), rgba(8,11,17,.56));
	box-shadow: inset 0 0 0 1px rgba(213,170,76,.08);
}
body.pst-app-route .pst-question-attachment-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 9px;
}
body.pst-app-route .pst-question-attachment-title {
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .03em;
}
body.pst-app-route .pst-question-attachment-note {
	font-size: 11px;
	color: #97a8be;
}
body.pst-app-route .pst-question-attachment-item {
	border-radius: 12px;
	overflow: hidden;
}
body.pst-app-route .pst-question-attachment-image {
	border-radius: 12px;
}
body.pst-app-route .pst-thread-like-wrap {
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: 12px;
}
body.pst-app-route .pst-thread-engagement {
	gap: 7px;
}
body.pst-app-route .pst-thread-engagement .pst-card-stat,
body.pst-app-route .comment-list .pst-comment-engagement .pst-card-stat {
	min-height: 40px;
	padding: 6px 10px;
	border-radius: 12px;
	background: linear-gradient(180deg, rgba(11,28,48,.94), rgba(7,19,34,.98));
}
body.pst-app-route .pst-thread-like-wrap .pst-report-control,
body.pst-app-route .comment-list .pst-comment-like-wrap .pst-report-control {
	margin-left: auto;
	font-size: 13px;
	color: #9fb1c7;
}
body.pst-app-route .comment-list .comment-body {
	padding: 14px;
	border-radius: 15px;
}
body.pst-app-route .comment-list .comment-content {
	margin-top: 12px;
	padding: 12px 13px;
	border-radius: 12px;
	font-size: 14px;
	line-height: 1.75;
}
body.pst-app-route .comment-list .reply {
	margin-top: 9px;
}
body.pst-app-route .comment-list .comment-reply-link {
	min-height: 32px;
	padding: 5px 11px;
	border-radius: 999px;
	font-size: 11px;
}
@media (max-width: 900px) {
	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond.pst-sticky-comment-composer,
	body.pst-app-route:is(.single-pst_question, .single-pst_report) .comments-area #respond.pst-sticky-comment-composer,
	body.pst-app-route:is(.single-pst_question, .single-pst_report) .comments-area .comment-list + #respond.pst-sticky-comment-composer {
		left: 8px;
		right: 8px;
		bottom: calc(72px + env(safe-area-inset-bottom));
		width: auto;
		padding: 8px 10px !important;
		border: 1px solid rgba(145,177,212,.18);
		border-radius: 18px;
		background: rgba(6, 16, 29, .88);
		box-shadow: 0 12px 30px rgba(0, 0, 0, .28);
	}
	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond.pst-sticky-comment-composer .pst-sticky-compose-row {
		gap: 7px;
		align-items: center;
	}
	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond.pst-sticky-comment-composer textarea#comment {
		height: 42px;
		min-height: 42px;
		max-height: 92px;
		padding: 10px 14px;
		border-radius: 16px;
		font-size: 15px;
		background: rgba(244, 247, 251, .96);
	}
	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond.pst-sticky-comment-composer .form-submit input[type="submit"],
	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond.pst-sticky-comment-composer .form-submit button[type="submit"] {
		min-width: 64px;
		height: 42px;
		min-height: 42px;
		padding: 0 15px;
		border-radius: 16px;
		font-size: 13px;
		box-shadow: 0 6px 16px rgba(255, 34, 42, .18), inset 0 1px 0 rgba(255,255,255,.14);
	}
	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond.pst-sticky-comment-composer .pst-sticky-reply-context {
		margin-bottom: 6px;
		padding: 5px 7px 5px 11px;
		border-radius: 10px;
		font-size: 11px;
	}
	body.pst-app-route .pst-question-detail-header {
		padding: 18px 16px 16px;
	}
	body.pst-app-route .pst-question-detail > .pst-single-content {
		padding: 16px 14px 18px;
	}
	body.pst-app-route .pst-question-detail-header h1 {
		font-size: 22px;
	}
	body.pst-app-route .pst-question-overview-item {
		padding: 10px 11px;
	}
	body.pst-app-route .pst-question-body-section {
		padding: 14px 13px 12px;
		border-radius: 14px;
	}
	body.pst-app-route .pst-question-section-icon {
		width: 40px;
		height: 40px;
		border-radius: 12px;
	}
	body.pst-app-route .pst-question-section-heading h2 {
		font-size: 18px;
	}
	body.pst-app-route .pst-question-body-text {
		font-size: 15px;
		line-height: 1.8;
	}
	body.pst-app-route .pst-thread-like-wrap {
		gap: 8px;
	}
	body.pst-app-route .pst-thread-engagement .pst-card-stat,
	body.pst-app-route .comment-list .pst-comment-engagement .pst-card-stat {
		min-height: 36px;
		padding: 5px 8px;
		border-radius: 11px;
	}
}


/* v0.4.3.3.84 compact comment cards without sacrificing readability */
body.pst-app-route .comment-list > li.comment,
body.pst-app-route .comment-list > li.pingback {
	margin-bottom: 10px;
}
body.pst-app-route .comment-list .comment-body {
	padding: 12px 13px;
}
body.pst-app-route .comment-list .comment-author.vcard {
	min-height: 38px;
	gap: 3px 7px;
}
body.pst-app-route .comment-list .comment-author .avatar {
	flex-basis: 36px;
	width: 36px !important;
	height: 36px !important;
	margin-right: 2px !important;
}
body.pst-app-route .comment-list .comment-metadata {
	margin: -5px 0 0 45px;
}
body.pst-app-route .comment-list .comment-content {
	margin-top: 9px;
	padding: 10px 11px;
	line-height: 1.72;
}
body.pst-app-route .comment-list .comment-content p {
	margin-bottom: 7px;
}
body.pst-app-route .comment-list .pst-comment-like-wrap {
	margin-top: 8px;
}
body.pst-app-route .comment-list .reply {
	margin-top: 7px;
}
body.pst-app-route .comment-list .children {
	margin-top: 10px;
	margin-left: 12px;
	padding-left: 12px;
}
body.pst-app-route .comment-list .children > li.comment {
	margin-bottom: 9px;
}
body.pst-app-route .comment-list .children > li.comment::before {
	left: -12px;
	width: 10px;
}

@media (max-width: 767px) {
	body.pst-app-route .comments-area {
		padding: 10px 8px;
	}
	body.pst-app-route .comments-title,
	body.pst-app-route .comment-reply-title {
		margin-bottom: 12px;
		font-size: 20px;
	}
	body.pst-app-route .comment-list > li.comment,
	body.pst-app-route .comment-list > li.pingback {
		margin-bottom: 8px;
	}
	body.pst-app-route .comment-list .comment-body {
		padding: 10px 11px;
		border-radius: 13px;
	}
	body.pst-app-route .comment-list .comment-author.vcard {
		min-height: 34px;
		gap: 2px 6px;
	}
	body.pst-app-route .comment-list .comment-author .avatar {
		flex-basis: 32px;
		width: 32px !important;
		height: 32px !important;
	}
	body.pst-app-route .comment-list .comment-author .fn,
	body.pst-app-route .comment-list .comment-author .fn a {
		font-size: 13px;
	}
	body.pst-app-route .comment-list .pst-comment-public-id,
	body.pst-app-route .comment-list .comment-metadata {
		font-size: 10px;
	}
	body.pst-app-route .comment-list .comment-metadata {
		margin: -4px 0 0 40px;
	}
	body.pst-app-route .comment-list .comment-content {
		margin-top: 8px;
		padding: 9px 10px;
		font-size: 14px;
		line-height: 1.7;
	}
	body.pst-app-route .comment-list .comment-content p {
		margin-bottom: 6px;
	}
	body.pst-app-route .comment-list .pst-comment-like-wrap {
		margin-top: 7px;
	}
	body.pst-app-route .comment-list .pst-comment-engagement {
		gap: 5px;
	}
	body.pst-app-route .comment-list .pst-comment-engagement .pst-card-stat {
		min-height: 31px;
		padding: 4px 7px;
		border-radius: 9px;
		font-size: 11px;
	}
	body.pst-app-route .comment-list .pst-comment-like-button {
		min-height: 31px;
		padding: 4px 8px;
		border-radius: 9px;
		font-size: 11px;
	}
	body.pst-app-route .comment-list .comment-reply-link {
		min-height: 29px;
		padding: 4px 9px;
		font-size: 10px;
	}
	body.pst-app-route .comment-list .children {
		margin: 8px 0 0 4px;
		padding-left: 10px;
		border-left-width: 2px;
	}
	body.pst-app-route .comment-list .children > li.comment::before {
		left: -10px;
		width: 8px;
	}
}


/* v0.4.3.3.85 keep the mobile comment composer fixed to the viewport */
@media (max-width: 900px) {
	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond.pst-sticky-comment-composer,
	body.pst-app-route:is(.single-pst_question, .single-pst_report) > #respond.pst-sticky-comment-composer,
	body.pst-app-route:is(.single-pst_question, .single-pst_report) .comments-area #respond.pst-sticky-comment-composer,
	body.pst-app-route:is(.single-pst_question, .single-pst_report) .comment-list #respond.pst-sticky-comment-composer {
		position: fixed !important;
		inset: auto 8px calc(72px + env(safe-area-inset-bottom)) 8px !important;
		top: auto !important;
		left: 8px !important;
		right: 8px !important;
		bottom: calc(72px + env(safe-area-inset-bottom)) !important;
		width: auto !important;
		max-width: none !important;
		margin: 0 !important;
		transform: none !important;
		translate: none !important;
		z-index: 9997 !important;
	}
}


/* v0.4.3.3.86 one-column conversation comment system */
body.pst-app-route .pst-conversation-comments {
	max-width: 1180px;
	margin: 18px auto 0;
	padding: 0 20px 18px;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}
body.pst-app-route .pst-conversation-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 0 12px;
	border-bottom: 1px solid rgba(145,177,212,.18);
}
body.pst-app-route .pst-conversation-heading .comments-title {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	font-size: 22px;
}
body.pst-app-route .pst-conversation-heading .comments-title span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 25px;
	height: 25px;
	padding: 0 7px;
	border-radius: 999px;
	background: rgba(116,159,205,.12);
	color: #9db5cf;
	font-size: 12px;
}
body.pst-app-route .pst-conversation-list,
body.pst-app-route .pst-conversation-list .children {
	list-style: none;
	margin: 0;
	padding: 0;
}
body.pst-app-route .pst-conversation-list > .pst-conversation-item {
	margin: 0;
	padding: 0;
	border-bottom: 1px solid rgba(145,177,212,.13);
}
body.pst-app-route .pst-conversation-comment {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 12px;
	padding: 16px 0;
	background: transparent;
}
body.pst-app-route .pst-conversation-avatar .avatar {
	display: block;
	width: 42px !important;
	height: 42px !important;
	margin: 0 !important;
	border: 1px solid rgba(197,215,237,.2);
	border-radius: 50% !important;
	object-fit: cover;
}
body.pst-app-route .pst-conversation-main {
	min-width: 0;
}
body.pst-app-route .pst-conversation-author-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-height: 24px;
}
body.pst-app-route .pst-conversation-author strong,
body.pst-app-route .pst-conversation-author strong a {
	color: #eef3f8;
	font-size: 14px;
	font-style: normal;
	font-weight: 800;
	text-decoration: none;
}
body.pst-app-route .pst-conversation-author .pst-comment-public-id {
	display: inline;
	margin-left: 6px;
	color: #71859d;
	font-size: 10px;
	font-weight: 600;
}
body.pst-app-route .pst-conversation-text {
	position: relative;
	margin-top: 7px;
	padding-right: 0;
	color: #f0f4f8;
	font-size: 15px;
	line-height: 1.72;
	overflow-wrap: anywhere;
}
body.pst-app-route .pst-conversation-text > p {
	margin: 0 0 7px;
}
body.pst-app-route .pst-conversation-text > p:last-of-type {
	margin-bottom: 0;
}
body.pst-app-route .pst-conversation-text .pst-reply-context {
	display: none !important;
}
body.pst-app-route .pst-conversation-text .pst-comment-like-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin: 9px 0 0;
}
body.pst-app-route .pst-conversation-text .pst-comment-engagement {
	display: flex;
	align-items: center;
	gap: 11px;
}
body.pst-app-route .pst-conversation-text .pst-comment-engagement .pst-card-stat,
body.pst-app-route .pst-conversation-text .pst-comment-like-button {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	min-width: auto;
	min-height: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: #8398af;
	font-size: 11px;
}
body.pst-app-route .pst-conversation-text .pst-comment-like-button {
	cursor: pointer;
}
body.pst-app-route .pst-conversation-text .pst-comment-like-button .pst-stat-heart {
	color: #ff7d8d;
	font-size: 15px;
}
body.pst-app-route .pst-conversation-text .pst-comment-like-button.is-liked .pst-stat-heart {
	color: #ff4058;
}
body.pst-app-route .pst-conversation-text .pst-report-control,
body.pst-app-route .pst-conversation-text .pst-report-login-link {
	margin-left: auto;
	color: #71859a;
	font-size: 11px;
}
body.pst-app-route .pst-conversation-footer {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-top: 7px;
}
body.pst-app-route .pst-conversation-date,
body.pst-app-route .pst-conversation-footer .comment-reply-link {
	color: #75889e;
	font-size: 11px;
	font-weight: 600;
	text-decoration: none;
}
body.pst-app-route .pst-conversation-footer .comment-reply-link {
	display: inline;
	min-height: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}
body.pst-app-route .pst-conversation-footer .comment-reply-link::before {
	display: none;
}
body.pst-app-route .pst-conversation-list .children {
	margin: 0 0 0 54px;
	padding: 0;
	border-left: 0;
}
body.pst-app-route .pst-conversation-list .children .pst-conversation-item {
	margin: 0;
	padding: 0;
	border-top: 1px solid rgba(145,177,212,.08);
}
body.pst-app-route .pst-conversation-list .children .pst-conversation-comment {
	grid-template-columns: 34px minmax(0, 1fr);
	gap: 10px;
	padding: 12px 0;
}
body.pst-app-route .pst-conversation-list .children .pst-conversation-avatar .avatar {
	width: 34px !important;
	height: 34px !important;
}
body.pst-app-route .pst-conversation-list .children .children {
	margin-left: 0;
}
body.pst-app-route .pst-conversation-empty {
	margin: 0;
	padding: 18px 0;
	color: #8194aa;
	font-size: 13px;
}
body.pst-app-route .pst-comment-awaiting {
	margin: 0 0 7px !important;
	color: #efc96d;
	font-size: 12px;
}
@media (max-width: 767px) {
	body.pst-app-route .pst-conversation-comments {
		margin-top: 12px;
		padding: 0 14px 14px;
	}
	body.pst-app-route .pst-conversation-heading {
		padding-bottom: 10px;
	}
	body.pst-app-route .pst-conversation-heading .comments-title {
		font-size: 18px;
	}
	body.pst-app-route .pst-conversation-comment {
		grid-template-columns: 38px minmax(0, 1fr);
		gap: 10px;
		padding: 13px 0;
	}
	body.pst-app-route .pst-conversation-avatar .avatar {
		width: 38px !important;
		height: 38px !important;
	}
	body.pst-app-route .pst-conversation-author strong,
	body.pst-app-route .pst-conversation-author strong a {
		font-size: 13px;
	}
	body.pst-app-route .pst-conversation-author .pst-comment-public-id {
		display: block;
		margin: 1px 0 0;
		font-size: 9px;
	}
	body.pst-app-route .pst-conversation-text {
		margin-top: 5px;
		font-size: 14px;
		line-height: 1.7;
	}
	body.pst-app-route .pst-conversation-text .pst-comment-like-wrap {
		margin-top: 7px;
	}
	body.pst-app-route .pst-conversation-text .pst-comment-engagement {
		gap: 9px;
	}
	body.pst-app-route .pst-conversation-footer {
		gap: 13px;
		margin-top: 5px;
	}
	body.pst-app-route .pst-conversation-list .children {
		margin-left: 34px;
	}
	body.pst-app-route .pst-conversation-list .children .pst-conversation-comment {
		grid-template-columns: 30px minmax(0, 1fr);
		gap: 8px;
		padding: 10px 0 11px;
	}
	body.pst-app-route .pst-conversation-list .children .pst-conversation-avatar .avatar {
		width: 30px !important;
		height: 30px !important;
	}
}


/* v0.4.3.3.87 comment reactions/date/reply/report in one row */
body.pst-app-route .pst-conversation-meta-row {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	margin-top: 8px;
	white-space: nowrap;
}
body.pst-app-route .pst-conversation-meta-stats,
body.pst-app-route .pst-conversation-meta-stats .pst-comment-engagement {
	display: flex;
	align-items: center;
	gap: 9px;
	min-width: 0;
}
body.pst-app-route .pst-conversation-meta-stats .pst-card-stat,
body.pst-app-route .pst-conversation-meta-stats .pst-comment-like-button {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	min-width: 0;
	min-height: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: #8398af;
	font-size: 11px;
	line-height: 1;
}
body.pst-app-route .pst-conversation-meta-stats .pst-comment-like-button {
	cursor: pointer;
}
body.pst-app-route .pst-conversation-meta-stats .pst-stat-heart {
	color: #ff7d8d;
	font-size: 15px;
}
body.pst-app-route .pst-conversation-meta-row .pst-conversation-date,
body.pst-app-route .pst-conversation-meta-row .comment-reply-link,
body.pst-app-route .pst-conversation-report .pst-report-control,
body.pst-app-route .pst-conversation-report .pst-report-login-link {
	display: inline-flex;
	align-items: center;
	min-height: 0;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #75889e;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
}
body.pst-app-route .pst-conversation-meta-row .comment-reply-link::before {
	display: inline;
	content: "◯";
	margin-right: 3px;
	font-size: 8px;
}
body.pst-app-route .pst-conversation-report {
	display: inline-flex;
	align-items: center;
	margin-left: auto;
}
body.pst-app-route .pst-conversation-report .pst-report-control > summary {
	text-underline-offset: 3px;
}
@media (max-width: 767px) {
	body.pst-app-route .pst-conversation-meta-row {
		gap: 7px;
		margin-top: 7px;
	}
	body.pst-app-route .pst-conversation-meta-stats,
	body.pst-app-route .pst-conversation-meta-stats .pst-comment-engagement {
		gap: 7px;
	}
	body.pst-app-route .pst-conversation-meta-stats .pst-card-stat,
	body.pst-app-route .pst-conversation-meta-stats .pst-comment-like-button,
	body.pst-app-route .pst-conversation-meta-row .pst-conversation-date,
	body.pst-app-route .pst-conversation-meta-row .comment-reply-link,
	body.pst-app-route .pst-conversation-report .pst-report-control,
	body.pst-app-route .pst-conversation-report .pst-report-login-link {
		font-size: 10px;
	}
	body.pst-app-route .pst-conversation-meta-stats .pst-stat-heart {
		font-size: 14px;
	}
}
@media (max-width: 360px) {
	body.pst-app-route .pst-conversation-meta-row { gap: 5px; }
	body.pst-app-route .pst-conversation-meta-stats,
	body.pst-app-route .pst-conversation-meta-stats .pst-comment-engagement { gap: 5px; }
	body.pst-app-route .pst-conversation-meta-stats .pst-card-stat,
	body.pst-app-route .pst-conversation-meta-stats .pst-comment-like-button,
	body.pst-app-route .pst-conversation-meta-row .pst-conversation-date,
	body.pst-app-route .pst-conversation-meta-row .comment-reply-link,
	body.pst-app-route .pst-conversation-report .pst-report-control,
	body.pst-app-route .pst-conversation-report .pst-report-login-link { font-size: 9px; }
}


/* v0.4.3.3.89 move comment reactions UI to the right of text */
body.pst-app-route .pst-conversation-main {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	grid-template-areas:
		"author author"
		"text meta";
		column-gap: 14px;
	row-gap: 6px;
	align-items: start;
}
body.pst-app-route .pst-conversation-author-row {
	grid-area: author;
}
body.pst-app-route .pst-conversation-text {
	grid-area: text;
	margin-top: 0;
}
body.pst-app-route .pst-conversation-meta-row {
	grid-area: meta;
	display: grid;
	grid-template-columns: repeat(2, max-content);
	justify-content: end;
	justify-items: end;
	align-content: start;
	align-items: center;
	column-gap: 8px;
	row-gap: 7px;
	min-width: 122px;
	margin-top: 2px;
	white-space: normal;
}
body.pst-app-route .pst-conversation-meta-stats {
	grid-column: 1 / -1;
	justify-self: end;
}
body.pst-app-route .pst-conversation-meta-stats,
body.pst-app-route .pst-conversation-meta-stats .pst-comment-engagement {
	justify-content: flex-end;
	flex-wrap: wrap;
}
body.pst-app-route .pst-conversation-date {
	grid-column: 1;
}
body.pst-app-route .pst-conversation-meta-row .comment-reply-link {
	grid-column: 2;
}
body.pst-app-route .pst-conversation-report {
	grid-column: 2;
	justify-self: end;
	margin-left: 0;
}
body.pst-app-route .pst-conversation-report .pst-report-control > summary,
body.pst-app-route .pst-conversation-report .pst-report-login-link {
	text-align: right;
}
@media (max-width: 767px) {
	body.pst-app-route .pst-conversation-main {
		grid-template-columns: minmax(0, 1fr) 116px;
		column-gap: 10px;
		row-gap: 5px;
	}
	body.pst-app-route .pst-conversation-meta-row {
		min-width: 116px;
		column-gap: 6px;
		row-gap: 6px;
	}
}
@media (max-width: 380px) {
	body.pst-app-route .pst-conversation-main {
		grid-template-columns: minmax(0, 1fr) 108px;
		column-gap: 8px;
	}
	body.pst-app-route .pst-conversation-meta-row {
		min-width: 108px;
	}
}


/* v0.4.3.3.90 align comment reactions with user name + icon-only reply */
body.pst-app-route .pst-conversation-main {
	grid-template-areas:
		"author meta"
		"text meta";
}
body.pst-app-route .pst-conversation-meta-row {
	margin-top: 0;
	align-self: start;
}
body.pst-app-route .pst-conversation-meta-row .comment-reply-link {
	display: inline-grid;
	place-items: center;
	width: 24px;
	height: 24px;
	min-width: 24px;
	min-height: 24px;
	padding: 0;
	border-radius: 50%;
	color: #7f9ab4;
}
body.pst-app-route .pst-conversation-meta-row .comment-reply-link::before,
body.pst-app-route .pst-conversation-meta-row .comment-reply-link::after {
	display: none !important;
	content: none !important;
}
body.pst-app-route .pst-conversation-meta-row .comment-reply-link .pst-reply-icon {
	display: inline-grid;
	place-items: center;
	width: 16px;
	height: 16px;
}
body.pst-app-route .pst-conversation-meta-row .comment-reply-link .pst-reply-icon .pst-icon {
	width: 16px;
	height: 16px;
}
body.pst-app-route .pst-conversation-meta-row .comment-reply-link:hover,
body.pst-app-route .pst-conversation-meta-row .comment-reply-link:focus-visible {
	color: #8ed8ff;
	background: rgba(86,181,235,.08);
}
@media (max-width: 767px) {
	body.pst-app-route .pst-conversation-meta-row {
		margin-top: 0;
	}
	body.pst-app-route .pst-conversation-meta-row .comment-reply-link {
		width: 22px;
		height: 22px;
		min-width: 22px;
		min-height: 22px;
	}
	body.pst-app-route .pst-conversation-meta-row .comment-reply-link .pst-reply-icon,
	body.pst-app-route .pst-conversation-meta-row .comment-reply-link .pst-reply-icon .pst-icon {
		width: 15px;
		height: 15px;
	}
}


/* v0.4.3.3.91 remove duplicate bubble marks in comment UI */
body.pst-app-route .pst-comment-reply-count {
	gap: 0;
	padding-inline: 12px;
}
body.pst-app-route .pst-comment-reply-count svg,
body.pst-app-route .pst-comment-reply-count .pst-icon,
body.pst-app-route .pst-comment-reply-count::before,
body.pst-app-route .pst-comment-reply-count::after {
	display: none !important;
	content: none !important;
}
body.pst-app-route .pst-conversation-meta-row .comment-reply-link {
	background: transparent;
	border: none;
	box-shadow: none;
}
body.pst-app-route .pst-conversation-meta-row .comment-reply-link .pst-reply-arrow {
	display: inline-block;
	font-size: 17px;
	line-height: 1;
	font-weight: 700;
	transform: translateY(-1px);
}
body.pst-app-route .pst-conversation-meta-row .comment-reply-link .pst-reply-icon,
body.pst-app-route .pst-conversation-meta-row .comment-reply-link .pst-reply-icon .pst-icon,
body.pst-app-route .pst-conversation-meta-row .comment-reply-link svg {
	display: none !important;
}


/* v0.4.3.3.92 remove remaining reply mark; reply count itself is the action */
body.pst-app-route .pst-conversation-meta-stats .comment-reply-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	height: auto;
	min-width: 0;
	min-height: 0;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: #64c9f3;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
}
body.pst-app-route .pst-conversation-meta-stats .comment-reply-link::before,
body.pst-app-route .pst-conversation-meta-stats .comment-reply-link::after,
body.pst-app-route .pst-conversation-meta-stats .comment-reply-link svg,
body.pst-app-route .pst-conversation-meta-stats .comment-reply-link .pst-reply-icon,
body.pst-app-route .pst-conversation-meta-stats .comment-reply-link .pst-reply-arrow {
	display: none !important;
	content: none !important;
}
body.pst-app-route .pst-conversation-meta-stats .pst-reply-count-number {
	display: inline;
}
body.pst-app-route .pst-conversation-meta-row > .comment-reply-link {
	display: none !important;
}
@media (max-width: 767px) {
	body.pst-app-route .pst-conversation-meta-stats .comment-reply-link {
		font-size: 10px;
	}
}


/* v0.4.3.3.93 larger reply action + keyboard-aware composer */
body.pst-app-route .pst-conversation-meta-stats .comment-reply-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	min-width: 46px;
	height: 36px;
	min-height: 36px;
	padding: 0 10px;
	border: 1px solid rgba(82, 190, 239, .28);
	border-radius: 12px;
	background: linear-gradient(180deg, rgba(52, 157, 208, .12), rgba(26, 92, 126, .08));
	box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
	color: #75d4ff;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	-webkit-tap-highlight-color: transparent;
}
body.pst-app-route .pst-conversation-meta-stats .comment-reply-link:hover,
body.pst-app-route .pst-conversation-meta-stats .comment-reply-link:focus-visible {
	border-color: rgba(105, 212, 255, .58);
	background: linear-gradient(180deg, rgba(66, 180, 234, .20), rgba(27, 104, 143, .13));
	color: #b8ecff;
	outline: none;
}
body.pst-app-route .pst-conversation-meta-stats .comment-reply-link:active {
	transform: scale(.96);
}
body.pst-app-route .pst-reply-action-icon {
	display: inline-grid;
	place-items: center;
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
}
body.pst-app-route .pst-reply-action-icon svg {
	display: block !important;
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}
body.pst-app-route .pst-reply-count-number {
	display: inline-block;
	min-width: 8px;
	text-align: center;
}
@media (max-width: 767px) {
	body.pst-app-route .pst-conversation-meta-stats .comment-reply-link {
		min-width: 44px;
		height: 34px;
		min-height: 34px;
		padding: 0 9px;
		border-radius: 11px;
	}
	body.pst-app-route .pst-reply-action-icon,
	body.pst-app-route .pst-reply-action-icon svg {
		width: 17px;
		height: 17px;
	}
}
@media (max-width: 900px) {
	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond.pst-sticky-comment-composer,
	body.pst-app-route:is(.single-pst_question, .single-pst_report) > #respond.pst-sticky-comment-composer,
	body.pst-app-route:is(.single-pst_question, .single-pst_report) .comments-area #respond.pst-sticky-comment-composer,
	body.pst-app-route:is(.single-pst_question, .single-pst_report) .comment-list #respond.pst-sticky-comment-composer {
		inset: auto 8px calc(72px + env(safe-area-inset-bottom)) 8px !important;
		bottom: calc(72px + env(safe-area-inset-bottom)) !important;
		transition: bottom .12s ease-out;
	}
	body.pst-keyboard-open.pst-app-route:is(.single-pst_question, .single-pst_report) #respond.pst-sticky-comment-composer,
	body.pst-keyboard-open.pst-app-route:is(.single-pst_question, .single-pst_report) > #respond.pst-sticky-comment-composer,
	body.pst-keyboard-open.pst-app-route:is(.single-pst_question, .single-pst_report) .comments-area #respond.pst-sticky-comment-composer,
	body.pst-keyboard-open.pst-app-route:is(.single-pst_question, .single-pst_report) .comment-list #respond.pst-sticky-comment-composer {
		inset: auto 8px calc(var(--pst-keyboard-offset, 0px) + 8px) 8px !important;
		bottom: calc(var(--pst-keyboard-offset, 0px) + 8px) !important;
		transition: none;
	}
	body.pst-keyboard-open.pst-app-route:is(.single-pst_question, .single-pst_report) .pst-mobile-nav {
		visibility: hidden;
		pointer-events: none;
	}
}


/* v0.4.3.3.94 text-only reply action + long-name friendly layout */
body.pst-app-route .pst-conversation-main {
	grid-template-columns: minmax(0, 1fr) auto;
	grid-template-areas:
		"author author"
		"text meta";
	column-gap: 12px;
	row-gap: 7px;
}
body.pst-app-route .pst-conversation-author-row {
	min-width: 0;
	padding-right: 0;
}
body.pst-app-route .pst-conversation-author {
	min-width: 0;
	max-width: 100%;
}
body.pst-app-route .pst-conversation-author strong,
body.pst-app-route .pst-conversation-author strong a {
	display: inline;
	overflow-wrap: anywhere;
	word-break: break-word;
}
body.pst-app-route .pst-conversation-text {
	align-self: start;
	padding-top: 1px;
}
body.pst-app-route .pst-conversation-meta-row {
	align-self: start;
	margin-top: 0;
}
body.pst-app-route .pst-conversation-meta-stats .comment-reply-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 52px;
	height: 32px;
	min-height: 32px;
	padding: 0 12px;
	border: 1px solid rgba(104, 190, 231, .42);
	border-radius: 8px;
	background: rgba(33, 87, 117, .10);
	box-shadow: 0 2px 0 rgba(15, 59, 83, .52), inset 0 1px 0 rgba(255,255,255,.035);
	color: #82d7fa;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	transition: transform .08s ease, box-shadow .08s ease, background .12s ease, border-color .12s ease;
	-webkit-tap-highlight-color: transparent;
}
body.pst-app-route .pst-conversation-meta-stats .comment-reply-link:hover,
body.pst-app-route .pst-conversation-meta-stats .comment-reply-link:focus-visible {
	border-color: rgba(126, 216, 255, .70);
	background: rgba(48, 128, 170, .16);
	color: #c0efff;
	outline: none;
}
body.pst-app-route .pst-conversation-meta-stats .comment-reply-link:active {
	transform: translateY(2px);
	box-shadow: 0 0 0 rgba(15, 59, 83, 0), inset 0 1px 3px rgba(0,0,0,.28);
}
body.pst-app-route .pst-reply-action-label {
	display: inline-block;
	white-space: nowrap;
}
body.pst-app-route .pst-reply-action-icon,
body.pst-app-route .pst-reply-action-icon svg,
body.pst-app-route .pst-reply-count-number {
	display: none !important;
}
@media (max-width: 767px) {
	body.pst-app-route .pst-conversation-main {
		grid-template-columns: minmax(0, 1fr) 112px;
		column-gap: 10px;
		row-gap: 6px;
	}
	body.pst-app-route .pst-conversation-meta-stats .comment-reply-link {
		min-width: 50px;
		height: 31px;
		min-height: 31px;
		padding: 0 11px;
		border-radius: 8px;
		font-size: 11px;
	}
}
@media (max-width: 380px) {
	body.pst-app-route .pst-conversation-main {
		grid-template-columns: minmax(0, 1fr) 104px;
		column-gap: 8px;
	}
}


/* v0.4.3.3.95 text-only reply button + reliable reply activation */
body.pst-app-route .pst-conversation-meta-stats .comment-reply-link,
body.pst-app-route .pst-conversation-meta-stats .comment-reply-link .pst-reply-action-label {
	position: relative;
}
body.pst-app-route .pst-conversation-meta-stats .comment-reply-link::before,
body.pst-app-route .pst-conversation-meta-stats .comment-reply-link::after,
body.pst-app-route .pst-conversation-meta-stats .comment-reply-link .pst-reply-action-label::before,
body.pst-app-route .pst-conversation-meta-stats .comment-reply-link .pst-reply-action-label::after,
body.pst-app-route .pst-conversation-meta-stats .comment-reply-link svg,
body.pst-app-route .pst-conversation-meta-stats .comment-reply-link i,
body.pst-app-route .pst-conversation-meta-stats .comment-reply-link .icon,
body.pst-app-route .pst-conversation-meta-stats .comment-reply-link .pst-icon {
	display: none !important;
	content: none !important;
}
body.pst-app-route .pst-conversation-meta-stats .comment-reply-link .pst-reply-action-label {
	display: inline-block !important;
	font-size: inherit;
	line-height: 1;
}


/* v0.4.3.3.96 direct text-only reply control */
body.pst-app-route .pst-conversation-meta-stats .comment-reply-link,
body.pst-app-route .pst-conversation-meta-stats .pst-comment-reply-count,
body.pst-app-route .pst-conversation-meta-stats .pst-reply-action-icon,
body.pst-app-route .pst-conversation-meta-stats svg,
body.pst-app-route .pst-conversation-meta-stats .pst-icon {
	display: none !important;
}
body.pst-app-route .pst-direct-reply-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 50px;
	height: 32px;
	min-height: 32px;
	margin: 0;
	padding: 0 11px;
	border: 1px solid rgba(112, 183, 218, .42);
	border-radius: 8px;
	background: rgba(30, 74, 99, .10);
	box-shadow: 0 2px 0 rgba(10, 43, 61, .48), inset 0 1px 0 rgba(255,255,255,.035);
	color: #8ed9f8;
	font: inherit;
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: transform .07s ease, box-shadow .07s ease, background .12s ease, border-color .12s ease;
	-webkit-appearance: none;
	appearance: none;
	-webkit-tap-highlight-color: transparent;
}
body.pst-app-route .pst-direct-reply-button::before,
body.pst-app-route .pst-direct-reply-button::after {
	display: none !important;
	content: none !important;
}
body.pst-app-route .pst-direct-reply-button:focus-visible {
	outline: 2px solid rgba(126, 216, 255, .56);
	outline-offset: 2px;
}
body.pst-app-route .pst-direct-reply-button:active {
	transform: translateY(2px);
	box-shadow: 0 0 0 rgba(10, 43, 61, 0), inset 0 2px 4px rgba(0,0,0,.28);
}


/* v0.4.3.3.97 report close button + collapsible reply threads */
.pst-report-form-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
}
.pst-report-form-header strong {
	color: #ffffff;
	font-size: 15px;
	font-weight: 800;
}
.pst-report-form-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	margin-top: 8px;
}
.pst-report-form .pst-report-close,
.pst-report-form .pst-report-submit {
	width: auto;
	min-width: 108px;
	margin-top: 0;
}
.pst-report-form .pst-report-close {
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.12);
	color: #eef3f8;
}
.pst-report-form .pst-report-close:hover,
.pst-report-form .pst-report-close:focus-visible {
	background: rgba(255,255,255,.14);
}
.pst-report-form .pst-report-submit {
	background: #b3261e;
}
body.pst-app-route .pst-replies-toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 12px 54px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #89caf1;
	font: inherit;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}
body.pst-app-route .pst-replies-toggle:hover,
body.pst-app-route .pst-replies-toggle:focus-visible {
	color: #bcecff;
	outline: none;
}
body.pst-app-route .pst-replies-toggle:active {
	transform: translateY(1px);
}
body.pst-app-route .pst-replies-toggle-line {
	display: inline-block;
	width: 18px;
	height: 1px;
	background: rgba(137, 202, 241, .55);
	position: relative;
	flex: 0 0 18px;
}
body.pst-app-route .pst-replies-toggle-line::after {
	content: '';
	position: absolute;
	right: -1px;
	top: -3px;
	width: 7px;
	height: 7px;
	border-right: 1px solid rgba(137, 202, 241, .55);
	border-bottom: 1px solid rgba(137, 202, 241, .55);
	border-bottom-right-radius: 6px;
}
body.pst-app-route .pst-conversation-item.has-pst-replies > .children[hidden] {
	display: none !important;
}
body.pst-app-route .pst-conversation-item.is-pst-replies-open > .pst-replies-toggle {
	margin-bottom: 6px;
}
body.pst-app-route .pst-conversation-item.is-pst-replies-open > .pst-replies-toggle .pst-replies-toggle-line,
body.pst-app-route .pst-conversation-item.is-pst-replies-open > .pst-replies-toggle .pst-replies-toggle-line::after {
	background: rgba(188, 236, 255, .8);
	border-color: rgba(188, 236, 255, .8);
}
@media (max-width: 767px) {
	.pst-report-form-actions {
		gap: 8px;
	}
	.pst-report-form .pst-report-close,
	.pst-report-form .pst-report-submit {
		min-width: 96px;
	}
	body.pst-app-route .pst-replies-toggle {
		margin: -2px 0 10px 34px;
		font-size: 12px;
	}
	body.pst-app-route .pst-replies-toggle-line {
		width: 16px;
		flex-basis: 16px;
	}
}


/* v0.4.3.3.98 smaller report close button + message icon for reply thread */
.pst-report-form-header .pst-report-close {
	min-width: 72px;
	padding: 8px 12px;
	font-size: 12px;
	line-height: 1.1;
	border-radius: 8px;
}
.pst-report-form-actions .pst-report-close {
	min-width: 78px;
	padding: 9px 14px;
	font-size: 12px;
	border-radius: 8px;
}
.pst-report-form-actions .pst-report-submit {
	min-width: 110px;
}
body.pst-app-route .pst-replies-toggle {
	gap: 7px;
}
body.pst-app-route .pst-replies-toggle-line {
	width: 16px;
	height: 12px;
	background: transparent;
	border: 1.6px solid rgba(137, 202, 241, .72);
	border-radius: 3px;
	position: relative;
	flex: 0 0 16px;
	box-sizing: border-box;
}
body.pst-app-route .pst-replies-toggle-line::before {
	content: '';
	position: absolute;
	left: 2px;
	right: 2px;
	top: 2px;
	height: 0;
	border-top: 1.6px solid rgba(137, 202, 241, .72);
	transform: skewY(-24deg);
	transform-origin: center;
}
body.pst-app-route .pst-replies-toggle-line::after {
	content: '';
	position: absolute;
	left: 2px;
	right: 2px;
	top: 2px;
	height: 0;
	border-top: 1.6px solid rgba(137, 202, 241, .72);
	transform: skewY(24deg);
	transform-origin: center;
}
body.pst-app-route .pst-replies-toggle:hover .pst-replies-toggle-line,
body.pst-app-route .pst-replies-toggle:focus-visible .pst-replies-toggle-line,
body.pst-app-route .pst-conversation-item.is-pst-replies-open > .pst-replies-toggle .pst-replies-toggle-line {
	border-color: rgba(188, 236, 255, .92);
}
body.pst-app-route .pst-replies-toggle:hover .pst-replies-toggle-line::before,
body.pst-app-route .pst-replies-toggle:hover .pst-replies-toggle-line::after,
body.pst-app-route .pst-replies-toggle:focus-visible .pst-replies-toggle-line::before,
body.pst-app-route .pst-replies-toggle:focus-visible .pst-replies-toggle-line::after,
body.pst-app-route .pst-conversation-item.is-pst-replies-open > .pst-replies-toggle .pst-replies-toggle-line::before,
body.pst-app-route .pst-conversation-item.is-pst-replies-open > .pst-replies-toggle .pst-replies-toggle-line::after {
	border-color: rgba(188, 236, 255, .92);
}
@media (max-width: 767px) {
	.pst-report-form-header .pst-report-close {
		min-width: 68px;
		padding: 7px 11px;
		font-size: 11px;
	}
	.pst-report-form-actions .pst-report-close {
		min-width: 74px;
		padding: 8px 12px;
		font-size: 11px;
	}
	body.pst-app-route .pst-replies-toggle-line {
		width: 15px;
		height: 11px;
		flex-basis: 15px;
	}
}


/* v0.4.3.3.99 reply-to labels + flat readable reply threads */
body.pst-app-route .pst-reply-target-link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	max-width: 100%;
	min-height: 28px;
	margin: -2px 0 6px;
	padding: 3px 8px 3px 5px;
	border: 0;
	border-radius: 7px;
	background: rgba(74, 153, 205, .07);
	color: #83c9f1;
	font: inherit;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.25;
	text-align: left;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	-webkit-tap-highlight-color: transparent;
}
body.pst-app-route .pst-reply-target-link:hover,
body.pst-app-route .pst-reply-target-link:focus-visible {
	background: rgba(74, 153, 205, .14);
	color: #b9e8ff;
	outline: none;
}
body.pst-app-route .pst-reply-target-link:active {
	transform: translateY(1px);
}
body.pst-app-route .pst-reply-target-arrow {
	flex: 0 0 auto;
	font-size: 13px;
	line-height: 1;
}
body.pst-app-route .pst-conversation-list > .pst-conversation-item.is-root.has-pst-replies > .children {
	margin: 0 0 12px 54px;
	padding: 0 0 0 13px;
	border-left: 1px solid rgba(119, 180, 219, .28);
}
body.pst-app-route .pst-conversation-list > .pst-conversation-item.is-root.has-pst-replies > .children .children {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
}
body.pst-app-route .pst-conversation-list > .pst-conversation-item.is-root.has-pst-replies > .children .pst-conversation-item {
	margin: 0;
	padding: 0;
	border-top: 1px solid rgba(145,177,212,.08);
}
body.pst-app-route .pst-conversation-list > .pst-conversation-item.is-root.has-pst-replies > .children > .pst-conversation-item:first-child {
	border-top: 0;
}
body.pst-app-route .pst-conversation-list > .pst-conversation-item.is-root.has-pst-replies > .children .pst-conversation-comment {
	grid-template-columns: 32px minmax(0, 1fr);
	gap: 9px;
	padding: 11px 0;
}
body.pst-app-route .pst-conversation-list > .pst-conversation-item.is-root.has-pst-replies > .children .pst-conversation-avatar .avatar {
	width: 32px !important;
	height: 32px !important;
}
@keyframes pst-reply-target-flash {
	0% { background: rgba(70, 171, 224, .24); box-shadow: 0 0 0 0 rgba(89, 191, 239, .32); }
	55% { background: rgba(70, 171, 224, .11); box-shadow: 0 0 0 5px rgba(89, 191, 239, .08); }
	100% { background: transparent; box-shadow: 0 0 0 0 rgba(89, 191, 239, 0); }
}
body.pst-app-route .pst-conversation-comment.is-pst-reply-target-highlight {
	border-radius: 10px;
	animation: pst-reply-target-flash 1.45s ease-out;
}
@media (max-width: 767px) {
	body.pst-app-route .pst-reply-target-link {
		min-height: 26px;
		margin-bottom: 5px;
		padding: 3px 7px 3px 4px;
		font-size: 10px;
	}
	body.pst-app-route .pst-conversation-list > .pst-conversation-item.is-root.has-pst-replies > .children {
		margin: 0 0 10px 34px !important;
		padding-left: 10px !important;
	}
	body.pst-app-route .pst-conversation-list > .pst-conversation-item.is-root.has-pst-replies > .children .pst-conversation-comment {
		grid-template-columns: 29px minmax(0, 1fr);
		gap: 8px;
		padding: 10px 0;
	}
	body.pst-app-route .pst-conversation-list > .pst-conversation-item.is-root.has-pst-replies > .children .pst-conversation-avatar .avatar {
		width: 29px !important;
		height: 29px !important;
	}
}


/* v0.4.3.3.100 return to newly posted comment/reply */
body.pst-app-route .pst-conversation-comment.is-pst-new-comment-focus {
	position: relative;
	animation: pstNewCommentFocus 2.35s ease-out;
}
@keyframes pstNewCommentFocus {
	0% {
		background: rgba(72, 183, 238, .22);
		box-shadow: 0 0 0 4px rgba(72, 183, 238, .14), 0 0 24px rgba(72, 183, 238, .16);
		border-radius: 12px;
	}
	45% {
		background: rgba(72, 183, 238, .10);
		box-shadow: 0 0 0 2px rgba(72, 183, 238, .08);
		border-radius: 12px;
	}
	100% {
		background: transparent;
		box-shadow: none;
		border-radius: 0;
	}
}
@media (prefers-reduced-motion: reduce) {
	body.pst-app-route .pst-conversation-comment.is-pst-new-comment-focus {
		animation: none;
		background: rgba(72, 183, 238, .12);
		box-shadow: 0 0 0 2px rgba(72, 183, 238, .10);
		border-radius: 12px;
	}
}


/* v0.4.3.3.101 color thumb-up UI */
.pst-like-icon {
	display: inline-grid;
	place-items: center;
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	color: #69c8f5;
	filter: drop-shadow(0 0 5px rgba(105, 200, 245, .14));
}
.pst-like-icon .pst-icon-thumb {
	display: block;
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
	overflow: visible;
}
.pst-like-icon .pst-thumb-hand,
.pst-like-icon .pst-thumb-cuff {
	fill: transparent;
	transition: fill .18s ease, stroke .18s ease, transform .18s ease;
	transform-origin: center;
}
.pst-like-button {
	border-color: rgba(105, 200, 245, .28);
	background: rgba(53, 153, 205, .07);
	color: #8bd8fb;
}
.pst-like-button:hover {
	background: rgba(53, 153, 205, .13);
	border-color: rgba(105, 200, 245, .48);
}
.pst-like-button.is-liked,
.pst-thread-like-button.is-liked,
body.pst-app-route .comment-list .pst-comment-like-button.is-liked {
	border-color: rgba(242, 193, 72, .62);
	background: rgba(242, 193, 72, .14);
	color: #f2c148;
}
.pst-like-button.is-liked .pst-like-icon {
	color: #f2c148;
	filter: drop-shadow(0 0 7px rgba(242, 193, 72, .28));
}
.pst-like-button.is-liked .pst-thumb-hand,
.pst-like-button.is-liked .pst-thumb-cuff {
	fill: currentColor;
}
.pst-card-like-count,
.pst-my-report-stats .is-like {
	color: #72c9f2 !important;
}
.pst-card-like-count .pst-like-icon,
.pst-my-report-stats .is-like .pst-like-icon {
	color: currentColor;
}
.pst-stat-like-icon {
	width: 15px;
	height: 15px;
}
.pst-thread-like-button .pst-stat-like-icon {
	width: 17px;
	height: 17px;
}
body.pst-app-route .pst-conversation-meta-stats .pst-comment-like-button {
	color: #72c9f2;
}
body.pst-app-route .pst-conversation-meta-stats .pst-comment-like-button.is-liked {
	color: #f2c148;
}
body.pst-app-route .pst-conversation-meta-stats .pst-comment-like-button .pst-like-icon {
	width: 15px;
	height: 15px;
	color: currentColor;
}
.pst-notification-icon.is-like {
	color: #f2c148;
	background: rgba(242, 193, 72, .10);
	border: 1px solid rgba(242, 193, 72, .20);
}
.pst-notification-icon.is-like .pst-icon-thumb {
	width: 18px;
	height: 18px;
	fill: currentColor;
	stroke: currentColor;
	stroke-width: 1.6;
}
.pst-notification-icon.is-like .pst-thumb-hand,
.pst-notification-icon.is-like .pst-thumb-cuff {
	fill: currentColor;
}
.pst-like-button.is-like-pop .pst-like-icon {
	animation: pst-like-thumb-pop .4s cubic-bezier(.22, .8, .32, 1);
}
@keyframes pst-like-thumb-pop {
	0% { transform: scale(1); }
	42% { transform: scale(1.28) rotate(-7deg); }
	72% { transform: scale(.94) rotate(2deg); }
	100% { transform: scale(1) rotate(0); }
}
@media (max-width: 767px) {
	.pst-like-icon { width: 16px; height: 16px; }
	.pst-stat-like-icon { width: 14px; height: 14px; }
	.pst-thread-like-button .pst-stat-like-icon { width: 16px; height: 16px; }
}
@media (prefers-reduced-motion: reduce) {
	.pst-like-button.is-like-pop .pst-like-icon { animation: none; }
}

/* v0.4.3.3.101 ensure comment thumb icon overrides legacy reply-icon hiding */
body.pst-app-route .pst-conversation-meta-stats .pst-like-icon .pst-icon-thumb {
	display: block !important;
}


/* v0.4.3.3.102 gold thumb-up in both states */
.pst-like-icon,
.pst-card-like-count .pst-like-icon,
.pst-my-report-stats .is-like .pst-like-icon,
body.pst-app-route .pst-conversation-meta-stats .pst-comment-like-button .pst-like-icon {
	color: #d7aa3f;
	filter: drop-shadow(0 0 5px rgba(215, 170, 63, .16));
}
.pst-like-button,
.pst-card-like-count,
.pst-my-report-stats .is-like,
body.pst-app-route .pst-conversation-meta-stats .pst-comment-like-button {
	color: #d7aa3f !important;
}
.pst-like-button {
	border-color: rgba(215, 170, 63, .30);
	background: rgba(215, 170, 63, .07);
}
.pst-like-button:hover,
.pst-like-button:focus-visible {
	border-color: rgba(242, 193, 72, .56);
	background: rgba(242, 193, 72, .13);
	color: #f2c148 !important;
}
.pst-like-button.is-liked,
.pst-thread-like-button.is-liked,
body.pst-app-route .comment-list .pst-comment-like-button.is-liked {
	border-color: rgba(242, 193, 72, .68);
	background: rgba(242, 193, 72, .16);
	color: #f2c148 !important;
}
.pst-like-button.is-liked .pst-like-icon,
.pst-thread-like-button.is-liked .pst-like-icon,
body.pst-app-route .comment-list .pst-comment-like-button.is-liked .pst-like-icon {
	color: #f2c148;
	filter: drop-shadow(0 0 7px rgba(242, 193, 72, .30));
}


/* v0.4.3.3.105 question mascot icon */
body.pst-app-route .pst-question-section-icon.is-character {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 0;
	border: 1px solid rgba(236, 187, 72, .58);
	background: #2a1008;
	box-shadow: 0 0 0 1px rgba(255, 209, 103, .08), 0 7px 18px rgba(0, 0, 0, .34), 0 0 15px rgba(235, 127, 31, .16);
}
body.pst-app-route .pst-question-section-icon.is-character::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.18), inset 0 -8px 16px rgba(31, 4, 0, .18);
	pointer-events: none;
}
body.pst-app-route .pst-question-section-icon.is-character img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	margin: 0;
	object-fit: cover;
	object-position: center center;
	transform: scale(1.06);
}
@media (max-width: 900px) {
	body.pst-app-route .pst-question-section-icon.is-character {
		border-radius: 12px;
	}
}


/* v0.4.3.3.106 restore PC comment and reply composer */
@media (min-width: 901px) {
	body.pst-app-route:is(.single-pst_question, .single-pst_report) .pst-conversation-comments > #respond,
	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond.pst-desktop-comment-composer {
		display: block !important;
		position: static !important;
		visibility: visible !important;
		opacity: 1 !important;
		width: 100% !important;
		max-width: none !important;
		margin: 0 0 28px !important;
		padding: 18px !important;
		border: 1px solid rgba(151, 181, 216, .24) !important;
		border-radius: 14px !important;
		background: linear-gradient(145deg, rgba(10, 28, 47, .96), rgba(5, 17, 30, .98)) !important;
		box-shadow: inset 0 1px 0 rgba(255,255,255,.035), 0 10px 28px rgba(0,0,0,.18) !important;
		transform: none !important;
	}
	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond.is-pst-collapsed > :not(.comment-reply-title),
	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond.pst-desktop-comment-composer > :not(.comment-reply-title),
	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond.pst-desktop-comment-composer #commentform {
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
	}
	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond .pst-comment-collapse-toggle {
		display: none !important;
	}
	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond .comment-reply-title {
		min-height: 0;
		margin: 0 0 14px;
		padding: 0;
		border: 0;
		background: transparent;
		box-shadow: none;
		font-size: 20px;
	}
	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond .pst-note {
		margin: 0 0 12px;
		color: #8fa4bb;
		font-size: 12px;
	}
	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond .comment-form-comment {
		margin: 0;
	}
	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond textarea#comment {
		display: block !important;
		box-sizing: border-box;
		width: 100% !important;
		min-height: 118px !important;
		margin: 0;
		padding: 14px 15px;
		border: 1px solid rgba(151, 181, 216, .32);
		border-radius: 11px;
		background: rgba(2, 11, 21, .74);
		color: #f4f7fb;
		font-size: 15px;
		line-height: 1.65;
		resize: vertical;
	}
	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond textarea#comment:focus {
		border-color: rgba(226, 184, 76, .72);
		box-shadow: 0 0 0 3px rgba(226, 184, 76, .10);
		outline: none;
	}
	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond .form-submit {
		display: flex !important;
		justify-content: flex-end;
		margin: 12px 0 0;
	}
	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond .form-submit input[type="submit"],
	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond .form-submit button[type="submit"] {
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		min-width: 116px;
		min-height: 42px;
		margin: 0;
		padding: 9px 22px;
		border: 1px solid rgba(255,255,255,.09);
		border-radius: 10px;
		background: linear-gradient(145deg, #ff3037, #e71820);
		box-shadow: 0 7px 18px rgba(255,34,42,.16), inset 0 1px 0 rgba(255,255,255,.14);
		color: #fff;
		font-size: 14px;
		font-weight: 900;
		cursor: pointer;
	}
	body.pst-app-route:is(.single-pst_question, .single-pst_report) .pst-desktop-reply-context {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
		margin: 0 0 12px;
		padding: 8px 10px 8px 12px;
		border: 1px solid rgba(226, 184, 76, .38);
		border-radius: 10px;
		background: rgba(75, 56, 14, .27);
		color: #f4d77d;
		font-size: 12px;
		font-weight: 800;
	}
	body.pst-app-route:is(.single-pst_question, .single-pst_report) .pst-desktop-reply-context[hidden] {
		display: none !important;
	}
	body.pst-app-route:is(.single-pst_question, .single-pst_report) .pst-desktop-reply-text::before {
		content: "↳";
		margin-right: 6px;
	}
	body.pst-app-route:is(.single-pst_question, .single-pst_report) .pst-desktop-reply-cancel {
		display: grid;
		place-items: center;
		flex: 0 0 28px;
		width: 28px;
		height: 28px;
		padding: 0;
		border: 1px solid rgba(244, 215, 125, .30);
		border-radius: 50%;
		background: rgba(255,255,255,.06);
		color: #f7e5aa;
		font-size: 18px;
		line-height: 1;
		cursor: pointer;
	}
}
body.pst-app-route .pst-comment-login-required {
	margin: 0;
	padding: 14px 16px;
	border: 1px solid rgba(226, 184, 76, .28);
	border-radius: 11px;
	background: rgba(75, 56, 14, .18);
	color: #c8d3df;
	font-size: 13px;
}
body.pst-app-route .pst-comment-login-required a {
	margin: 0 5px;
	color: #f2c148;
	font-weight: 900;
}
body.pst-app-route .pst-comment-login-required.is-pst-login-highlight {
	animation: pstLoginRequiredFlash 1.5s ease-out;
}
@keyframes pstLoginRequiredFlash {
	0% { box-shadow: 0 0 0 4px rgba(242,193,72,.20); background: rgba(102,76,18,.34); }
	100% { box-shadow: none; background: rgba(75,56,14,.18); }
}


/* v0.4.3.3.107 full-body transparent question mascot */
body.pst-app-route .pst-question-section-heading {
	align-items: flex-end;
}
body.pst-app-route .pst-question-section-icon.is-character {
	overflow: visible;
	width: 76px;
	height: 92px;
	padding: 0;
	margin: -6px 4px -2px 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}
body.pst-app-route .pst-question-section-icon.is-character::after {
	display: none;
}
body.pst-app-route .pst-question-section-icon.is-character img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center bottom;
	transform: none;
	filter: drop-shadow(0 8px 16px rgba(0,0,0,.34)) drop-shadow(0 0 12px rgba(255, 195, 69, .18));
}
@media (max-width: 900px) {
	body.pst-app-route .pst-question-section-icon.is-character {
		width: 64px;
		height: 78px;
		margin: -2px 2px -1px 0;
	}
}


/* v0.4.3.3.108 rebalance question heading layout */
body.pst-app-route .pst-question-section-heading.has-character {
	display: grid;
	grid-template-columns: 98px max-content;
	align-items: center;
	justify-content: center;
	column-gap: 20px;
	width: 100%;
	box-sizing: border-box;
	padding: 8px 18px 16px;
}
body.pst-app-route .pst-question-section-heading.has-character > div {
	min-width: 0;
	align-self: center;
}
body.pst-app-route .pst-question-section-heading.has-character .pst-question-section-icon.is-character {
	width: 98px;
	height: 118px;
	margin: -8px 0 -5px;
}
body.pst-app-route .pst-question-section-heading.has-character small {
	font-size: 11px;
	letter-spacing: .18em;
}
body.pst-app-route .pst-question-section-heading.has-character h2 {
	margin-top: 4px;
	font-size: 25px;
	line-height: 1.2;
	white-space: nowrap;
}
@media (max-width: 900px) {
	body.pst-app-route .pst-question-section-heading.has-character {
		grid-template-columns: 84px max-content;
		column-gap: 15px;
		padding: 5px 8px 14px;
	}
	body.pst-app-route .pst-question-section-heading.has-character .pst-question-section-icon.is-character {
		width: 84px;
		height: 102px;
		margin: -4px 0 -3px;
	}
	body.pst-app-route .pst-question-section-heading.has-character small {
		font-size: 10px;
		letter-spacing: .16em;
	}
	body.pst-app-route .pst-question-section-heading.has-character h2 {
		font-size: 23px;
	}
}
@media (max-width: 380px) {
	body.pst-app-route .pst-question-section-heading.has-character {
		grid-template-columns: 76px max-content;
		column-gap: 12px;
	}
	body.pst-app-route .pst-question-section-heading.has-character .pst-question-section-icon.is-character {
		width: 76px;
		height: 92px;
	}
	body.pst-app-route .pst-question-section-heading.has-character h2 {
		font-size: 21px;
	}
}


/* v0.4.3.3.109 left-aligned mascot + truly centered question title */
body.pst-app-route .pst-question-section-heading.has-character {
	grid-template-columns: 108px minmax(0, 1fr) 108px;
	justify-content: stretch;
	column-gap: 0;
	padding: 8px 18px 16px;
}
body.pst-app-route .pst-question-section-heading.has-character .pst-question-section-icon.is-character {
	grid-column: 1;
	justify-self: start;
	align-self: end;
	width: 98px;
	height: 118px;
	margin: -8px 0 -5px;
}
body.pst-app-route .pst-question-section-heading.has-character > div {
	grid-column: 2;
	justify-self: center;
	align-self: center;
	text-align: left;
}
body.pst-app-route .pst-question-section-heading.has-character::after {
	content: '';
	grid-column: 3;
	width: 108px;
}
@media (max-width: 900px) {
	body.pst-app-route .pst-question-section-heading.has-character {
		grid-template-columns: 88px minmax(0, 1fr) 88px;
		padding: 5px 8px 14px;
	}
	body.pst-app-route .pst-question-section-heading.has-character .pst-question-section-icon.is-character {
		width: 84px;
		height: 102px;
		margin: -4px 0 -3px;
	}
	body.pst-app-route .pst-question-section-heading.has-character::after {
		width: 88px;
	}
}
@media (max-width: 380px) {
	body.pst-app-route .pst-question-section-heading.has-character {
		grid-template-columns: 78px minmax(0, 1fr) 78px;
		padding-inline: 4px;
	}
	body.pst-app-route .pst-question-section-heading.has-character .pst-question-section-icon.is-character {
		width: 76px;
		height: 92px;
	}
	body.pst-app-route .pst-question-section-heading.has-character::after {
		width: 78px;
	}
}


/* v0.4.3.3.110 tighten vertical spacing in question heading */
body.pst-app-route .pst-question-section-heading.has-character {
	padding: 2px 18px 8px;
	min-height: 0;
}
body.pst-app-route .pst-question-section-heading.has-character .pst-question-section-icon.is-character {
	margin: -2px 0 -2px;
}
body.pst-app-route .pst-question-section-heading.has-character small {
	margin-bottom: 0;
}
body.pst-app-route .pst-question-section-heading.has-character h2 {
	margin-top: 2px;
}
@media (max-width: 900px) {
	body.pst-app-route .pst-question-section-heading.has-character {
		padding: 1px 8px 8px;
	}
	body.pst-app-route .pst-question-section-heading.has-character .pst-question-section-icon.is-character {
		margin: -1px 0 -1px;
	}
}
@media (max-width: 380px) {
	body.pst-app-route .pst-question-section-heading.has-character {
		padding-top: 0;
		padding-bottom: 6px;
	}
}


/* v0.4.3.3.111 add mascot to question title block */
body.pst-app-route .pst-question-title-block.has-character {
	display: grid;
	grid-template-columns: 102px minmax(0, 1fr);
	align-items: center;
	column-gap: 18px;
	margin-top: 14px;
}
body.pst-app-route .pst-question-title-mascot {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	width: 102px;
	height: 118px;
	overflow: visible;
}
body.pst-app-route .pst-question-title-mascot img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center bottom;
	filter: drop-shadow(0 8px 16px rgba(0,0,0,.34)) drop-shadow(0 0 12px rgba(255, 195, 69, .18));
}
body.pst-app-route .pst-question-title-copy {
	min-width: 0;
}
body.pst-app-route .pst-question-title-block.has-character .pst-question-field-label {
	margin-bottom: 10px;
}
body.pst-app-route .pst-question-title-block.has-character h1 {
	margin: 0;
}
@media (max-width: 900px) {
	body.pst-app-route .pst-question-title-block.has-character {
		grid-template-columns: 82px minmax(0, 1fr);
		column-gap: 14px;
		margin-top: 12px;
	}
	body.pst-app-route .pst-question-title-mascot {
		width: 82px;
		height: 96px;
	}
}
@media (max-width: 520px) {
	body.pst-app-route .pst-question-title-block.has-character {
		grid-template-columns: 72px minmax(0, 1fr);
		column-gap: 12px;
	}
	body.pst-app-route .pst-question-title-mascot {
		width: 72px;
		height: 84px;
	}
	body.pst-app-route .pst-question-title-block.has-character .pst-question-field-label {
		margin-bottom: 6px;
	}
}


/* v0.4.3.3.112 category archive header mascot */
body.pst-app-route .pst-archive-header-has-mascot {
	display: grid;
	grid-template-columns: 88px minmax(0, 1fr);
	align-items: center;
	column-gap: 18px;
}
body.pst-app-route .pst-archive-header-mascot {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	width: 88px;
	height: 98px;
	overflow: visible;
}
body.pst-app-route .pst-archive-header-mascot img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center bottom;
	filter: drop-shadow(0 8px 16px rgba(0,0,0,.34)) drop-shadow(0 0 12px rgba(255, 195, 69, .18));
}
body.pst-app-route .pst-archive-header-copy {
	min-width: 0;
}
body.pst-app-route .pst-archive-header-has-mascot .pst-single-kicker {
	margin-bottom: 8px;
}
@media (max-width: 900px) {
	body.pst-app-route .pst-archive-header-has-mascot {
		grid-template-columns: 72px minmax(0, 1fr);
		column-gap: 14px;
	}
	body.pst-app-route .pst-archive-header-mascot {
		width: 72px;
		height: 82px;
	}
}
@media (max-width: 520px) {
	body.pst-app-route .pst-archive-header-has-mascot {
		grid-template-columns: 62px minmax(0, 1fr);
		column-gap: 12px;
	}
	body.pst-app-route .pst-archive-header-mascot {
		width: 62px;
		height: 72px;
	}
}


/* v0.4.3.3.113 keep every question category title on one line */
body.pst-app-route .pst-archive-header-has-mascot .pst-archive-header-copy h1 {
	max-width: 100%;
	font-size: clamp(24px, 3.6vw, 38px);
	line-height: 1.18;
	letter-spacing: -.035em;
	white-space: nowrap;
	word-break: keep-all;
	overflow-wrap: normal;
}
@media (max-width: 900px) {
	body.pst-app-route .pst-archive-header-has-mascot {
		grid-template-columns: 64px minmax(0, 1fr);
		column-gap: 10px;
	}
	body.pst-app-route .pst-archive-header-mascot {
		width: 64px;
		height: 74px;
	}
	body.pst-app-route .pst-archive-header-has-mascot .pst-archive-header-copy h1 {
		font-size: clamp(18px, 5.25vw, 27px);
		letter-spacing: -.055em;
	}
}
@media (max-width: 520px) {
	body.pst-app-route .pst-archive-header-has-mascot {
		grid-template-columns: 52px minmax(0, 1fr);
		column-gap: 8px;
	}
	body.pst-app-route .pst-archive-header-mascot {
		width: 52px;
		height: 62px;
	}
	body.pst-app-route .pst-archive-header-has-mascot .pst-single-kicker {
		margin-bottom: 5px;
		font-size: 10px;
	}
	body.pst-app-route .pst-archive-header-has-mascot .pst-archive-header-copy h1 {
		font-size: clamp(17px, 5vw, 22px);
		letter-spacing: -.065em;
	}
}
@media (max-width: 360px) {
	body.pst-app-route .pst-archive-header-has-mascot {
		grid-template-columns: 46px minmax(0, 1fr);
		column-gap: 7px;
	}
	body.pst-app-route .pst-archive-header-mascot {
		width: 46px;
		height: 56px;
	}
	body.pst-app-route .pst-archive-header-has-mascot .pst-archive-header-copy h1 {
		font-size: 16px;
	}
}


/* v0.4.3.3.114 social category archive heading */
body.pst-app-route .pst-archive-header.is-social-category {
	grid-template-columns: 88px minmax(0, 1fr);
}
body.pst-app-route .pst-archive-header.is-social-category .pst-archive-header-mascot {
	width: 94px;
	height: 106px;
}
body.pst-app-route .pst-archive-header.is-social-category .pst-archive-header-copy h1 {
	white-space: nowrap;
}
@media (max-width: 900px) {
	body.pst-app-route .pst-archive-header.is-social-category {
		grid-template-columns: 76px minmax(0, 1fr);
	}
	body.pst-app-route .pst-archive-header.is-social-category .pst-archive-header-mascot {
		width: 78px;
		height: 90px;
	}
}
@media (max-width: 520px) {
	body.pst-app-route .pst-archive-header.is-social-category {
		grid-template-columns: 66px minmax(0, 1fr);
	}
	body.pst-app-route .pst-archive-header.is-social-category .pst-archive-header-mascot {
		width: 68px;
		height: 80px;
	}
}


/* v0.4.3.3.128 狙い目・激熱情報カテゴリ */
.pst-cat-hot {
	color: #7a2b14 !important;
	background: #ffd8b0;
}


/* v0.4.3.3.132 radar icon for hot-info category only */
body.pst-app-route .pst-icon-hotfire {
	stroke: none !important;
	filter: drop-shadow(0 0 5px rgba(255, 96, 24, .22));
}
body.pst-app-route .pst-icon-hotfire path {
	stroke: none !important;
}
body.pst-app-route .pst-category-icon .pst-icon-hotfire {
	width: 38px;
	height: 38px;
}
@media (max-width: 767px) {
	body.pst-app-route .pst-category-icon .pst-icon-hotfire {
		width: 32px;
		height: 32px;
	}
}


/* v0.4.3.3.133 unify and enlarge all category icons */
body.pst-app-route .pst-category-grid > a {
	grid-template-columns: 64px minmax(0, 1fr);
}
body.pst-app-route .pst-category-icon {
	width: 56px;
	height: 56px;
}
body.pst-app-route .pst-category-icon svg,
body.pst-app-route .pst-category-icon .pst-icon-hotfire {
	display: block;
	width: 44px;
	height: 44px;
	max-width: none;
	max-height: none;
	stroke-width: 1.9;
}
body.pst-app-route .pst-category-icon .pst-icon-hotfire {
	stroke-width: initial;
}
@media (max-width: 767px) {
	body.pst-app-route .pst-category-grid > a {
		grid-template-columns: 56px minmax(0, 1fr);
	}
	body.pst-app-route .pst-category-icon {
		width: 50px;
		height: 50px;
	}
	body.pst-app-route .pst-category-icon svg,
	body.pst-app-route .pst-category-icon .pst-icon-hotfire {
		width: 38px;
		height: 38px;
	}
}


/* v0.4.3.3.137 archive sort filters */
.pst-archive-sort-tabs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 7px;
	margin: 0 0 11px;
}
.pst-archive-sort-tabs a {
	display: grid;
	place-items: center;
	min-width: 0;
	min-height: 38px;
	padding: 7px 6px;
	border: 1px solid rgba(137, 163, 195, .3);
	border-radius: 9px;
	background: rgba(9, 24, 42, .9);
	color: #dbe5f1;
	font-size: 12px;
	font-weight: 850;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}
.pst-archive-sort-tabs a:hover,
.pst-archive-sort-tabs a:focus-visible {
	border-color: rgba(228, 183, 69, .72);
	color: #fff;
	outline: none;
}
.pst-archive-sort-tabs a:active {
	transform: translateY(1px);
}
.pst-archive-sort-tabs a.is-active {
	border-color: #e3b43c;
	background: linear-gradient(135deg, #f3c84f, #d99616);
	color: #161b24;
	box-shadow: 0 5px 15px rgba(218, 151, 20, .18);
}
@media (max-width: 480px) {
	.pst-archive-sort-tabs {
		gap: 5px;
		margin-bottom: 9px;
	}
	.pst-archive-sort-tabs a {
		min-height: 36px;
		padding-inline: 3px;
		font-size: 10.5px;
		border-radius: 8px;
	}
}


/* v0.4.3.3.144 Report cards aligned with the latest Q&A visual style */
.pst-report-feed { gap: 8px; }
.pst-report-row .pst-question-row-stats { gap: 4px; }
.pst-report-row .pst-card-stat {
	min-height: 32px;
	padding: 4px 7px;
	background: rgba(255,255,255,.04);
}
@media (max-width: 767px) {
	.pst-report-row .pst-card-stat { min-height: 30px; padding: 3px 6px; }
	.pst-report-title, .pst-report-row-main > a { font-size: 12px; }
	.pst-report-row-main .pst-machine-kind-mini { padding: 2px 7px; font-size: 9px; }
	.pst-report-meta-text { font-size: 9px; }
}


/* v0.4.3.3.147: 実戦報告詳細のタイトル訴求とコメント領域を最適化 */
.pst-report-detail > .pst-single-content {
	padding: 24px 28px 28px;
}
.pst-report-header-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}
.pst-report-heading {
	display: flex;
	align-items: center;
	flex: 0 1 auto;
	min-width: 0;
	line-height: 0;
}
.pst-report-heading-image {
	display: block;
	width: clamp(148px, 39vw, 172px);
	max-width: 100%;
	height: auto;
	filter: drop-shadow(0 5px 8px rgba(0,0,0,.42));
}
.pst-report-author-summary {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}
.pst-report-author-avatar {
	flex: 0 0 auto;
	width: 56px;
	height: 56px;
	padding: 3px;
	border-radius: 999px;
	border: 1px solid rgba(240,184,62,.30);
	background: linear-gradient(180deg, rgba(255,194,74,.14), rgba(8,20,35,.40));
	box-shadow: 0 10px 22px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.06);
}
.pst-report-author-avatar .avatar,
.pst-report-author-avatar-image {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}
.pst-report-header-kind {
	padding: 4px 10px;
	font-size: 11px;
	box-shadow: inset 0 0 0 1px rgba(240,184,62,.12);
}
@media (max-width: 767px) {
	.pst-report-header-top {
		align-items: flex-start;
	}
	.pst-report-heading {
		width: 100%;
		margin-bottom: 2px;
	}
	.pst-report-heading-image {
		width: clamp(146px, 39vw, 164px);
	}
	.pst-report-author-summary {
		width: 100%;
	}
}
.pst-report-title-box {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 12px;
	margin-top: 12px;
	padding: 14px 16px 15px;
	border: 1px solid rgba(240,184,62,.22);
	border-radius: 16px;
	background: linear-gradient(180deg, rgba(255,194,74,.08), rgba(8,20,35,.22) 30%, rgba(4,14,26,.18));
	box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 10px 24px rgba(0,0,0,.14);
}
.pst-report-title-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: center;
	gap: 6px;
	margin: 0;
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(255,42,63,.12);
	border: 1px solid rgba(255,72,92,.20);
	color: #ff6677;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .14em;
}
.pst-report-title-box h1 {
	min-width: 0;
	margin: 0;
	color: #ffffff;
	font-size: clamp(28px, 5vw, 44px);
	line-height: 1.18;
	text-align: center;
}
.pst-report-machine-box {
	margin-top: 14px;
}
.pst-report-machine-head {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
	margin: 0 auto 14px;
}
.pst-report-machine-label {
	background: rgba(255,188,54,.12);
	border-color: rgba(255,205,91,.24);
	color: #ffd66d;
	margin: 0;
}
.pst-report-machine-name {
	min-width: 0;
	text-align: center;
}
.pst-report-machine-name strong {
	display: block;
	margin: 0;
	color: #ffffff;
	font-size: clamp(22px, 4vw, 34px);
	line-height: 1.24;
	font-weight: 900;
	word-break: break-word;
}
.pst-report-machine-kind-inline {
	flex: 0 0 auto;
	padding: 5px 11px;
	font-size: 12px;
	line-height: 1;
	box-shadow: inset 0 0 0 1px rgba(240,184,62,.12);
}
.pst-report-machine-name a {
	color: inherit !important;
	text-decoration: none;
}
.pst-report-header-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}
.pst-report-meta-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 11px;
	border: 1px solid rgba(145,177,212,.24);
	border-radius: 999px;
	background: rgba(8,20,35,.68);
	color: #d9e3ee;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.35;
}
.pst-report-meta-chip small {
	color: #8fa2b9;
	font-size: 11px;
	font-weight: 700;
}
.pst-report-meta-chip.is-machine {
	border-color: rgba(240,184,62,.38);
	background: rgba(240,184,62,.10);
	color: #ffd66d;
}
.pst-report-meta-chip a {
	color: inherit !important;
	text-decoration: none;
}
.pst-report-header-meta-inline {
	margin-top: 0;
	gap: 6px;
}
.pst-report-header-meta-inline .pst-report-meta-chip {
	padding: 5px 10px;
	font-size: 11px;
}
.pst-report-header-meta-inline .pst-report-meta-chip small {
	font-size: 10px;
}
.pst-report-overview .pst-question-overview-item strong .pst-machine-kind-badge {
	font-size: 13px;
	padding: 5px 12px;
}
.pst-report-body-section {
	padding: 16px 16px 18px;
	border: 1px solid rgba(145,177,212,.20);
	border-radius: 14px;
	background: linear-gradient(180deg, rgba(6,18,31,.78), rgba(3,11,21,.84));
	box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}
.pst-report-body-heading {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(145,177,212,.16);
}
.pst-report-body-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	border: 1px solid rgba(240,184,62,.24);
	background: radial-gradient(circle at 30% 30%, rgba(240,184,62,.18), rgba(8,20,35,.92));
	box-shadow: 0 8px 18px rgba(0,0,0,.20), inset 0 1px 0 rgba(255,255,255,.05);
	color: #ffb657;
}
.pst-report-body-icon svg {
	width: 20px;
	height: 20px;
}
.pst-report-body-heading-copy small {
	display: block;
	margin-bottom: 2px;
	color: #8fa2b9;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .16em;
}
.pst-report-body-heading-copy h2 {
	margin: 0;
	color: #ffffff;
	font-size: clamp(16px, 2.2vw, 24px);
	line-height: 1.15;
}
.pst-report-body-text {
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.95;
	letter-spacing: .01em;
}
@media (max-width: 767px) {
	.pst-report-detail > .pst-single-content {
		padding: 18px 14px 22px;
	}
	.pst-report-title-box {
		gap: 9px;
		margin-top: 10px;
		padding: 12px 14px 13px;
		border-radius: 14px;
	}
	.pst-report-title-label {
		font-size: 10px;
		padding: 4px 9px;
	}
	.pst-report-title-box h1 {
		font-size: 26px;
	}
	.pst-report-machine-box {
		margin-top: 12px;
	}
	.pst-report-machine-head {
		gap: 8px;
		margin-bottom: 12px;
	}
	.pst-report-machine-name strong {
		font-size: 22px;
	}
	.pst-report-machine-kind-inline {
		padding: 4px 10px;
		font-size: 11px;
	}
	.pst-report-author-summary {
		gap: 8px;
	}
	.pst-report-author-avatar {
		width: 46px;
		height: 46px;
		padding: 2px;
	}
	.pst-report-header-meta {
		gap: 6px;
	}
	.pst-report-header-meta-inline {
		gap: 5px;
	}
	.pst-report-header-meta-inline .pst-report-meta-chip {
		font-size: 10px;
		padding: 4px 8px;
	}
	.pst-report-meta-chip {
		font-size: 11px;
		padding: 5px 9px;
	}
	.pst-report-body-section {
		padding: 14px;
		border-radius: 13px;
	}
	.pst-report-body-heading {
		gap: 9px;
		margin-bottom: 10px;
		padding-bottom: 9px;
	}
	.pst-report-body-icon {
		width: 38px;
		height: 38px;
		border-radius: 11px;
	}
	.pst-report-body-icon svg {
		width: 18px;
		height: 18px;
	}
	.pst-report-body-heading-copy h2 {
		font-size: 17px;
	}
	.pst-report-body-text {
		font-size: 17px;
		line-height: 1.85;
	}
}

/* v0.4.3.3.160: 実戦報告一覧の見出し画像をユーザー指定版へ差し替え */
body.pst-app-route .pst-archive-header.is-report-archive .pst-archive-header-copy {
	min-width: 0;
}
body.pst-app-route .pst-report-archive-heading {
	margin: 6px 0 0;
	line-height: 0;
}
body.pst-app-route .pst-report-archive-heading img {
	display: block;
	width: clamp(250px, 42vw, 420px);
	max-width: 100%;
	height: auto;
	filter: drop-shadow(0 7px 10px rgba(0, 0, 0, .42));
}
@media (max-width: 767px) {
	body.pst-app-route .pst-report-archive-heading img {
		width: clamp(230px, 72vw, 310px);
	}
}
@media (max-width: 360px) {
	body.pst-app-route .pst-report-archive-heading img {
		width: min(100%, 260px);
	}
}



/* v0.4.3.3.161: 実戦一覧見出しを中央配置し、下線に対して見た目の中心を合わせる */
body.pst-app-route .pst-archive-header.is-report-archive {
	text-align: center;
}
body.pst-app-route .pst-archive-header.is-report-archive .pst-single-kicker {
	display: block;
	text-align: center;
}
body.pst-app-route .pst-archive-header.is-report-archive .pst-archive-header-copy {
	width: 100%;
	text-align: center;
}
body.pst-app-route .pst-report-archive-heading {
	display: flex;
	justify-content: center;
	align-items: center;
}
body.pst-app-route .pst-report-archive-heading img {
	margin-left: auto;
	margin-right: auto;
}


/* v0.4.3.3.162: 実戦一覧見出しと下線の距離を少し詰める */
body.pst-app-route .pst-archive-header.is-report-archive {
	padding-bottom: 10px;
}
body.pst-app-route .pst-report-archive-heading {
	margin-bottom: -2px;
}
@media (max-width: 767px) {
	body.pst-app-route .pst-archive-header.is-report-archive {
		padding-bottom: 8px;
	}
}


/* v0.4.3.3.165: 上部メニューを4項目で中央配置・ヒーロー操作を1ボタン化 */
body.pst-app-route .pst-desktop-nav {
	justify-content: center;
}
body.pst-app-route .pst-hero-actions {
	grid-template-columns: minmax(0, 1fr);
	width: min(100%, 380px);
}
@media (max-width: 767px) {
	body.pst-app-route .pst-desktop-nav {
		justify-content: center;
		overflow-x: hidden;
	}
}


/* v0.4.3.3.166: ホームに「回答してみる」導線を追加 */
body.pst-app-route .pst-hero-actions {
	gap: 10px;
}
body.pst-app-route .pst-hero-button-answer {
	position: relative;
	isolation: isolate;
	min-height: 62px;
	padding: 8px 14px 8px 12px;
	justify-content: flex-start;
	gap: 12px;
	overflow: hidden;
	border: 1px solid rgba(96, 214, 255, .68);
	background:
		linear-gradient(135deg, rgba(11, 39, 68, .97), rgba(17, 70, 104, .96) 58%, rgba(14, 48, 83, .98));
	color: #fff;
	box-shadow:
		0 12px 30px rgba(0, 157, 220, .16),
		inset 0 1px 0 rgba(255, 255, 255, .12);
}
body.pst-app-route .pst-hero-button-answer::before {
	content: "";
	position: absolute;
	z-index: -1;
	inset: 0;
	background: linear-gradient(110deg, transparent 5%, rgba(105, 226, 255, .14) 45%, transparent 72%);
	transform: translateX(-70%);
	transition: transform .28s ease;
}
body.pst-app-route .pst-hero-button-answer:hover,
body.pst-app-route .pst-hero-button-answer:focus-visible {
	border-color: rgba(145, 234, 255, .96);
	transform: translateY(-1px);
	box-shadow:
		0 15px 34px rgba(0, 174, 230, .24),
		0 0 0 1px rgba(113, 224, 255, .12) inset;
}
body.pst-app-route .pst-hero-button-answer:hover::before,
body.pst-app-route .pst-hero-button-answer:focus-visible::before {
	transform: translateX(65%);
}
body.pst-app-route .pst-hero-answer-icon {
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(155, 235, 255, .38);
	border-radius: 12px;
	background: rgba(4, 19, 36, .48);
	color: #77e4ff;
	box-shadow: inset 0 0 16px rgba(51, 194, 239, .12);
}
body.pst-app-route .pst-hero-answer-icon .pst-icon {
	width: 25px;
	height: 25px;
	stroke-width: 2;
}
body.pst-app-route .pst-hero-answer-copy {
	min-width: 0;
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: flex-start;
	gap: 3px;
	text-align: left;
	line-height: 1.12;
}
body.pst-app-route .pst-hero-answer-copy strong {
	font-size: 17px;
	font-weight: 900;
	letter-spacing: .05em;
}
body.pst-app-route .pst-hero-answer-copy small {
	color: #b9d9e8;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .02em;
}
body.pst-app-route .pst-hero-answer-arrow {
	flex: 0 0 auto;
	margin-left: auto;
	color: #91eaff;
	font-size: 28px;
	font-weight: 400;
	line-height: 1;
}
body.pst-app-route .pst-archive-header.is-unanswered-archive h1 {
	color: #fff;
	text-shadow: 0 0 18px rgba(83, 203, 255, .16);
}
@media (max-width: 620px) {
	body.pst-app-route .pst-hero-actions {
		gap: 8px;
	}
	body.pst-app-route .pst-hero-button-answer {
		min-height: 58px;
		padding: 7px 12px 7px 10px;
		gap: 10px;
	}
	body.pst-app-route .pst-hero-answer-icon {
		flex-basis: 38px;
		width: 38px;
		height: 38px;
		border-radius: 10px;
	}
	body.pst-app-route .pst-hero-answer-copy strong {
		font-size: 15px;
	}
	body.pst-app-route .pst-hero-answer-copy small {
		font-size: 10px;
	}
	body.pst-app-route .pst-hero-answer-arrow {
		font-size: 25px;
	}
}


/* v0.4.3.3.167: 回答導線の文言を1行に統一 */
body.pst-app-route .pst-hero-button-answer .pst-hero-answer-copy {
	justify-content: center;
}
body.pst-app-route .pst-hero-button-answer .pst-hero-answer-copy strong {
	white-space: nowrap;
}


/* v0.4.3.3.168: 回答導線の矢印を削除し、文言をボタン中央へ配置 */
body.pst-app-route .pst-hero-button-answer {
	justify-content: center;
	padding-left: 62px;
	padding-right: 62px;
}
body.pst-app-route .pst-hero-button-answer .pst-hero-answer-icon {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
}
body.pst-app-route .pst-hero-button-answer .pst-hero-answer-copy {
	flex: 0 1 auto;
	align-items: center;
	justify-content: center;
	text-align: center;
}
body.pst-app-route .pst-hero-button-answer .pst-hero-answer-copy strong {
	text-align: center;
}
@media (max-width: 620px) {
	body.pst-app-route .pst-hero-button-answer {
		padding-left: 56px;
		padding-right: 56px;
	}
	body.pst-app-route .pst-hero-button-answer .pst-hero-answer-icon {
		left: 10px;
	}
}


/* v0.4.3.3.170: ホームの「未回答の質問をチェック」をゴールド仕様へ */
body.pst-app-route .pst-hero-button-answer {
	border: 1px solid rgba(232, 193, 96, .88);
	background:
		linear-gradient(135deg, rgba(78, 49, 8, .98), rgba(141, 98, 21, .97) 52%, rgba(103, 66, 12, .98));
	box-shadow:
		0 14px 32px rgba(164, 113, 17, .22),
		inset 0 1px 0 rgba(255, 245, 210, .22),
		inset 0 -1px 0 rgba(66, 37, 2, .24);
}
body.pst-app-route .pst-hero-button-answer::before {
	background: linear-gradient(110deg, transparent 6%, rgba(255, 241, 179, .2) 44%, transparent 74%);
}
body.pst-app-route .pst-hero-button-answer:hover,
body.pst-app-route .pst-hero-button-answer:focus-visible {
	border-color: rgba(255, 224, 130, .98);
	box-shadow:
		0 16px 36px rgba(180, 121, 12, .3),
		0 0 0 1px rgba(255, 227, 145, .14) inset,
		inset 0 1px 0 rgba(255, 248, 220, .28);
}
body.pst-app-route .pst-hero-button-answer .pst-hero-answer-icon {
	border-color: rgba(255, 220, 128, .46);
	background: linear-gradient(180deg, rgba(70, 43, 6, .82), rgba(36, 21, 3, .74));
	color: #ffd56a;
	box-shadow: inset 0 0 18px rgba(255, 207, 98, .12);
}
body.pst-app-route .pst-hero-button-answer .pst-hero-answer-copy strong {
	color: #fff7de;
	text-shadow: 0 1px 0 rgba(73, 44, 5, .65), 0 0 14px rgba(255, 219, 114, .14);
}


/* v0.4.3.3.171: 質問投稿時の進行表示と押し込み表現 */
body.pst-app-route #pst-question-submit {
	position: relative;
	min-height: 48px;
	box-shadow:
		0 5px 0 #9e0911,
		0 10px 20px rgba(119, 4, 10, .24);
	transition: transform .08s ease, box-shadow .08s ease, filter .08s ease;
	-webkit-tap-highlight-color: transparent;
}
body.pst-app-route #pst-question-submit:hover {
	filter: brightness(1.05);
}
body.pst-app-route #pst-question-submit:active,
body.pst-app-route #pst-question-submit.is-submitting {
	transform: translateY(4px);
	box-shadow:
		0 1px 0 #79070d,
		inset 0 3px 8px rgba(75, 0, 5, .34),
		0 5px 12px rgba(82, 2, 7, .18);
}
body.pst-app-route #pst-question-submit.is-submitting,
body.pst-app-route #pst-question-submit:disabled {
	cursor: wait;
	opacity: 1;
	filter: saturate(.9) brightness(.96);
}
@media (prefers-reduced-motion: reduce) {
	body.pst-app-route #pst-question-submit {
		transition: none;
	}
}

/* v0.4.3.3.173: private MEMO feature */
body.pst-app-route .pst-icon-bookmark {
	color: #e7bd57;
	filter: drop-shadow(0 0 7px rgba(231, 189, 87, .18));
}
body.pst-app-route .pst-memo-button {
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 36px;
	padding: 6px 10px;
	border: 1px solid rgba(211, 172, 70, .38);
	border-radius: 10px;
	background: linear-gradient(180deg, rgba(35, 27, 10, .92), rgba(18, 16, 10, .98));
	color: #d8bd78;
	font: inherit;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: .03em;
	cursor: pointer;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
	transition: transform .16s ease, border-color .16s ease, color .16s ease, background .16s ease, box-shadow .16s ease;
}
body.pst-app-route .pst-memo-button:hover,
body.pst-app-route .pst-memo-button:focus-visible {
	border-color: rgba(244, 207, 105, .72);
	color: #ffe19a;
	transform: translateY(-1px);
	box-shadow: 0 8px 18px rgba(109, 75, 12, .18), inset 0 1px 0 rgba(255,255,255,.08);
}
body.pst-app-route .pst-memo-button:active {
	transform: translateY(1px) scale(.985);
	box-shadow: inset 0 3px 9px rgba(0,0,0,.34);
}
body.pst-app-route .pst-memo-button.is-saved {
	border-color: rgba(246, 204, 91, .82);
	background: linear-gradient(180deg, rgba(125, 87, 16, .98), rgba(67, 43, 7, .98));
	color: #fff0b9;
	box-shadow: 0 0 18px rgba(224, 174, 55, .13), inset 0 1px 0 rgba(255, 244, 199, .14);
}
body.pst-app-route .pst-memo-button.is-saved .pst-icon-bookmark {
	fill: currentColor;
	stroke: currentColor;
}
body.pst-app-route .pst-memo-button:disabled,
body.pst-app-route .pst-memo-button.is-loading {
	opacity: .62;
	cursor: wait;
}
body.pst-app-route .pst-memo-icon,
body.pst-app-route .pst-memo-icon .pst-icon {
	display: inline-flex;
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
}
body.pst-app-route .pst-memo-button.is-compact {
	min-height: 30px;
	padding: 3px 7px;
	border: 0;
	border-radius: 7px;
	background: rgba(232, 190, 84, .055);
	font-size: 10px;
	color: #cfb66d;
}
body.pst-app-route .pst-memo-button.is-compact .pst-memo-icon,
body.pst-app-route .pst-memo-button.is-compact .pst-memo-icon .pst-icon {
	width: 13px;
	height: 13px;
	flex-basis: 13px;
}
body.pst-app-route .pst-memo-button.is-compact.is-saved {
	background: rgba(212, 166, 54, .15);
	color: #f1cb66;
}
body.pst-app-route .pst-thread-engagement .pst-memo-button {
	min-height: 40px;
	padding: 6px 11px;
	border-radius: 12px;
	font-size: 12px;
}
body.pst-app-route .pst-memo-toast {
	position: fixed;
	z-index: 100000;
	left: 50%;
	bottom: max(24px, calc(env(safe-area-inset-bottom) + 18px));
	max-width: min(88vw, 420px);
	padding: 12px 18px;
	border: 1px solid rgba(232, 193, 96, .74);
	border-radius: 999px;
	background: rgba(12, 18, 27, .96);
	color: #fff4ce;
	font-size: 13px;
	font-weight: 800;
	text-align: center;
	box-shadow: 0 14px 38px rgba(0,0,0,.42), 0 0 20px rgba(209, 163, 52, .12);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 14px);
	transition: opacity .2s ease, transform .2s ease;
}
body.pst-app-route .pst-memo-toast.is-visible {
	opacity: 1;
	transform: translate(-50%, 0);
}
body.pst-app-route .pst-mypage-tabs {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}
body.pst-app-route .pst-mypage-tab-memo {
	color: #e7c86f;
}
body.pst-app-route .pst-mypage-tab-memo.is-active {
	border-color: rgba(226, 186, 80, .72);
	background: linear-gradient(180deg, rgba(105, 74, 18, .82), rgba(48, 31, 7, .92));
	color: #fff1bc;
}
body.pst-app-route .pst-memo-section {
	display: grid;
	gap: 16px;
}
body.pst-app-route .pst-memo-heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	padding: 20px;
	border: 1px solid rgba(211, 172, 70, .42);
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(27, 25, 19, .98), rgba(13, 22, 33, .98));
	box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
body.pst-app-route .pst-memo-kicker {
	display: block;
	margin-bottom: 4px;
	color: #d9b757;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: .18em;
}
body.pst-app-route .pst-memo-heading h2 {
	margin: 0;
	color: #fff;
	font-size: clamp(22px, 3vw, 30px);
}
body.pst-app-route .pst-memo-heading p {
	margin: 8px 0 0;
	color: #aebfd0;
	font-size: 12px;
	line-height: 1.7;
}
body.pst-app-route .pst-memo-total {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 62px;
	min-height: 36px;
	padding: 5px 10px;
	border: 1px solid rgba(229, 190, 84, .46);
	border-radius: 999px;
	background: rgba(206, 159, 40, .09);
	color: #edcd73;
	font-size: 12px;
	font-weight: 900;
	white-space: nowrap;
}
body.pst-app-route .pst-memo-filter {
	display: grid;
	grid-template-columns: minmax(220px, 1.8fr) repeat(4, minmax(120px, 1fr));
	gap: 10px;
	padding: 14px;
	border: 1px solid rgba(118, 143, 167, .24);
	border-radius: 14px;
	background: rgba(7, 17, 29, .82);
}
body.pst-app-route .pst-memo-filter label {
	display: grid;
	gap: 6px;
	min-width: 0;
}
body.pst-app-route .pst-memo-filter label > span {
	color: #9fb0c2;
	font-size: 10px;
	font-weight: 800;
}
body.pst-app-route .pst-memo-filter input,
body.pst-app-route .pst-memo-filter select {
	width: 100%;
	min-height: 42px;
	padding: 8px 10px;
	border: 1px solid rgba(129, 150, 171, .3);
	border-radius: 9px;
	background: #091523;
	color: #eef5fb;
	font: inherit;
	font-size: 12px;
}
body.pst-app-route .pst-memo-filter-actions {
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
}
body.pst-app-route .pst-memo-filter-actions button,
body.pst-app-route .pst-memo-filter-actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 7px 16px;
	border-radius: 9px;
	font-size: 12px;
	font-weight: 900;
	text-decoration: none;
}
body.pst-app-route .pst-memo-filter-actions button {
	border: 1px solid rgba(235, 199, 102, .72);
	background: linear-gradient(180deg, #a77a20, #6c490d);
	color: #fff7df;
	cursor: pointer;
}
body.pst-app-route .pst-memo-filter-actions a {
	border: 1px solid rgba(129, 150, 171, .28);
	color: #b9c7d5;
}
body.pst-app-route .pst-memo-list {
	display: grid;
	gap: 12px;
}
body.pst-app-route .pst-memo-card {
	display: grid;
	gap: 10px;
	padding: 16px;
	border: 1px solid rgba(210, 170, 65, .38);
	border-radius: 15px;
	background: linear-gradient(145deg, rgba(11, 25, 40, .98), rgba(7, 17, 29, .98));
	box-shadow: 0 10px 26px rgba(0,0,0,.14), inset 0 1px 0 rgba(255,255,255,.035);
	transition: opacity .18s ease, transform .18s ease;
}
body.pst-app-route .pst-memo-card.is-removing {
	opacity: 0;
	transform: scale(.985);
}
body.pst-app-route .pst-memo-card.is-deleted {
	border-style: dashed;
	border-color: rgba(150, 158, 169, .32);
	opacity: .82;
}
body.pst-app-route .pst-memo-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
body.pst-app-route .pst-memo-card-top time {
	color: #8193a7;
	font-size: 10px;
	white-space: nowrap;
}
body.pst-app-route .pst-memo-card-badges {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
}
body.pst-app-route .pst-memo-type-badge,
body.pst-app-route .pst-memo-category-badge {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 3px 8px;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 900;
}
body.pst-app-route .pst-memo-type-badge {
	border: 1px solid rgba(224, 182, 72, .4);
	background: rgba(208, 161, 39, .1);
	color: #e7c768;
}
body.pst-app-route .pst-memo-category-badge {
	border: 1px solid rgba(103, 176, 220, .27);
	background: rgba(70, 148, 198, .08);
	color: #9bcce8;
}
body.pst-app-route .pst-memo-card-title {
	display: block;
	color: #f5f8fb;
	font-size: 18px;
	font-weight: 900;
	line-height: 1.55;
	text-align: center;
	text-decoration: none;
}
body.pst-app-route .pst-memo-post-shell {
	display: grid;
	gap: 12px;
	padding: 15px;
	border: 1px solid rgba(210, 170, 65, .2);
	border-radius: 16px;
	background: radial-gradient(circle at top, rgba(16, 42, 65, .6), rgba(6, 16, 28, .92));
}
body.pst-app-route .pst-memo-post-shell-top {
	padding-bottom: 2px;
	border-bottom: 1px solid rgba(115, 137, 158, .14);
}
body.pst-app-route .pst-memo-post-header {
	display: grid;
	gap: 8px;
	text-align: center;
}
body.pst-app-route .pst-memo-post-machine {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0 auto;
	color: #dbe6f0;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.5;
}
body.pst-app-route .pst-memo-post-machine .pst-icon {
	width: 16px;
	height: 16px;
	color: #d7b45a;
}
body.pst-app-route .pst-memo-post-meta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
	color: #8fa2b4;
	font-size: 11px;
	line-height: 1.6;
}
body.pst-app-route .pst-memo-post-meta small {
	margin: 0;
	color: #95a9bd;
	font-size: 11px;
}
body.pst-app-route .pst-memo-post-content {
	margin: 0;
	padding: 14px 15px;
	border: 1px solid rgba(113, 139, 163, .2);
	border-radius: 14px;
	background: rgba(3, 12, 22, .8);
	color: #eef4f8;
	font-size: 14px;
	line-height: 1.9;
	white-space: pre-wrap;
	word-break: break-word;
}
body.pst-app-route .pst-memo-post-shell .pst-question-attachment,
body.pst-app-route .pst-memo-post-shell .pst-report-attachment {
	margin: 0;
	padding: 12px;
	border: 1px solid rgba(113, 139, 163, .16);
	border-radius: 14px;
	background: rgba(4, 13, 23, .68);
}
body.pst-app-route .pst-memo-post-shell .pst-question-attachment figcaption,
body.pst-app-route .pst-memo-post-shell .pst-report-attachment figcaption {
	font-size: 11px;
}
body.pst-app-route .pst-memo-preview-stats {
	margin-top: 2px;
}
body.pst-app-route .pst-memo-preview-stats.pst-thread-engagement.pst-engagement-bar {
	width: 100%;
}
body.pst-app-route a.pst-memo-card-title:hover {
	color: #f2cb69;
}
body.pst-app-route .pst-memo-machine {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	margin: 2px 0 0;
	color: #c7d5e2;
	font-size: 13px;
	font-weight: 800;
	text-align: center;
}
body.pst-app-route .pst-memo-machine .pst-icon {
	width: 15px;
	height: 15px;
	color: #d5ad47;
}
body.pst-app-route .pst-memo-excerpt {
	margin: 0;
	color: #9dafc1;
	font-size: 12px;
	line-height: 1.75;
}
body.pst-app-route .pst-memo-note-form {
	display: grid;
	gap: 9px;
	padding-top: 11px;
	border-top: 1px solid rgba(115, 137, 158, .18);
}
body.pst-app-route .pst-memo-note-form label {
	display: grid;
	gap: 6px;
}
body.pst-app-route .pst-memo-note-form label > span {
	color: #d9e2eb;
	font-size: 11px;
	font-weight: 900;
}
body.pst-app-route .pst-memo-note-form label small {
	margin-left: 4px;
	color: #8294a6;
	font-weight: 700;
}
body.pst-app-route .pst-memo-note-form textarea {
	width: 100%;
	min-height: 76px;
	resize: vertical;
	padding: 10px 11px;
	border: 1px solid rgba(123, 147, 170, .3);
	border-radius: 10px;
	background: rgba(4, 13, 23, .86);
	color: #f0f5f9;
	font: inherit;
	font-size: 12px;
	line-height: 1.65;
}
body.pst-app-route .pst-memo-card-actions {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 10px;
	flex-wrap: wrap;
}
body.pst-app-route .pst-memo-card-actions > * {
	flex: 1 1 0;
}
body.pst-app-route .pst-memo-note-save {
	min-height: 42px;
	width: 100%;
	padding: 7px 14px;
	border: 1px solid rgba(216, 178, 78, .62);
	border-radius: 11px;
	background: linear-gradient(180deg, rgba(162, 116, 28, .98), rgba(93, 60, 9, .98));
	color: #fff3c7;
	font: inherit;
	font-size: 12px;
	font-weight: 900;
	cursor: pointer;
}
body.pst-app-route .pst-memo-share-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 42px;
	width: 100%;
	padding: 7px 14px;
	border: 1px solid rgba(98, 176, 223, .36);
	border-radius: 11px;
	background: rgba(18, 55, 84, .48);
	color: #9fd4f0;
	font: inherit;
	font-size: 12px;
	font-weight: 900;
	cursor: pointer;
}
body.pst-app-route .pst-memo-share-button:hover,
body.pst-app-route .pst-memo-share-button:focus-visible {
	border-color: rgba(117, 196, 240, .54);
	background: rgba(23, 72, 108, .6);
	color: #d4f0ff;
}
body.pst-app-route .pst-memo-share-button:focus-visible {
	outline: 2px solid rgba(100, 190, 235, .34);
	outline-offset: 2px;
}
body.pst-app-route .pst-memo-share-icon,
body.pst-app-route .pst-memo-share-icon .pst-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
}
body.pst-app-route .pst-memo-card-actions .pst-memo-button {
	min-height: 42px;
	width: 100%;
	justify-content: center;
	border-radius: 11px;
}
body.pst-app-route .pst-memo-card-actions .pst-memo-button .pst-memo-copy {
	justify-content: center;
}
body.pst-app-route .pst-memo-button.is-remove-button {
	border-color: rgba(190, 110, 110, .34);
	background: rgba(93, 35, 35, .12);
	color: #d8a2a2;
}
body.pst-app-route .pst-memo-empty {
	display: grid;
	place-items: center;
	gap: 8px;
	padding: 34px 18px;
	border: 1px dashed rgba(187, 155, 70, .34);
	border-radius: 14px;
	background: rgba(12, 22, 32, .62);
	text-align: center;
}
body.pst-app-route .pst-memo-empty > span,
body.pst-app-route .pst-memo-empty .pst-icon {
	width: 34px;
	height: 34px;
	color: #d7b75c;
}
body.pst-app-route .pst-memo-empty strong {
	color: #eef3f7;
	font-size: 14px;
}
body.pst-app-route .pst-memo-empty p {
	margin: 0;
	color: #8fa2b5;
	font-size: 11px;
}
@media (max-width: 1080px) {
	body.pst-app-route .pst-memo-filter {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	body.pst-app-route .pst-memo-filter-keyword {
		grid-column: 1 / -1;
	}
}
@media (max-width: 767px) {
	body.pst-app-route .pst-mypage-tabs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	body.pst-app-route .pst-question-row-stats .pst-memo-label {
		display: none;
	}
	body.pst-app-route .pst-memo-button.is-compact {
		width: 28px;
		padding-left: 5px;
		padding-right: 5px;
	}
	body.pst-app-route .pst-thread-engagement {
		flex-wrap: wrap;
	}
	body.pst-app-route .pst-thread-engagement .pst-memo-button {
		min-height: 34px;
		padding: 5px 8px;
	}
	body.pst-app-route .pst-memo-heading {
		padding: 16px;
	}
	body.pst-app-route .pst-memo-filter {
		grid-template-columns: 1fr;
		padding: 12px;
	}
	body.pst-app-route .pst-memo-filter-keyword,
	body.pst-app-route .pst-memo-filter-actions {
		grid-column: auto;
	}
	body.pst-app-route .pst-memo-filter-actions {
		justify-content: stretch;
	}
	body.pst-app-route .pst-memo-filter-actions button,
	body.pst-app-route .pst-memo-filter-actions a {
		flex: 1 1 0;
	}
	body.pst-app-route .pst-memo-card {
		padding: 13px;
	}
	body.pst-app-route .pst-memo-card-top {
		align-items: flex-start;
		flex-direction: column;
	}
	body.pst-app-route .pst-memo-card-title {
		font-size: 19px;
	}
	body.pst-app-route .pst-memo-machine {
		font-size: 14px;
	}
	body.pst-app-route .pst-memo-post-shell {
		padding: 13px;
		gap: 11px;
	}
	body.pst-app-route .pst-memo-post-machine {
		font-size: 16px;
	}
	body.pst-app-route .pst-memo-post-content {
		padding: 13px 14px;
		font-size: 13px;
		line-height: 1.85;
	}
	body.pst-app-route .pst-memo-card-actions {
		align-items: stretch;
		flex-direction: column;
	}
	body.pst-app-route .pst-memo-card-actions > * {
		width: 100%;
	}
}
body.pst-app-route .pst-question-row-stats .pst-memo-button {
	position: relative;
	z-index: 3;
}


/* v0.4.3.3.174: MEMO検索をキーワード＋並び順に簡素化 */
body.pst-app-route .pst-memo-filter {
	grid-template-columns: minmax(260px, 1fr) minmax(170px, 220px);
}
@media (max-width: 767px) {
	body.pst-app-route .pst-memo-filter {
		grid-template-columns: 1fr;
	}
}


/* v0.4.3.3.175: マイページの項目を「設定」へ収納 */
body.pst-app-route .pst-mypage-main-tabs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	width: min(100%, 520px);
	margin: 22px auto 14px;
	padding: 8px;
	border: 1px solid rgba(212, 175, 55, .38);
	border-radius: 16px;
	background: rgba(13, 16, 21, .96);
	box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
}
body.pst-app-route .pst-mypage-main-tab {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-width: 0;
	min-height: 54px;
	padding: 10px 16px;
	border: 1px solid rgba(212, 175, 55, .24);
	border-radius: 12px;
	background: linear-gradient(180deg, rgba(31, 34, 41, .98), rgba(21, 23, 29, .98));
	color: #d9dde4;
	font: inherit;
	font-size: 14px;
	font-weight: 900;
	letter-spacing: .04em;
	cursor: pointer;
	transition: transform .16s ease, border-color .16s ease, background .16s ease, color .16s ease, box-shadow .16s ease;
}
body.pst-app-route .pst-mypage-main-tab:hover {
	transform: translateY(-1px);
	border-color: rgba(240, 205, 104, .72);
	color: #fff1bd;
}
body.pst-app-route .pst-mypage-main-tab.is-active {
	border-color: rgba(235, 196, 83, .88);
	background: linear-gradient(180deg, rgba(87, 62, 14, .96), rgba(45, 31, 7, .98));
	color: #ffecae;
	box-shadow: inset 0 0 0 1px rgba(255, 232, 154, .12), 0 8px 22px rgba(172, 123, 22, .14);
}
body.pst-app-route .pst-mypage-main-tab:focus-visible {
	outline: 2px solid #f1cc5b;
	outline-offset: 2px;
}
body.pst-app-route .pst-mypage-main-tab-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
	flex: 0 0 25px;
	color: currentColor;
}
body.pst-app-route .pst-mypage-main-tab-icon .pst-icon {
	width: 100%;
	height: 100%;
	stroke-width: 1.8;
}
body.pst-app-route .pst-mypage-main-tab-settings:hover .pst-icon-gear,
body.pst-app-route .pst-mypage-main-tab-settings.is-active .pst-icon-gear {
	transform: rotate(18deg);
}
body.pst-app-route .pst-mypage-main-tab-settings .pst-icon-gear {
	transition: transform .2s ease;
}
body.pst-app-route .pst-mypage-main-panel[hidden] {
	display: none !important;
}
body.pst-app-route .pst-mypage-main-panel {
	min-width: 0;
}
body.pst-app-route .pst-mypage-settings-menu {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 0 0 14px;
}
body.pst-app-route .pst-mypage-settings-panels {
	min-width: 0;
}
body.pst-app-route .pst-mypage-main-tab-memo.is-active {
	border-color: rgba(226, 186, 80, .88);
	background: linear-gradient(180deg, rgba(105, 74, 18, .92), rgba(48, 31, 7, .98));
	color: #fff1bc;
}
@media (max-width: 700px) {
	body.pst-app-route .pst-mypage-main-tabs {
		gap: 7px;
		padding: 7px;
	}
	body.pst-app-route .pst-mypage-main-tab {
		min-height: 50px;
		padding: 8px 10px;
		font-size: 13px;
	}
	body.pst-app-route .pst-mypage-main-tab-icon {
		width: 22px;
		height: 22px;
		flex-basis: 22px;
	}
	body.pst-app-route .pst-mypage-settings-menu {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 7px;
		padding: 7px;
	}
}
@media (max-width: 380px) {
	body.pst-app-route .pst-mypage-main-tab {
		gap: 6px;
		padding-left: 7px;
		padding-right: 7px;
	}
}


/* v0.4.3.3.176: ホームの特徴欄にMEMO機能の案内を追加 */
@media (min-width: 1181px) {
	body.pst-app-route #pst-features .pst-feature-grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
		gap: 14px;
	}
}
body.pst-app-route #pst-features .pst-feature-grid > div:nth-child(3) .pst-feature-icon {
	color: #d8b14a;
}
@media (min-width: 621px) and (max-width: 1180px) {
	body.pst-app-route #pst-features .pst-feature-grid > div:nth-child(3) {
		grid-column: 2;
		grid-row: 2;
	}
	body.pst-app-route #pst-features .pst-feature-grid > div:nth-child(4) {
		grid-column: 1;
		grid-row: 2;
	}
	body.pst-app-route #pst-features .pst-feature-grid > div:nth-child(5) {
		grid-column: 1 / -1;
		width: calc(50% - 8px);
		justify-self: center;
	}
}
@media (max-width: 620px) {
	body.pst-app-route #pst-features .pst-feature-grid > div:nth-child(3),
	body.pst-app-route #pst-features .pst-feature-grid > div:nth-child(4),
	body.pst-app-route #pst-features .pst-feature-grid > div:nth-child(5) {
		grid-column: auto;
		grid-row: auto;
		width: auto;
	}
}


/* v0.4.3.3.178: ホームの最新記事カードではMEMOボタンを非表示 */
body.pst-app-route .pst-home .pst-question-row-stats .pst-memo-button {
	display: none;
}


/* v0.4.3.3.179: ホームの最新記事カードだけ、反応数を右端に縦並び */
body.pst-app-route .pst-home .pst-question-row-stats {
	align-self: center;
	justify-self: end;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
	gap: 4px;
	width: 38px;
	margin-left: 7px;
	padding-left: 7px;
	border-left: 1px solid rgba(212, 168, 67, .22);
}
body.pst-app-route .pst-home .pst-question-row-stats .pst-card-stat {
	width: 31px;
	min-width: 31px;
	min-height: 25px;
	padding: 3px 4px;
	gap: 3px;
	border-radius: 7px;
	font-size: 9px;
	line-height: 1;
}
body.pst-app-route .pst-home .pst-question-row-stats .pst-card-stat svg,
body.pst-app-route .pst-home .pst-question-row-stats .pst-stat-like-icon .pst-icon {
	width: 12px;
	height: 12px;
}
body.pst-app-route .pst-home .pst-report-row .pst-question-row-stats {
	margin-top: 0;
	margin-left: 7px;
}
@media (max-width: 767px) {
	body.pst-app-route .pst-home .pst-question-row-stats {
		width: 35px;
		margin-left: 4px;
		padding-left: 5px;
		gap: 3px;
	}
	body.pst-app-route .pst-home .pst-question-row-stats .pst-card-stat {
		width: 29px;
		min-width: 29px;
		min-height: 23px;
		padding: 2px 3px;
		font-size: 9px;
	}
	body.pst-app-route .pst-home .pst-question-row-stats .pst-card-stat svg,
	body.pst-app-route .pst-home .pst-question-row-stats .pst-stat-like-icon .pst-icon {
		width: 11px;
		height: 11px;
	}
	body.pst-app-route .pst-home .pst-report-row .pst-question-row-stats {
		margin-left: 4px;
	}
}


/* v0.4.3.3.183: ホームの最新実戦報告カード左アイコンを縦書き画像へ置換 */
body.pst-app-route .pst-home #pst-reports .pst-report-row .pst-report-icon.pst-report-icon-home-vertical {
	padding: 0;
	overflow: hidden;
}
body.pst-app-route .pst-home #pst-reports .pst-report-icon-home-vertical-image {
	display: block;
	width: 18px;
	height: 32px;
	margin: 0 auto;
	object-fit: contain;
}
@media (max-width: 767px) {
	body.pst-app-route .pst-home #pst-reports .pst-report-icon-home-vertical-image {
		width: 17px;
		height: 30px;
	}
}


/* v0.4.3.3.184: ホーム最新実戦の左アイコンから四角枠を外し、縦ロゴを広く表示 */
body.pst-app-route .pst-home #pst-reports .pst-report-row .pst-report-icon.pst-report-icon-home-vertical {
	width: 24px;
	height: 50px;
	padding: 0;
	margin: 0 auto;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	overflow: visible;
}
body.pst-app-route .pst-home #pst-reports .pst-report-icon-home-vertical-image {
	display: block;
	width: auto;
	height: 48px;
	max-width: 24px;
	margin: 0 auto;
	object-fit: contain;
}
@media (max-width: 767px) {
	body.pst-app-route .pst-home #pst-reports .pst-report-row .pst-report-icon.pst-report-icon-home-vertical {
		width: 22px;
		height: 46px;
	}
	body.pst-app-route .pst-home #pst-reports .pst-report-icon-home-vertical-image {
		height: 44px;
		max-width: 22px;
	}
}


/* v0.4.3.3.185: ホーム最新実戦の縦ロゴをもう少し拡大 */
body.pst-app-route .pst-home #pst-reports .pst-report-row .pst-report-icon.pst-report-icon-home-vertical {
	width: 28px;
	height: 58px;
}
body.pst-app-route .pst-home #pst-reports .pst-report-icon-home-vertical-image {
	height: 56px;
	max-width: 28px;
}
@media (max-width: 767px) {
	body.pst-app-route .pst-home #pst-reports .pst-report-row .pst-report-icon.pst-report-icon-home-vertical {
		width: 25px;
		height: 54px;
	}
	body.pst-app-route .pst-home #pst-reports .pst-report-icon-home-vertical-image {
		height: 52px;
		max-width: 25px;
	}
}


/* v0.4.3.3.186: ホーム最新実戦の縦ロゴをさらに最大サイズへ */
body.pst-app-route .pst-home #pst-reports .pst-report-row .pst-report-icon.pst-report-icon-home-vertical {
	width: 34px;
	height: 68px;
	align-self: center;
}
body.pst-app-route .pst-home #pst-reports .pst-report-icon-home-vertical-image {
	height: 66px;
	max-width: 34px;
}
@media (max-width: 767px) {
	body.pst-app-route .pst-home #pst-reports .pst-report-row .pst-report-icon.pst-report-icon-home-vertical {
		width: 30px;
		height: 62px;
	}
	body.pst-app-route .pst-home #pst-reports .pst-report-icon-home-vertical-image {
		height: 60px;
		max-width: 30px;
	}
}


/* v0.4.3.3.188: ホームの最新実戦報告カードをレインボー枠に変更 */
body.pst-app-route .pst-home #pst-reports .pst-report-row {
	border: 1px solid transparent;
	background:
		linear-gradient(145deg, rgba(12, 29, 49, .94), rgba(6, 18, 32, .98)) padding-box,
		linear-gradient(110deg, #ff4d4d, #ff9f43, #ffd93d, #4cd964, #32d8ff, #5b7cff, #b36bff, #ff4d9d, #ff4d4d) border-box;
	background-size: 100% 100%, 320% 100%;
	box-shadow:
		0 7px 20px rgba(0, 0, 0, .18),
		0 0 14px rgba(92, 206, 255, .08);
	animation: pst-home-report-rainbow-border 8s linear infinite;
}
body.pst-app-route .pst-home #pst-reports .pst-report-row:last-child {
	border-bottom-color: transparent;
}
body.pst-app-route .pst-home #pst-reports .pst-report-row:hover {
	border-color: transparent;
	background:
		linear-gradient(145deg, rgba(16, 38, 63, .98), rgba(8, 24, 42, .99)) padding-box,
		linear-gradient(110deg, #ff4d4d, #ff9f43, #ffd93d, #4cd964, #32d8ff, #5b7cff, #b36bff, #ff4d9d, #ff4d4d) border-box;
	background-size: 100% 100%, 320% 100%;
	box-shadow:
		0 10px 27px rgba(0, 0, 0, .24),
		0 0 18px rgba(105, 214, 255, .13);
}
@keyframes pst-home-report-rainbow-border {
	0% { background-position: 0 0, 0% 50%; }
	100% { background-position: 0 0, 320% 50%; }
}
@media (prefers-reduced-motion: reduce) {
	body.pst-app-route .pst-home #pst-reports .pst-report-row {
		animation: none;
		background-position: 0 0, 50% 50%;
	}
}


/* v0.4.3.3.189: 最新実戦の先頭カード上辺が欠けないよう余白とクリップを調整 */
body.pst-app-route .pst-home #pst-reports .pst-report-feed {
	overflow: visible;
	padding-top: 2px;
}
body.pst-app-route .pst-home #pst-reports .pst-report-row:first-child {
	margin-top: 0;
}


/* v0.4.3.3.191: スマホ下部固定タブの検索アイコンを少し拡大 */
@media (max-width: 767px) {
	body.pst-app-route .pst-mobile-nav .pst-mobile-nav-search-icon {
		font-size: 27px;
		line-height: .9;
	}
}


/* v0.4.3.3.192: 特徴欄の先頭に簡単登録を追加し、6項目を整列 */
@media (min-width: 1181px) {
	body.pst-app-route #pst-features .pst-feature-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 18px 20px;
	}
}
@media (min-width: 621px) and (max-width: 1180px) {
	body.pst-app-route #pst-features .pst-feature-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	body.pst-app-route #pst-features .pst-feature-grid > div {
		grid-column: auto !important;
		grid-row: auto !important;
		width: auto !important;
		justify-self: stretch !important;
	}
}
@media (max-width: 620px) {
	body.pst-app-route #pst-features .pst-feature-grid {
		grid-template-columns: 1fr;
	}
}
body.pst-app-route #pst-features .pst-feature-grid > div:nth-child(4) .pst-feature-icon {
	color: #d8b14a;
}


/* v0.4.3.3.194: 考察・台の挙動の公式未確認情報に関する注意書き */
body.pst-app-route .pst-category-disclaimer {
	margin: -8px 0 16px;
	padding: 9px 12px;
	border: 1px solid rgba(231, 190, 82, .34);
	border-radius: 9px;
	background: rgba(231, 190, 82, .07);
	color: #d8c995;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.65;
}
body.pst-app-route .pst-form-category-disclaimer {
	margin: -4px 0 2px;
}
body.pst-app-route .pst-form-category-disclaimer[hidden] {
	display: none !important;
}
@media (max-width: 767px) {
	body.pst-app-route .pst-category-disclaimer {
		margin-top: -5px;
		padding: 8px 10px;
		font-size: 10px;
	}
}

/* v0.4.3.3.197: Q&A・カテゴリ一覧のページ送りをダーク×ゴールドUIへ刷新 */
body.pst-app-route .pst-archive-pagination {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}
body.pst-app-route .pst-archive-pagination .navigation.pagination {
	width: auto;
	max-width: 100%;
	margin: 0;
}
body.pst-app-route .pst-archive-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: fit-content;
	max-width: 100%;
	margin: 0 auto;
	padding: 9px;
	border: 1px solid rgba(220, 177, 67, .46);
	border-radius: 17px;
	background: linear-gradient(145deg, rgba(11, 28, 48, .96), rgba(4, 15, 28, .98));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035), 0 12px 28px rgba(0, 0, 0, .24), 0 0 20px rgba(212, 168, 67, .06);
}
body.pst-app-route .pst-archive-pagination .page-numbers {
	box-sizing: border-box;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	margin: 0 !important;
	padding: 0 12px;
	border: 1px solid rgba(116, 151, 190, .38) !important;
	border-radius: 12px;
	background: rgba(7, 21, 38, .9) !important;
	color: #eef4fb !important;
	font-size: 15px;
	font-weight: 850;
	line-height: 1 !important;
	text-decoration: none !important;
	text-shadow: none !important;
	white-space: nowrap;
	overflow: hidden;
	transition: transform .16s ease, border-color .16s ease, background .16s ease, box-shadow .16s ease;
}
body.pst-app-route .pst-archive-pagination a.page-numbers:hover,
body.pst-app-route .pst-archive-pagination a.page-numbers:focus-visible {
	transform: translateY(-1px);
	border-color: rgba(239, 197, 84, .82) !important;
	background: rgba(24, 42, 64, .98) !important;
	box-shadow: 0 7px 16px rgba(0, 0, 0, .2), 0 0 12px rgba(229, 184, 67, .1);
}
body.pst-app-route .pst-archive-pagination .page-numbers.current {
	border-color: #f1c94f !important;
	background: linear-gradient(145deg, #ffd45c, #d89413) !important;
	color: #111827 !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), 0 7px 17px rgba(214, 145, 16, .24), 0 0 0 1px rgba(255, 221, 111, .08);
}
body.pst-app-route .pst-archive-pagination .page-numbers.prev,
body.pst-app-route .pst-archive-pagination .page-numbers.next {
	gap: 7px;
	min-width: 88px;
	padding: 0 15px;
}
body.pst-app-route .pst-archive-pagination .pst-pagination-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 500;
	line-height: .7;
	transform: translateY(-1px);
}
body.pst-app-route .pst-archive-pagination .page-numbers.dots {
	min-width: 24px;
	padding: 0 3px;
	border-color: transparent !important;
	background: transparent !important;
	color: #91a0b2 !important;
	overflow: visible;
}
body.pst-app-route .pst-archive-pagination .screen-reader-text {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}
@media (max-width: 520px) {
	body.pst-app-route .pst-archive-pagination {
		margin-top: 26px;
	}
	body.pst-app-route .pst-archive-pagination .nav-links {
		gap: 7px;
		padding: 7px;
		border-radius: 15px;
	}
	body.pst-app-route .pst-archive-pagination .page-numbers {
		min-width: 42px;
		height: 42px;
		padding: 0 10px;
		border-radius: 11px;
		font-size: 14px;
	}
	body.pst-app-route .pst-archive-pagination .page-numbers.prev,
	body.pst-app-route .pst-archive-pagination .page-numbers.next {
		min-width: 78px;
		padding: 0 11px;
		gap: 5px;
		font-size: 13px;
	}
	body.pst-app-route .pst-archive-pagination .pst-pagination-arrow {
		font-size: 22px;
	}
}



/* v0.4.3.3.198: 「前へ」「次へ」は枠なしのテキストリンクに変更 */
body.pst-app-route .pst-archive-pagination .page-numbers.prev,
body.pst-app-route .pst-archive-pagination .page-numbers.next {
	min-width: auto;
	height: auto;
	padding: 9px 7px;
	border: 0 !important;
	border-radius: 0;
	background: transparent !important;
	box-shadow: none !important;
	color: #e8c765 !important;
	overflow: visible;
}
body.pst-app-route .pst-archive-pagination a.page-numbers.prev:hover,
body.pst-app-route .pst-archive-pagination a.page-numbers.prev:focus-visible,
body.pst-app-route .pst-archive-pagination a.page-numbers.next:hover,
body.pst-app-route .pst-archive-pagination a.page-numbers.next:focus-visible {
	transform: translateY(-1px);
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: #ffe39a !important;
}
@media (max-width: 520px) {
	body.pst-app-route .pst-archive-pagination .page-numbers.prev,
	body.pst-app-route .pst-archive-pagination .page-numbers.next {
		min-width: auto;
		height: auto;
		padding: 9px 5px;
	}
}


/* v0.4.3.3.199: モバイルで崩れないシンプルなページ送りへ再構築 */
body.pst-app-route .pst-archive-pagination {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 28px 0 0 !important;
	padding: 0 8px !important;
	box-sizing: border-box !important;
	overflow: visible !important;
}
body.pst-app-route .pst-archive-pagination .navigation.pagination {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}
body.pst-app-route .pst-archive-pagination .nav-links {
	display: flex !important;
	flex-flow: row wrap !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 auto !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	box-sizing: border-box !important;
	overflow: visible !important;
}
body.pst-app-route .pst-archive-pagination .page-numbers {
	flex: 0 0 auto !important;
	box-sizing: border-box !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-width: 42px !important;
	width: auto !important;
	height: 42px !important;
	margin: 0 !important;
	padding: 0 11px !important;
	border: 1px solid rgba(116, 151, 190, .42) !important;
	border-radius: 12px !important;
	background: rgba(7, 21, 38, .92) !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025) !important;
	color: #edf3fa !important;
	font-size: 15px !important;
	font-weight: 800 !important;
	line-height: 1 !important;
	text-decoration: none !important;
	text-shadow: none !important;
	white-space: nowrap !important;
	overflow: hidden !important;
}
body.pst-app-route .pst-archive-pagination .page-numbers.current {
	border-color: #f1c94f !important;
	background: linear-gradient(145deg, #ffd45c, #d89413) !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), 0 7px 17px rgba(214, 145, 16, .24), 0 0 16px rgba(229, 184, 67, .12) !important;
	color: #111827 !important;
}
body.pst-app-route .pst-archive-pagination a.page-numbers:not(.prev):not(.next):hover,
body.pst-app-route .pst-archive-pagination a.page-numbers:not(.prev):not(.next):focus-visible {
	transform: translateY(-1px) !important;
	border-color: rgba(239, 197, 84, .82) !important;
	background: rgba(24, 42, 64, .98) !important;
	box-shadow: 0 7px 16px rgba(0, 0, 0, .2), 0 0 12px rgba(229, 184, 67, .1) !important;
}
body.pst-app-route .pst-archive-pagination .page-numbers.prev,
body.pst-app-route .pst-archive-pagination .page-numbers.next {
	flex: 0 0 auto !important;
	min-width: 0 !important;
	width: auto !important;
	height: 42px !important;
	padding: 0 5px !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: #e8c765 !important;
	font-size: 14px !important;
	font-weight: 800 !important;
	white-space: nowrap !important;
	overflow: visible !important;
}
body.pst-app-route .pst-archive-pagination a.page-numbers.prev:hover,
body.pst-app-route .pst-archive-pagination a.page-numbers.prev:focus-visible,
body.pst-app-route .pst-archive-pagination a.page-numbers.next:hover,
body.pst-app-route .pst-archive-pagination a.page-numbers.next:focus-visible {
	transform: translateY(-1px) !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: #ffe39a !important;
}
body.pst-app-route .pst-archive-pagination .page-numbers.dots {
	min-width: 20px !important;
	width: auto !important;
	padding: 0 2px !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: #91a0b2 !important;
	overflow: visible !important;
}
@media (max-width: 520px) {
	body.pst-app-route .pst-archive-pagination {
		margin-top: 24px !important;
		padding: 0 4px !important;
	}
	body.pst-app-route .pst-archive-pagination .nav-links {
		gap: 6px !important;
	}
	body.pst-app-route .pst-archive-pagination .page-numbers {
		min-width: 40px !important;
		height: 40px !important;
		padding: 0 9px !important;
		border-radius: 11px !important;
		font-size: 14px !important;
	}
	body.pst-app-route .pst-archive-pagination .page-numbers.prev,
	body.pst-app-route .pst-archive-pagination .page-numbers.next {
		height: 40px !important;
		padding: 0 3px !important;
		font-size: 13px !important;
	}
}


/* v0.4.3.3.200: 一覧カードはMEMOを外し、反応数3項目を右端に縦並び */
body.pst-app-route .pst-question-row > .pst-question-row-stats,
body.pst-app-route .pst-report-row > .pst-question-row-stats {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
	align-self: center;
	justify-self: end;
	gap: 4px;
	width: 38px;
	min-width: 38px;
	margin-left: 7px;
	padding-left: 7px;
	border-left: 1px solid rgba(212, 168, 67, .22);
	white-space: normal;
}
body.pst-app-route .pst-question-row > .pst-question-row-stats .pst-card-stat,
body.pst-app-route .pst-report-row > .pst-question-row-stats .pst-card-stat {
	width: 31px;
	min-width: 31px;
	min-height: 25px;
	padding: 3px 4px;
	gap: 3px;
	border-radius: 7px;
	font-size: 9px;
	line-height: 1;
}
body.pst-app-route .pst-question-row > .pst-question-row-stats .pst-card-stat svg,
body.pst-app-route .pst-question-row > .pst-question-row-stats .pst-stat-like-icon .pst-icon,
body.pst-app-route .pst-report-row > .pst-question-row-stats .pst-card-stat svg,
body.pst-app-route .pst-report-row > .pst-question-row-stats .pst-stat-like-icon .pst-icon {
	width: 12px;
	height: 12px;
}
/* キャッシュ済みHTMLや旧テンプレートが残っていても、一覧ではMEMOを表示しない */
body.pst-app-route .pst-question-row > .pst-question-row-stats .pst-memo-button,
body.pst-app-route .pst-report-row > .pst-question-row-stats .pst-memo-button {
	display: none !important;
}
@media (max-width: 767px) {
	body.pst-app-route .pst-question-row > .pst-question-row-stats,
	body.pst-app-route .pst-report-row > .pst-question-row-stats {
		width: 35px;
		min-width: 35px;
		margin-left: 4px;
		padding-left: 5px;
		gap: 3px;
	}
	body.pst-app-route .pst-question-row > .pst-question-row-stats .pst-card-stat,
	body.pst-app-route .pst-report-row > .pst-question-row-stats .pst-card-stat {
		width: 29px;
		min-width: 29px;
		min-height: 23px;
		padding: 2px 3px;
		font-size: 9px;
	}
	body.pst-app-route .pst-question-row > .pst-question-row-stats .pst-card-stat svg,
	body.pst-app-route .pst-question-row > .pst-question-row-stats .pst-stat-like-icon .pst-icon,
	body.pst-app-route .pst-report-row > .pst-question-row-stats .pst-card-stat svg,
	body.pst-app-route .pst-report-row > .pst-question-row-stats .pst-stat-like-icon .pst-icon {
		width: 11px;
		height: 11px;
	}
}

/* v0.4.3.3.201: 投稿詳細のMEMO保存人数 */
body.pst-app-route .pst-memo-button[data-pst-memo-count-enabled="1"] {
	white-space: nowrap;
}
body.pst-app-route .pst-memo-save-count {
	display: inline-flex;
	align-items: baseline;
	gap: 1px;
	margin-left: 2px;
	padding-left: 8px;
	border-left: 1px solid rgba(232, 193, 96, .3);
	color: #f3d98f;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1;
}
body.pst-app-route .pst-memo-save-count-number {
	color: #fff1bd;
	font-size: 12px;
	font-weight: 950;
	font-variant-numeric: tabular-nums;
}
body.pst-app-route .pst-memo-button.is-saved .pst-memo-save-count {
	border-left-color: rgba(255, 239, 180, .34);
	color: #ffe9a7;
}
@media (max-width: 767px) {
	body.pst-app-route .pst-thread-engagement .pst-memo-button[data-pst-memo-count-enabled="1"] {
		min-height: 36px;
		padding: 5px 8px;
	}
	body.pst-app-route .pst-memo-save-count {
		padding-left: 6px;
		font-size: 9px;
	}
	body.pst-app-route .pst-memo-save-count-number {
		font-size: 11px;
	}
}


/* v0.4.3.3.202: 質問詳細の情報欄を引き締め、見出し色を変えて本文を目立たせる */
body.pst-app-route .pst-question-detail-header {
	padding: 18px 20px 14px;
}
body.pst-app-route .pst-question-detail-header .pst-question-author-row {
	padding-bottom: 10px;
}
body.pst-app-route .pst-question-title-block {
	margin-top: 10px;
}
body.pst-app-route .pst-question-detail > .pst-single-content {
	padding: 14px 18px 20px;
}
body.pst-app-route .pst-question-overview {
	gap: 8px;
	margin-bottom: 12px;
}
body.pst-app-route .pst-question-overview-item {
	padding: 10px 12px;
	border-radius: 12px;
}
body.pst-app-route .pst-question-overview-label {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .04em;
}
body.pst-app-route .pst-question-overview-item strong {
	margin-top: 6px;
	font-size: clamp(18px, 2.8vw, 21px);
	line-height: 1.3;
	color: #f5f8fc;
}
body.pst-app-route .pst-question-overview-item:nth-child(1) .pst-question-overview-label {
	color: #f2c45f;
}
body.pst-app-route .pst-question-overview-item:nth-child(2) .pst-question-overview-label {
	color: #73d2ff;
}
body.pst-app-route .pst-question-overview-item:nth-child(3) .pst-question-overview-label {
	color: #d2a6ff;
}
body.pst-app-route .pst-question-overview-item:nth-child(1) strong,
body.pst-app-route .pst-question-overview-item:nth-child(1) strong a {
	color: #ffd76a;
}
body.pst-app-route .pst-question-overview-item:nth-child(2) strong {
	color: #ffffff;
}
body.pst-app-route .pst-question-overview-item:nth-child(3) strong {
	color: #f4eeff;
}
body.pst-app-route .pst-question-body-section {
	padding: 14px 15px 14px;
}
body.pst-app-route .pst-question-section-heading {
	margin-bottom: 10px;
	padding-bottom: 10px;
}
body.pst-app-route .pst-question-section-heading small {
	color: #f0c15c;
	font-size: 11px;
	letter-spacing: .18em;
}
body.pst-app-route .pst-question-section-heading h2 {
	color: #7fd5ff;
	font-size: 21px;
}
body.pst-app-route .pst-question-body-text {
	font-size: 17px;
	line-height: 1.9;
	color: #ffffff;
}
body.pst-app-route .pst-question-body-text p:first-child {
	margin-top: 0;
}
@media (max-width: 900px) {
	body.pst-app-route .pst-question-detail-header {
		padding: 16px 14px 12px;
	}
	body.pst-app-route .pst-question-detail > .pst-single-content {
		padding: 12px 12px 18px;
	}
	body.pst-app-route .pst-question-overview {
		margin-bottom: 10px;
	}
	body.pst-app-route .pst-question-overview-item {
		padding: 9px 10px;
	}
	body.pst-app-route .pst-question-overview-item strong {
		font-size: 17px;
	}
	body.pst-app-route .pst-question-body-section {
		padding: 13px 12px 12px;
	}
	body.pst-app-route .pst-question-section-heading h2 {
		font-size: 19px;
	}
	body.pst-app-route .pst-question-body-text {
		font-size: 16px;
		line-height: 1.88;
	}
}


/* v0.4.3.3.203: 質問詳細の概要欄を横一列のコンパクトUIへ */
body.pst-app-route .pst-question-overview.pst-question-overview-inline {
	display: flex;
	gap: 0;
	margin-bottom: 12px;
	border: 1px solid rgba(210, 169, 83, .34);
	border-radius: 18px;
	background:
		radial-gradient(circle at 50% 0, rgba(52,132,255,.10), transparent 42%),
		linear-gradient(180deg, rgba(6,20,36,.96), rgba(4,15,29,.98));
	box-shadow: inset 0 1px 0 rgba(255,255,255,.03), 0 10px 24px rgba(0,0,0,.14);
	overflow: hidden;
}
body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-item {
	flex: 1 1 0;
	min-width: 0;
	padding: 12px 14px 13px;
	border: 0;
	border-radius: 0;
	background: transparent;
	position: relative;
}
body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-item + .pst-question-overview-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 16px;
	bottom: 16px;
	width: 1px;
	background: linear-gradient(180deg, rgba(255,255,255,0), rgba(153,179,209,.34), rgba(255,255,255,0));
}
body.pst-app-route .pst-question-overview-label-row {
	display: flex;
	align-items: center;
	gap: 8px;
}
body.pst-app-route .pst-question-overview-label-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 999px;
	border: 1px solid rgba(213, 170, 76, .38);
	background: rgba(255, 198, 88, .06);
	color: #f0c96d;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
	flex: 0 0 22px;
}
body.pst-app-route .pst-question-overview-label-icon .pst-icon {
	width: 12px;
	height: 12px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.85;
}
body.pst-app-route .pst-question-overview-label {
	margin: 0;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .04em;
	white-space: nowrap;
}
body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-item strong {
	margin-top: 8px;
	font-size: clamp(16px, 2.3vw, 18px);
	line-height: 1.35;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-machine strong,
body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-machine strong a {
	color: #ffffff;
}
body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-item:nth-child(1) .pst-question-overview-label {
	color: #d8dde7;
}
body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-item:nth-child(2) .pst-question-overview-label {
	color: #d8dde7;
}
body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-item:nth-child(3) .pst-question-overview-label {
	color: #d8dde7;
}
body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-item:nth-child(2) strong {
	color: #ffffff;
}
body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-item:nth-child(3) strong {
	color: #ffffff;
}
@media (max-width: 900px) {
	body.pst-app-route .pst-question-overview.pst-question-overview-inline {
		border-radius: 16px;
		margin-bottom: 10px;
	}
	body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-item {
		padding: 10px 10px 11px;
	}
	body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-item + .pst-question-overview-item::before {
		top: 12px;
		bottom: 12px;
	}
	body.pst-app-route .pst-question-overview-label-row {
		gap: 6px;
	}
	body.pst-app-route .pst-question-overview-label-icon {
		width: 20px;
		height: 20px;
		flex-basis: 20px;
	}
	body.pst-app-route .pst-question-overview-label-icon .pst-icon {
		width: 11px;
		height: 11px;
	}
	body.pst-app-route .pst-question-overview-label {
		font-size: 10px;
	}
	body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-item strong {
		margin-top: 6px;
		font-size: 15px;
	}
}


/* v0.4.3.3.204: 機種名を上段全面、遊技タイプとカテゴリを下段2分割に変更 */
body.pst-app-route .pst-question-overview.pst-question-overview-inline {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 0;
}
body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-machine {
	grid-column: 1 / -1;
	grid-row: 1;
	padding: 11px 14px 12px;
}
body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-machine::after {
	content: '';
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 0;
	height: 1px;
	background: linear-gradient(90deg, rgba(255,255,255,0), rgba(153,179,209,.34) 12%, rgba(153,179,209,.34) 88%, rgba(255,255,255,0));
}
body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-item:nth-child(2),
body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-item:nth-child(3) {
	grid-row: 2;
	padding: 10px 14px 12px;
}
body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-item:nth-child(2)::before {
	display: none;
}
body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-item:nth-child(3)::before {
	display: block;
	top: 11px;
	bottom: 11px;
}
body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-machine strong,
body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-machine strong a {
	white-space: normal;
	overflow: visible;
	text-overflow: clip;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	font-size: clamp(17px, 2.8vw, 20px);
	line-height: 1.35;
	color: #ffffff;
	word-break: break-word;
}
body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-machine .pst-question-overview-label {
	color: #73d2ff;
}
body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-item:nth-child(2) .pst-question-overview-label {
	color: #f2c45f;
}
body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-item:nth-child(3) .pst-question-overview-label {
	color: #d2a6ff;
}
body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-item:nth-child(2) strong {
	color: #ffd76a;
}
body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-item:nth-child(3) strong {
	color: #f4eeff;
}
@media (max-width: 900px) {
	body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-machine {
		padding: 10px 11px 11px;
	}
	body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-machine::after {
		left: 11px;
		right: 11px;
	}
	body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-item:nth-child(2),
	body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-item:nth-child(3) {
		padding: 9px 11px 10px;
	}
	body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-machine strong,
	body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-machine strong a {
		font-size: 17px;
	}
	body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-item:nth-child(2) strong,
	body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-item:nth-child(3) strong {
		font-size: 15px;
	}
}


/* v0.4.3.3.205: 概要欄は「機種名」の文字だけを色付きに統一 */
body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-machine .pst-question-overview-label {
	color: #73d2ff;
}
body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-item:nth-child(2) .pst-question-overview-label,
body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-item:nth-child(3) .pst-question-overview-label {
	color: #d8dde7;
}
body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-item:nth-child(2) strong,
body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-item:nth-child(3) strong {
	color: #ffffff;
}


/* v0.4.3.3.206: 概要欄3項目のラベル文字色を統一 */
body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-label {
	color: #73d2ff !important;
}


/* v0.4.3.3.207: 質問内容の見出しを赤色へ変更 */
body.pst-app-route .pst-question-body-section:not(.is-social-thread) .pst-question-section-heading h2 {
	color: #ff525f !important;
}


/* v0.4.3.3.210: 通知ベルを提供画像の金色ベルへ変更 */
.pst-notification-bell .pst-notification-bell-icon-image {
	display: block;
	width: 22px;
	height: 22px;
	background: center / contain no-repeat url("pst-notification-bell-gold.png");
}
.pst-notification-heading-icon-image {
	background: center / 20px 20px no-repeat url("pst-notification-bell-gold.png");
	font-size: 0;
}
@media (max-width:700px){
	.pst-notification-bell .pst-notification-bell-icon-image {
		width: 20px;
		height: 20px;
	}
	.pst-notification-heading-icon-image {
		background-size: 18px 18px;
	}
}


/* v0.4.3.3.211: 絵文字・画像ではないオリジナルSVG通知ベル */
.pst-notification-bell .pst-notification-bell-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	color: #e4b65a;
}
.pst-notification-bell .pst-notification-bell-icon .pst-icon-bell {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
	filter: drop-shadow(0 0 4px rgba(228,182,90,.22));
}
.pst-notification-bell .pst-notification-bell-icon .pst-bell-highlight {
	stroke: rgba(255,239,185,.72);
	stroke-width: 1.15;
}
.pst-notification-bell:hover .pst-notification-bell-icon {
	color: #f3ca70;
}
.pst-notification-heading-icon-vector {
	font-size: 0;
}
.pst-notification-heading-icon-vector .pst-icon-bell {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: #e4b65a;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
	filter: drop-shadow(0 0 4px rgba(228,182,90,.18));
}
.pst-notification-heading-icon-vector .pst-bell-highlight {
	stroke: rgba(255,239,185,.72);
	stroke-width: 1.15;
}
/* v210の画像指定を確実に無効化 */
.pst-notification-bell .pst-notification-bell-icon-image,
.pst-notification-heading-icon-image {
	display: none !important;
	background-image: none !important;
}
@media (max-width:700px){
	.pst-notification-bell .pst-notification-bell-icon,
	.pst-notification-bell .pst-notification-bell-icon .pst-icon-bell {
		width: 22px;
		height: 22px;
	}
	.pst-notification-heading-icon-vector .pst-icon-bell {
		width: 20px;
		height: 20px;
	}
}


/* v0.4.3.3.212: ホーム未回答ボタンをネイビー×ゴールドに変更し、HELPアイコンを採用 */
body.pst-app-route .pst-hero-button-answer {
	border: 1px solid rgba(231, 192, 92, .88);
	background:
		radial-gradient(circle at 14% 50%, rgba(255, 208, 102, .12), transparent 26%),
		linear-gradient(135deg, rgba(10, 24, 49, .98), rgba(18, 43, 79, .97) 54%, rgba(87, 61, 15, .95) 100%);
	box-shadow:
		0 14px 32px rgba(7, 17, 34, .34),
		0 0 0 1px rgba(246, 205, 102, .08) inset,
		inset 0 1px 0 rgba(255, 245, 211, .18),
		inset 0 -1px 0 rgba(44, 30, 8, .28);
}
body.pst-app-route .pst-hero-button-answer::before {
	background: linear-gradient(110deg, transparent 6%, rgba(255, 226, 152, .16) 44%, transparent 74%);
}
body.pst-app-route .pst-hero-button-answer:hover,
body.pst-app-route .pst-hero-button-answer:focus-visible {
	border-color: rgba(255, 220, 128, .98);
	box-shadow:
		0 16px 36px rgba(5, 12, 24, .42),
		0 0 0 1px rgba(255, 227, 145, .14) inset,
		inset 0 1px 0 rgba(255, 248, 220, .24);
}
body.pst-app-route .pst-hero-button-answer .pst-hero-answer-icon {
	border-color: rgba(249, 214, 123, .34);
	background: linear-gradient(180deg, rgba(8, 22, 42, .94), rgba(13, 34, 64, .92));
	color: #ffd56a;
	box-shadow: inset 0 0 18px rgba(255, 207, 98, .10), 0 0 0 1px rgba(255,255,255,.02);
}
body.pst-app-route .pst-hero-button-answer .pst-hero-answer-copy strong {
	color: #fff8e5;
	text-shadow: 0 1px 0 rgba(22, 16, 6, .6), 0 0 12px rgba(255, 214, 110, .12);
}
body.pst-app-route .pst-icon-answer-help {
	overflow: visible;
}
body.pst-app-route .pst-icon-answer-help text {
	fill: currentColor;
	font-size: 4.15px;
	font-weight: 800;
	font-family: Arial, Helvetica, sans-serif;
	letter-spacing: .18px;
	stroke: none;
}
body.pst-app-route .pst-hero-answer-icon .pst-icon {
	width: 28px;
	height: 28px;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}
@media (max-width: 620px) {
	body.pst-app-route .pst-hero-button-answer {
		box-shadow:
			0 12px 26px rgba(7, 17, 34, .32),
			0 0 0 1px rgba(246, 205, 102, .06) inset,
			inset 0 1px 0 rgba(255, 245, 211, .16);
	}
	body.pst-app-route .pst-hero-answer-icon {
		flex-basis: 40px;
		width: 40px;
		height: 40px;
	}
	body.pst-app-route .pst-hero-answer-icon .pst-icon {
		width: 27px;
		height: 27px;
	}
	body.pst-app-route .pst-icon-answer-help text {
		font-size: 4.0px;
	}
}


/* v0.4.3.3.213: 未回答導線アイコンをシンプルな線画に差し替え */
body.pst-app-route .pst-icon-answer-help text {
	display: none;
}
body.pst-app-route .pst-hero-answer-icon .pst-icon {
	width: 26px;
	height: 26px;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}


/* v0.4.3.3.219: 未回答ボタンをネイビー背景＋ネオンゴールド枠で高級感アップ */
body.pst-app-route .pst-hero-button-answer {
	border: 1px solid rgba(245, 205, 104, .96);
	background:
		radial-gradient(circle at 16% 50%, rgba(255, 214, 118, .10), transparent 24%),
		linear-gradient(135deg, rgba(7, 20, 41, .985) 0%, rgba(10, 28, 56, .98) 54%, rgba(8, 19, 38, .985) 100%);
	box-shadow:
		0 16px 32px rgba(4, 11, 24, .42),
		0 0 0 1px rgba(255, 224, 145, .18) inset,
		0 0 12px rgba(255, 205, 92, .24),
		0 0 22px rgba(255, 205, 92, .14),
		inset 0 1px 0 rgba(255, 247, 222, .18),
		inset 0 -1px 0 rgba(60, 39, 6, .22);
}
body.pst-app-route .pst-hero-button-answer::before {
	background: linear-gradient(110deg, transparent 8%, rgba(255, 229, 154, .18) 46%, transparent 76%);
}
body.pst-app-route .pst-hero-button-answer:hover,
body.pst-app-route .pst-hero-button-answer:focus-visible {
	border-color: rgba(255, 223, 128, 1);
	box-shadow:
		0 18px 36px rgba(4, 11, 24, .48),
		0 0 0 1px rgba(255, 229, 154, .24) inset,
		0 0 14px rgba(255, 210, 102, .30),
		0 0 28px rgba(255, 210, 102, .18),
		inset 0 1px 0 rgba(255, 250, 230, .22);
}
body.pst-app-route .pst-hero-button-answer .pst-hero-answer-icon {
	border-color: rgba(246, 207, 102, .52);
	background: linear-gradient(180deg, rgba(8, 23, 44, .94), rgba(11, 30, 58, .92));
	color: #ffd96d;
	box-shadow:
		0 0 0 1px rgba(255,255,255,.03) inset,
		inset 0 0 12px rgba(255, 210, 102, .10),
		0 0 10px rgba(255, 205, 92, .10);
}
body.pst-app-route .pst-hero-button-answer .pst-hero-answer-copy strong {
	color: #fff9eb;
	text-shadow: 0 1px 0 rgba(17, 12, 4, .72), 0 0 10px rgba(255, 217, 109, .12);
}
@media (max-width: 620px) {
	body.pst-app-route .pst-hero-button-answer {
		box-shadow:
			0 12px 24px rgba(4, 11, 24, .38),
			0 0 0 1px rgba(255, 224, 145, .16) inset,
			0 0 10px rgba(255, 205, 92, .18),
			inset 0 1px 0 rgba(255, 247, 222, .14);
	}
}


/* v0.4.3.3.221: 質問してみるの鉛筆アイコンをより鉛筆らしく・少し大きく */
body.pst-app-route .pst-hero-button-primary .pst-icon-edit {
	width: 27px;
	height: 27px;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
	color: #fff;
	filter: none;
}
@media (max-width: 767px) {
	body.pst-app-route .pst-hero-button-primary .pst-icon-edit {
		width: 25px;
		height: 25px;
	}
}


/* v0.4.3.3.222: 「質問してみる」の文字をボタン中央へ固定 */
body.pst-app-route .pst-hero-button-primary {
	position: relative;
	justify-content: center;
	padding-left: 58px;
	padding-right: 58px;
	text-align: center;
}
body.pst-app-route .pst-hero-button-primary .pst-icon-edit {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	flex: 0 0 auto;
}
@media (max-width: 767px) {
	body.pst-app-route .pst-hero-button-primary {
		padding-left: 54px;
		padding-right: 54px;
	}
	body.pst-app-route .pst-hero-button-primary .pst-icon-edit {
		left: 13px;
	}
}


/* v0.4.3.3.223: 「質問してみる」の鉛筆を文字のすぐ横へ配置 */
body.pst-app-route .pst-hero-button-primary {
	position: static;
	justify-content: center;
	gap: 8px;
	padding-left: 18px;
	padding-right: 18px;
	text-align: center;
}
body.pst-app-route .pst-hero-button-primary .pst-icon-edit {
	position: static;
	left: auto;
	top: auto;
	transform: none;
	flex: 0 0 auto;
	margin-right: 1px;
}
@media (max-width: 767px) {
	body.pst-app-route .pst-hero-button-primary {
		padding-left: 16px;
		padding-right: 16px;
		gap: 7px;
	}
	body.pst-app-route .pst-hero-button-primary .pst-icon-edit {
		margin-right: 0;
	}
}


/* v0.4.3.3.224: 「質問してみる」のアイコン＋文字を視覚的にもう少し中央寄せ */
body.pst-app-route .pst-hero-button-primary {
	padding-left: 26px;
	padding-right: 12px;
	gap: 7px;
}
body.pst-app-route .pst-hero-button-primary .pst-icon-edit {
	margin-right: 0;
}
@media (max-width: 767px) {
	body.pst-app-route .pst-hero-button-primary {
		padding-left: 22px;
		padding-right: 10px;
		gap: 6px;
	}
}


/* v0.4.3.3.225: 上段「質問してみる」の「質」を下段「の」に合わせる */
body.pst-app-route .pst-hero-button-primary {
	padding-left: 18px;
	padding-right: 18px;
}
body.pst-app-route .pst-hero-primary-content {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	transform: translateX(-8px);
}
body.pst-app-route .pst-hero-primary-copy {
	display: inline-block;
	white-space: nowrap;
}
body.pst-app-route .pst-hero-button-primary .pst-icon-edit {
	margin: 0;
}
@media (max-width: 767px) {
	body.pst-app-route .pst-hero-button-primary {
		padding-left: 16px;
		padding-right: 16px;
	}
	body.pst-app-route .pst-hero-primary-content {
		gap: 6px;
		transform: translateX(-7px);
	}
}


/* v0.4.3.3.228: ホーム上部のCTAをよりボタンらしい立体デザインに調整 */
body.pst-app-route .pst-hero-button-primary,
body.pst-app-route .pst-hero-button-answer {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	min-height: 72px;
	border-radius: 18px;
	transition: transform .18s ease, box-shadow .22s ease, border-color .22s ease, filter .22s ease;
	will-change: transform;
}
body.pst-app-route .pst-hero-button-primary::before,
body.pst-app-route .pst-hero-button-answer::after {
	content: "";
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 8px;
	height: 12px;
	border-radius: 999px;
	filter: blur(10px);
	opacity: .42;
	pointer-events: none;
	z-index: -1;
}
body.pst-app-route .pst-hero-button-primary {
	border: 1px solid rgba(255, 126, 126, .92);
	background: linear-gradient(180deg, #ff4450 0%, #ff1f2e 48%, #db0a14 100%);
	box-shadow:
		0 16px 32px rgba(90, 5, 12, .34),
		0 0 0 1px rgba(255,255,255,.08) inset,
		inset 0 1px 0 rgba(255, 230, 230, .22),
		inset 0 -3px 0 rgba(120, 7, 14, .36);
}
body.pst-app-route .pst-hero-button-primary::before {
	background: radial-gradient(ellipse at center, rgba(255, 92, 92, .55) 0%, rgba(255, 92, 92, 0) 72%);
}
body.pst-app-route .pst-hero-button-primary::after {
	content: "";
	position: absolute;
	inset: 1px 1px auto 1px;
	height: 56%;
	border-radius: 17px;
	background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,0));
	pointer-events: none;
}
body.pst-app-route .pst-hero-button-primary:hover,
body.pst-app-route .pst-hero-button-primary:focus-visible,
body.pst-app-route .pst-hero-button-answer:hover,
body.pst-app-route .pst-hero-button-answer:focus-visible {
	transform: translateY(-2px);
}
body.pst-app-route .pst-hero-button-primary:active,
body.pst-app-route .pst-hero-button-answer:active {
	transform: translateY(1px) scale(.995);
}
body.pst-app-route .pst-hero-button-primary:hover,
body.pst-app-route .pst-hero-button-primary:focus-visible {
	border-color: rgba(255, 196, 196, .96);
	box-shadow:
		0 18px 34px rgba(102, 4, 13, .40),
		0 0 0 1px rgba(255,255,255,.11) inset,
		inset 0 1px 0 rgba(255, 240, 240, .28),
		inset 0 -3px 0 rgba(120, 7, 14, .34);
}
body.pst-app-route .pst-hero-button-primary:active {
	box-shadow:
		0 10px 20px rgba(90, 5, 12, .26),
		0 0 0 1px rgba(255,255,255,.07) inset,
		inset 0 1px 0 rgba(255, 227, 227, .18),
		inset 0 -2px 0 rgba(120, 7, 14, .28);
}
body.pst-app-route .pst-hero-button-answer {
	min-height: 72px;
	border-width: 1.5px;
	padding-top: 10px;
	padding-bottom: 10px;
	box-shadow:
		0 18px 34px rgba(4, 11, 24, .38),
		0 0 0 1px rgba(255, 224, 145, .18) inset,
		0 0 14px rgba(255, 205, 92, .22),
		0 0 26px rgba(255, 205, 92, .12),
		inset 0 1px 0 rgba(255, 247, 222, .20),
		inset 0 -3px 0 rgba(60, 39, 6, .28);
}
body.pst-app-route .pst-hero-button-answer::after {
	background: radial-gradient(ellipse at center, rgba(255, 210, 102, .40) 0%, rgba(255, 210, 102, 0) 72%);
}
body.pst-app-route .pst-hero-button-answer:hover,
body.pst-app-route .pst-hero-button-answer:focus-visible {
	box-shadow:
		0 20px 38px rgba(4, 11, 24, .44),
		0 0 0 1px rgba(255, 229, 154, .24) inset,
		0 0 15px rgba(255, 210, 102, .30),
		0 0 30px rgba(255, 210, 102, .16),
		inset 0 1px 0 rgba(255, 250, 230, .24),
		inset 0 -3px 0 rgba(60, 39, 6, .24);
}
body.pst-app-route .pst-hero-button-answer:active {
	box-shadow:
		0 12px 22px rgba(4, 11, 24, .30),
		0 0 0 1px rgba(255, 229, 154, .18) inset,
		0 0 10px rgba(255, 210, 102, .18),
		inset 0 1px 0 rgba(255, 247, 222, .16),
		inset 0 -2px 0 rgba(60, 39, 6, .20);
}
body.pst-app-route .pst-hero-button-answer .pst-hero-answer-icon {
	flex-basis: 46px;
	width: 46px;
	height: 46px;
	border-radius: 14px;
}
body.pst-app-route .pst-hero-button-answer .pst-hero-answer-copy strong,
body.pst-app-route .pst-hero-primary-copy {
	letter-spacing: .02em;
}
@media (max-width: 767px) {
	body.pst-app-route .pst-hero-button-primary,
	body.pst-app-route .pst-hero-button-answer {
		min-height: 66px;
		border-radius: 16px;
	}
	body.pst-app-route .pst-hero-button-primary::before,
	body.pst-app-route .pst-hero-button-answer::after {
		left: 10px;
		right: 10px;
		bottom: 7px;
	}
	body.pst-app-route .pst-hero-button-answer {
		padding-top: 9px;
		padding-bottom: 9px;
	}
	body.pst-app-route .pst-hero-button-answer .pst-hero-answer-icon {
		flex-basis: 42px;
		width: 42px;
		height: 42px;
		border-radius: 13px;
	}
}


/* v0.4.3.3.229: 上段ボタン操作時に下段の光沢が連動して見える問題を修正 */
/* 上段を押している間は、下段ボタンの光沢レイヤーを必ず初期位置に固定する。 */
body.pst-app-route .pst-hero-button-primary:active + .pst-hero-button-answer::before {
	transition: none !important;
	transform: translateX(-70%) !important;
}

/* タッチ端末では :hover が次のタップまで残ることがあるため、
   hover由来の発光・光沢移動を無効化し、押したボタン自身の :active だけを表示する。 */
@media (hover: none), (pointer: coarse) {
	body.pst-app-route .pst-hero-button-answer::before {
		transition: none;
		transform: translateX(-70%);
	}
	body.pst-app-route .pst-hero-button-answer:hover::before,
	body.pst-app-route .pst-hero-button-answer:focus:not(:focus-visible)::before {
		transform: translateX(-70%) !important;
	}
	body.pst-app-route .pst-hero-button-primary:hover {
		transform: none;
		border-color: rgba(255, 126, 126, .92);
		box-shadow:
			0 16px 32px rgba(90, 5, 12, .34),
			0 0 0 1px rgba(255,255,255,.08) inset,
			inset 0 1px 0 rgba(255, 230, 230, .22),
			inset 0 -3px 0 rgba(120, 7, 14, .36);
	}
	body.pst-app-route .pst-hero-button-answer:hover {
		transform: none;
		border-color: rgba(245, 205, 104, .96);
		box-shadow:
			0 18px 34px rgba(4, 11, 24, .38),
			0 0 0 1px rgba(255, 224, 145, .18) inset,
			0 0 14px rgba(255, 205, 92, .22),
			0 0 26px rgba(255, 205, 92, .12),
			inset 0 1px 0 rgba(255, 247, 222, .20),
			inset 0 -3px 0 rgba(60, 39, 6, .28);
	}
	body.pst-app-route .pst-hero-button-primary:active,
	body.pst-app-route .pst-hero-button-answer:active {
		transform: translateY(1px) scale(.995);
	}
	body.pst-app-route .pst-hero-button-primary:active {
		box-shadow:
			0 10px 20px rgba(90, 5, 12, .26),
			0 0 0 1px rgba(255,255,255,.07) inset,
			inset 0 1px 0 rgba(255, 227, 227, .18),
			inset 0 -2px 0 rgba(120, 7, 14, .28);
	}
	body.pst-app-route .pst-hero-button-answer:active {
		box-shadow:
			0 12px 22px rgba(4, 11, 24, .30),
			0 0 0 1px rgba(255, 229, 154, .18) inset,
			0 0 10px rgba(255, 210, 102, .18),
			inset 0 1px 0 rgba(255, 247, 222, .16),
			inset 0 -2px 0 rgba(60, 39, 6, .20);
	}
}


/* v0.4.3.3.230: 新着Q&Aから「考察・台の挙動」を分離し、Q&A直下に専用枠を追加 */
body.pst-app-route .pst-home-column-stack {
	display: grid;
	align-content: start;
	gap: 12px;
	min-width: 0;
}
body.pst-app-route #pst-behavior-latest .pst-home-panel-heading h2 .pst-icon-hotfire {
	width: 21px;
	height: 21px;
	filter: none;
}
body.pst-app-route .pst-behavior-home-disclaimer {
	margin: -2px 0 10px;
	font-size: 11px;
	line-height: 1.55;
}
@media (max-width: 767px) {
	body.pst-app-route .pst-home-column-stack {
		gap: 12px;
	}
	body.pst-app-route .pst-behavior-home-disclaimer {
		font-size: 10px;
	}
}


/* v0.4.3.3.232: 新着の考察・台の挙動を、実戦報告と同系色の流れるネオン管枠へ変更 */
@property --pst-behavior-neon-angle {
	syntax: "<angle>";
	inherits: false;
	initial-value: 0deg;
}
@keyframes pst-behavior-neon-flow {
	to { --pst-behavior-neon-angle: 360deg; }
}
body.pst-app-route #pst-behavior-latest .pst-question-row {
	--pst-behavior-neon-gradient: conic-gradient(
		from var(--pst-behavior-neon-angle),
		#ff4d4d 0deg,
		#ff9f43 42deg,
		#ffd93d 86deg,
		#4cd964 132deg,
		#32d8ff 178deg,
		#5b7cff 224deg,
		#b36bff 270deg,
		#ff4d9d 316deg,
		#ff4d4d 360deg
	);
	isolation: isolate;
	border-color: transparent;
	box-shadow:
		0 8px 22px rgba(0, 0, 0, .20),
		inset 0 0 0 1px rgba(255, 255, 255, .025);
}
body.pst-app-route #pst-behavior-latest .pst-question-row::before,
body.pst-app-route #pst-behavior-latest .pst-question-row::after {
	content: "";
	position: absolute;
	pointer-events: none;
	border-radius: inherit;
	background: var(--pst-behavior-neon-gradient);
	-webkit-mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	animation: pst-behavior-neon-flow 8s linear infinite;
}
/* 明るい細線をネオン管の中心として表示 */
body.pst-app-route #pst-behavior-latest .pst-question-row::before {
	z-index: 1;
	inset: -2px;
	padding: 2px;
	opacity: 1;
	filter: saturate(1.22) brightness(1.18)
		drop-shadow(0 0 2px rgba(255,255,255,.40));
}
/* 同じ色を外側へぼかし、発光するネオン管に見せる */
body.pst-app-route #pst-behavior-latest .pst-question-row::after {
	z-index: 0;
	inset: -7px;
	padding: 7px;
	opacity: .66;
	filter: blur(7px) saturate(1.28) brightness(1.18);
}
body.pst-app-route #pst-behavior-latest .pst-question-row > * {
	position: relative;
	z-index: 2;
}
body.pst-app-route #pst-behavior-latest .pst-question-row:hover {
	border-color: transparent;
	box-shadow:
		0 12px 30px rgba(0, 0, 0, .24),
		0 0 18px rgba(92, 206, 255, .10),
		inset 0 0 0 1px rgba(255,255,255,.035);
}
body.pst-app-route #pst-behavior-latest .pst-question-row:hover::before {
	filter: saturate(1.28) brightness(1.25)
		drop-shadow(0 0 3px rgba(255,255,255,.48));
}
body.pst-app-route #pst-behavior-latest .pst-question-row:hover::after {
	opacity: .78;
	filter: blur(8px) saturate(1.34) brightness(1.22);
}
@media (max-width: 767px) {
	body.pst-app-route #pst-behavior-latest .pst-question-row::before {
		inset: -1.5px;
		padding: 1.5px;
		filter: saturate(1.2) brightness(1.16)
			drop-shadow(0 0 1.5px rgba(255,255,255,.34));
	}
	body.pst-app-route #pst-behavior-latest .pst-question-row::after {
		inset: -5px;
		padding: 5px;
		opacity: .58;
		filter: blur(5px) saturate(1.24) brightness(1.15);
	}
}
@media (prefers-reduced-motion: reduce) {
	body.pst-app-route #pst-behavior-latest .pst-question-row::before,
	body.pst-app-route #pst-behavior-latest .pst-question-row::after {
		animation: none;
	}
}


/* v0.4.3.3.233: 新着の考察・台の挙動を、新着の実戦報告と完全に同じレインボー枠設定へ統一 */
body.pst-app-route #pst-behavior-latest .pst-question-row {
	border: 1px solid transparent;
	background:
		linear-gradient(145deg, rgba(12, 29, 49, .94), rgba(6, 18, 32, .98)) padding-box,
		linear-gradient(110deg, #ff4d4d, #ff9f43, #ffd93d, #4cd964, #32d8ff, #5b7cff, #b36bff, #ff4d9d, #ff4d4d) border-box;
	background-size: 100% 100%, 320% 100%;
	box-shadow:
		0 7px 20px rgba(0, 0, 0, .18),
		0 0 14px rgba(92, 206, 255, .08);
	animation: pst-home-report-rainbow-border 8s linear infinite;
	isolation: auto;
}
body.pst-app-route #pst-behavior-latest .pst-question-row::before,
body.pst-app-route #pst-behavior-latest .pst-question-row::after {
	content: none;
	display: none;
	animation: none;
}
body.pst-app-route #pst-behavior-latest .pst-question-row > * {
	position: relative;
	z-index: auto;
}
body.pst-app-route #pst-behavior-latest .pst-question-row:hover {
	border-color: transparent;
	background:
		linear-gradient(145deg, rgba(16, 38, 63, .98), rgba(8, 24, 42, .99)) padding-box,
		linear-gradient(110deg, #ff4d4d, #ff9f43, #ffd93d, #4cd964, #32d8ff, #5b7cff, #b36bff, #ff4d9d, #ff4d4d) border-box;
	background-size: 100% 100%, 320% 100%;
	box-shadow:
		0 10px 27px rgba(0, 0, 0, .24),
		0 0 18px rgba(105, 214, 255, .13);
}
@media (prefers-reduced-motion: reduce) {
	body.pst-app-route #pst-behavior-latest .pst-question-row {
		animation: none;
		background-position: 0 0, 50% 50%;
	}
}

/* v0.4.3.3.235: 実戦報告詳細をゴールドUIのカードレイアウトへ刷新 */
body.pst-app-route .pst-content-wrap:has(.pst-report-detail) {
	max-width: 960px;
	padding-top: 22px;
}
body.pst-app-route .pst-report-detail {
	overflow: hidden;
	padding: 0;
	border: 1px solid rgba(82, 117, 157, .34);
	border-radius: 28px;
	background:
		radial-gradient(circle at 50% 2%, rgba(22, 61, 105, .24), transparent 34%),
		linear-gradient(180deg, #07172a 0%, #051322 48%, #04101d 100%);
	box-shadow:
		0 28px 60px rgba(0, 0, 0, .34),
		inset 0 1px 0 rgba(255,255,255,.04);
}
body.pst-app-route .pst-report-detail-header {
	position: relative;
	margin: 0;
	padding: 20px 28px 26px;
	border: 0;
	background:
		linear-gradient(180deg, rgba(2, 10, 20, .36), transparent 32%),
		radial-gradient(circle at 50% 0%, rgba(27, 65, 108, .18), transparent 46%);
}
body.pst-app-route .pst-report-topbar {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr) 48px;
	align-items: center;
	gap: 12px;
	min-height: 70px;
	margin: -2px 0 20px;
}
body.pst-app-route .pst-report-back-link,
body.pst-app-route .pst-report-topbar-spacer {
	width: 44px;
	height: 44px;
}
body.pst-app-route .pst-report-back-link {
	display: grid;
	place-items: center;
	border: 1px solid rgba(145, 177, 212, .22);
	border-radius: 14px;
	background: rgba(6, 18, 33, .62);
	color: #f6f8fb !important;
	text-decoration: none;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
	transition: border-color .18s ease, color .18s ease, transform .18s ease;
}
body.pst-app-route .pst-report-back-link:hover,
body.pst-app-route .pst-report-back-link:focus-visible {
	border-color: rgba(240, 184, 62, .72);
	color: #ffd46b !important;
	transform: translateX(-1px);
	outline: none;
}
body.pst-app-route .pst-report-back-link .pst-icon {
	width: 24px;
	height: 24px;
	stroke-width: 2.2;
}
body.pst-app-route .pst-report-heading {
	position: relative;
	justify-content: center;
	width: 100%;
}
body.pst-app-route .pst-report-heading::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -7px;
	width: 178px;
	height: 1px;
	transform: translateX(-50%);
	background: linear-gradient(90deg, transparent, rgba(255, 191, 59, .75), transparent);
	box-shadow: 0 0 9px rgba(255, 185, 51, .45);
}
body.pst-app-route .pst-report-heading-image {
	width: clamp(160px, 25vw, 214px);
	filter:
		drop-shadow(0 4px 7px rgba(0,0,0,.48))
		drop-shadow(0 0 7px rgba(244, 183, 53, .18));
}
body.pst-app-route .pst-report-author-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin: 0 6px 24px;
}
body.pst-app-route .pst-report-author-identity {
	display: flex;
	align-items: center;
	gap: 16px;
	min-width: 0;
}
body.pst-app-route .pst-report-author-avatar {
	width: 68px;
	height: 68px;
	padding: 3px;
	border: 2px solid rgba(238, 184, 62, .82);
	background: linear-gradient(180deg, rgba(255, 205, 91, .17), rgba(3, 13, 25, .68));
	box-shadow:
		0 10px 24px rgba(0, 0, 0, .30),
		0 0 14px rgba(240, 184, 62, .10),
		inset 0 1px 0 rgba(255,255,255,.08);
}
body.pst-app-route .pst-report-author-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
	min-width: 0;
}
body.pst-app-route .pst-report-author-copy strong {
	max-width: 100%;
	overflow: hidden;
	color: #fff;
	font-size: clamp(18px, 2.6vw, 24px);
	font-weight: 900;
	line-height: 1.2;
	text-overflow: ellipsis;
	white-space: nowrap;
}
body.pst-app-route .pst-report-author-copy span {
	display: inline-flex;
	max-width: 100%;
	padding: 5px 10px;
	border: 1px solid rgba(112, 145, 184, .24);
	border-radius: 9px;
	background: rgba(10, 25, 44, .76);
	color: #9eb0c5;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
}
body.pst-app-route .pst-report-date {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
	color: #e7edf5;
	font-size: clamp(14px, 2vw, 18px);
	font-weight: 700;
	white-space: nowrap;
}
body.pst-app-route .pst-report-date .pst-icon-calendar {
	width: 27px;
	height: 27px;
	color: #ffb947;
	stroke-width: 1.9;
	filter: drop-shadow(0 0 5px rgba(255, 181, 61, .18));
}
body.pst-app-route .pst-report-title-box {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	margin: 0;
	padding: 30px 26px 34px;
	border: 1.4px solid rgba(236, 174, 48, .90);
	border-radius: 24px;
	background:
		radial-gradient(circle at 50% 100%, rgba(255, 185, 48, .09), transparent 27%),
		linear-gradient(180deg, rgba(4, 14, 27, .86), rgba(2, 10, 20, .92));
	box-shadow:
		0 18px 34px rgba(0,0,0,.20),
		inset 0 1px 0 rgba(255,255,255,.03);
}
body.pst-app-route .pst-report-title-box::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -2px;
	width: 126px;
	height: 3px;
	transform: translateX(-50%);
	border-radius: 999px;
	background: linear-gradient(90deg, transparent, #ffd774, transparent);
	box-shadow: 0 0 13px rgba(255, 192, 62, .82);
}
body.pst-app-route .pst-report-title-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	align-self: center;
	margin: 0;
	padding: 10px 22px;
	border: 1px solid rgba(236, 174, 48, .74);
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(31, 31, 25, .92), rgba(6, 16, 29, .94));
	color: #ffc558;
	font-size: 15px;
	font-weight: 900;
	letter-spacing: .08em;
	box-shadow:
		0 0 16px rgba(241, 181, 53, .13),
		inset 0 1px 0 rgba(255,255,255,.06);
}
body.pst-app-route .pst-report-title-label .pst-icon-battle {
	width: 22px;
	height: 22px;
	stroke-width: 1.8;
}
body.pst-app-route .pst-report-title-box h1 {
	max-width: 100%;
	margin: 0;
	color: #fff;
	font-size: clamp(30px, 5vw, 52px);
	font-weight: 900;
	line-height: 1.22;
	letter-spacing: -.02em;
	text-align: center;
	text-shadow: 0 3px 14px rgba(0,0,0,.48);
	word-break: break-word;
}
body.pst-app-route .pst-report-detail > .pst-single-content {
	display: flex;
	flex-direction: column;
	gap: 26px;
	padding: 0 28px 32px;
}
body.pst-app-route .pst-report-overview-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}
body.pst-app-route .pst-report-overview-card {
	display: flex;
	align-items: center;
	gap: 18px;
	min-width: 0;
	padding: 20px 22px;
	border: 1px solid rgba(112, 145, 184, .28);
	border-radius: 20px;
	background:
		radial-gradient(circle at 12% 50%, rgba(255, 186, 59, .08), transparent 30%),
		linear-gradient(180deg, rgba(7, 21, 38, .96), rgba(4, 14, 26, .98));
	box-shadow:
		0 12px 24px rgba(0,0,0,.16),
		inset 0 1px 0 rgba(255,255,255,.03);
}
body.pst-app-route .pst-report-overview-icon {
	display: grid;
	place-items: center;
	flex: 0 0 62px;
	width: 62px;
	height: 62px;
	border: 1px solid rgba(123, 157, 196, .26);
	border-radius: 17px;
	background: linear-gradient(180deg, rgba(10, 27, 47, .96), rgba(3, 13, 24, .98));
	color: #ffb844;
	box-shadow:
		0 8px 20px rgba(0,0,0,.24),
		inset 0 1px 0 rgba(255,255,255,.04),
		0 0 13px rgba(255, 184, 68, .07);
}
body.pst-app-route .pst-report-overview-icon .pst-icon {
	width: 30px;
	height: 30px;
	stroke-width: 1.65;
}
body.pst-app-route .pst-report-overview-copy {
	display: flex;
	flex-direction: column;
	gap: 7px;
	min-width: 0;
}
body.pst-app-route .pst-report-overview-copy > span {
	color: #ffbe4e;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .06em;
}
body.pst-app-route .pst-report-overview-copy strong {
	overflow: hidden;
	color: #fff;
	font-size: clamp(19px, 2.7vw, 28px);
	font-weight: 900;
	line-height: 1.2;
	text-overflow: ellipsis;
	white-space: nowrap;
}
body.pst-app-route .pst-report-overview-copy a {
	color: inherit !important;
	text-decoration: none;
}
body.pst-app-route .pst-report-overview-copy a:hover,
body.pst-app-route .pst-report-overview-copy a:focus-visible {
	color: #ffd978 !important;
	outline: none;
}
body.pst-app-route .pst-report-body-section,
body.pst-app-route .pst-report-attachment {
	margin: 0;
	padding: 24px 26px 26px;
	border: 1px solid rgba(219, 151, 42, .72);
	border-radius: 22px;
	background:
		radial-gradient(circle at 8% 0%, rgba(255, 187, 69, .08), transparent 28%),
		linear-gradient(180deg, rgba(5, 17, 31, .97), rgba(2, 11, 21, .98));
	box-shadow:
		0 16px 28px rgba(0,0,0,.20),
		inset 0 1px 0 rgba(255,255,255,.03);
}
body.pst-app-route .pst-report-body-heading {
	display: flex;
	align-items: center;
	gap: 15px;
	margin: 0 0 20px;
	padding: 0 0 18px;
	border-bottom: 1px solid rgba(125, 154, 190, .18);
}
body.pst-app-route .pst-report-body-icon {
	display: grid;
	place-items: center;
	flex: 0 0 48px;
	width: 48px;
	height: 48px;
	border: 0;
	border-radius: 13px;
	background: rgba(255, 188, 72, .06);
	color: #ffd16d;
	box-shadow: inset 0 0 0 1px rgba(255, 205, 105, .20);
}
body.pst-app-route .pst-report-body-icon .pst-icon {
	width: 28px;
	height: 28px;
	stroke-width: 1.65;
	filter: none;
}
body.pst-app-route .pst-report-body-heading-copy h2 {
	margin: 0;
	color: #ffc45a;
	font-size: clamp(21px, 3vw, 30px);
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: .03em;
}
body.pst-app-route .pst-report-body-text {
	margin: 0;
	color: #fff;
	font-size: clamp(17px, 2.4vw, 22px);
	font-weight: 800;
	line-height: 1.9;
	letter-spacing: .01em;
}
body.pst-app-route .pst-report-data {
	margin: 0 0 20px;
	border-color: rgba(216, 164, 65, .32);
	border-radius: 14px;
	background: rgba(7, 19, 33, .74);
}
body.pst-app-route .pst-report-data div {
	border-color: rgba(145,177,212,.15);
}
body.pst-app-route .pst-report-data dt {
	background: rgba(255, 190, 68, .08);
	color: #ffc65f;
}
body.pst-app-route .pst-report-data dd {
	color: #fff;
}
body.pst-app-route .pst-report-attachment {
	width: 100%;
	max-width: none;
}
body.pst-app-route .pst-report-attachment figcaption {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin: 0 0 18px;
	color: #ffc45a;
}
body.pst-app-route .pst-report-attachment-title {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}
body.pst-app-route .pst-report-attachment-title .pst-icon-image {
	width: 27px;
	height: 27px;
	stroke-width: 1.7;
}
body.pst-app-route .pst-report-attachment-title strong {
	font-size: clamp(19px, 2.8vw, 26px);
	font-weight: 900;
	letter-spacing: .03em;
}
body.pst-app-route .pst-report-attachment figcaption > span:last-child {
	color: #9aaabe;
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap;
}
body.pst-app-route .pst-report-attachment .pst-question-attachment-gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	width: 100%;
	max-width: none;
}
body.pst-app-route .pst-report-attachment.pst-question-attachment-count-1 .pst-question-attachment-gallery {
	grid-template-columns: minmax(0, 320px);
}
body.pst-app-route .pst-report-attachment.pst-question-attachment-count-2 .pst-question-attachment-gallery {
	grid-template-columns: repeat(2, minmax(0, 320px));
}
body.pst-app-route .pst-report-attachment .pst-question-attachment-item {
	aspect-ratio: 4 / 3;
	border: 1px solid rgba(219, 151, 42, .60);
	border-radius: 16px;
	background: #020914;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}
body.pst-app-route .pst-report-attachment .pst-question-attachment-item::after {
	right: 9px;
	bottom: 9px;
	padding: 5px 9px;
	border-color: rgba(255,255,255,.30);
	background: rgba(2, 8, 18, .84);
	font-size: 10px;
}
body.pst-app-route .pst-report-attachment .pst-question-attachment-image {
	border-radius: 0;
}

@media (max-width: 767px) {
	body.pst-app-route .pst-content-wrap:has(.pst-report-detail) {
		padding: 10px 8px 86px;
	}
	body.pst-app-route .pst-report-detail {
		border-radius: 20px;
	}
	body.pst-app-route .pst-report-detail-header {
		padding: 12px 14px 18px;
	}
	body.pst-app-route .pst-report-topbar {
		grid-template-columns: 40px minmax(0, 1fr) 40px;
		gap: 8px;
		min-height: 56px;
		margin-bottom: 16px;
	}
	body.pst-app-route .pst-report-back-link,
	body.pst-app-route .pst-report-topbar-spacer {
		width: 38px;
		height: 38px;
		border-radius: 12px;
	}
	body.pst-app-route .pst-report-back-link .pst-icon {
		width: 21px;
		height: 21px;
	}
	body.pst-app-route .pst-report-heading-image {
		width: clamp(140px, 43vw, 176px);
	}
	body.pst-app-route .pst-report-heading::after {
		width: 130px;
	}
	body.pst-app-route .pst-report-author-bar {
		align-items: center;
		gap: 10px;
		margin: 0 2px 18px;
	}
	body.pst-app-route .pst-report-author-identity {
		gap: 11px;
		min-width: 0;
	}
	body.pst-app-route .pst-report-author-avatar {
		width: 56px;
		height: 56px;
		padding: 2px;
	}
	body.pst-app-route .pst-report-author-copy {
		gap: 5px;
	}
	body.pst-app-route .pst-report-author-copy strong {
		font-size: 17px;
	}
	body.pst-app-route .pst-report-author-copy span {
		max-width: 145px;
		overflow: hidden;
		padding: 4px 7px;
		font-size: 10px;
		text-overflow: ellipsis;
	}
	body.pst-app-route .pst-report-date {
		gap: 6px;
		font-size: 12px;
	}
	body.pst-app-route .pst-report-date .pst-icon-calendar {
		width: 21px;
		height: 21px;
	}
	body.pst-app-route .pst-report-title-box {
		gap: 18px;
		padding: 24px 14px 27px;
		border-radius: 18px;
	}
	body.pst-app-route .pst-report-title-label {
		gap: 8px;
		padding: 8px 15px;
		font-size: 12px;
	}
	body.pst-app-route .pst-report-title-label .pst-icon-battle {
		width: 19px;
		height: 19px;
	}
	body.pst-app-route .pst-report-title-box h1 {
		font-size: clamp(27px, 8vw, 38px);
	}
	body.pst-app-route .pst-report-detail > .pst-single-content {
		gap: 18px;
		padding: 0 14px 24px;
	}
	body.pst-app-route .pst-report-overview-grid {
		gap: 10px;
	}
	body.pst-app-route .pst-report-overview-card {
		gap: 11px;
		padding: 14px 12px;
		border-radius: 15px;
	}
	body.pst-app-route .pst-report-overview-icon {
		flex-basis: 45px;
		width: 45px;
		height: 45px;
		border-radius: 13px;
	}
	body.pst-app-route .pst-report-overview-icon .pst-icon {
		width: 23px;
		height: 23px;
	}
	body.pst-app-route .pst-report-overview-copy {
		gap: 4px;
	}
	body.pst-app-route .pst-report-overview-copy > span {
		font-size: 10px;
	}
	body.pst-app-route .pst-report-overview-copy strong {
		font-size: 16px;
	}
	body.pst-app-route .pst-report-body-section,
	body.pst-app-route .pst-report-attachment {
		padding: 18px 16px 20px;
		border-radius: 17px;
	}
	body.pst-app-route .pst-report-body-heading {
		gap: 11px;
		margin-bottom: 16px;
		padding-bottom: 14px;
	}
	body.pst-app-route .pst-report-body-icon {
		flex-basis: 40px;
		width: 40px;
		height: 40px;
		border-radius: 11px;
	}
	body.pst-app-route .pst-report-body-icon .pst-icon {
		width: 23px;
		height: 23px;
	}
	body.pst-app-route .pst-report-body-heading-copy h2 {
		font-size: 20px;
	}
	body.pst-app-route .pst-report-body-text {
		font-size: 17px;
		line-height: 1.8;
	}
	body.pst-app-route .pst-report-attachment figcaption {
		gap: 8px;
		margin-bottom: 13px;
	}
	body.pst-app-route .pst-report-attachment-title {
		gap: 7px;
	}
	body.pst-app-route .pst-report-attachment-title .pst-icon-image {
		width: 22px;
		height: 22px;
	}
	body.pst-app-route .pst-report-attachment-title strong {
		font-size: 17px;
	}
	body.pst-app-route .pst-report-attachment figcaption > span:last-child {
		font-size: 10px;
	}
	body.pst-app-route .pst-report-attachment .pst-question-attachment-gallery,
	body.pst-app-route .pst-report-attachment.pst-question-attachment-count-1 .pst-question-attachment-gallery,
	body.pst-app-route .pst-report-attachment.pst-question-attachment-count-2 .pst-question-attachment-gallery {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 7px;
	}
	body.pst-app-route .pst-report-attachment .pst-question-attachment-item {
		border-radius: 11px;
	}
	body.pst-app-route .pst-report-attachment .pst-question-attachment-item::after {
		right: 4px;
		bottom: 4px;
		padding: 4px 6px;
		font-size: 8px;
	}
}

@media (max-width: 420px) {
	body.pst-app-route .pst-report-author-bar {
		align-items: flex-start;
	}
	body.pst-app-route .pst-report-author-copy span {
		max-width: 118px;
	}
	body.pst-app-route .pst-report-date {
		align-self: center;
		font-size: 10px;
	}
	body.pst-app-route .pst-report-date .pst-icon-calendar {
		width: 18px;
		height: 18px;
	}
	body.pst-app-route .pst-report-overview-card {
		padding: 12px 9px;
	}
	body.pst-app-route .pst-report-overview-icon {
		flex-basis: 39px;
		width: 39px;
		height: 39px;
	}
	body.pst-app-route .pst-report-overview-icon .pst-icon {
		width: 20px;
		height: 20px;
	}
	body.pst-app-route .pst-report-overview-copy strong {
		font-size: 14px;
	}
}


/* v0.4.3.3.237: 実戦報告コメントをQ&Aと同じ一列型UIで有効化 */
body.pst-app-route.single-pst_report .pst-conversation-comments {
	margin-top: 28px;
}
body.pst-app-route.single-pst_report .pst-conversation-heading .comments-title::before {
	content: "実戦への";
	margin-right: .25em;
	color: #d7b45b;
	font-size: .72em;
	font-weight: 800;
}
@media (max-width: 767px) {
	body.pst-app-route.single-pst_report .pst-conversation-comments {
		margin-top: 22px;
	}
}


/* v0.4.3.3.238: 実戦報告詳細にQ&Aと同じ反応・MEMOシステムを配置 */
body.pst-app-route .pst-report-thread-actions {
	margin-top: 14px;
}
body.pst-app-route .pst-report-thread-actions .pst-thread-like-wrap {
	margin-top: 0;
	padding: 12px 14px;
	border: 1px solid rgba(219, 174, 72, .28);
	border-radius: 16px;
	background: linear-gradient(180deg, rgba(8, 23, 42, .84), rgba(5, 16, 31, .92));
	box-shadow: inset 0 1px 0 rgba(255, 244, 207, .04);
}
@media (max-width: 767px) {
	body.pst-app-route .pst-report-thread-actions {
		margin-top: 12px;
	}
	body.pst-app-route .pst-report-thread-actions .pst-thread-like-wrap {
		padding: 10px;
		border-radius: 14px;
	}
}

/* v0.4.3.3.239 unified engagement bar for all thread categories */
body.pst-app-route .pst-thread-like-wrap {
	display: block;
	width: 100%;
	margin-top: 18px;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar {
	display: flex;
	align-items: stretch;
	gap: 0;
	width: 100%;
	border: 1px solid rgba(233, 191, 86, .78);
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(14, 25, 49, .98), rgba(8, 18, 37, .98));
	box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 0 0 1px rgba(231, 191, 86, .1), 0 10px 26px rgba(0, 0, 0, .28), 0 0 18px rgba(219, 163, 41, .08);
	overflow: hidden;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar > * {
	position: relative;
	margin: 0;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar > * + *::before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	bottom: 10px;
	width: 1px;
	background: linear-gradient(180deg, rgba(246,216,130,0), rgba(246,216,130,.36), rgba(246,216,130,0));
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-item,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-button,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-report-login-link,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-report > summary {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	min-height: 68px;
	padding: 10px 12px;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	text-decoration: none !important;
	line-height: 1.05;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-item,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-thread-like-button,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-button {
	flex: 1 1 0;
	min-width: 0;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-report,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-report-link {
	flex: 0 0 78px;
	min-width: 78px;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-icon,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-like-icon,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	color: #efbc4a;
	filter: drop-shadow(0 0 6px rgba(245, 195, 76, .16));
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-icon svg,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-like-icon svg,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-icon .pst-icon {
	width: 18px;
	height: 18px;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-copy,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	min-width: 0;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-label,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-label {
	color: #efc25d;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .02em;
	line-height: 1;
	white-space: nowrap;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-value,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-like-count,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-save-count {
	color: #f7f2e3;
	font-size: 15px;
	font-weight: 900;
	line-height: 1;
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-like-count {
	padding: 0;
	border: 0;
	min-width: 0;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-card-like-count,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-answer-count,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-view-count,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-report-login-link,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-report > summary,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-button {
	color: #f7f2e3;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-thread-like-button:hover,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-button:hover,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-answer-count:hover,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-report-login-link:hover,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-report > summary:hover,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-thread-like-button:focus-visible,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-button:focus-visible,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-answer-count:focus-visible,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-report-login-link:focus-visible,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-report > summary:focus-visible {
	background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(233,191,86,.07));
	transform: none;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-thread-like-button.is-liked {
	background: linear-gradient(180deg, rgba(149, 90, 24, .28), rgba(90, 50, 11, .28));
	color: #fff1c4;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-thread-like-button.is-liked .pst-engagement-label,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-button.is-saved .pst-memo-label {
	color: #ffe08b;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-button {
	min-height: 68px;
	padding: 10px 12px;
	border: 0;
	background: transparent;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-button.is-saved {
	background: linear-gradient(180deg, rgba(149, 90, 24, .28), rgba(90, 50, 11, .28));
	box-shadow: none;
	color: #fff1c4;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-save-count {
	display: inline-flex;
	align-items: baseline;
	gap: 0;
	margin: 0;
	padding: 0;
	border: 0;
	letter-spacing: 0;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-save-count-number {
	color: #f7f2e3;
	font-size: 15px;
	font-weight: 900;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-save-count-unit {
	color: #f7f2e3;
	font-size: 13px;
	font-weight: 800;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-report {
	position: relative;
	display: flex;
	align-items: stretch;
	margin: 0;
	font-size: inherit;
	color: inherit;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-report > summary {
	list-style: none;
	cursor: pointer;
	text-decoration: none;
	text-underline-offset: 0;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-report > summary::-webkit-details-marker {
	display: none;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-report .pst-engagement-copy {
	gap: 0;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-report .pst-engagement-label {
	font-size: 12px;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-report-login-link {
	align-items: center;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-report-login-link .pst-engagement-copy {
	gap: 0;
}
@media (max-width: 767px) {
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar {
		border-radius: 16px;
	}
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-item,
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-button,
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-report-login-link,
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-report > summary {
		min-height: 58px;
		padding: 8px 8px;
		gap: 6px;
	}
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-icon,
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-like-icon,
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-icon {
		width: 17px;
		height: 17px;
		flex-basis: 17px;
	}
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-icon svg,
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-like-icon svg,
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-icon .pst-icon {
		width: 15px;
		height: 15px;
	}
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-label,
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-label {
		font-size: 9px;
	}
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-value,
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-like-count,
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-save-count,
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-save-count-number {
		font-size: 12px;
	}
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-save-count-unit {
		font-size: 10px;
	}
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-report,
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-report-link {
		flex-basis: 62px;
		min-width: 62px;
	}
}


/* v0.4.3.3.240 compact labels for like/comment/view */
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-item.is-like,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-item.is-comment,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-item.is-view,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-thread-like-button.is-like {
	justify-content: center;
	gap: 10px;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-item.is-like .pst-engagement-copy,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-item.is-comment .pst-engagement-copy,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-item.is-view .pst-engagement-copy,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-thread-like-button.is-like .pst-engagement-copy {
	gap: 0;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-item.is-like .pst-engagement-value,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-item.is-comment .pst-engagement-value,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-item.is-view .pst-engagement-value,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-thread-like-button.is-like .pst-engagement-value,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-thread-like-button.is-like .pst-like-count {
	font-size: 17px;
}
@media (max-width: 767px) {
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-item.is-like,
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-item.is-comment,
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-item.is-view,
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-thread-like-button.is-like {
		gap: 8px;
	}
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-item.is-like .pst-engagement-value,
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-item.is-comment .pst-engagement-value,
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-item.is-view .pst-engagement-value,
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-thread-like-button.is-like .pst-engagement-value,
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-thread-like-button.is-like .pst-like-count {
		font-size: 14px;
	}
}


/* v0.4.3.3.289: 投稿詳細で保存機能が分かるよう、MEMOの保存ラベルを再表示 */
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-button .pst-memo-label {
	display: inline;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-button .pst-memo-copy {
	gap: 4px;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-button {
	justify-content: center;
	gap: 7px;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-button.is-saved .pst-memo-label {
	color: #f7d77c;
}


/* v0.4.3.3.242: 通報フォームのスマホ横はみ出しを防止 */
body.pst-app-route .pst-report-form {
	box-sizing: border-box;
	width: min(420px, calc(100vw - 32px));
	width: min(420px, calc(100dvw - 32px));
	max-width: calc(100vw - 32px);
	max-width: calc(100dvw - 32px);
	overflow-x: hidden;
}
body.pst-app-route .pst-report-form,
body.pst-app-route .pst-report-form * {
	box-sizing: border-box;
}
body.pst-app-route .pst-report-form label,
body.pst-app-route .pst-report-form select,
body.pst-app-route .pst-report-form textarea {
	display: block;
	width: 100%;
	max-width: 100%;
	min-width: 0;
}
body.pst-app-route .pst-report-form textarea {
	overflow-x: hidden;
	font-size: 16px;
	line-height: 1.55;
	word-break: break-word;
	overflow-wrap: anywhere;
}
@media (max-width: 600px) {
	body.pst-app-route .pst-report-form {
		left: max(12px, env(safe-area-inset-left));
		right: max(12px, env(safe-area-inset-right));
		bottom: max(92px, calc(env(safe-area-inset-bottom) + 76px));
		width: auto;
		max-width: none;
		max-height: min(70dvh, calc(100dvh - 126px));
		padding: 14px;
		transform: none;
	}
	body.pst-app-route .pst-report-form-actions {
		width: 100%;
		min-width: 0;
	}
	body.pst-app-route .pst-report-form .pst-report-close,
	body.pst-app-route .pst-report-form .pst-report-submit {
		min-width: 0;
		max-width: 100%;
		flex: 1 1 0;
	}
}


/* v0.4.3.3.243: 質問詳細の機種名を中央寄せ */
body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-machine strong,
body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-machine strong a {
	width: 100%;
	text-align: center;
}


/* v0.4.3.3.244: 質問詳細の遊技タイプ・カテゴリの値も中央寄せ */
body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-item:nth-child(2) strong,
body.pst-app-route .pst-question-overview.pst-question-overview-inline .pst-question-overview-item:nth-child(3) strong {
	display: block;
	width: 100%;
	text-align: center;
}


/* v0.4.3.3.245: 質問タイトルを大きく・色変更・中央寄せ */
body.pst-app-route .pst-question-title-block.has-character {
	align-items: center;
}
body.pst-app-route .pst-question-title-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}
body.pst-app-route .pst-question-title-block.has-character .pst-question-field-label {
	width: 100%;
	margin-bottom: 8px;
	color: #ff9caf;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .14em;
	text-align: center;
}
body.pst-app-route .pst-question-title-block.has-character h1,
body.pst-app-route .pst-question-detail-header h1 {
	width: 100%;
	margin: 0;
	color: #ff8ca1;
	font-size: clamp(34px, 6.2vw, 50px);
	font-weight: 950;
	line-height: 1.18;
	letter-spacing: .02em;
	text-align: center;
	text-shadow: 0 0 14px rgba(255, 92, 130, .10);
}
@media (max-width: 767px) {
	body.pst-app-route .pst-question-title-block.has-character {
		grid-template-columns: 74px minmax(0, 1fr);
		column-gap: 12px;
	}
	body.pst-app-route .pst-question-title-block.has-character .pst-question-field-label {
		font-size: 12px;
		margin-bottom: 6px;
	}
	body.pst-app-route .pst-question-title-block.has-character h1,
	body.pst-app-route .pst-question-detail-header h1 {
		font-size: clamp(32px, 8vw, 42px);
	}
}


/* v0.4.3.3.246: 質問タイトル左のキャラを非表示、ラベルをゴールド・タイトルを白へ */
body.pst-app-route .pst-question-title-block.has-character {
	grid-template-columns: minmax(0, 1fr);
	column-gap: 0;
	justify-items: center;
}
body.pst-app-route .pst-question-title-mascot {
	display: none !important;
}
body.pst-app-route .pst-question-title-copy {
	width: 100%;
	align-items: center;
	text-align: center;
}
body.pst-app-route .pst-question-title-block.has-character .pst-question-field-label,
body.pst-app-route .pst-question-field-label {
	color: #e9bf56;
}
body.pst-app-route .pst-question-title-block.has-character h1,
body.pst-app-route .pst-question-detail-header h1 {
	color: #ffffff;
	text-shadow: 0 0 12px rgba(255, 255, 255, .08);
}
@media (max-width: 767px) {
	body.pst-app-route .pst-question-title-block.has-character {
		grid-template-columns: minmax(0, 1fr);
	}
}


/* v0.4.3.3.248: スマホ下部固定タブの中央「投稿する」を擦れ感のある重厚ゴールドへ */
@media (max-width: 900px) {
	body.pst-app-route {
		padding-bottom: 88px;
	}
	body.pst-app-route .pst-mobile-nav {
		min-height: 76px;
		padding-top: 8px;
		border-top-color: rgba(225, 183, 76, .32);
		background: linear-gradient(180deg, rgba(7, 18, 37, .985), rgba(3, 11, 23, .985));
		box-shadow:
			0 -10px 30px rgba(0, 0, 0, .42),
			0 -1px 0 rgba(255, 220, 128, .05) inset;
	}
	body.pst-app-route .pst-mobile-nav .pst-mobile-nav-main {
		position: relative;
		z-index: 2;
		gap: 5px;
		color: #ffffff !important;
		font-size: 10px;
		font-weight: 900;
		letter-spacing: .02em;
		text-shadow:
			0 1px 0 rgba(10, 17, 29, .75),
			0 0 10px rgba(255, 255, 255, .10);
	}
	body.pst-app-route .pst-mobile-nav .pst-mobile-nav-main .pst-mobile-nav-main-circle {
		position: relative;
		display: grid;
		place-items: center;
		isolation: isolate;
		overflow: hidden;
		width: 70px;
		height: 70px;
		margin-top: -36px;
		border: 2px solid #f1c75f;
		border-radius: 50%;
		background:
			radial-gradient(circle at 34% 26%, rgba(255, 250, 218, .78), transparent 21%),
			radial-gradient(circle at 70% 78%, rgba(115, 68, 7, .28), transparent 32%),
			linear-gradient(145deg, #f7d780 0%, #cf972f 46%, #8d5611 100%);
		color: #1d2430;
		box-shadow:
			0 0 0 4px rgba(110, 70, 14, .68),
			0 0 0 6px rgba(247, 206, 103, .28),
			0 0 24px rgba(244, 189, 56, .40),
			0 11px 24px rgba(0, 0, 0, .54),
			inset 0 2px 0 rgba(255, 255, 255, .52),
			inset 0 -9px 14px rgba(93, 54, 8, .42),
			inset 0 0 18px rgba(73, 43, 8, .16);
		transition: transform .16s ease, filter .16s ease, box-shadow .16s ease;
	}
	body.pst-app-route .pst-mobile-nav .pst-mobile-nav-main .pst-mobile-nav-main-circle::before {
		content: "";
		position: absolute;
		inset: 5px;
		border-radius: inherit;
		background:
			repeating-linear-gradient(136deg,
				rgba(255, 245, 205, .12) 0 2px,
				rgba(255, 245, 205, 0) 2px 8px,
				rgba(90, 58, 12, .08) 8px 10px,
				rgba(90, 58, 12, 0) 10px 16px),
			repeating-linear-gradient(42deg,
				rgba(84, 50, 8, .12) 0 1px,
				rgba(84, 50, 8, 0) 1px 7px),
			radial-gradient(circle at 24% 76%, rgba(94, 59, 10, .18), transparent 18%),
			radial-gradient(circle at 78% 34%, rgba(255, 242, 190, .10), transparent 16%);
		mix-blend-mode: multiply;
		opacity: .80;
		pointer-events: none;
	}
	body.pst-app-route .pst-mobile-nav .pst-mobile-nav-main .pst-mobile-nav-main-circle::after {
		content: "";
		position: absolute;
		inset: 7px;
		border: 1px solid rgba(92, 56, 8, .58);
		border-radius: inherit;
		box-shadow:
			inset 0 0 0 1px rgba(255, 242, 182, .22),
			inset 0 10px 12px rgba(255, 255, 255, .08),
			inset 0 -10px 12px rgba(78, 45, 7, .16);
		pointer-events: none;
	}
	body.pst-app-route .pst-mobile-nav .pst-mobile-nav-main .pst-icon-edit {
		position: relative;
		z-index: 1;
		width: 30px;
		height: 30px;
		color: #172131;
		stroke-width: 2.15;
		filter:
			drop-shadow(0 1px 0 rgba(255, 248, 220, .48))
			drop-shadow(0 2px 4px rgba(110, 71, 13, .22));
	}
	body.pst-app-route .pst-mobile-nav .pst-mobile-nav-main:active .pst-mobile-nav-main-circle {
		transform: translateY(2px) scale(.97);
		filter: brightness(.95) saturate(.97);
		box-shadow:
			0 0 0 4px rgba(110, 70, 14, .68),
			0 0 0 6px rgba(247, 206, 103, .22),
			0 0 16px rgba(244, 189, 56, .28),
			0 6px 14px rgba(0, 0, 0, .44),
			inset 0 2px 0 rgba(255, 255, 255, .42),
			inset 0 -6px 10px rgba(93, 54, 8, .36),
			inset 0 0 14px rgba(73, 43, 8, .14);
	}
}
@media (max-width: 380px) {
	body.pst-app-route .pst-mobile-nav .pst-mobile-nav-main .pst-mobile-nav-main-circle {
		width: 64px;
		height: 64px;
		margin-top: -31px;
	}
	body.pst-app-route .pst-mobile-nav .pst-mobile-nav-main .pst-icon-edit {
		width: 27px;
		height: 27px;
	}
}


/* v0.4.3.3.250: ホームの全新着記事カードを実戦報告と同じレインボー枠へ統一 */
body.pst-app-route .pst-home #pst-latest .pst-question-row,
body.pst-app-route .pst-home #pst-behavior-latest .pst-question-row,
body.pst-app-route .pst-home #pst-reports .pst-report-row,
body.pst-app-route .pst-home #pst-social-latest .pst-question-row {
	border: 1px solid transparent;
	background:
		linear-gradient(145deg, rgba(12, 29, 49, .94), rgba(6, 18, 32, .98)) padding-box,
		linear-gradient(110deg, #ff4d4d, #ff9f43, #ffd93d, #4cd964, #32d8ff, #5b7cff, #b36bff, #ff4d9d, #ff4d4d) border-box;
	background-size: 100% 100%, 320% 100%;
	box-shadow:
		0 7px 20px rgba(0, 0, 0, .18),
		0 0 14px rgba(92, 206, 255, .08);
	animation: pst-home-report-rainbow-border 8s linear infinite;
}
body.pst-app-route .pst-home #pst-latest .pst-question-row:last-child,
body.pst-app-route .pst-home #pst-behavior-latest .pst-question-row:last-child,
body.pst-app-route .pst-home #pst-reports .pst-report-row:last-child,
body.pst-app-route .pst-home #pst-social-latest .pst-question-row:last-child {
	border-bottom-color: transparent;
}
body.pst-app-route .pst-home #pst-latest .pst-question-row:hover,
body.pst-app-route .pst-home #pst-behavior-latest .pst-question-row:hover,
body.pst-app-route .pst-home #pst-reports .pst-report-row:hover,
body.pst-app-route .pst-home #pst-social-latest .pst-question-row:hover {
	border-color: transparent;
	background:
		linear-gradient(145deg, rgba(16, 38, 63, .98), rgba(8, 24, 42, .99)) padding-box,
		linear-gradient(110deg, #ff4d4d, #ff9f43, #ffd93d, #4cd964, #32d8ff, #5b7cff, #b36bff, #ff4d9d, #ff4d4d) border-box;
	background-size: 100% 100%, 320% 100%;
	box-shadow:
		0 10px 27px rgba(0, 0, 0, .24),
		0 0 18px rgba(105, 214, 255, .13);
}
/* 考察の注意書きは記事一覧の後、一番下へ配置 */
body.pst-app-route .pst-home #pst-behavior-latest .pst-behavior-home-disclaimer {
	margin: 10px 0 0;
}
@media (prefers-reduced-motion: reduce) {
	body.pst-app-route .pst-home #pst-latest .pst-question-row,
	body.pst-app-route .pst-home #pst-behavior-latest .pst-question-row,
	body.pst-app-route .pst-home #pst-reports .pst-report-row,
	body.pst-app-route .pst-home #pst-social-latest .pst-question-row {
		animation: none;
		background-position: 0 0, 50% 50%;
	}
}


/* v0.4.3.3.252: ホーム新着実戦の縦ロゴを枠サイズ据え置きのまま最大表示 */
body.pst-app-route .pst-home #pst-reports .pst-report-row {
	grid-template-columns: 42px minmax(0, 1fr) auto;
}
body.pst-app-route .pst-home #pst-reports .pst-report-row .pst-report-icon.pst-report-icon-home-vertical {
	width: 36px;
	height: 64px;
	max-width: 100%;
	max-height: 100%;
	align-self: center;
	justify-self: center;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
}
body.pst-app-route .pst-home #pst-reports .pst-report-icon-home-vertical-image {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 36px;
	max-height: 64px;
	margin: 0 auto;
	object-fit: contain;
}
@media (max-width: 767px) {
	body.pst-app-route .pst-home #pst-reports .pst-report-row {
		grid-template-columns: 40px minmax(0, 1fr) auto;
	}
	body.pst-app-route .pst-home #pst-reports .pst-report-row .pst-report-icon.pst-report-icon-home-vertical {
		width: 34px;
		height: 60px;
	}
	body.pst-app-route .pst-home #pst-reports .pst-report-icon-home-vertical-image {
		max-width: 34px;
		max-height: 60px;
	}
}


/* v0.4.3.3.253: 新着実戦の左ロゴを画像ではなく縦書きテキストで表示 */
body.pst-app-route .pst-home #pst-reports .pst-report-row {
	grid-template-columns: 42px minmax(0, 1fr) auto;
}
body.pst-app-route .pst-home #pst-reports .pst-report-row .pst-report-icon.pst-report-icon-home-vertical {
	position: relative;
	z-index: 3;
	display: grid;
	place-items: center;
	width: 36px;
	height: 64px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	overflow: visible;
	text-decoration: none;
}
body.pst-app-route .pst-home #pst-reports .pst-report-icon-home-vertical-image {
	display: none !important;
}
body.pst-app-route .pst-home #pst-reports .pst-report-icon-home-vertical-text {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 80px;
	margin: -8px -3px;
	padding: 3px 0;
	box-sizing: border-box;
	font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "BIZ UDPMincho", "MS PMincho", "Noto Serif JP", serif;
	font-size: 22px;
	font-weight: 700;
	font-style: normal;
	line-height: .88;
	letter-spacing: -.04em;
	white-space: nowrap;
	transform: scaleX(1.04);
	transform-origin: center;
	filter: none;
	pointer-events: none;
}
body.pst-app-route .pst-home #pst-reports .pst-report-icon-home-vertical-text > span {
	display: block;
	background: linear-gradient(180deg, #fff4b7 0%, #f8d56a 28%, #e1a52a 62%, #ffdd70 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
	text-shadow: none;
}
@media (max-width: 767px) {
	body.pst-app-route .pst-home #pst-reports .pst-report-row {
		grid-template-columns: 40px minmax(0, 1fr) auto;
	}
	body.pst-app-route .pst-home #pst-reports .pst-report-row .pst-report-icon.pst-report-icon-home-vertical {
		width: 34px;
		height: 60px;
	}
	body.pst-app-route .pst-home #pst-reports .pst-report-icon-home-vertical-text {
		width: 42px;
		height: 78px;
		margin: -8px -4px;
		padding: 3px 0;
		font-size: 20px;
		line-height: .9;
		transform: scaleX(1.04);
	}
}


/* v0.4.3.3.261: 下部固定バナーの高さだけを縮め、全ラベル文字は完全表示 */
@media (max-width: 900px) {
	body.pst-app-route {
		padding-bottom: 76px;
	}
	body.pst-app-route .pst-mobile-nav {
		min-height: 64px;
		padding-top: 4px;
		padding-bottom: calc(4px + env(safe-area-inset-bottom));
		align-items: end;
		overflow: visible;
	}
	body.pst-app-route .pst-mobile-nav > a {
		min-height: 50px;
		align-content: end;
		overflow: visible;
	}
	body.pst-app-route .pst-mobile-nav > a:not(.pst-mobile-nav-main) {
		padding-bottom: 1px;
	}
	body.pst-app-route .pst-mobile-nav .pst-mobile-nav-main {
		padding-bottom: 0;
	}
}


/* v0.4.3.3.262: 下部固定バナーのホームを、輪郭が明確な家型SVGへ変更 */
@media (max-width: 900px) {
	body.pst-app-route .pst-mobile-nav .pst-mobile-nav-home-icon {
		display: grid;
		place-items: center;
		width: 30px;
		height: 30px;
		margin: 0;
		font-size: 0;
		line-height: 1;
	}
	body.pst-app-route .pst-mobile-nav .pst-mobile-nav-home-icon .pst-icon-home-nav {
		display: block;
		width: 30px;
		height: 30px;
		fill: none;
		stroke: currentColor;
		stroke-width: 2;
		stroke-linecap: round;
		stroke-linejoin: round;
	}
}


/* v0.4.3.3.263: 下部固定バナーの検索アイコンをSVG化し、少し大きく見やすく調整 */
@media (max-width: 900px) {
	body.pst-app-route .pst-mobile-nav .pst-mobile-nav-search-icon {
		display: grid;
		place-items: center;
		width: 31px;
		height: 31px;
		margin: 0;
		font-size: 0;
		line-height: 1;
	}
	body.pst-app-route .pst-mobile-nav .pst-mobile-nav-search-icon .pst-icon-search-nav {
		display: block;
		width: 31px;
		height: 31px;
		fill: none;
		stroke: currentColor;
		stroke-width: 2.35;
		stroke-linecap: round;
		stroke-linejoin: round;
	}
}


/* v0.4.3.3.264: 下部固定バナーの実戦報告グラフを検索アイコンと同じ大きさへ統一 */
@media (max-width: 900px) {
	body.pst-app-route .pst-mobile-nav .pst-mobile-nav-icon-report {
		display: grid;
		place-items: center;
		width: 31px;
		height: 31px;
		margin: 0;
		font-size: 0;
		line-height: 1;
	}
	body.pst-app-route .pst-mobile-nav .pst-mobile-nav-icon-report .pst-icon-linechart {
		display: block;
		width: 31px;
		height: 31px;
		fill: none;
		stroke: currentColor;
		stroke-width: 2.15;
		stroke-linecap: round;
		stroke-linejoin: round;
	}
}


/* v0.4.3.3.265: 下部固定バナーのマイページ画像を検索・実戦報告と同じ大きさへ統一 */
@media (max-width: 900px) {
	body.pst-app-route .pst-mobile-nav .pst-mobile-nav-avatar-wrap {
		display: grid !important;
		place-items: center;
		width: 31px;
		height: 31px;
		margin: 0;
		border-radius: 50%;
		overflow: hidden;
	}
	body.pst-app-route .pst-mobile-nav .pst-mobile-nav-avatar {
		display: block;
		width: 31px !important;
		height: 31px !important;
		max-width: none;
		border-radius: 50%;
		object-fit: cover;
	}
	body.pst-app-route .pst-mobile-nav .pst-mobile-nav-account-fallback {
		display: grid !important;
		place-items: center;
		width: 31px;
		height: 31px;
		font-size: 24px !important;
		line-height: 1;
	}
}


/* v0.4.3.3.266: 実戦報告詳細の実戦タイトル枠を横長に引き締める */
body.pst-app-route .pst-report-title-box {
	gap: 18px;
	padding: 24px 26px 26px;
	border-radius: 20px;
}
@media (max-width: 767px) {
	body.pst-app-route .pst-report-title-box {
		gap: 12px;
		padding: 18px 14px 20px;
		border-radius: 16px;
	}
	body.pst-app-route .pst-report-title-label {
		padding: 7px 15px;
	}
}

/* v0.4.3.3.267: 実戦報告詳細を、角の効いたスタイリッシュなゴールドUIへ再調整 */
body.pst-app-route .pst-report-author-bar {
	position: relative;
	margin-bottom: 28px;
	padding-bottom: 24px;
}
body.pst-app-route .pst-report-author-bar::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, rgba(230, 171, 52, .32) 10%, rgba(255, 208, 102, .88) 50%, rgba(230, 171, 52, .32) 90%, transparent 100%);
	box-shadow: 0 0 8px rgba(255, 190, 62, .14);
}
body.pst-app-route .pst-report-author-bar::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -4px;
	z-index: 1;
	width: 8px;
	height: 8px;
	transform: translateX(-50%) rotate(45deg);
	border: 1px solid rgba(255, 201, 88, .92);
	background: #07172a;
	box-shadow: 0 0 8px rgba(255, 190, 62, .22);
}
body.pst-app-route .pst-report-title-box {
	isolation: isolate;
	gap: 16px;
	padding: 22px 34px 24px;
	border: 1px solid rgba(238, 183, 65, .86);
	border-radius: 16px;
	background:
		repeating-linear-gradient(135deg, transparent 0 10px, rgba(255, 197, 70, .10) 10px 11px, transparent 11px 18px) left 14px center / 88px 64% no-repeat,
		repeating-linear-gradient(225deg, transparent 0 10px, rgba(255, 197, 70, .10) 10px 11px, transparent 11px 18px) right 14px center / 88px 64% no-repeat,
		radial-gradient(ellipse at 50% 100%, rgba(255, 187, 59, .12), transparent 38%),
		linear-gradient(180deg, rgba(4, 17, 31, .98), rgba(2, 10, 20, .99));
	box-shadow:
		0 14px 30px rgba(0,0,0,.24),
		inset 0 0 0 1px rgba(255,255,255,.025),
		inset 0 0 24px rgba(255, 184, 51, .025);
	clip-path: polygon(0 12px, 12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px));
}
body.pst-app-route .pst-report-title-box::before {
	content: "";
	position: absolute;
	inset: 7px;
	z-index: -1;
	border: 1px solid rgba(255, 205, 101, .13);
	clip-path: polygon(0 8px, 8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px));
	pointer-events: none;
}
body.pst-app-route .pst-report-title-box::after {
	bottom: -1px;
	width: 168px;
	height: 2px;
	background: linear-gradient(90deg, transparent, #ffd773 42%, #fff0aa 50%, #ffd773 58%, transparent);
	box-shadow: 0 0 11px rgba(255, 192, 62, .72);
}
body.pst-app-route .pst-report-title-label {
	gap: 9px;
	padding: 8px 20px;
	border-color: rgba(236, 174, 48, .62);
	background: linear-gradient(180deg, rgba(12, 28, 48, .96), rgba(4, 15, 27, .98));
	font-size: 14px;
	letter-spacing: .10em;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.045), 0 7px 16px rgba(0,0,0,.20);
}
body.pst-app-route .pst-report-title-box h1 {
	font-weight: 800;
	letter-spacing: .035em;
	text-shadow: 0 2px 12px rgba(0,0,0,.56), 0 0 16px rgba(255, 213, 116, .045);
}
body.pst-app-route .pst-report-overview-card {
	position: relative;
	padding: 17px 19px;
	border-color: rgba(222, 164, 57, .52);
	border-radius: 16px;
	background:
		linear-gradient(135deg, rgba(255, 196, 71, .18) 0 1px, transparent 1px 14px) top left / 28px 28px no-repeat,
		linear-gradient(225deg, rgba(255, 196, 71, .18) 0 1px, transparent 1px 14px) top right / 28px 28px no-repeat,
		linear-gradient(45deg, rgba(255, 196, 71, .12) 0 1px, transparent 1px 14px) bottom left / 28px 28px no-repeat,
		linear-gradient(315deg, rgba(255, 196, 71, .12) 0 1px, transparent 1px 14px) bottom right / 28px 28px no-repeat,
		linear-gradient(180deg, rgba(7, 22, 39, .97), rgba(3, 13, 24, .99));
	box-shadow: 0 10px 22px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.025);
}
body.pst-app-route .pst-report-overview-icon {
	flex-basis: 56px;
	width: 56px;
	height: 56px;
	border-color: rgba(226, 172, 67, .34);
	border-radius: 14px;
	background: linear-gradient(180deg, rgba(10, 28, 48, .96), rgba(3, 13, 24, .99));
	box-shadow: inset 0 1px 0 rgba(255,255,255,.035), 0 7px 16px rgba(0,0,0,.22);
}
body.pst-app-route .pst-report-overview-copy > span {
	letter-spacing: .08em;
}
body.pst-app-route .pst-report-body-section,
body.pst-app-route .pst-report-attachment {
	position: relative;
	padding: 23px 24px 25px;
	border-color: rgba(224, 165, 53, .68);
	border-radius: 17px;
	background:
		linear-gradient(135deg, rgba(255, 198, 74, .18) 0 1px, transparent 1px 16px) top left / 30px 30px no-repeat,
		linear-gradient(225deg, rgba(255, 198, 74, .18) 0 1px, transparent 1px 16px) top right / 30px 30px no-repeat,
		linear-gradient(45deg, rgba(255, 198, 74, .14) 0 1px, transparent 1px 16px) bottom left / 30px 30px no-repeat,
		linear-gradient(315deg, rgba(255, 198, 74, .14) 0 1px, transparent 1px 16px) bottom right / 30px 30px no-repeat,
		radial-gradient(circle at 9% 0%, rgba(255, 187, 69, .06), transparent 32%),
		linear-gradient(180deg, rgba(5, 18, 32, .98), rgba(2, 10, 20, .99));
	box-shadow: 0 14px 26px rgba(0,0,0,.19), inset 0 1px 0 rgba(255,255,255,.025);
}
body.pst-app-route .pst-report-body-heading {
	position: relative;
	margin-bottom: 21px;
	padding-bottom: 18px;
	border-bottom-color: rgba(213, 166, 73, .28);
}
body.pst-app-route .pst-report-body-heading::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -4px;
	width: 8px;
	height: 8px;
	transform: translateX(-50%) rotate(45deg);
	border: 1px solid rgba(255, 199, 84, .85);
	background: #061525;
}
body.pst-app-route .pst-report-body-icon {
	border: 1px solid rgba(231, 176, 66, .28);
	background: linear-gradient(180deg, rgba(12, 29, 48, .95), rgba(4, 15, 27, .98));
	color: #69dfff;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 7px 16px rgba(0,0,0,.20);
}
body.pst-app-route .pst-report-body-heading-copy h2 {
	color: #ffc45a;
	font-weight: 800;
	letter-spacing: .055em;
}
body.pst-app-route .pst-report-body-text {
	font-weight: 700;
	line-height: 1.78;
}

@media (max-width: 767px) {
	body.pst-app-route .pst-report-author-bar {
		margin-bottom: 24px;
		padding-bottom: 20px;
	}
	body.pst-app-route .pst-report-title-box {
		gap: 12px;
		padding: 17px 18px 20px;
		border-radius: 13px;
		background:
			repeating-linear-gradient(135deg, transparent 0 8px, rgba(255, 197, 70, .10) 8px 9px, transparent 9px 15px) left 9px center / 56px 62% no-repeat,
			repeating-linear-gradient(225deg, transparent 0 8px, rgba(255, 197, 70, .10) 8px 9px, transparent 9px 15px) right 9px center / 56px 62% no-repeat,
			radial-gradient(ellipse at 50% 100%, rgba(255, 187, 59, .12), transparent 40%),
			linear-gradient(180deg, rgba(4, 17, 31, .98), rgba(2, 10, 20, .99));
		clip-path: polygon(0 9px, 9px 0, calc(100% - 9px) 0, 100% 9px, 100% calc(100% - 9px), calc(100% - 9px) 100%, 9px 100%, 0 calc(100% - 9px));
	}
	body.pst-app-route .pst-report-title-box::before {
		inset: 5px;
	}
	body.pst-app-route .pst-report-title-label {
		padding: 7px 14px;
		font-size: 12px;
	}
	body.pst-app-route .pst-report-title-label .pst-icon-battle {
		width: 18px;
		height: 18px;
	}
	body.pst-app-route .pst-report-title-box h1 {
		font-size: clamp(26px, 8vw, 37px);
	}
	body.pst-app-route .pst-report-overview-card {
		gap: 10px;
		padding: 13px 11px;
		border-radius: 13px;
	}
	body.pst-app-route .pst-report-overview-icon {
		flex-basis: 43px;
		width: 43px;
		height: 43px;
		border-radius: 11px;
	}
	body.pst-app-route .pst-report-overview-icon .pst-icon {
		width: 22px;
		height: 22px;
	}
	body.pst-app-route .pst-report-body-section,
	body.pst-app-route .pst-report-attachment {
		padding: 17px 15px 19px;
		border-radius: 14px;
	}
	body.pst-app-route .pst-report-body-heading {
		margin-bottom: 17px;
		padding-bottom: 15px;
	}
	body.pst-app-route .pst-report-body-icon {
		flex-basis: 39px;
		width: 39px;
		height: 39px;
		border-radius: 10px;
	}
	body.pst-app-route .pst-report-body-heading-copy h2 {
		font-size: 19px;
	}
	body.pst-app-route .pst-report-body-text {
		font-size: 16px;
		line-height: 1.72;
	}
}


/* v0.4.3.3.268: 固定コメント欄を中央投稿ボタンのタップ領域から完全に分離 */
@media (max-width: 900px) {
	body:not(.pst-keyboard-open).pst-app-route:is(.single-pst_question, .single-pst_report).pst-has-sticky-comment-composer {
		padding-bottom: calc(128px + var(--pst-sticky-composer-height, 64px) + env(safe-area-inset-bottom)) !important;
	}

	body:not(.pst-keyboard-open).pst-app-route:is(.single-pst_question, .single-pst_report) #respond.pst-sticky-comment-composer,
	body:not(.pst-keyboard-open).pst-app-route:is(.single-pst_question, .single-pst_report) > #respond.pst-sticky-comment-composer,
	body:not(.pst-keyboard-open).pst-app-route:is(.single-pst_question, .single-pst_report) .comments-area #respond.pst-sticky-comment-composer,
	body:not(.pst-keyboard-open).pst-app-route:is(.single-pst_question, .single-pst_report) .comments-area .comment-list + #respond.pst-sticky-comment-composer,
	body:not(.pst-keyboard-open).pst-app-route:is(.single-pst_question, .single-pst_report) .comment-list #respond.pst-sticky-comment-composer {
		inset: auto 8px calc(112px + env(safe-area-inset-bottom)) 8px !important;
		bottom: calc(112px + env(safe-area-inset-bottom)) !important;
	}
}

@media (max-width: 380px) {
	body:not(.pst-keyboard-open).pst-app-route:is(.single-pst_question, .single-pst_report) #respond.pst-sticky-comment-composer,
	body:not(.pst-keyboard-open).pst-app-route:is(.single-pst_question, .single-pst_report) > #respond.pst-sticky-comment-composer,
	body:not(.pst-keyboard-open).pst-app-route:is(.single-pst_question, .single-pst_report) .comments-area #respond.pst-sticky-comment-composer,
	body:not(.pst-keyboard-open).pst-app-route:is(.single-pst_question, .single-pst_report) .comments-area .comment-list + #respond.pst-sticky-comment-composer,
	body:not(.pst-keyboard-open).pst-app-route:is(.single-pst_question, .single-pst_report) .comment-list #respond.pst-sticky-comment-composer {
		inset: auto 8px calc(106px + env(safe-area-inset-bottom)) 8px !important;
		bottom: calc(106px + env(safe-area-inset-bottom)) !important;
	}
}


/* v0.4.3.3.269: 固定コメント欄を少し下げ、誤タップ防止の余白は維持 */
@media (max-width: 900px) {
	body:not(.pst-keyboard-open).pst-app-route:is(.single-pst_question, .single-pst_report).pst-has-sticky-comment-composer {
		padding-bottom: calc(120px + var(--pst-sticky-composer-height, 64px) + env(safe-area-inset-bottom)) !important;
	}

	body:not(.pst-keyboard-open).pst-app-route:is(.single-pst_question, .single-pst_report) #respond.pst-sticky-comment-composer,
	body:not(.pst-keyboard-open).pst-app-route:is(.single-pst_question, .single-pst_report) > #respond.pst-sticky-comment-composer,
	body:not(.pst-keyboard-open).pst-app-route:is(.single-pst_question, .single-pst_report) .comments-area #respond.pst-sticky-comment-composer,
	body:not(.pst-keyboard-open).pst-app-route:is(.single-pst_question, .single-pst_report) .comments-area .comment-list + #respond.pst-sticky-comment-composer,
	body:not(.pst-keyboard-open).pst-app-route:is(.single-pst_question, .single-pst_report) .comment-list #respond.pst-sticky-comment-composer {
		inset: auto 8px calc(104px + env(safe-area-inset-bottom)) 8px !important;
		bottom: calc(104px + env(safe-area-inset-bottom)) !important;
	}
}

@media (max-width: 380px) {
	body:not(.pst-keyboard-open).pst-app-route:is(.single-pst_question, .single-pst_report) #respond.pst-sticky-comment-composer,
	body:not(.pst-keyboard-open).pst-app-route:is(.single-pst_question, .single-pst_report) > #respond.pst-sticky-comment-composer,
	body:not(.pst-keyboard-open).pst-app-route:is(.single-pst_question, .single-pst_report) .comments-area #respond.pst-sticky-comment-composer,
	body:not(.pst-keyboard-open).pst-app-route:is(.single-pst_question, .single-pst_report) .comments-area .comment-list + #respond.pst-sticky-comment-composer,
	body:not(.pst-keyboard-open).pst-app-route:is(.single-pst_question, .single-pst_report) .comment-list #respond.pst-sticky-comment-composer {
		inset: auto 8px calc(98px + env(safe-area-inset-bottom)) 8px !important;
		bottom: calc(98px + env(safe-area-inset-bottom)) !important;
	}
}


/* v0.4.3.3.270: 固定コメント欄に閉じる×と再表示ボタンを追加 */
@media (max-width: 900px) {
	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond.pst-sticky-comment-composer {
		overflow: visible;
	}

	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond.pst-sticky-comment-composer .pst-sticky-composer-close {
		position: absolute;
		right: 12px;
		bottom: -27px;
		z-index: 2;
		display: grid;
		place-items: center;
		width: 30px;
		height: 30px;
		margin: 0;
		padding: 0;
		border: 1px solid rgba(226, 184, 76, .72);
		border-radius: 50%;
		background: linear-gradient(180deg, rgba(13, 33, 54, .98), rgba(5, 16, 28, .99));
		box-shadow: 0 6px 14px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255,255,255,.08);
		color: #f3d47b;
		font-family: Arial, sans-serif;
		font-size: 18px;
		font-weight: 700;
		line-height: 1;
		cursor: pointer;
		touch-action: manipulation;
	}

	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond.pst-sticky-comment-composer .pst-sticky-composer-close:active {
		color: #fff5cf;
		transform: scale(.92);
		box-shadow: 0 3px 8px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255,255,255,.05);
	}

	body.pst-app-route:is(.single-pst_question, .single-pst_report) #respond.pst-sticky-comment-composer.is-pst-composer-closed {
		display: none !important;
	}

	body.pst-app-route:is(.single-pst_question, .single-pst_report) .pst-sticky-composer-reopen {
		position: fixed;
		right: 10px;
		bottom: calc(73px + env(safe-area-inset-bottom));
		z-index: 9997;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 6px;
		min-height: 38px;
		margin: 0;
		padding: 0 14px;
		border: 1px solid rgba(226, 184, 76, .58);
		border-radius: 20px;
		background: linear-gradient(180deg, rgba(10, 28, 48, .98), rgba(3, 13, 24, .99));
		box-shadow: 0 8px 22px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255,255,255,.06);
		color: #f2d376;
		font-size: 12px;
		font-weight: 800;
		line-height: 1;
		white-space: nowrap;
		cursor: pointer;
		touch-action: manipulation;
	}

	body.pst-app-route:is(.single-pst_question, .single-pst_report) .pst-sticky-composer-reopen[hidden] {
		display: none !important;
	}

	body.pst-app-route:is(.single-pst_question, .single-pst_report) .pst-sticky-composer-reopen > span {
		font-size: 15px;
		line-height: 1;
	}

	body.pst-app-route:is(.single-pst_question, .single-pst_report).pst-comment-composer-closed.pst-has-sticky-comment-composer {
		padding-bottom: calc(92px + env(safe-area-inset-bottom)) !important;
	}
}

@media (max-width: 380px) {
	body.pst-app-route:is(.single-pst_question, .single-pst_report) .pst-sticky-composer-reopen {
		right: 8px;
		bottom: calc(70px + env(safe-area-inset-bottom));
		min-height: 36px;
		padding: 0 12px;
	}
}


/* v0.4.3.3.272: 運営からのお知らせ（ホーム最新3件＋専用履歴ページ） */
body.pst-app-route .pst-home-announcements {
	position: relative;
	width: min(1180px, calc(100% - 40px));
	margin: 22px auto 18px;
	padding: 0;
	border: 1px solid rgba(218, 177, 67, .34);
	border-radius: 16px;
	background: linear-gradient(145deg, rgba(9, 27, 47, .96), rgba(3, 14, 26, .98));
	box-shadow: 0 14px 36px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .04);
	overflow: hidden;
}
body.pst-app-route .pst-home-announcements::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 3px;
	background: linear-gradient(180deg, #fff0a2, #d8a52b 52%, #78520c);
}
body.pst-app-route .pst-home-announcements-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 54px;
	padding: 11px 18px 10px 21px;
	border-bottom: 1px solid rgba(218, 177, 67, .18);
	background: rgba(255, 255, 255, .018);
}
body.pst-app-route .pst-home-announcements-heading h2 {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0;
	color: #f2d67e;
	font-size: 16px;
	font-weight: 800;
	letter-spacing: .02em;
}
body.pst-app-route .pst-home-announcements-heading h2 > span {
	display: grid;
	place-items: center;
	width: 27px;
	height: 27px;
	border: 1px solid rgba(239, 205, 111, .42);
	border-radius: 50%;
	background: rgba(232, 188, 67, .08);
}
body.pst-app-route .pst-home-announcements-heading h2 .pst-icon {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
}
body.pst-app-route .pst-home-announcements-heading > a {
	color: #c9d5e2;
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}
body.pst-app-route .pst-home-announcements-heading > a span {
	color: #f0ca65;
	font-size: 18px;
	vertical-align: -1px;
}
body.pst-app-route .pst-home-announcement-list {
	display: grid;
}
body.pst-app-route .pst-home-announcement-row {
	display: grid;
	grid-template-columns: 78px auto minmax(0, 1fr) 16px;
	align-items: center;
	gap: 10px;
	min-height: 48px;
	padding: 9px 17px 9px 21px;
	border-bottom: 1px solid rgba(161, 184, 207, .11);
	color: #edf3f8;
	text-decoration: none;
	transition: background .18s ease, color .18s ease;
}
body.pst-app-route .pst-home-announcement-row:last-child {
	border-bottom: 0;
}
body.pst-app-route .pst-home-announcement-row:hover,
body.pst-app-route .pst-home-announcement-row:focus-visible {
	background: rgba(255, 255, 255, .035);
}
body.pst-app-route .pst-home-announcement-row time {
	color: #8fa3b7;
	font-size: 11px;
	font-variant-numeric: tabular-nums;
}
body.pst-app-route .pst-home-announcement-row strong {
	overflow: hidden;
	color: #f2f6fa;
	font-size: 13px;
	font-weight: 700;
	text-overflow: ellipsis;
	white-space: nowrap;
}
body.pst-app-route .pst-home-announcement-row.is-pinned strong {
	color: #fff5c7;
}
body.pst-app-route .pst-home-announcement-arrow {
	color: #ddb449;
	font-size: 19px;
	line-height: 1;
	text-align: right;
}
body.pst-app-route .pst-announcement-badges {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	white-space: nowrap;
}
body.pst-app-route .pst-announcement-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 21px;
	padding: 2px 7px;
	border: 1px solid rgba(137, 169, 198, .28);
	border-radius: 999px;
	background: rgba(93, 134, 170, .09);
	color: #bcd1e3;
	font-size: 10px;
	font-weight: 800;
	line-height: 1;
}
body.pst-app-route .pst-announcement-badge.is-important {
	border-color: rgba(245, 201, 81, .62);
	background: rgba(226, 172, 29, .15);
	color: #ffe69a;
}
body.pst-app-route .pst-announcement-badge.is-feature {
	border-color: rgba(70, 203, 185, .42);
	background: rgba(50, 181, 166, .10);
	color: #8be5d8;
}
body.pst-app-route .pst-announcement-badge.is-fix {
	border-color: rgba(113, 170, 242, .42);
	background: rgba(79, 136, 215, .10);
	color: #a9cdf8;
}
body.pst-app-route .pst-announcement-badge.is-maintenance {
	border-color: rgba(239, 151, 103, .42);
	background: rgba(218, 114, 61, .10);
	color: #ffc19e;
}
body.pst-app-route .pst-announcement-badge.is-history {
	border-color: rgba(187, 147, 230, .42);
	background: rgba(153, 104, 204, .10);
	color: #d7b6f4;
}
body.pst-app-route .pst-announcements-page {
	width: min(900px, calc(100% - 28px));
	margin: 28px auto 58px;
}
body.pst-app-route .pst-announcements-hero {
	display: flex;
	align-items: center;
	gap: 17px;
	margin-bottom: 18px;
	padding: 22px 24px;
	border: 1px solid rgba(218, 177, 67, .35);
	border-radius: 18px;
	background: linear-gradient(145deg, rgba(10, 30, 51, .98), rgba(3, 14, 26, .99));
	box-shadow: 0 18px 42px rgba(0, 0, 0, .26), inset 0 1px 0 rgba(255,255,255,.04);
}
body.pst-app-route .pst-announcements-hero-icon {
	display: grid;
	place-items: center;
	flex: 0 0 56px;
	width: 56px;
	height: 56px;
	border: 1px solid rgba(242, 204, 96, .48);
	border-radius: 16px;
	background: linear-gradient(145deg, rgba(230, 181, 43, .16), rgba(230, 181, 43, .04));
	color: #f0ce6a;
}
body.pst-app-route .pst-announcements-hero-icon .pst-icon {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: currentColor;
}
body.pst-app-route .pst-announcements-hero small {
	display: block;
	margin-bottom: 3px;
	color: #c4a04b;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .16em;
}
body.pst-app-route .pst-announcements-hero h1 {
	margin: 0;
	color: #f7e6ad;
	font-size: clamp(23px, 4vw, 32px);
	line-height: 1.25;
}
body.pst-app-route .pst-announcements-hero p {
	margin: 7px 0 0;
	color: #aebdcc;
	font-size: 13px;
	line-height: 1.65;
}
body.pst-app-route .pst-announcement-archive-list {
	display: grid;
	gap: 13px;
}
body.pst-app-route .pst-announcement-entry {
	scroll-margin-top: 96px;
	padding: 20px 22px;
	border: 1px solid rgba(141, 168, 194, .18);
	border-radius: 15px;
	background: linear-gradient(145deg, rgba(9, 25, 43, .97), rgba(4, 15, 27, .99));
	box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}
body.pst-app-route .pst-announcement-entry.is-pinned {
	border-color: rgba(229, 185, 67, .46);
	box-shadow: 0 14px 34px rgba(0, 0, 0, .22), inset 3px 0 0 rgba(229, 185, 67, .75);
}
body.pst-app-route .pst-announcement-entry-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 9px;
}
body.pst-app-route .pst-announcement-entry-meta time {
	color: #8fa4b8;
	font-size: 11px;
	font-variant-numeric: tabular-nums;
}
body.pst-app-route .pst-announcement-entry h2 {
	margin: 0;
	color: #f2e4b8;
	font-size: clamp(18px, 3vw, 23px);
	line-height: 1.45;
}
body.pst-app-route .pst-announcement-entry-body {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid rgba(163, 184, 204, .13);
	color: #d5dee7;
	font-size: 14px;
	line-height: 1.85;
}
body.pst-app-route .pst-announcement-entry-body > :first-child {
	margin-top: 0;
}
body.pst-app-route .pst-announcement-entry-body > :last-child {
	margin-bottom: 0;
}
body.pst-app-route .pst-announcement-entry-body a {
	color: #e7c45f;
	text-decoration: underline;
	text-underline-offset: 3px;
}
body.pst-app-route .pst-announcement-empty {
	padding: 34px 20px;
	border: 1px dashed rgba(150, 177, 202, .24);
	border-radius: 14px;
	background: rgba(5, 18, 31, .72);
	color: #a9b8c7;
	text-align: center;
}
body.pst-app-route .pst-announcement-pagination {
	margin-top: 22px;
}
@media (max-width: 767px) {
	body.pst-app-route .pst-home-announcements {
		width: calc(100% - 20px);
		margin: 14px auto 13px;
		border-radius: 13px;
	}
	body.pst-app-route .pst-home-announcements-heading {
		min-height: 49px;
		padding: 9px 12px 9px 15px;
	}
	body.pst-app-route .pst-home-announcements-heading h2 {
		gap: 7px;
		font-size: 14px;
	}
	body.pst-app-route .pst-home-announcements-heading h2 > span {
		width: 24px;
		height: 24px;
	}
	body.pst-app-route .pst-home-announcements-heading > a {
		font-size: 10px;
	}
	body.pst-app-route .pst-home-announcement-row {
		grid-template-columns: 66px minmax(0, 1fr) 13px;
		grid-template-areas:
			"date badges arrow"
			"title title arrow";
		gap: 4px 8px;
		min-height: 57px;
		padding: 8px 12px 8px 15px;
	}
	body.pst-app-route .pst-home-announcement-row time {
		grid-area: date;
		font-size: 10px;
	}
	body.pst-app-route .pst-home-announcement-row .pst-announcement-badges {
		grid-area: badges;
		justify-self: start;
	}
	body.pst-app-route .pst-home-announcement-row strong {
		grid-area: title;
		display: -webkit-box;
		overflow: hidden;
		font-size: 12px;
		line-height: 1.45;
		white-space: normal;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}
	body.pst-app-route .pst-home-announcement-arrow {
		grid-area: arrow;
		align-self: center;
	}
	body.pst-app-route .pst-announcements-page {
		width: calc(100% - 20px);
		margin-top: 15px;
		margin-bottom: 92px;
	}
	body.pst-app-route .pst-announcements-hero {
		align-items: flex-start;
		gap: 12px;
		padding: 17px 15px;
		border-radius: 14px;
	}
	body.pst-app-route .pst-announcements-hero-icon {
		flex-basis: 43px;
		width: 43px;
		height: 43px;
		border-radius: 12px;
	}
	body.pst-app-route .pst-announcements-hero-icon .pst-icon {
		width: 22px;
		height: 22px;
	}
	body.pst-app-route .pst-announcements-hero h1 {
		font-size: 21px;
	}
	body.pst-app-route .pst-announcements-hero p {
		font-size: 12px;
	}
	body.pst-app-route .pst-announcement-entry {
		padding: 16px 14px;
		border-radius: 13px;
	}
	body.pst-app-route .pst-announcement-entry-meta {
		align-items: flex-start;
		flex-direction: column;
		gap: 7px;
	}
	body.pst-app-route .pst-announcement-entry h2 {
		font-size: 18px;
	}
	body.pst-app-route .pst-announcement-entry-body {
		font-size: 13px;
		line-height: 1.8;
	}
}

/* v0.4.3.3.273: ホーム5枠のホール広告（最上部3連スライド＋単独2枠） */
body.pst-app-route .pst-ad-zone {
	position: relative;
	min-width: 0;
}
body.pst-app-route .pst-ad-zone-hero {
	width: min(100%, 720px);
	margin: 14px auto 16px;
}
body.pst-app-route .pst-ad-slider,
body.pst-app-route .pst-ad-link-single {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(226, 184, 76, .58);
	border-radius: 12px;
	background: #071525;
	box-shadow: 0 10px 26px rgba(0,0,0,.28), 0 0 0 1px rgba(255,255,255,.025) inset;
}
body.pst-app-route .pst-ad-slides {
	position: relative;
	aspect-ratio: 16 / 5;
	min-height: 112px;
}
body.pst-app-route .pst-ad-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateX(2%);
	transition: opacity .42s ease, transform .42s ease, visibility .42s;
}
body.pst-app-route .pst-ad-slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(0);
	z-index: 1;
}
body.pst-app-route .pst-ad-link {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	color: inherit;
	text-decoration: none !important;
}
body.pst-app-route .pst-ad-link picture,
body.pst-app-route .pst-ad-link img {
	display: block;
	width: 100%;
	height: 100%;
}
body.pst-app-route .pst-ad-link img {
	object-fit: cover;
	transition: transform .25s ease, filter .25s ease;
}
body.pst-app-route .pst-ad-link:hover img {
	transform: scale(1.012);
	filter: brightness(1.04);
}
body.pst-app-route .pst-ad-label {
	position: absolute;
	top: 7px;
	left: 7px;
	z-index: 4;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 18px;
	padding: 2px 7px;
	border: 1px solid rgba(255,255,255,.24);
	border-radius: 4px;
	background: rgba(1,8,15,.76);
	color: rgba(255,255,255,.9);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .08em;
	line-height: 1;
}
body.pst-app-route .pst-ad-arrow {
	position: absolute;
	top: 50%;
	z-index: 5;
	display: grid;
	place-items: center;
	width: 34px;
	height: 48px;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(255,255,255,.2);
	border-radius: 8px;
	background: rgba(2,10,19,.58);
	color: #fff3c7;
	font-size: 29px;
	line-height: 1;
	transform: translateY(-50%);
	cursor: pointer;
	backdrop-filter: blur(4px);
}
body.pst-app-route .pst-ad-arrow:hover,
body.pst-app-route .pst-ad-arrow:focus-visible {
	background: rgba(8,25,42,.9);
	border-color: rgba(226,184,76,.72);
}
body.pst-app-route .pst-ad-arrow-prev { left: 8px; }
body.pst-app-route .pst-ad-arrow-next { right: 8px; }
body.pst-app-route .pst-ad-dots {
	position: absolute;
	left: 50%;
	bottom: 7px;
	z-index: 5;
	display: flex;
	gap: 7px;
	padding: 5px 8px;
	border-radius: 999px;
	background: rgba(1,8,15,.54);
	transform: translateX(-50%);
}
body.pst-app-route .pst-ad-dots button {
	width: 7px;
	height: 7px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255,255,255,.48);
	cursor: pointer;
}
body.pst-app-route .pst-ad-dots button.is-active {
	width: 18px;
	border-radius: 999px;
	background: #f0c85b;
}
body.pst-app-route .pst-home-report-stack {
	display: grid;
	align-content: start;
	gap: 12px;
	min-width: 0;
}
body.pst-app-route .pst-ad-zone-single {
	margin: 0;
}
body.pst-app-route .pst-ad-link-single {
	aspect-ratio: 16 / 5;
	min-height: 92px;
}
body.pst-app-route .pst-ad-zone-feature_top {
	margin: 12px 0;
}
body.pst-app-route .pst-ad-zone-feature_top .pst-ad-link-single {
	aspect-ratio: 16 / 3.6;
	min-height: 104px;
}
@media (max-width: 767px) {
	body.pst-app-route .pst-ad-zone-hero {
		margin: 11px auto 14px;
	}
	body.pst-app-route .pst-ad-slides {
		aspect-ratio: 16 / 6;
		min-height: 104px;
	}
	body.pst-app-route .pst-ad-arrow {
		width: 30px;
		height: 42px;
		font-size: 25px;
	}
	body.pst-app-route .pst-ad-arrow-prev { left: 5px; }
	body.pst-app-route .pst-ad-arrow-next { right: 5px; }
	body.pst-app-route .pst-ad-link-single,
	body.pst-app-route .pst-ad-zone-feature_top .pst-ad-link-single {
		aspect-ratio: 16 / 5.5;
		min-height: 96px;
	}
}
@media (prefers-reduced-motion: reduce) {
	body.pst-app-route .pst-ad-slide,
	body.pst-app-route .pst-ad-link img {
		transition: none;
	}
}


/* v0.4.3.3.276: 上部メニューを5項目化（新着のQ&A／お知らせ） */
body.pst-app-route .pst-desktop-nav {
	gap: 12px;
}
body.pst-app-route .pst-desktop-nav a {
	min-width: 68px;
}
body.pst-app-route .pst-desktop-nav a span {
	white-space: nowrap;
}

@media (min-width: 901px) and (max-width: 1180px) {
	body.pst-app-route .pst-site-header-inner {
		grid-template-columns: minmax(230px, 1fr) auto minmax(260px, 1fr);
		gap: 12px;
	}
	body.pst-app-route .pst-header-actions {
		min-width: 260px;
		gap: 8px;
	}
	body.pst-app-route .pst-desktop-nav {
		gap: 5px;
	}
	body.pst-app-route .pst-desktop-nav a {
		min-width: 54px;
		padding-inline: 3px;
		font-size: 10px;
	}
	body.pst-app-route .pst-desktop-nav a svg {
		width: 19px;
		height: 19px;
	}
}

@media (max-width: 767px) {
	body.pst-app-route .pst-desktop-nav {
		width: 100%;
		justify-content: stretch;
		gap: 2px;
		overflow: visible;
	}
	body.pst-app-route .pst-desktop-nav a {
		flex: 1 1 0;
		min-width: 0;
		padding: 0 2px;
		font-size: 9px;
	}
	body.pst-app-route .pst-desktop-nav a svg {
		width: 19px;
		height: 19px;
	}
}

@media (max-width: 340px) {
	body.pst-app-route .pst-desktop-nav a {
		font-size: 8px;
	}
	body.pst-app-route .pst-desktop-nav a svg {
		width: 18px;
		height: 18px;
	}
}


/* v0.4.3.3.277: ホーム広告5枠を「新着の実戦報告」と同じレインボー枠へ統一 */
body.pst-app-route .pst-ad-slider,
body.pst-app-route .pst-ad-link-single {
	border: 1px solid transparent;
	background:
		linear-gradient(145deg, rgba(12, 29, 49, .94), rgba(6, 18, 32, .98)) padding-box,
		linear-gradient(110deg, #ff4d4d, #ff9f43, #ffd93d, #4cd964, #32d8ff, #5b7cff, #b36bff, #ff4d9d, #ff4d4d) border-box;
	background-size: 100% 100%, 320% 100%;
	box-shadow:
		0 7px 20px rgba(0, 0, 0, .18),
		0 0 14px rgba(92, 206, 255, .08);
	animation: pst-home-report-rainbow-border 8s linear infinite;
}
body.pst-app-route .pst-ad-slider:hover,
body.pst-app-route .pst-ad-link-single:hover {
	border-color: transparent;
	box-shadow:
		0 10px 27px rgba(0, 0, 0, .24),
		0 0 18px rgba(105, 214, 255, .13);
}
@media (prefers-reduced-motion: reduce) {
	body.pst-app-route .pst-ad-slider,
	body.pst-app-route .pst-ad-link-single {
		animation: none;
		background-position: 0 0, 50% 50%;
	}
}


/* v0.4.3.3.279: 最新ニュース・お知らせを統合し、3日NEW・ジャンル絞り込みを追加 */
body.pst-app-route .pst-announcement-badge.is-new {
	border-color: rgba(255, 83, 96, .78);
	background: linear-gradient(180deg, #ff4354, #d81025);
	box-shadow: 0 0 12px rgba(255, 42, 63, .28);
	color: #fff;
	letter-spacing: .04em;
}
body.pst-app-route .pst-announcement-badge.is-industry {
	border-color: rgba(76, 211, 255, .48);
	background: rgba(29, 167, 215, .11);
	color: #8de7ff;
}
body.pst-app-route .pst-announcement-badge.is-notice {
	border-color: rgba(242, 202, 92, .48);
	background: rgba(222, 170, 34, .11);
	color: #f5d678;
}
body.pst-app-route .pst-announcement-badge.is-update {
	border-color: rgba(89, 214, 181, .46);
	background: rgba(43, 178, 143, .11);
	color: #8be7cf;
}
body.pst-app-route .pst-announcement-badge.is-campaign {
	border-color: rgba(220, 122, 255, .46);
	background: rgba(176, 73, 214, .11);
	color: #e1a7f7;
}
body.pst-app-route .pst-announcement-filters {
	display: flex;
	align-items: stretch;
	gap: 7px;
	margin: 0 0 17px;
	padding: 8px;
	border: 1px solid rgba(142, 169, 195, .18);
	border-radius: 14px;
	background: linear-gradient(145deg, rgba(8, 24, 41, .97), rgba(4, 14, 25, .99));
	overflow-x: auto;
	scrollbar-width: thin;
}
body.pst-app-route .pst-announcement-filters a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	min-height: 38px;
	padding: 0 14px;
	border: 1px solid rgba(145, 171, 196, .18);
	border-radius: 9px;
	background: rgba(255, 255, 255, .018);
	color: #b8c7d5;
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
	white-space: nowrap;
	transition: border-color .18s ease, background .18s ease, color .18s ease;
}
body.pst-app-route .pst-announcement-filters a:hover,
body.pst-app-route .pst-announcement-filters a:focus-visible {
	border-color: rgba(232, 194, 83, .42);
	color: #f1d477;
}
body.pst-app-route .pst-announcement-filters a.is-active {
	border-color: rgba(255, 61, 75, .76);
	background: linear-gradient(180deg, rgba(255, 47, 62, .96), rgba(202, 12, 31, .98));
	box-shadow: 0 5px 15px rgba(211, 17, 34, .22), inset 0 1px 0 rgba(255,255,255,.18);
	color: #fff;
}
@media (max-width: 767px) {
	body.pst-app-route .pst-home-announcements {
		margin-top: 15px;
		margin-bottom: 15px;
	}
	body.pst-app-route .pst-home-announcements-heading h2 {
		font-size: 13px;
	}
	body.pst-app-route .pst-home-announcement-row .pst-announcement-badges {
		max-width: 100%;
		overflow: hidden;
	}
	body.pst-app-route .pst-announcement-badge {
		min-height: 19px;
		padding: 2px 6px;
		font-size: 9px;
	}
	body.pst-app-route .pst-announcement-filters {
		margin-bottom: 13px;
		padding: 6px;
		border-radius: 12px;
	}
	body.pst-app-route .pst-announcement-filters a {
		min-height: 35px;
		padding: 0 11px;
		font-size: 11px;
	}
}


/* v0.4.3.3.280: 固定ページでも下部固定ナビを通常画面と同じ配色・サイズに統一 */
@media (max-width: 900px) {
	body.pst-has-mobile-nav {
		padding-bottom: 76px;
	}

	body.pst-has-mobile-nav .pst-mobile-nav {
		min-height: 64px;
		padding-top: 4px;
		padding-bottom: calc(4px + env(safe-area-inset-bottom));
		align-items: end;
		overflow: visible;
		border-top-color: rgba(225, 183, 76, .32);
		background: linear-gradient(180deg, rgba(7, 18, 37, .985), rgba(3, 11, 23, .985));
		box-shadow:
			0 -10px 30px rgba(0, 0, 0, .42),
			0 -1px 0 rgba(255, 220, 128, .05) inset;
	}

	body.pst-has-mobile-nav .pst-mobile-nav > a {
		min-height: 50px;
		align-content: end;
		overflow: visible;
		color: #b6c2d1 !important;
		font-size: 9px;
		line-height: 1.1;
		text-decoration: none !important;
	}

	body.pst-has-mobile-nav .pst-mobile-nav > a:not(.pst-mobile-nav-main) {
		padding-bottom: 1px;
	}

	body.pst-has-mobile-nav .pst-mobile-nav .pst-mobile-nav-home-icon,
	body.pst-has-mobile-nav .pst-mobile-nav .pst-mobile-nav-search-icon,
	body.pst-has-mobile-nav .pst-mobile-nav .pst-mobile-nav-icon-report {
		display: grid;
		place-items: center;
		width: 31px;
		height: 31px;
		margin: 0;
		font-size: 0;
		line-height: 1;
	}

	body.pst-has-mobile-nav .pst-mobile-nav .pst-mobile-nav-home-icon .pst-icon-home-nav,
	body.pst-has-mobile-nav .pst-mobile-nav .pst-mobile-nav-search-icon .pst-icon-search-nav,
	body.pst-has-mobile-nav .pst-mobile-nav .pst-mobile-nav-icon-report .pst-icon-linechart {
		display: block;
		width: 31px;
		height: 31px;
		fill: none !important;
		stroke: currentColor !important;
		stroke-linecap: round;
		stroke-linejoin: round;
	}

	body.pst-has-mobile-nav .pst-mobile-nav .pst-mobile-nav-home-icon .pst-icon-home-nav {
		stroke-width: 2;
	}

	body.pst-has-mobile-nav .pst-mobile-nav .pst-mobile-nav-search-icon .pst-icon-search-nav {
		stroke-width: 2.35;
	}

	body.pst-has-mobile-nav .pst-mobile-nav .pst-mobile-nav-icon-report {
		color: #ff8a3d !important;
	}

	body.pst-has-mobile-nav .pst-mobile-nav .pst-mobile-nav-icon-report .pst-icon-linechart {
		color: #ff8a3d !important;
		stroke-width: 2.15;
		filter: drop-shadow(0 0 7px rgba(255, 138, 61, .20));
	}

	body.pst-has-mobile-nav .pst-mobile-nav .pst-mobile-nav-main {
		position: relative;
		z-index: 2;
		gap: 5px;
		padding-bottom: 0;
		color: #ffffff !important;
		font-size: 10px;
		font-weight: 900;
		letter-spacing: .02em;
		text-shadow:
			0 1px 0 rgba(10, 17, 29, .75),
			0 0 10px rgba(255, 255, 255, .10);
	}

	body.pst-has-mobile-nav .pst-mobile-nav .pst-mobile-nav-main .pst-mobile-nav-main-circle {
		position: relative;
		display: grid;
		place-items: center;
		isolation: isolate;
		overflow: hidden;
		width: 70px;
		height: 70px;
		margin-top: -36px;
		border: 2px solid #f1c75f;
		border-radius: 50%;
		background:
			radial-gradient(circle at 34% 26%, rgba(255, 250, 218, .78), transparent 21%),
			radial-gradient(circle at 70% 78%, rgba(115, 68, 7, .28), transparent 32%),
			linear-gradient(145deg, #f7d780 0%, #cf972f 46%, #8d5611 100%);
		color: #1d2430 !important;
		box-shadow:
			0 0 0 4px rgba(110, 70, 14, .68),
			0 0 0 6px rgba(247, 206, 103, .28),
			0 0 24px rgba(244, 189, 56, .40),
			0 11px 24px rgba(0, 0, 0, .54),
			inset 0 2px 0 rgba(255, 255, 255, .52),
			inset 0 -9px 14px rgba(93, 54, 8, .42),
			inset 0 0 18px rgba(73, 43, 8, .16);
		transition: transform .16s ease, filter .16s ease, box-shadow .16s ease;
	}

	body.pst-has-mobile-nav .pst-mobile-nav .pst-mobile-nav-main .pst-mobile-nav-main-circle::before {
		content: "";
		position: absolute;
		inset: 5px;
		border-radius: inherit;
		background:
			repeating-linear-gradient(136deg, rgba(255, 245, 205, .12) 0 2px, rgba(255, 245, 205, 0) 2px 8px, rgba(90, 58, 12, .08) 8px 10px, rgba(90, 58, 12, 0) 10px 16px),
			repeating-linear-gradient(42deg, rgba(84, 50, 8, .12) 0 1px, rgba(84, 50, 8, 0) 1px 7px),
			radial-gradient(circle at 24% 76%, rgba(94, 59, 10, .18), transparent 18%),
			radial-gradient(circle at 78% 34%, rgba(255, 242, 190, .10), transparent 16%);
		mix-blend-mode: multiply;
		opacity: .80;
		pointer-events: none;
	}

	body.pst-has-mobile-nav .pst-mobile-nav .pst-mobile-nav-main .pst-mobile-nav-main-circle::after {
		content: "";
		position: absolute;
		inset: 7px;
		border: 1px solid rgba(92, 56, 8, .58);
		border-radius: inherit;
		box-shadow:
			inset 0 0 0 1px rgba(255, 242, 182, .22),
			inset 0 10px 12px rgba(255, 255, 255, .08),
			inset 0 -10px 12px rgba(78, 45, 7, .16);
		pointer-events: none;
	}

	body.pst-has-mobile-nav .pst-mobile-nav .pst-mobile-nav-main .pst-icon-edit {
		position: relative;
		z-index: 1;
		display: block;
		width: 30px;
		height: 30px;
		fill: none !important;
		stroke: currentColor !important;
		stroke-width: 2.15;
		color: #172131 !important;
		filter:
			drop-shadow(0 1px 0 rgba(255, 248, 220, .48))
			drop-shadow(0 2px 4px rgba(110, 71, 13, .22));
	}

	body.pst-has-mobile-nav .pst-mobile-nav .pst-mobile-nav-avatar-wrap {
		display: grid !important;
		place-items: center;
		width: 31px;
		height: 31px;
		margin: 0;
		border-radius: 50%;
		overflow: hidden;
	}

	body.pst-has-mobile-nav .pst-mobile-nav .pst-mobile-nav-avatar {
		display: block;
		width: 31px !important;
		height: 31px !important;
		max-width: none;
		border-radius: 50%;
		object-fit: cover;
	}

	body.pst-has-mobile-nav .pst-mobile-nav .pst-mobile-nav-account-fallback {
		display: grid !important;
		place-items: center;
		width: 31px;
		height: 31px;
		font-size: 24px !important;
		line-height: 1;
	}
}

@media (max-width: 380px) {
	body.pst-has-mobile-nav .pst-mobile-nav .pst-mobile-nav-main .pst-mobile-nav-main-circle {
		width: 64px;
		height: 64px;
		margin-top: -31px;
	}

	body.pst-has-mobile-nav .pst-mobile-nav .pst-mobile-nav-main .pst-icon-edit {
		width: 27px;
		height: 27px;
	}
}


/* v0.4.3.3.282: 未ログイン時のコメント欄を会員登録・ログイン案内へ置換 */
body.pst-app-route .pst-comment-member-gate {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 12px 14px;
	align-items: center;
	margin: 0;
	padding: 18px;
	border: 1px solid rgba(226, 184, 76, .48);
	border-radius: 18px;
	background:
		radial-gradient(circle at 15% 0%, rgba(242, 193, 72, .12), transparent 34%),
		linear-gradient(145deg, rgba(10, 29, 49, .98), rgba(3, 14, 26, .99));
	box-shadow: 0 12px 30px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255,255,255,.055);
	color: #e8edf4;
}
body.pst-app-route .pst-comment-member-gate-icon {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(226, 184, 76, .46);
	border-radius: 15px;
	background: rgba(226, 184, 76, .08);
	color: #f0c85d;
}
body.pst-app-route .pst-comment-member-gate-icon svg {
	width: 25px;
	height: 25px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}
body.pst-app-route .pst-comment-member-gate-copy strong {
	display: block;
	margin: 0 0 5px;
	color: #fff;
	font-size: clamp(16px, 2.8vw, 19px);
	font-weight: 900;
	line-height: 1.4;
}
body.pst-app-route .pst-comment-member-gate-copy p {
	margin: 0;
	color: #aebdcd;
	font-size: 13px;
	line-height: 1.65;
}
body.pst-app-route .pst-comment-member-gate-actions {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
	gap: 10px;
	margin-top: 4px;
}
body.pst-app-route .pst-comment-member-gate-actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 10px 14px;
	border-radius: 13px;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.2;
	text-decoration: none;
	transition: transform .15s ease, filter .15s ease, border-color .15s ease;
}
body.pst-app-route .pst-comment-member-register {
	border: 1px solid #f1cf70;
	background: linear-gradient(135deg, #f6d66f, #c99122);
	box-shadow: 0 7px 18px rgba(201, 145, 34, .25), inset 0 1px 0 rgba(255,255,255,.48);
	color: #101827;
}
body.pst-app-route .pst-comment-member-login {
	border: 1px solid rgba(192, 208, 225, .42);
	background: rgba(255,255,255,.035);
	color: #edf3fa;
}
body.pst-app-route .pst-comment-member-gate-actions a:hover {
	filter: brightness(1.07);
}
body.pst-app-route .pst-comment-member-gate-actions a:active {
	transform: scale(.975);
}
@media (max-width: 480px) {
	body.pst-app-route .pst-comment-member-gate {
		padding: 15px;
		border-radius: 16px;
	}
	body.pst-app-route .pst-comment-member-gate-icon {
		width: 43px;
		height: 43px;
	}
	body.pst-app-route .pst-comment-member-gate-actions {
		grid-template-columns: 1fr;
	}
}


/* v0.4.3.3.284 private email badge */
.pst-profile-field-label {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	width: fit-content;
}
.pst-private-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 20px;
	padding: 2px 8px;
	border: 1px solid rgba(212, 175, 55, .48);
	border-radius: 999px;
	background: rgba(212, 175, 55, .10);
	color: #f5cf68;
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: .04em;
	white-space: nowrap;
}
@media (max-width: 700px) {
	.pst-profile-field-label { gap: 5px; }
	.pst-private-badge {
		min-height: 18px;
		padding: 2px 7px;
		font-size: 9px;
	}
}


/* v0.4.3.3.290: 保存済みラベルをMEMOへ短縮し、反応バー内に収める */
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-button .pst-memo-label {
	font-size: 11px;
	line-height: 1;
	white-space: nowrap;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-button .pst-memo-copy {
	min-width: 0;
	gap: 3px;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-button {
	min-width: 0;
	gap: 5px;
	padding-left: 6px;
	padding-right: 6px;
}
@media (max-width: 600px) {
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-button .pst-memo-label {
		font-size: 10px;
	}
}


/* v0.4.3.3.291: MEMOをブックマーク上、保存人数をブックマーク横へ配置 */
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-button[data-pst-memo-count-enabled="1"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 3px 6px;
	min-width: 46px;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-stack {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1px;
	min-width: 0;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-stack .pst-memo-label {
	display: block;
	font-size: 9px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: .02em;
	white-space: nowrap;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-bottom {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 3px;
	line-height: 1;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-bottom .pst-memo-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-bottom .pst-memo-save-count {
	display: inline-flex;
	align-items: baseline;
	gap: 1px;
	margin: 0;
	font-size: 10px;
	line-height: 1;
	white-space: nowrap;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-bottom .pst-memo-save-count-number,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-bottom .pst-memo-save-count-unit {
	font-size: inherit;
	line-height: inherit;
}
@media (max-width: 600px) {
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-button[data-pst-memo-count-enabled="1"] {
		min-width: 42px;
		padding-left: 4px;
		padding-right: 4px;
	}
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-stack .pst-memo-label {
		font-size: 8px;
	}
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-bottom .pst-memo-save-count {
		font-size: 9px;
	}
}


/* Home/new-arrival card: machine name badge beside play type */
.pst-machine-name-mini {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	max-width: 230px;
	margin-right: 4px;
	padding: 2px 8px;
	overflow: hidden;
	border: 1px solid rgba(240, 184, 62, .82);
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(16, 34, 63, .98), rgba(7, 20, 42, .98));
	box-shadow: 0 0 7px rgba(240, 184, 62, .16), inset 0 0 0 1px rgba(255, 226, 145, .04);
	color: #ffe49a !important;
	font-size: 10px;
	font-weight: 850;
	line-height: 1.25;
	text-decoration: none !important;
	text-overflow: ellipsis;
	white-space: nowrap;
	vertical-align: middle;
}
.pst-machine-name-mini:hover,
.pst-machine-name-mini:focus {
	border-color: rgba(255, 218, 111, .98);
	color: #fff0bd !important;
	box-shadow: 0 0 9px rgba(240, 184, 62, .28), inset 0 0 0 1px rgba(255, 226, 145, .08);
}
@media (max-width: 700px) {
	.pst-machine-name-mini {
		max-width: min(46vw, 150px);
		padding: 2px 7px;
		font-size: 9px;
	}
}


/* New-arrival cards: machine badges on top, author/date in the free space below */
.pst-card-meta-stack {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	min-width: 0;
	margin-top: 4px;
}
.pst-card-machine-row {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 4px;
	max-width: 100%;
	min-width: 0;
}
.pst-card-machine-row .pst-machine-kind-mini,
.pst-card-machine-row .pst-machine-name-mini {
	margin-right: 0;
}
.pst-card-author-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 2px;
	min-width: 0;
	color: rgba(235, 240, 249, .72);
	font-size: 10px;
	line-height: 1.35;
}
.pst-card-author-row .pst-card-author-name {
	color: rgba(248, 250, 255, .90);
	font-weight: 700;
}
.pst-card-author-row small {
	font-size: .92em;
	color: rgba(235, 240, 249, .62);
}
.pst-card-meta-separator {
	opacity: .62;
}
.pst-report-meta.pst-card-meta-stack {
	align-items: flex-start;
}
@media (max-width: 700px) {
	.pst-card-meta-stack {
		gap: 3px;
		margin-top: 3px;
	}
	.pst-card-author-row {
		font-size: 9px;
	}
}


/* v0.4.3.3.302: 実戦報告カードをホーム「新着の実戦報告」デザインへ全画面統一 */
body.pst-app-route .pst-report-row {
	grid-template-columns: 42px minmax(0, 1fr) auto;
	border: 1px solid transparent !important;
	background:
		linear-gradient(145deg, rgba(12, 29, 49, .94), rgba(6, 18, 32, .98)) padding-box,
		linear-gradient(110deg, #ff4d4d, #ff9f43, #ffd93d, #4cd964, #32d8ff, #5b7cff, #b36bff, #ff4d9d, #ff4d4d) border-box;
	background-size: 100% 100%, 320% 100% !important;
	box-shadow:
		0 7px 20px rgba(0, 0, 0, .18),
		0 0 14px rgba(92, 206, 255, .08) !important;
	animation: pst-home-report-rainbow-border 8s linear infinite;
}
body.pst-app-route .pst-report-row:hover,
body.pst-app-route .pst-report-row:focus-within {
	border-color: transparent !important;
	background:
		linear-gradient(145deg, rgba(16, 38, 63, .98), rgba(8, 24, 42, .99)) padding-box,
		linear-gradient(110deg, #ff4d4d, #ff9f43, #ffd93d, #4cd964, #32d8ff, #5b7cff, #b36bff, #ff4d9d, #ff4d4d) border-box;
	background-size: 100% 100%, 320% 100% !important;
	box-shadow:
		0 10px 27px rgba(0, 0, 0, .24),
		0 0 18px rgba(105, 214, 255, .13) !important;
}
body.pst-app-route .pst-report-row .pst-report-icon.pst-report-icon-home-vertical {
	position: relative;
	z-index: 3;
	display: grid;
	place-items: center;
	width: 36px;
	height: 64px;
	max-width: 100%;
	max-height: 100%;
	align-self: center;
	justify-self: center;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	overflow: visible;
	text-decoration: none;
}
body.pst-app-route .pst-report-row .pst-report-icon-home-vertical-text {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 80px;
	margin: -8px -3px;
	padding: 3px 0;
	box-sizing: border-box;
	font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "BIZ UDPMincho", "MS PMincho", "Noto Serif JP", serif;
	font-size: 22px;
	font-weight: 700;
	font-style: normal;
	line-height: .88;
	letter-spacing: -.04em;
	white-space: nowrap;
	transform: scaleX(1.04);
	transform-origin: center;
	filter: none;
	pointer-events: none;
}
body.pst-app-route .pst-report-row .pst-report-icon-home-vertical-text > span {
	display: block;
	background: linear-gradient(180deg, #fff4b7 0%, #f8d56a 28%, #e1a52a 62%, #ffdd70 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
	text-shadow: none;
}
@media (max-width: 767px) {
	body.pst-app-route .pst-report-row {
		grid-template-columns: 40px minmax(0, 1fr) auto;
	}
	body.pst-app-route .pst-report-row .pst-report-icon.pst-report-icon-home-vertical {
		width: 34px;
		height: 60px;
	}
	body.pst-app-route .pst-report-row .pst-report-icon-home-vertical-text {
		width: 42px;
		height: 78px;
		margin: -8px -4px;
		padding: 3px 0;
		font-size: 20px;
		line-height: .9;
		transform: scaleX(1.04);
	}
}
@media (prefers-reduced-motion: reduce) {
	body.pst-app-route .pst-report-row {
		animation: none;
		background-position: 0 0, 50% 50% !important;
	}
}


/* v0.4.3.3.303: Q&A・考察・その他/雑談もホーム新着カードと同じデザインへ全画面統一 */
body.pst-app-route .pst-question-row {
	position: relative;
	isolation: auto;
	border: 1px solid transparent !important;
	background:
		linear-gradient(145deg, rgba(12, 29, 49, .94), rgba(6, 18, 32, .98)) padding-box,
		linear-gradient(110deg, #ff4d4d, #ff9f43, #ffd93d, #4cd964, #32d8ff, #5b7cff, #b36bff, #ff4d9d, #ff4d4d) border-box;
	background-size: 100% 100%, 320% 100% !important;
	box-shadow:
		0 7px 20px rgba(0, 0, 0, .18),
		0 0 14px rgba(92, 206, 255, .08) !important;
	animation: pst-home-report-rainbow-border 8s linear infinite;
}
body.pst-app-route .pst-question-row:last-child {
	border-bottom-color: transparent !important;
}
body.pst-app-route .pst-question-row:hover,
body.pst-app-route .pst-question-row:focus-within {
	border-color: transparent !important;
	background:
		linear-gradient(145deg, rgba(16, 38, 63, .98), rgba(8, 24, 42, .99)) padding-box,
		linear-gradient(110deg, #ff4d4d, #ff9f43, #ffd93d, #4cd964, #32d8ff, #5b7cff, #b36bff, #ff4d9d, #ff4d4d) border-box;
	background-size: 100% 100%, 320% 100% !important;
	box-shadow:
		0 10px 27px rgba(0, 0, 0, .24),
		0 0 18px rgba(105, 214, 255, .13) !important;
}

/* 旧「考察」専用ネオン疑似要素を止め、ホーム新着と同じ枠表現へ揃える */
body.pst-app-route #pst-behavior-latest .pst-question-row::before,
body.pst-app-route #pst-behavior-latest .pst-question-row::after {
	content: none !important;
	display: none !important;
	animation: none !important;
}

@media (prefers-reduced-motion: reduce) {
	body.pst-app-route .pst-question-row {
		animation: none;
		background-position: 0 0, 50% 50% !important;
	}
}


/* v0.4.3.3.305: 必須項目エラーをブラウザ依存ではなく画面内に明示 */
.pst-form-required-error {
	margin: 10px 0 12px;
	padding: 10px 12px;
	border: 1px solid rgba(255, 103, 103, .72);
	border-radius: 8px;
	background: rgba(126, 22, 28, .22);
	color: #ffd2d2;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.6;
	box-shadow: 0 0 10px rgba(255, 75, 75, .08);
}
.pst-form-required-error[hidden] {
	display: none !important;
}
@media (max-width: 700px) {
	.pst-form-required-error {
		font-size: 11px;
		padding: 9px 10px;
	}
}


/* v0.4.3.3.308: 実戦報告の選択画像プレビュー */
.pst-image-preview-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	margin-top: 9px;
}
.pst-image-preview-item {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	border: 1px solid rgba(240,184,62,.46);
	border-radius: 9px;
	background: rgba(6,18,32,.82);
}
.pst-image-preview-item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.pst-image-preview-label {
	position: absolute;
	left: 5px;
	bottom: 5px;
	padding: 2px 6px;
	border-radius: 999px;
	background: rgba(4,12,24,.78);
	color: #ffe49a;
	font-size: 9px;
	font-weight: 800;
}
.pst-image-preview-remove {
	position: absolute;
	top: 5px;
	right: 5px;
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	padding: 0;
	border: 1px solid rgba(255,255,255,.55);
	border-radius: 50%;
	background: rgba(4,12,24,.82);
	color: #fff;
	font-size: 17px;
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
}
@media (max-width:700px) {
	.pst-image-preview-grid { gap: 6px; }
	.pst-image-preview-label { font-size: 8px; padding: 2px 5px; }
	.pst-image-preview-remove { width: 22px; height: 22px; font-size: 16px; }
}


/* v0.4.3.3.309: 質問・考察・雑談でも画像プレビューを共通表示 */
.pst-image-preview-grid:empty {
	display: none;
}
.pst-image-preview-grid:not(:empty) {
	margin-top: 10px;
}


/* v0.4.3.3.311: 新トップロゴ + サブタイトルHTML分離 */
body.pst-app-route .pst-brand-header-logo-only {
	display: flex !important;
	align-items: center !important;
	justify-content: flex-start !important;
	width: auto;
	min-width: 0;
	gap: 0 !important;
}
body.pst-app-route .pst-brand-header-logo-only .pst-brand-copy-header {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	text-align: center !important;
	gap: 2px !important;
	min-width: 0;
}
body.pst-app-route .pst-brand-header-logo-only .pst-brand-title-image-wrap {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	max-width: 330px !important;
	margin: 0 !important;
	overflow: visible !important;
}
body.pst-app-route .pst-brand-header-logo-only .pst-brand-title-image {
	display: block !important;
	width: 100% !important;
	height: auto !important;
	max-height: 86px !important;
	object-fit: contain !important;
	object-position: center center !important;
	margin: 0 auto !important;
	transform: none !important;
	filter: drop-shadow(0 4px 14px rgba(240,184,62,.16)) !important;
}
body.pst-app-route .pst-brand-header-logo-only small {
	display: block !important;
	margin: -2px 0 0 !important;
	color: #d8e0eb !important;
	font-size: 10px !important;
	font-weight: 700;
	line-height: 1.25 !important;
	letter-spacing: .03em !important;
	white-space: nowrap;
	text-align: center;
}

@media (max-width: 1180px) {
	body.pst-app-route .pst-brand-header-logo-only .pst-brand-title-image-wrap {
		max-width: 285px !important;
	}
	body.pst-app-route .pst-brand-header-logo-only .pst-brand-title-image {
		max-height: 78px !important;
	}
}

@media (max-width: 767px) {
	body.pst-app-route .pst-brand-header-logo-only {
		position: static !important;
		display: flex !important;
		width: 100% !important;
		height: auto !important;
		min-height: 0 !important;
		justify-content: center !important;
	}
	body.pst-app-route .pst-brand-header-logo-only .pst-brand-copy-header {
		position: static !important;
		width: min(100%, 330px) !important;
		max-width: 100% !important;
		transform: none !important;
	}
	body.pst-app-route .pst-brand-header-logo-only .pst-brand-title-image-wrap {
		width: 100% !important;
		max-width: 310px !important;
		margin: 0 auto !important;
	}
	body.pst-app-route .pst-brand-header-logo-only .pst-brand-title-image {
		max-height: 92px !important;
	}
	body.pst-app-route .pst-brand-header-logo-only small {
		margin-top: -3px !important;
		font-size: 9px !important;
		white-space: nowrap;
	}
}

@media (max-width: 420px) {
	body.pst-app-route .pst-brand-header-logo-only .pst-brand-copy-header {
		width: min(100%, 300px) !important;
	}
	body.pst-app-route .pst-brand-header-logo-only .pst-brand-title-image-wrap {
		max-width: 292px !important;
	}
	body.pst-app-route .pst-brand-header-logo-only .pst-brand-title-image {
		max-height: 88px !important;
	}
	body.pst-app-route .pst-brand-header-logo-only small {
		font-size: 8px !important;
		letter-spacing: .015em !important;
	}
}


/* v0.4.3.3.312: 横長ロゴへ差し替え、文字の視認性を優先 */
body.pst-app-route .pst-brand-header-logo-only .pst-brand-copy-header {
	width: min(100%, 520px) !important;
}
body.pst-app-route .pst-brand-header-logo-only .pst-brand-title-image-wrap {
	max-width: 500px !important;
}
body.pst-app-route .pst-brand-header-logo-only .pst-brand-title-image {
	max-height: 120px !important;
	filter: drop-shadow(0 2px 8px rgba(0,0,0,.28)) !important;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
}
body.pst-app-route .pst-brand-header-logo-only small {
	margin-top: 2px !important;
	font-size: 11px !important;
	text-shadow: 0 1px 2px rgba(0,0,0,.45);
}
@media (max-width: 1180px) {
	body.pst-app-route .pst-brand-header-logo-only .pst-brand-copy-header {
		width: min(100%, 430px) !important;
	}
	body.pst-app-route .pst-brand-header-logo-only .pst-brand-title-image-wrap {
		max-width: 420px !important;
	}
	body.pst-app-route .pst-brand-header-logo-only .pst-brand-title-image {
		max-height: 106px !important;
	}
}
@media (max-width: 767px) {
	body.pst-app-route .pst-brand-header-logo-only .pst-brand-copy-header {
		width: min(100%, 360px) !important;
	}
	body.pst-app-route .pst-brand-header-logo-only .pst-brand-title-image-wrap {
		max-width: 350px !important;
	}
	body.pst-app-route .pst-brand-header-logo-only .pst-brand-title-image {
		max-height: 98px !important;
	}
	body.pst-app-route .pst-brand-header-logo-only small {
		font-size: 9px !important;
	}
}
@media (max-width: 420px) {
	body.pst-app-route .pst-brand-header-logo-only .pst-brand-copy-header {
		width: min(100%, 330px) !important;
	}
	body.pst-app-route .pst-brand-header-logo-only .pst-brand-title-image-wrap {
		max-width: 320px !important;
	}
	body.pst-app-route .pst-brand-header-logo-only .pst-brand-title-image {
		max-height: 92px !important;
	}
	body.pst-app-route .pst-brand-header-logo-only small {
		font-size: 8px !important;
	}
}


/* v0.4.3.3.313: トップロゴを完全にHTML文字だけへ変更 */
body.pst-app-route .pst-brand-header-logo-only .pst-brand-copy-header {
	width: auto !important;
	max-width: 100% !important;
	gap: 4px !important;
	align-items: center !important;
	text-align: center !important;
}
body.pst-app-route .pst-brand-title-text {
	display: block !important;
	margin: 0 !important;
	padding: 0 !important;
	font-size: clamp(30px, 2.45vw, 46px) !important;
	font-weight: 900 !important;
	line-height: 1 !important;
	letter-spacing: .04em !important;
	white-space: nowrap !important;
	color: #f2c15b !important;
	background: linear-gradient(180deg, #fff4c4 0%, #f6cf68 38%, #d99a22 72%, #f3c457 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 0 2px 8px rgba(0,0,0,.28);
}
body.pst-app-route .pst-brand-header-logo-only small {
	margin: 2px 0 0 !important;
	font-size: 10px !important;
	font-weight: 700 !important;
	line-height: 1.25 !important;
	letter-spacing: .03em !important;
	color: #d8e0eb !important;
	white-space: nowrap !important;
	text-shadow: 0 1px 2px rgba(0,0,0,.45);
}
@media (max-width: 767px) {
	body.pst-app-route .pst-brand-title-text {
		font-size: clamp(28px, 9vw, 40px) !important;
		letter-spacing: .02em !important;
	}
	body.pst-app-route .pst-brand-header-logo-only small {
		font-size: 9px !important;
	}
}
@media (max-width: 420px) {
	body.pst-app-route .pst-brand-title-text {
		font-size: clamp(26px, 8.6vw, 36px) !important;
	}
	body.pst-app-route .pst-brand-header-logo-only small {
		font-size: 8px !important;
		letter-spacing: .015em !important;
	}
}


/* v0.4.3.3.314: 文字ロゴ画像をトップで目立たせる */
body.pst-app-route .pst-brand-header-logo-only {
	justify-content: center !important;
	width: 100% !important;
}
body.pst-app-route .pst-brand-header-logo-only .pst-brand-copy-header {
	width: min(100%, 620px) !important;
	gap: 6px !important;
}
body.pst-app-route .pst-brand-header-logo-only .pst-brand-title-image-wrap {
	max-width: 620px !important;
	padding: 0 !important;
}
body.pst-app-route .pst-brand-header-logo-only .pst-brand-title-image {
	max-height: 126px !important;
	width: auto !important;
	max-width: 100% !important;
	filter: drop-shadow(0 4px 10px rgba(0,0,0,.38)) drop-shadow(0 0 14px rgba(255,210,64,.18)) !important;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
}
body.pst-app-route .pst-brand-header-logo-only small {
	margin-top: -2px !important;
	font-size: 12px !important;
	font-weight: 800 !important;
	color: #f5f7fb !important;
	text-shadow: 0 1px 2px rgba(0,0,0,.55), 0 0 8px rgba(17,32,56,.25);
	letter-spacing: .045em !important;
}
@media (max-width: 1180px) {
	body.pst-app-route .pst-brand-header-logo-only .pst-brand-copy-header {
		width: min(100%, 540px) !important;
	}
	body.pst-app-route .pst-brand-header-logo-only .pst-brand-title-image-wrap {
		max-width: 540px !important;
	}
	body.pst-app-route .pst-brand-header-logo-only .pst-brand-title-image {
		max-height: 116px !important;
	}
}
@media (max-width: 767px) {
	body.pst-app-route .pst-brand-header-logo-only .pst-brand-copy-header {
		width: min(100%, 400px) !important;
		gap: 4px !important;
	}
	body.pst-app-route .pst-brand-header-logo-only .pst-brand-title-image-wrap {
		max-width: 400px !important;
	}
	body.pst-app-route .pst-brand-header-logo-only .pst-brand-title-image {
		max-height: 92px !important;
	}
	body.pst-app-route .pst-brand-header-logo-only small {
		font-size: 9px !important;
		letter-spacing: .03em !important;
	}
}
@media (max-width: 420px) {
	body.pst-app-route .pst-brand-header-logo-only .pst-brand-copy-header {
		width: min(100%, 350px) !important;
	}
	body.pst-app-route .pst-brand-header-logo-only .pst-brand-title-image-wrap {
		max-width: 350px !important;
	}
	body.pst-app-route .pst-brand-header-logo-only .pst-brand-title-image {
		max-height: 82px !important;
	}
	body.pst-app-route .pst-brand-header-logo-only small {
		font-size: 8px !important;
	}
}


/* v0.4.3.3.317: トップロゴに遊びのある余白を追加 */
body.pst-app-route .pst-brand-header-logo-only {
	padding: 8px 0 6px !important;
}
body.pst-app-route .pst-brand-header-logo-only .pst-brand-copy-header {
	width: min(100%, 600px) !important;
	padding: 0 14px !important;
	gap: 8px !important;
	box-sizing: border-box;
}
body.pst-app-route .pst-brand-header-logo-only .pst-brand-title-image-wrap {
	max-width: 560px !important;
	padding: 6px 14px 4px !important;
	box-sizing: border-box;
}
body.pst-app-route .pst-brand-header-logo-only .pst-brand-title-image {
	max-height: 116px !important;
}
body.pst-app-route .pst-brand-header-logo-only small {
	margin-top: 0 !important;
}
@media (max-width: 1180px) {
	body.pst-app-route .pst-brand-header-logo-only .pst-brand-copy-header {
		width: min(100%, 520px) !important;
		padding: 0 12px !important;
	}
	body.pst-app-route .pst-brand-header-logo-only .pst-brand-title-image-wrap {
		max-width: 490px !important;
		padding: 6px 12px 4px !important;
	}
	body.pst-app-route .pst-brand-header-logo-only .pst-brand-title-image {
		max-height: 108px !important;
	}
}
@media (max-width: 767px) {
	body.pst-app-route .pst-brand-header-logo-only {
		padding: 6px 0 4px !important;
	}
	body.pst-app-route .pst-brand-header-logo-only .pst-brand-copy-header {
		width: min(100%, 390px) !important;
		padding: 0 12px !important;
		gap: 6px !important;
	}
	body.pst-app-route .pst-brand-header-logo-only .pst-brand-title-image-wrap {
		max-width: 360px !important;
		padding: 5px 12px 3px !important;
	}
	body.pst-app-route .pst-brand-header-logo-only .pst-brand-title-image {
		max-height: 86px !important;
	}
}
@media (max-width: 420px) {
	body.pst-app-route .pst-brand-header-logo-only .pst-brand-copy-header {
		width: min(100%, 340px) !important;
		padding: 0 10px !important;
	}
	body.pst-app-route .pst-brand-header-logo-only .pst-brand-title-image-wrap {
		max-width: 320px !important;
		padding: 4px 10px 2px !important;
	}
	body.pst-app-route .pst-brand-header-logo-only .pst-brand-title-image {
		max-height: 78px !important;
	}
}


/* v0.4.3.3.319: 新着カードのレインボー枠アニメーション復旧
 * background shorthand の !important が background-position まで固定していたため解除。 */
body.pst-app-route .pst-question-row,
body.pst-app-route .pst-report-row {
	background-position: 0 0, 0% 50%;
	animation: pst-home-report-rainbow-border 8s linear infinite;
}


/* v0.4.3.3.320: 一覧カードの反応数は桁数に応じて左方向へ可変拡張
 * 右端は固定し、本文側の minmax(0,1fr) が必要な分だけ縮む。 */
body.pst-app-route .pst-question-row > .pst-question-row-stats,
body.pst-app-route .pst-report-row > .pst-question-row-stats,
body.pst-app-route .pst-home .pst-question-row-stats {
	width: max-content;
	min-width: 38px;
	max-width: min(160px, 42%);
	justify-self: end;
	align-items: stretch;
	box-sizing: border-box;
}
body.pst-app-route .pst-question-row > .pst-question-row-stats .pst-card-stat,
body.pst-app-route .pst-report-row > .pst-question-row-stats .pst-card-stat,
body.pst-app-route .pst-home .pst-question-row-stats .pst-card-stat {
	width: max-content;
	min-width: 31px;
	max-width: 100%;
	box-sizing: border-box;
	justify-content: center;
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
}
/* 一番長い数字に合わせて3項目とも同じ幅に揃える */
body.pst-app-route .pst-question-row > .pst-question-row-stats .pst-card-stat,
body.pst-app-route .pst-report-row > .pst-question-row-stats .pst-card-stat,
body.pst-app-route .pst-home .pst-question-row-stats .pst-card-stat {
	align-self: stretch;
}
/* タイトル・本文側はカウント欄が広がった分だけ安全に縮める */
body.pst-app-route .pst-question-row > .pst-question-row-main,
body.pst-app-route .pst-report-row > .pst-report-row-main {
	min-width: 0;
}
@media (max-width: 767px) {
	body.pst-app-route .pst-question-row > .pst-question-row-stats,
	body.pst-app-route .pst-report-row > .pst-question-row-stats,
	body.pst-app-route .pst-home .pst-question-row-stats {
		width: max-content;
		min-width: 35px;
		max-width: min(132px, 40%);
	}
	body.pst-app-route .pst-question-row > .pst-question-row-stats .pst-card-stat,
	body.pst-app-route .pst-report-row > .pst-question-row-stats .pst-card-stat,
	body.pst-app-route .pst-home .pst-question-row-stats .pst-card-stat {
		width: max-content;
		min-width: 29px;
		max-width: 100%;
		padding-left: 4px;
		padding-right: 4px;
	}
}


/* v0.4.3.3.322: 管理者専用カウント表示テストモード */
.pst-count-test-badge {
	position: fixed;
	right: 14px;
	bottom: 82px;
	z-index: 999999;
	display: flex;
	align-items: center;
	gap: 10px;
	max-width: calc(100vw - 28px);
	padding: 8px 12px;
	border: 1px solid rgba(236, 190, 77, .75);
	border-radius: 999px;
	background: rgba(7, 18, 34, .96);
	box-shadow: 0 6px 24px rgba(0, 0, 0, .34);
	color: #f7f9fc;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.25;
	white-space: nowrap;
}
.pst-count-test-badge a {
	color: #f4c85c !important;
	font-weight: 900;
	text-decoration: none !important;
}
@media (max-width: 767px) {
	.pst-count-test-badge {
		right: 8px;
		bottom: 76px;
		max-width: calc(100vw - 16px);
		padding: 7px 10px;
		font-size: 11px;
	}
}


/* v0.4.3.3.323: 短縮カウント時もコメント・閲覧アイコンを潰さない
 * 直接配置SVGがflex-shrinkで縮んでいたため、アイコン列を固定して数字だけ伸ばす。 */
body.pst-app-route .pst-question-row > .pst-question-row-stats,
body.pst-app-route .pst-report-row > .pst-question-row-stats,
body.pst-app-route .pst-home .pst-question-row-stats {
	display: inline-grid !important;
	grid-template-columns: max-content !important;
	grid-auto-flow: row !important;
	width: max-content !important;
	max-width: min(160px, 42%) !important;
}
body.pst-app-route .pst-question-row > .pst-question-row-stats .pst-card-stat,
body.pst-app-route .pst-report-row > .pst-question-row-stats .pst-card-stat,
body.pst-app-route .pst-home .pst-question-row-stats .pst-card-stat {
	display: grid !important;
	grid-template-columns: 12px max-content !important;
	align-items: center !important;
	column-gap: 3px !important;
	width: 100% !important;
	min-width: max-content !important;
	max-width: none !important;
	white-space: nowrap !important;
}
body.pst-app-route .pst-question-row > .pst-question-row-stats .pst-card-stat > svg,
body.pst-app-route .pst-report-row > .pst-question-row-stats .pst-card-stat > svg,
body.pst-app-route .pst-home .pst-question-row-stats .pst-card-stat > svg,
body.pst-app-route .pst-question-row > .pst-question-row-stats .pst-stat-like-icon,
body.pst-app-route .pst-report-row > .pst-question-row-stats .pst-stat-like-icon,
body.pst-app-route .pst-home .pst-question-row-stats .pst-stat-like-icon {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 12px !important;
	min-width: 12px !important;
	max-width: 12px !important;
	flex: 0 0 12px !important;
}
body.pst-app-route .pst-question-row > .pst-question-row-stats .pst-card-stat > svg,
body.pst-app-route .pst-report-row > .pst-question-row-stats .pst-card-stat > svg,
body.pst-app-route .pst-home .pst-question-row-stats .pst-card-stat > svg,
body.pst-app-route .pst-question-row > .pst-question-row-stats .pst-stat-like-icon .pst-icon,
body.pst-app-route .pst-report-row > .pst-question-row-stats .pst-stat-like-icon .pst-icon,
body.pst-app-route .pst-home .pst-question-row-stats .pst-stat-like-icon .pst-icon {
	width: 12px !important;
	height: 12px !important;
	min-width: 12px !important;
	flex-shrink: 0 !important;
}
@media (max-width: 767px) {
	body.pst-app-route .pst-question-row > .pst-question-row-stats,
	body.pst-app-route .pst-report-row > .pst-question-row-stats,
	body.pst-app-route .pst-home .pst-question-row-stats {
		max-width: min(132px, 40%) !important;
	}
	body.pst-app-route .pst-question-row > .pst-question-row-stats .pst-card-stat,
	body.pst-app-route .pst-report-row > .pst-question-row-stats .pst-card-stat,
	body.pst-app-route .pst-home .pst-question-row-stats .pst-card-stat {
		grid-template-columns: 11px max-content !important;
		column-gap: 3px !important;
	}
	body.pst-app-route .pst-question-row > .pst-question-row-stats .pst-card-stat > svg,
	body.pst-app-route .pst-report-row > .pst-question-row-stats .pst-card-stat > svg,
	body.pst-app-route .pst-home .pst-question-row-stats .pst-card-stat > svg,
	body.pst-app-route .pst-question-row > .pst-question-row-stats .pst-stat-like-icon,
	body.pst-app-route .pst-report-row > .pst-question-row-stats .pst-stat-like-icon,
	body.pst-app-route .pst-home .pst-question-row-stats .pst-stat-like-icon,
	body.pst-app-route .pst-question-row > .pst-question-row-stats .pst-stat-like-icon .pst-icon,
	body.pst-app-route .pst-report-row > .pst-question-row-stats .pst-stat-like-icon .pst-icon,
	body.pst-app-route .pst-home .pst-question-row-stats .pst-stat-like-icon .pst-icon {
		width: 11px !important;
		min-width: 11px !important;
		max-width: 11px !important;
		height: 11px !important;
		flex: 0 0 11px !important;
	}
}


/* v0.4.3.3.326: 広告スライダーのページドットを画像下に常時見える形で表示 */
body.pst-app-route .pst-ad-zone-hero {
	margin-bottom: 32px !important;
}
body.pst-app-route .pst-ad-slider.has-multiple-slides {
	overflow: visible !important;
}
body.pst-app-route .pst-ad-slider.has-multiple-slides .pst-ad-slides {
	overflow: hidden;
	border-radius: inherit;
}
body.pst-app-route .pst-ad-slider.has-multiple-slides .pst-ad-dots {
	position: absolute !important;
	left: 50% !important;
	bottom: -23px !important;
	z-index: 6 !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 10px !important;
	min-height: 16px;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	transform: translateX(-50%) !important;
}
body.pst-app-route .pst-ad-slider.has-multiple-slides .pst-ad-dots button {
	box-sizing: border-box;
	flex: 0 0 11px;
	width: 11px !important;
	height: 11px !important;
	min-width: 11px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 50% !important;
	background: #aeb6bc !important;
	box-shadow: 0 1px 3px rgba(0,0,0,.28) !important;
	opacity: .9;
	transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}
body.pst-app-route .pst-ad-slider.has-multiple-slides .pst-ad-dots button.is-active {
	width: 12px !important;
	height: 12px !important;
	min-width: 12px !important;
	flex-basis: 12px;
	background: #e1b84d !important;
	box-shadow: 0 0 0 2px rgba(225,184,77,.16), 0 1px 4px rgba(0,0,0,.32) !important;
	opacity: 1;
	transform: scale(1.08);
}
body.pst-app-route .pst-ad-slider.has-multiple-slides .pst-ad-dots button:focus-visible {
	outline: 2px solid #f4d77d !important;
	outline-offset: 3px;
}
@media (max-width: 767px) {
	body.pst-app-route .pst-ad-zone-hero {
		margin-bottom: 31px !important;
	}
	body.pst-app-route .pst-ad-slider.has-multiple-slides .pst-ad-dots {
		bottom: -22px !important;
		gap: 10px !important;
	}
	body.pst-app-route .pst-ad-slider.has-multiple-slides .pst-ad-dots button {
		width: 10px !important;
		height: 10px !important;
		min-width: 10px !important;
		flex-basis: 10px;
	}
	body.pst-app-route .pst-ad-slider.has-multiple-slides .pst-ad-dots button.is-active {
		width: 12px !important;
		height: 12px !important;
		min-width: 12px !important;
		flex-basis: 12px;
	}
}

/* v0.4.3.3.332 category icon for 演出・法則 */
.pst-icon-slot { color: #ff8a4a; filter: drop-shadow(0 0 7px rgba(255,138,74,.18)); }


/* v0.4.3.3.333 icon color/style adjustments */
.pst-icon-slot { color: #ff4b57 !important; filter: drop-shadow(0 0 7px rgba(255,75,87,.20)); }
body.pst-app-route .pst-icon-hotfire,
body.pst-app-route .pst-category-icon .pst-icon-hotfire,
body.pst-app-route #pst-behavior-latest .pst-home-panel-heading h2 .pst-icon-hotfire {
	color: #b067ff !important;
	filter: drop-shadow(0 0 8px rgba(176,103,255,.20));
	stroke: currentColor !important;
	fill: none !important;
}
body.pst-app-route .pst-icon-hotfire *,
body.pst-app-route .pst-category-icon .pst-icon-hotfire *,
body.pst-app-route #pst-behavior-latest .pst-home-panel-heading h2 .pst-icon-hotfire * {
	stroke: currentColor !important;
	fill: none !important;
}


/* v0.4.3.3.336 category icon refresh */
body.pst-app-route .pst-icon-hotfire,
body.pst-app-route .pst-category-icon .pst-icon-hotfire,
body.pst-app-route #pst-behavior-latest .pst-home-panel-heading h2 .pst-icon-hotfire {
	color: #9a63ff !important;
	filter: drop-shadow(0 0 8px rgba(154,99,255,.20));
}
body.pst-app-route .pst-icon-hotfire *,
body.pst-app-route .pst-category-icon .pst-icon-hotfire *,
body.pst-app-route #pst-behavior-latest .pst-home-panel-heading h2 .pst-icon-hotfire * {
	stroke: currentColor !important;
	fill: none !important;
}
body.pst-app-route .pst-icon-chat,
body.pst-app-route .pst-category-icon .pst-icon-chat,
body.pst-app-route #pst-social-latest .pst-home-panel-heading h2 .pst-icon-chat,
body.pst-app-route .pst-answer-guide-icon.is-social-icon .pst-icon-chat {
	color: #38b86e !important;
	filter: drop-shadow(0 0 8px rgba(56,184,110,.18));
}
body.pst-app-route .pst-icon-chat *,
body.pst-app-route .pst-category-icon .pst-icon-chat *,
body.pst-app-route #pst-social-latest .pst-home-panel-heading h2 .pst-icon-chat *,
body.pst-app-route .pst-answer-guide-icon.is-social-icon .pst-icon-chat * {
	stroke: currentColor !important;
	fill: none !important;
}


/* v0.4.3.3.340: 上部メニューのQ&A / 雑談アイコン補正 */
body.pst-app-route .pst-desktop-nav a.pst-nav-qa svg,
body.pst-app-route .pst-desktop-nav a.pst-nav-social svg {
	display: block;
	margin-inline: auto;
}
body.pst-app-route .pst-desktop-nav a.pst-nav-qa svg {
	width: 22px;
	height: 22px;
}
body.pst-app-route .pst-desktop-nav a.pst-nav-social svg {
	width: 24px;
	height: 24px;
	transform: translateY(1px);
}
@media (max-width: 767px) {
	body.pst-app-route .pst-desktop-nav a.pst-nav-qa svg {
		width: 20px;
		height: 20px;
	}
	body.pst-app-route .pst-desktop-nav a.pst-nav-social svg {
		width: 22px;
		height: 22px;
		transform: translateY(1px);
	}
}


/* v0.4.3.3.344: 投稿詳細アクションバーに共有を追加（6分割） */
body.pst-app-route .pst-thread-engagement.pst-engagement-bar > .pst-engagement-item,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar > .pst-memo-button,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar > .pst-engagement-report,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar > .pst-engagement-report-link {
	flex: 1 1 0;
	min-width: 0;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-share-button {
	appearance: none;
	-webkit-appearance: none;
	justify-content: center;
	gap: 6px;
	min-width: 0;
	min-height: 68px;
	padding: 10px 7px;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: #f7f2e3;
	cursor: pointer;
	font: inherit;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-share-button .pst-engagement-label {
	font-size: 11px;
	color: #efc25d;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-share-button:hover,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-share-button:focus-visible {
	background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(233,191,86,.07));
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-share-button:focus-visible {
	outline: 2px solid rgba(239, 194, 93, .8);
	outline-offset: -3px;
}
body.pst-app-route .pst-share-toast {
	position: fixed;
	left: 50%;
	bottom: calc(92px + env(safe-area-inset-bottom));
	z-index: 10050;
	max-width: calc(100vw - 36px);
	padding: 10px 16px;
	border: 1px solid rgba(239, 194, 93, .58);
	border-radius: 999px;
	background: rgba(4, 15, 29, .96);
	box-shadow: 0 10px 30px rgba(0,0,0,.38), 0 0 16px rgba(239,194,93,.10);
	color: #fff4cf;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 10px);
	transition: opacity .18s ease, transform .18s ease;
	white-space: nowrap;
}
body.pst-app-route .pst-share-toast.is-visible {
	opacity: 1;
	transform: translate(-50%, 0);
}
@media (max-width: 767px) {
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-item,
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-button,
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-report-login-link,
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-report > summary,
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-share-button {
		min-height: 58px;
		padding-left: 4px;
		padding-right: 4px;
		gap: 4px;
	}
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-share-button .pst-engagement-label,
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-report .pst-engagement-label {
		font-size: 9px;
	}
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-share-button .pst-engagement-icon {
		width: 16px;
		height: 16px;
		flex-basis: 16px;
	}
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-share-button .pst-engagement-icon svg {
		width: 15px;
		height: 15px;
	}
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-button[data-pst-memo-count-enabled="1"] {
		min-width: 0;
	}
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-report,
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-report-link {
		flex-basis: 0;
		min-width: 0;
	}
}
@media (max-width: 380px) {
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-item.is-like,
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-item.is-comment,
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-item.is-view,
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-thread-like-button.is-like {
		gap: 4px;
	}
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-item.is-like .pst-engagement-value,
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-item.is-comment .pst-engagement-value,
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-item.is-view .pst-engagement-value,
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-thread-like-button.is-like .pst-like-count {
		font-size: 12px;
	}
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-stack .pst-memo-label {
		font-size: 7.5px;
	}
	body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-memo-bottom .pst-memo-save-count {
		font-size: 8px;
	}
}


/* v0.4.3.3.346: 投稿詳細の「通報」を中央寄せ・赤色に */
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-report > summary.pst-engagement-report-trigger,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-report-link {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #ff4b57 !important;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-report .pst-engagement-copy,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-report-link .pst-engagement-copy {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	text-align: center;
}
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-report .pst-engagement-label,
body.pst-app-route .pst-thread-engagement.pst-engagement-bar .pst-engagement-report-link .pst-engagement-label {
	color: #ff4b57 !important;
	font-weight: 800;
	text-align: center;
}


/* v0.4.3.3.358: ホーム新着見出しアイコンを空状態でも固定 */
body.pst-app-route #pst-latest .pst-home-panel-heading h2 .pst-icon-latest {
	color: #ff9d31 !important;
	stroke: currentColor !important;
	fill: none !important;
	filter: drop-shadow(0 0 8px rgba(255,157,49,.20));
}
body.pst-app-route #pst-latest .pst-home-panel-heading h2 .pst-icon-latest * {
	stroke: currentColor !important;
	fill: none !important;
}
body.pst-app-route #pst-reports .pst-home-panel-heading h2 .pst-icon-linechart {
	color: #ff8a3d !important;
	stroke: currentColor !important;
	fill: none !important;
	filter: drop-shadow(0 0 7px rgba(255,138,61,.20));
}
body.pst-app-route #pst-reports .pst-home-panel-heading h2 .pst-icon-linechart * {
	stroke: currentColor !important;
	fill: none !important;
}

/* v0.4.3.3.361: 公式運営バッジ - リアルゴールド王冠 + 公式 */
body.pst-app-route .pst-author-name-with-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-width: 0;
}
body.pst-app-route .pst-official-badge {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 31px;
	height: 27px;
	vertical-align: middle;
	cursor: help;
	filter: drop-shadow(0 2px 2px rgba(0,0,0,.45)) drop-shadow(0 0 5px rgba(246,190,47,.30));
}
body.pst-app-route .pst-official-crown-svg {
	display: block;
	width: 31px;
	height: 27px;
	overflow: visible;
}
body.pst-app-route .pst-official-crown-main,
body.pst-app-route .pst-official-crown-rim {
	stroke: #6f4007;
	stroke-width: 1.25;
	stroke-linejoin: round;
}
body.pst-app-route .pst-official-crown-highlight {
	fill: none;
	stroke: rgba(255,247,190,.82);
	stroke-width: 1.05;
	stroke-linecap: round;
	stroke-linejoin: round;
}
body.pst-app-route .pst-official-crown-gem {
	fill: #8e0f1c;
	stroke: #ffd86d;
	stroke-width: .9;
	filter: drop-shadow(0 0 1.5px rgba(255,70,70,.45));
}
body.pst-app-route .pst-official-crown-text {
	fill: #fff5c9;
	stroke: #5b3305;
	stroke-width: .55px;
	paint-order: stroke fill;
	font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
	font-size: 8px;
	font-weight: 1000;
	letter-spacing: .2px;
}
body.pst-app-route .pst-official-badge::after {
	content: attr(data-pst-official-label);
	position: absolute;
	z-index: 20;
	left: 50%;
	bottom: calc(100% + 8px);
	transform: translate(-50%, 3px);
	width: max-content;
	max-width: 200px;
	padding: 5px 8px;
	border: 1px solid rgba(227,189,82,.5);
	border-radius: 7px;
	background: rgba(4,14,25,.97);
	box-shadow: 0 6px 18px rgba(0,0,0,.34);
	color: #f4d875;
	font-size: 10px;
	font-weight: 900;
	line-height: 1.3;
	letter-spacing: .03em;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .14s ease, transform .14s ease, visibility .14s ease;
}
body.pst-app-route .pst-official-badge:hover::after,
body.pst-app-route .pst-official-badge:focus-visible::after {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}
body.pst-app-route .pst-official-badge:focus-visible {
	outline: 2px solid rgba(255,220,126,.7);
	outline-offset: 2px;
	border-radius: 5px;
}
body.pst-app-route .pst-profile-display-name .pst-official-badge {
	width: 38px;
	height: 33px;
}
body.pst-app-route .pst-profile-display-name .pst-official-crown-svg {
	width: 38px;
	height: 33px;
}
@media (max-width: 767px) {
	body.pst-app-route .pst-official-badge {
		width: 29px;
		height: 25px;
	}
	body.pst-app-route .pst-official-crown-svg {
		width: 29px;
		height: 25px;
	}
	body.pst-app-route .pst-profile-display-name .pst-official-badge {
		width: 36px;
		height: 31px;
	}
	body.pst-app-route .pst-profile-display-name .pst-official-crown-svg {
		width: 36px;
		height: 31px;
	}
}


/* v0.4.3.3.363: ブロンズQ&Aメダルを透明背景のクリーン素材へ差し替え */
body.pst-app-route #pst-features .pst-feature-icon-qa-medal {
	width: 54px;
	height: 54px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0,0,0,.4), 0 0 10px rgba(198,112,48,.18);
}
body.pst-app-route #pst-features .pst-feature-qa-bronze-medal {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-image: url('pst-feature-qa-bronze.png');
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: center;
	filter: saturate(.98) contrast(1.03) brightness(1.01);
	transform: none;
}
@media (max-width: 767px) {
	body.pst-app-route #pst-features .pst-feature-icon-qa-medal {
		width: 48px;
		height: 48px;
	}
}
