:root {
	--paper: #f7f4ee;
	--paper-strong: #fffdf8;
	--ink: #1f2328;
	--muted: #67717a;
	--line: #d8d1c6;
	--navy: #1e3a5f;
	--navy-soft: #294a73;
	--copper: #a87438;
	--green: #697a70;
	--red: #9a4d43;
	--shadow: 0 22px 60px rgba(31, 35, 40, 0.12);
	--radius: 8px;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	line-height: 1.7;
	letter-spacing: 0;
}

a {
	color: inherit;
	text-decoration: none;
}

.site-shell {
	min-height: 100vh;
	background:
		linear-gradient(90deg, rgba(30, 58, 95, 0.045) 1px, transparent 1px),
		linear-gradient(rgba(30, 58, 95, 0.035) 1px, transparent 1px);
	background-size: 48px 48px;
}

.topbar {
	border-bottom: 1px solid rgba(31, 35, 40, 0.1);
	background: rgba(247, 244, 238, 0.92);
	backdrop-filter: blur(14px);
	position: sticky;
	top: 0;
	z-index: 20;
}

.topbar-inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 18px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.brand {
	display: flex;
	align-items: baseline;
	gap: 12px;
	min-width: 160px;
}

.brand-mark {
	color: var(--navy);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 28px;
	font-weight: 700;
	line-height: 1;
}

.brand-sub {
	color: var(--copper);
	font-size: 12px;
	font-weight: 700;
}

.nav {
	display: flex;
	align-items: center;
	gap: 6px;
	overflow-x: auto;
	white-space: nowrap;
	scrollbar-color: rgba(30, 58, 95, 0.42) rgba(216, 209, 198, 0.65);
	scrollbar-width: thin;
	-webkit-overflow-scrolling: touch;
}

.nav a {
	color: #39424c;
	font-size: 14px;
	padding: 8px 11px;
	border-radius: 6px;
}

.nav a:hover {
	background: rgba(30, 58, 95, 0.08);
}

.nav::-webkit-scrollbar {
	height: 7px;
}

.nav::-webkit-scrollbar-track {
	border-radius: 999px;
	background: rgba(216, 209, 198, 0.65);
}

.nav::-webkit-scrollbar-thumb {
	border-radius: 999px;
	background: rgba(30, 58, 95, 0.42);
}

.container {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
}

.hero {
	padding: 72px 0 42px;
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
	gap: 42px;
	align-items: stretch;
}

.eyebrow {
	color: var(--copper);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0;
	margin-bottom: 14px;
}

.hero h1 {
	margin: 0;
	color: var(--navy);
	font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
	font-size: 54px;
	font-weight: 700;
	line-height: 1.18;
}

.hero-copy {
	margin: 22px 0 0;
	color: #38424c;
	max-width: 660px;
	font-size: 17px;
}

.search-panel {
	margin-top: 34px;
	padding: 18px;
	background: var(--paper-strong);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.search-label {
	display: block;
	color: var(--muted);
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 8px;
}

.search-box {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 10px;
}

.search-box input {
	width: 100%;
	min-height: 52px;
	padding: 0 16px;
	border: 1px solid #c8c0b4;
	border-radius: 6px;
	background: #fff;
	color: var(--ink);
	font-size: 15px;
	outline: none;
}

.search-box input:focus {
	border-color: var(--navy);
	box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.13);
}

.search-page-form {
	display: grid;
	gap: 10px;
	margin-bottom: 18px;
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 253, 248, 0.9);
}

.search-box-light input {
	border-color: #d8d1c6;
	background: #fff;
	color: var(--ink);
}

.search-result-stack {
	display: grid;
	gap: 26px;
}

.search-result-group {
	display: grid;
	gap: 12px;
}

.search-result-group h2 {
	margin: 0;
	color: var(--navy);
	font-size: 20px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 18px;
	border: 0;
	border-radius: 6px;
	background: var(--navy);
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
	text-decoration: none;
}

.button:hover {
	background: var(--navy-soft);
}

.quick-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 14px;
}

.quick-tags a {
	border: 1px solid #d5cec3;
	background: #fbfaf6;
	color: #44505a;
	border-radius: 999px;
	padding: 5px 11px;
	font-size: 12px;
	font-weight: 700;
}

.hero-card {
	background: #14243a;
	color: #fff;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.hero-card-head {
	padding: 22px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	background: linear-gradient(135deg, #1e3a5f, #14243a);
}

.hero-card-label {
	color: #d0ae7b;
	font-size: 12px;
	font-weight: 800;
}

.hero-card-title {
	margin: 8px 0 0;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.45;
}

.record-list {
	display: grid;
	gap: 0;
}

.record-item {
	display: block;
	padding: 18px 22px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	color: inherit;
	text-decoration: none;
	transition: background 0.18s ease;
}

.record-item:hover {
	background: rgba(255, 255, 255, 0.04);
}

.record-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 12px;
	margin-bottom: 8px;
}

.status {
	border-radius: 999px;
	padding: 3px 9px;
	font-weight: 800;
	font-size: 11px;
}

.status.checking {
	background: rgba(208, 174, 123, 0.18);
	color: #f0d2a4;
}

.status.progress {
	background: rgba(105, 122, 112, 0.25);
	color: #c7d8ce;
}

.record-title {
	margin: 0;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.55;
}

.record-source {
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.64);
	font-size: 12px;
}

.section {
	padding: 34px 0;
}

.page-hero {
	padding: 54px 0 24px;
}

.page-hero h1 {
	margin: 0;
	color: var(--navy);
	font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
	font-size: 44px;
	line-height: 1.22;
}

.page-hero p {
	margin: 18px 0 0;
	max-width: 760px;
	color: #39434d;
	font-size: 16px;
}

.breadcrumb {
	display: block;
	margin-bottom: 18px;
	color: var(--muted);
	font-size: 13px;
	font-weight: 700;
}

.breadcrumb a {
	color: var(--navy);
}

.breadcrumb-inner {
	display: block;
}

.breadcrumb-inner ul,
.breadcrumb-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.breadcrumb-inner li,
.breadcrumb-item {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
}

.breadcrumb-inner li + li::before,
.breadcrumb-item + .breadcrumb-item::before {
	content: "/";
	color: var(--muted);
}

.section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 18px;
}

.section-title {
	margin: 0;
	color: var(--navy);
	font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
	font-size: 28px;
	line-height: 1.35;
}

.section-desc {
	margin: 6px 0 0;
	color: var(--muted);
	font-size: 14px;
}

.text-link {
	color: var(--navy);
	font-size: 14px;
	font-weight: 800;
}

.route-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.route-card {
	min-height: 188px;
	padding: 22px;
	background: rgba(255, 253, 248, 0.9);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.route-no {
	color: var(--copper);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 26px;
	font-weight: 700;
	line-height: 1;
}

.route-card h3 {
	margin: 18px 0 8px;
	color: var(--navy);
	font-size: 19px;
	line-height: 1.35;
}

.route-card p {
	margin: 0;
	color: #4c5660;
	font-size: 14px;
}

.content-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 18px;
	align-items: start;
}

.panel {
	background: var(--paper-strong);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
}

.table-list {
	display: grid;
}

.table-row {
	display: grid;
	grid-template-columns: 128px 1fr 112px;
	gap: 16px;
	align-items: center;
	padding: 16px 18px;
	border-bottom: 1px solid #e3ddd3;
}

.table-row-link {
	color: inherit;
	text-decoration: none;
	transition: background 0.18s ease;
}

.table-row-link:hover {
	background: #fbfaf6;
}

.table-row:last-child {
	border-bottom: 0;
}

.person {
	color: var(--navy);
	font-weight: 800;
	font-size: 14px;
}

.summary {
	color: #3f4851;
	font-size: 14px;
}

.summary a,
.summary strong {
	display: block;
	color: var(--navy);
	font-weight: 800;
	text-decoration: none;
	margin-bottom: 4px;
}

.summary a:hover {
	text-decoration: underline;
}

.summary span {
	display: block;
}

.date {
	color: var(--muted);
	font-size: 12px;
	text-align: right;
}

.admin-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
}

.admin-card,
.admin-panel {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: 0 10px 24px rgba(20, 30, 43, 0.06);
}

.admin-card {
	padding: 18px;
}

.admin-panel {
	padding: 20px;
}

.admin-card-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}

.admin-card-head h2 {
	margin: 0;
	color: var(--navy);
	font-size: 17px;
}

.admin-card-head span {
	color: var(--accent);
	font-weight: 800;
}

.admin-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin-bottom: 14px;
}

.admin-stats div {
	padding: 10px;
	border: 1px solid #e5ded4;
	border-radius: 6px;
	background: #fbfaf7;
}

.admin-stats strong,
.admin-stats span {
	display: block;
}

.admin-stats strong {
	color: var(--navy);
	font-size: 22px;
	line-height: 1.1;
}

.admin-stats span {
	color: var(--muted);
	font-size: 12px;
}

.admin-actions,
.admin-row-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.admin-actions a,
.admin-row-actions button,
.admin-tabs a,
.admin-row-link {
	border: 1px solid #d9dee3;
	border-radius: 6px;
	background: #f8fafb;
	color: var(--navy);
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.admin-actions a,
.admin-tabs a,
.admin-row-link {
	display: inline-flex;
	align-items: center;
	padding: 7px 10px;
}

.admin-row-actions button {
	padding: 7px 10px;
	cursor: pointer;
}

.admin-actions a:hover,
.admin-row-actions button:hover,
.admin-tabs a:hover,
.admin-row-link:hover,
.admin-tabs a[aria-current="page"] {
	border-color: var(--accent);
	background: #fff7e8;
}

.admin-muted {
	color: var(--muted);
	font-size: 14px;
}

.admin-table-wrap {
	width: 100%;
	overflow-x: auto;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
}

.admin-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 760px;
}

.admin-table th,
.admin-table td {
	padding: 10px 12px;
	border-bottom: 1px solid #e5ded4;
	color: #303b45;
	font-size: 13px;
	text-align: left;
	vertical-align: top;
}

.admin-table th {
	background: #f4f7f9;
	color: var(--navy);
	font-weight: 800;
}

.admin-table tr:last-child td {
	border-bottom: 0;
}

.admin-table strong {
	display: block;
	color: var(--navy);
	font-size: 14px;
}

.admin-badge {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 3px 8px;
	border-radius: 999px;
	background: #eef3f7;
	color: var(--navy);
	font-size: 12px;
	font-weight: 800;
}

.admin-badge--active,
.admin-badge--published,
.admin-badge--success,
.admin-badge--completed,
.admin-badge--valid {
	background: #e7f4ed;
	color: #16613c;
}

.admin-badge--inactive,
.admin-badge--error,
.admin-badge--failed,
.admin-badge--blocked {
	background: #f8e6e2;
	color: #9f3527;
}

.admin-badge--draft,
.admin-badge--pending,
.admin-badge--unchecked,
.admin-badge--needs_review {
	background: #f8efd9;
	color: #7a562c;
}

.admin-mini-list {
	display: grid;
	gap: 10px;
}

.admin-mini-item {
	display: block;
	padding: 12px;
	border: 1px solid #e5ded4;
	border-radius: 6px;
	background: #fff;
	color: inherit;
	text-decoration: none;
}

.admin-mini-item span,
.admin-mini-item small {
	display: block;
	color: var(--muted);
	font-size: 12px;
}

.admin-mini-item strong {
	display: block;
	margin: 3px 0;
	color: var(--navy);
	font-size: 14px;
}

.admin-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
}

.admin-filter {
	display: grid;
	grid-template-columns: minmax(220px, 1fr) 180px auto auto;
	gap: 10px;
	margin-bottom: 16px;
}

.admin-filter input,
.admin-filter select {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: #fff;
	color: var(--ink);
	font: inherit;
	padding: 10px 12px;
}

.ghost-button {
	background: #fff;
	color: var(--navy);
}

.page-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
}

.theme-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 20px;
}

.theme-cloud a {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	border: 1px solid #d3cabe;
	border-radius: 6px;
	background: #fbfaf6;
	padding: 0 12px;
	color: #37424d;
	font-size: 13px;
	font-weight: 800;
}

.notice-panel {
	margin-bottom: 18px;
	padding: 13px 16px;
	border: 1px solid #dacfc0;
	border-radius: var(--radius);
	background: rgba(255, 253, 248, 0.92);
	color: #59636d;
	font-size: 13px;
	font-weight: 700;
}

.side-notice {
	margin-top: 18px;
	margin-bottom: 0;
}

.topic-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.topic-card {
	position: relative;
	display: flex;
	min-height: 190px;
	flex-direction: column;
	padding: 20px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 253, 248, 0.9);
	overflow: hidden;
	transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.topic-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 5px;
	background: linear-gradient(90deg, var(--navy), var(--copper));
}

.topic-card:hover {
	transform: translateY(-2px);
	border-color: rgba(30, 58, 95, 0.32);
	box-shadow: 0 16px 42px rgba(31, 35, 40, 0.1);
}

.topic-card-top {
	display: grid;
	grid-template-columns: 52px 1fr;
	gap: 14px;
	align-items: center;
}

.topic-mark {
	display: grid;
	width: 52px;
	height: 52px;
	place-items: center;
	border: 1px solid rgba(30, 58, 95, 0.18);
	border-radius: 50%;
	background: #f2ecdf;
	color: var(--navy);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 20px;
	font-weight: 700;
}

.topic-card-meta {
	color: var(--copper);
	font-size: 12px;
	font-weight: 800;
}

.topic-card h3 {
	margin: 5px 0 0;
	color: var(--navy);
	font-size: 23px;
	line-height: 1.35;
}

.topic-card-desc {
	display: -webkit-box;
	margin: 16px 0 0;
	color: #4c5660;
	font-size: 14px;
	line-height: 1.65;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.topic-card-foot {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: auto;
	padding-top: 18px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 800;
}

.topic-card-foot span {
	border: 1px solid #d8d1c6;
	border-radius: 999px;
	padding: 4px 9px;
	background: #fbfaf6;
}

.topic-card-foot strong {
	margin-left: auto;
	color: var(--navy);
	font-size: 12px;
}

.empty-panel {
	padding: 22px;
	color: var(--muted);
	font-size: 14px;
}

.archive-list {
	display: grid;
	gap: 14px;
}

.archive-card {
	display: grid;
	gap: 10px;
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 253, 248, 0.9);
}

.archive-card:hover {
	border-color: rgba(30, 58, 95, 0.3);
	box-shadow: 0 14px 36px rgba(31, 35, 40, 0.08);
}

.archive-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 12px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 800;
}

.archive-card h3 {
	margin: 0;
	color: var(--navy);
	font-size: 19px;
	line-height: 1.45;
}

.archive-card p {
	margin: 0;
	color: #45505a;
	font-size: 14px;
}

.detail-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 18px;
	align-items: start;
}

.detail-panel {
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--paper-strong);
}

.detail-panel h2 {
	margin: 0 0 14px;
	color: var(--navy);
	font-size: 21px;
	line-height: 1.45;
}

.detail-panel p {
	margin: 0;
	color: #3f4851;
	font-size: 16px;
	line-height: 1.95;
}

.detail-panel p + p {
	margin-top: 14px;
}

.info-list {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.info-list li {
	display: grid;
	gap: 3px;
	padding-bottom: 10px;
	border-bottom: 1px solid #e3ddd3;
}

.info-list li:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.info-list span {
	color: var(--muted);
	font-size: 12px;
	font-weight: 800;
}

.info-list strong,
.info-list a {
	color: var(--navy);
	font-size: 14px;
	font-weight: 800;
}

.info-list strong.status-label {
	width: fit-content;
	font-size: 12px;
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tag-list a,
.tag-list span {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 0 10px;
	border: 1px solid #d3cabe;
	border-radius: 999px;
	background: #fbfaf6;
	color: #37424d;
	font-size: 12px;
	font-weight: 800;
}

.status-label {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 10px;
	border-radius: 999px;
	border: 1px solid transparent;
	background: #eef2f0;
	color: #44504a;
	font-size: 12px;
	font-weight: 800;
}

.status-label.status-checking {
	border-color: #ddc086;
	background: #fff6df;
	color: #7a562c;
}

.status-label.status-tracking {
	border-color: #9eb7d4;
	background: #eef6ff;
	color: #1e4f7d;
}

.status-label.status-achieved {
	border-color: #9cc9a9;
	background: #edf8f0;
	color: #23643c;
}

.status-label.status-partly_achieved {
	border-color: #8fc5bd;
	background: #eaf8f6;
	color: #25665d;
}

.status-label.status-broken {
	border-color: #df9d98;
	background: #fff0ee;
	color: #8b2f29;
}

.status-label.status-changed {
	border-color: #bba7d7;
	background: #f5efff;
	color: #5a3c84;
}

.status-label.status-pending {
	border-color: #c8c1b8;
	background: #f6f3ee;
	color: #5b554d;
}

.status-label.status-unknown {
	border-color: #c4cbd1;
	background: #f2f5f7;
	color: #4d5963;
}

.compact-list {
	display: grid;
}

.promise-timeline {
	position: relative;
	display: grid;
	gap: 14px;
	margin-top: 8px;
	padding-left: 24px;
}

.promise-timeline::before {
	content: "";
	position: absolute;
	top: 16px;
	bottom: 16px;
	left: 6px;
	width: 2px;
	background: #c6b59f;
}

.promise-timeline-item {
	position: relative;
	display: grid;
	grid-template-columns: 142px minmax(0, 1fr);
	gap: 18px;
	padding: 20px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 253, 248, 0.92);
	box-shadow: 0 14px 36px rgba(31, 35, 40, 0.06);
	scroll-margin-top: 92px;
}

.promise-timeline-item[hidden] {
	display: none !important;
}

.promise-timeline-item:target {
	border-color: rgba(139, 83, 43, 0.72);
	box-shadow: 0 18px 42px rgba(139, 83, 43, 0.14);
}

.promise-timeline-item::before {
	content: "";
	position: absolute;
	left: -24px;
	top: 28px;
	width: 14px;
	height: 14px;
	border: 4px solid var(--paper-strong);
	border-radius: 50%;
	background: var(--copper);
	box-shadow: 0 0 0 1px #c6b59f;
}

.promise-timeline-date time {
	color: var(--navy);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.25;
}

.promise-timeline-body {
	display: grid;
	gap: 10px;
}

.promise-timeline-body h3 {
	margin: 0;
	color: var(--navy);
	font-size: 19px;
	line-height: 1.5;
}

.promise-timeline-body p {
	margin: 0;
	color: #3f4851;
	font-size: 15px;
	line-height: 1.85;
}

.timeline-type-label {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 10px;
	border: 1px solid #d3cabe;
	border-radius: 999px;
	background: #fbfaf6;
	color: #4b5660;
	font-size: 12px;
	font-weight: 800;
}

.timeline-type-statement {
	border-color: #b9c7d8;
	background: #eef5fb;
	color: #244d75;
}

.timeline-type-update {
	border-color: #d6c1a7;
	background: #fbf4e9;
	color: #7a562c;
}

.timeline-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.timeline-more {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: 18px;
	padding-left: 24px;
}

.timeline-more[hidden] {
	display: none !important;
}

.timeline-more-button {
	min-height: 38px;
	padding: 0 16px;
	border: 1px solid #cbbda8;
	border-radius: 999px;
	background: #fffdf8;
	color: var(--navy);
	font: inherit;
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
}

.timeline-more-button:hover {
	background: #f7efe3;
}

.timeline-more-count {
	color: var(--muted);
	font-size: 13px;
	font-weight: 700;
}

.compact-item {
	display: grid;
	gap: 8px;
	padding: 20px 18px;
	border-bottom: 1px solid #e3ddd3;
}

.compact-item:last-child {
	border-bottom: 0;
}

.compact-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.compact-meta time {
	color: var(--muted);
	font-size: 12px;
	font-weight: 800;
}

.timeline-source-credit {
	color: #334252;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
}

.compact-item strong {
	color: var(--navy);
	font-size: 16px;
	line-height: 1.6;
}

.compact-item p {
	margin: 0;
	color: #3f4851;
	font-size: 15px;
	line-height: 1.85;
}

.source-link {
	justify-self: start;
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 12px;
	border: 1px solid #cbbda8;
	border-radius: 999px;
	background: #fbfaf6;
	color: var(--navy);
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
	transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.source-link:hover {
	border-color: rgba(30, 58, 95, 0.4);
	background: #fff;
	transform: translateY(-1px);
}

.source-check {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-top: 10px;
}

.source-check-badge {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 9px;
	border: 1px solid #c4cbd1;
	border-radius: 999px;
	background: #f2f5f7;
	color: #4d5963;
	font-size: 11px;
	font-weight: 800;
}

.source-check-message {
	flex-basis: 100%;
	color: var(--muted);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.6;
}

.source-status-ok .source-check-badge {
	border-color: #9cc9a9;
	background: #edf8f0;
	color: #23643c;
}

.source-status-broken .source-check-badge {
	border-color: #df9d98;
	background: #fff0ee;
	color: #8b2f29;
}

.source-status-blocked .source-check-badge {
	border-color: #b9c4cc;
	background: #f5f7f8;
	color: #50606b;
}

.source-status-warning .source-check-badge,
.source-status-error .source-check-badge {
	border-color: #b9c4cc;
	background: #f5f7f8;
	color: #50606b;
}

.contact-grid {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 18px;
	align-items: start;
}

.contact-card {
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--paper-strong);
}

.contact-card h2,
.contact-card h3 {
	margin: 0;
	color: var(--navy);
	line-height: 1.4;
}

.contact-card h2 {
	font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
	font-size: 28px;
}

.contact-card h3 {
	font-size: 18px;
}

.contact-card p {
	margin: 12px 0 0;
	color: #4c5660;
	font-size: 14px;
}

.contact-mail {
	display: inline-flex;
	align-items: center;
	min-height: 48px;
	margin-top: 18px;
	padding: 0 18px;
	border-radius: 6px;
	background: var(--navy);
	color: #fff;
	font-size: 14px;
	font-weight: 800;
}

.contact-form-card {
	padding: 28px;
}

.contact-form {
	display: grid;
	gap: 16px;
	margin-top: 22px;
}

.form-split {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.form-field {
	display: grid;
	gap: 7px;
}

.form-field label {
	color: var(--navy);
	font-size: 13px;
	font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
	width: 100%;
	border: 1px solid #c8c0b4;
	border-radius: 6px;
	background: #fff;
	color: var(--ink);
	font: inherit;
	font-size: 15px;
	outline: none;
}

.form-field input,
.form-field select {
	min-height: 48px;
	padding: 0 13px;
}

.form-field textarea {
	min-height: 180px;
	padding: 12px 13px;
	resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
	border-color: var(--navy);
	box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.13);
}

.form-field.is-error input,
.form-field.is-error select,
.form-field.is-error textarea {
	border-color: var(--red);
}

.field-error {
	min-height: 18px;
	color: var(--red);
	font-size: 12px;
	font-weight: 700;
}

.check-field label {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	color: #3f4851;
	font-weight: 700;
}

.check-field input {
	width: auto;
	min-height: auto;
	margin-top: 0.45em;
}

.form-result {
	padding: 13px 16px;
	border-radius: var(--radius);
	font-size: 14px;
	font-weight: 800;
}

.form-result[data-type="success"] {
	border: 1px solid rgba(105, 122, 112, 0.36);
	background: rgba(105, 122, 112, 0.12);
	color: #46584e;
}

.form-result[data-type="error"] {
	border: 1px solid rgba(154, 77, 67, 0.36);
	background: rgba(154, 77, 67, 0.1);
	color: var(--red);
}

.contact-submit {
	justify-self: start;
	min-width: 180px;
}

.contact-submit:disabled {
	cursor: wait;
	opacity: 0.68;
}

.hp-field {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.contact-list {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.contact-list li {
	padding: 16px;
	border: 1px solid #e1d9cc;
	border-radius: var(--radius);
	background: rgba(255, 253, 248, 0.74);
}

.contact-list strong {
	display: block;
	color: var(--navy);
	font-size: 14px;
}

.contact-list span {
	display: block;
	margin-top: 4px;
	color: var(--muted);
	font-size: 13px;
}

.policy {
	margin: 36px 0 0;
	padding: 28px;
	background: #17273d;
	color: #fff;
	border-radius: var(--radius);
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 28px;
	align-items: center;
}

.policy h2 {
	margin: 0;
	font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
	font-size: 28px;
	line-height: 1.4;
}

.policy ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px;
}

.policy li {
	position: relative;
	padding-left: 18px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 14px;
}

.policy li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.78em;
	width: 7px;
	height: 7px;
	background: var(--copper);
	border-radius: 50%;
}

.support-section {
	padding: 40px 0 0;
}

.support-inner {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
	gap: 28px;
	align-items: center;
}

.support-copy {
	padding: 26px 0;
}

.support-copy h2 {
	margin: 0;
	color: var(--navy);
	font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
	font-size: 30px;
	line-height: 1.35;
}

.support-copy p {
	margin: 12px 0 0;
	color: #3d4650;
	font-size: 14px;
}

.support-actions {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.support-actions form {
	margin: 0;
}

.support-button {
	width: 100%;
	min-height: 150px;
	padding: 18px;
	border: 1px solid rgba(168, 116, 56, 0.42);
	border-radius: var(--radius);
	background: rgba(255, 253, 248, 0.94);
	color: var(--ink);
	box-shadow: 0 14px 34px rgba(31, 35, 40, 0.08);
	cursor: pointer;
	text-align: left;
	font: inherit;
	transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.support-button:hover {
	border-color: var(--copper);
	box-shadow: 0 18px 42px rgba(31, 35, 40, 0.12);
	transform: translateY(-1px);
}

.support-label,
.support-amount,
.support-description {
	display: block;
}

.support-label {
	color: var(--navy);
	font-size: 14px;
	font-weight: 800;
}

.support-amount {
	margin-top: 6px;
	color: var(--copper);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.1;
}

.support-description {
	margin-top: 10px;
	color: var(--muted);
	font-size: 12px;
	line-height: 1.55;
}

.footer {
	margin-top: 42px;
	padding: 28px 0;
	border-top: 1px solid rgba(31, 35, 40, 0.12);
	color: var(--muted);
	font-size: 13px;
}

@media (max-width: 900px) {
	.topbar-inner {
		display: block;
		position: relative;
	}

	.nav {
		margin-top: 14px;
		padding: 0 28px 9px 0;
		mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 42px), transparent 100%);
	}

	.topbar-inner::after {
		content: "横にスクロールできます";
		position: absolute;
		right: 16px;
		bottom: 6px;
		padding: 2px 8px;
		border: 1px solid rgba(30, 58, 95, 0.18);
		border-radius: 999px;
		background: rgba(247, 244, 238, 0.94);
		color: var(--muted);
		font-size: 10px;
		font-weight: 800;
		line-height: 1;
		pointer-events: none;
	}

	.hero {
		padding-top: 46px;
	}

	.hero-grid,
	.content-grid,
	.detail-grid,
	.contact-grid,
	.support-inner,
	.policy {
		grid-template-columns: 1fr;
	}

	.support-copy {
		padding-bottom: 0;
	}

	.support-actions {
		grid-template-columns: 1fr;
	}

	.support-button {
		min-height: 0;
	}

	.hero h1 {
		font-size: 38px;
	}

	.route-grid {
		grid-template-columns: 1fr;
	}

	.promise-timeline-item {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.topic-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.container,
	.topbar-inner {
		padding-left: 16px;
		padding-right: 16px;
	}

	.search-box {
		grid-template-columns: 1fr;
	}

	.button {
		width: 100%;
	}

	.section-head {
		display: block;
	}

	.section-head .text-link {
		display: inline-block;
		margin-top: 8px;
	}

	.table-row {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.date {
		text-align: left;
	}

	.page-hero h1 {
		font-size: 34px;
	}

	.promise-timeline {
		padding-left: 18px;
	}

	.promise-timeline::before {
		left: 5px;
	}

	.promise-timeline-item {
		padding: 18px;
	}

	.promise-timeline-item::before {
		left: -19px;
		width: 12px;
		height: 12px;
	}

	.promise-timeline-date time {
		font-size: 18px;
	}

	.topic-grid {
		grid-template-columns: 1fr;
	}

	.form-split {
		grid-template-columns: 1fr;
	}

	.topic-card-top {
		grid-template-columns: 44px 1fr;
	}

	.topic-mark {
		width: 44px;
		height: 44px;
		font-size: 17px;
	}
}
