:root {
	--ci-primary: #60c8e8;
	--ci-primary-dark: #138bb0;
	--ci-primary-light: #ddf7fd;
	--ci-black: #05070a;
	--ci-white: #f6fafc;
	--ci-ink: #16222b;
	--ci-gray: #55616b;
	--ci-line: #dee9ef;
	--ci-bg: #ffffff;
	--ci-bg-soft: #f2f8fb;
	--ci-warm: #f0a03c;
	--ci-green: #2e7d46;
	--ci-purple: #5b4fb0;
	--ci-danger: #d4573b;
	--ci-shadow: 0 18px 48px rgba(18, 55, 72, 0.14);
	--ci-shadow-soft: 0 10px 30px rgba(18, 55, 72, 0.08);
	--ci-radius: 10px;
	--ci-wrap: 1240px;
	--ph-accent: #138bb0;
}

body.is-front {
	margin: 0;
	background: var(--ci-bg);
	color: var(--ci-ink);
	font-family: "Noto Sans JP", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 14px;
	line-height: 1.7;
	letter-spacing: 0;
}

body.is-front .noren-top {
	display: none;
}

body.is-front .frame {
	width: 100%;
	max-width: none;
	min-height: 100vh;
	margin: 0;
	background: var(--ci-bg);
	box-shadow: none;
	overflow-x: hidden;
	overflow-y: visible;
}

body.is-front a {
	color: inherit;
	text-decoration: none;
}

body.is-front img {
	display: block;
	max-width: 100%;
	height: auto;
}

body.is-front button,
body.is-front input {
	font: inherit;
	letter-spacing: 0;
}

body.is-front .serif {
	font-family: "Noto Sans JP", Inter, system-ui, sans-serif;
}

body.is-front .mono {
	font-family: Inter, "Noto Sans JP", system-ui, sans-serif;
}

body.is-front .wrap {
	width: min(100% - 48px, var(--ci-wrap));
	margin: 0 auto;
}

body.is-front .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.95);
	border-bottom: 1px solid var(--ci-line);
	backdrop-filter: blur(14px);
}

.header-inner {
	display: flex;
	align-items: center;
	gap: 24px;
	min-height: 76px;
}

.brand {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
}

.site-header .brand img,
.site-header .brand .custom-logo {
	width: auto;
	height: 42px;
	object-fit: contain;
}

.gnav {
	display: flex;
	align-items: center;
	gap: 6px;
	min-width: 0;
}

.gnav a {
	display: grid;
	gap: 1px;
	min-width: 76px;
	padding: 10px 8px;
	border-radius: 8px;
	color: var(--ci-ink);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	transition: background 0.18s ease, color 0.18s ease;
}

.gnav a span {
	color: var(--ci-gray);
	font-family: Inter, sans-serif;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.18em;
}

.gnav a:hover {
	background: var(--ci-primary-light);
	color: var(--ci-primary-dark);
}

.header-search {
	display: flex;
	align-items: center;
	flex: 1 1 220px;
	min-width: 180px;
	max-width: 340px;
	height: 42px;
	margin-left: auto;
	border: 1px solid var(--ci-line);
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
}

.header-search input {
	width: 100%;
	min-width: 0;
	height: 100%;
	padding: 0 12px;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--ci-ink);
	font-size: 13px;
}

.header-search button {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 0;
	border-left: 1px solid var(--ci-line);
	background: #fff;
	color: var(--ci-primary-dark);
	cursor: pointer;
}

.header-search svg,
.header-actions svg,
.m-bottom-nav svg,
.hero-search svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
}

.icon-btn {
	position: relative;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--ci-line);
	border-radius: 8px;
	background: #fff;
	color: var(--ci-ink);
}

.cart-btn span {
	position: absolute;
	top: -6px;
	right: -6px;
	display: grid;
	place-items: center;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--ci-danger);
	color: #fff;
	font-family: Inter, sans-serif;
	font-size: 10px;
	font-weight: 800;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 42px;
	padding: 0 18px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
}

.btn--primary {
	background: var(--ci-primary-dark);
	color: #fff;
}

.btn--light {
	background: #fff;
	color: var(--ci-black);
}

.hero-section {
	position: relative;
	background:
		linear-gradient(110deg, rgba(221, 247, 253, 0.88), rgba(255, 255, 255, 0.96) 58%, rgba(242, 248, 251, 0.98)),
		var(--ci-white);
	border-bottom: 1px solid var(--ci-line);
	overflow: hidden;
}

.hero-section::before {
	position: absolute;
	inset: auto -8% -42% 56%;
	height: 360px;
	background:
		linear-gradient(135deg, rgba(96, 200, 232, 0.12), rgba(5, 7, 10, 0.06));
	transform: rotate(-8deg);
	content: "";
}

.hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 380px;
	gap: 48px;
	align-items: center;
	min-height: 382px;
	padding: 42px 0;
}

.eyebrow,
.section-head p,
.mini-head span,
.apply-inner p {
	margin: 0;
	color: var(--ci-primary-dark);
	font-family: Inter, "Noto Sans JP", system-ui, sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0;
}

.hero-copy h1 {
	max-width: 680px;
	margin: 12px 0 0;
	color: var(--ci-ink);
	font-size: 34px;
	font-weight: 800;
	line-height: 1.42;
	letter-spacing: 0;
}

.hero-lead {
	max-width: 640px;
	margin: 18px 0 0;
	color: var(--ci-gray);
	font-size: 14px;
	line-height: 1.9;
}

.hero-search {
	display: flex;
	align-items: stretch;
	width: min(100%, 640px);
	height: 56px;
	margin-top: 28px;
	border: 2px solid var(--ci-primary);
	border-radius: 10px;
	background: #fff;
	overflow: hidden;
	box-shadow: var(--ci-shadow-soft);
}

.hero-search input {
	flex: 1 1 auto;
	min-width: 0;
	padding: 0 18px;
	border: 0;
	outline: 0;
	color: var(--ci-ink);
	font-size: 14px;
}

.hero-search button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 118px;
	border: 0;
	background: var(--ci-primary-dark);
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
}

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

.popular-tags a {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 10px;
	border: 1px solid rgba(19, 139, 176, 0.22);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.88);
	color: var(--ci-primary-dark);
	font-size: 12px;
	font-weight: 700;
}

.pickup {
	border: 1px solid var(--ci-line);
	border-radius: var(--ci-radius);
	background: #fff;
	box-shadow: var(--ci-shadow-soft);
	overflow: hidden;
}

.hero-feature {
	border: 1px solid var(--ci-line);
	border-radius: var(--ci-radius);
	background: #fff;
	box-shadow: var(--ci-shadow-soft);
	overflow: hidden;
}

.mini-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 18px;
	border-bottom: 1px solid var(--ci-line);
}

.mini-head a {
	color: var(--ci-primary-dark);
	font-size: 12px;
	font-weight: 800;
}

.pickup-list {
	display: grid;
}

.pickup-card {
	display: grid;
	grid-template-columns: 108px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	padding: 14px 18px;
	border-bottom: 1px solid var(--ci-line);
	transition: background 0.18s ease;
}

.pickup-card:last-child {
	border-bottom: 0;
}

.pickup-card:hover {
	background: var(--ci-bg-soft);
}

.pickup-card .ph {
	width: 108px;
	height: 82px;
}

.pickup-card h2 {
	display: -webkit-box;
	margin: 8px 0 4px;
	overflow: hidden;
	color: var(--ci-ink);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.45;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.pickup-card p {
	margin: 0;
	overflow: hidden;
	color: var(--ci-gray);
	font-size: 12px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hero-photo-card {
	display: block;
	border-bottom: 1px solid var(--ci-line);
}

.hero-photo-card img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.hero-photo-copy {
	display: grid;
	gap: 8px;
	padding: 16px 18px 18px;
}

.hero-photo-copy h2 {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	color: var(--ci-ink);
	font-size: 16px;
	font-weight: 800;
	line-height: 1.55;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.hero-mini-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	background: var(--ci-line);
}

.hero-mini-grid a {
	display: grid;
	gap: 9px;
	padding: 12px;
	background: #fff;
}

.hero-mini-grid img {
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 7px;
	object-fit: cover;
}

.hero-mini-grid span {
	overflow: hidden;
	color: var(--ci-ink);
	font-size: 12px;
	font-weight: 800;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.tab-section,
.category-section,
.feature-section,
.area-section {
	padding: 52px 0;
}

.tab-section {
	background: #fff;
}

.category-section,
.area-section {
	background: var(--ci-bg-soft);
}

.tabs {
	position: sticky;
	top: 76px;
	z-index: 20;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border: 1px solid var(--ci-line);
	border-radius: 10px;
	background: #fff;
	overflow: hidden;
}

.tab {
	position: relative;
	display: grid;
	place-items: center;
	gap: 2px;
	min-height: 64px;
	border: 0;
	border-right: 1px solid var(--ci-line);
	background: #fff;
	color: var(--ci-gray);
	font-weight: 800;
	cursor: pointer;
}

.tab:last-child {
	border-right: 0;
}

.tab span {
	font-family: Inter, sans-serif;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.2em;
}

.tab.is-active {
	color: var(--ci-primary-dark);
}

.tab.is-active::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 4px;
	background: var(--ci-primary);
	content: "";
}

.tab-panel {
	display: none;
	padding-top: 34px;
}

.tab-panel.is-active {
	display: block;
}

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

.section-head h2 {
	margin: 4px 0 0;
	color: var(--ci-ink);
	font-size: 22px;
	font-weight: 800;
	line-height: 1.35;
}

.section-head a {
	color: var(--ci-primary-dark);
	font-size: 13px;
	font-weight: 800;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.pcard {
	position: relative;
	display: block;
	min-width: 0;
	border: 1px solid var(--ci-line);
	border-radius: var(--ci-radius);
	background: #fff;
	overflow: hidden;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.pcard:hover {
	transform: translateY(-2px);
	border-color: rgba(19, 139, 176, 0.36);
	box-shadow: var(--ci-shadow-soft);
}

.pcard-body {
	display: grid;
	gap: 8px;
	padding: 14px;
}

.pcard h3 {
	display: -webkit-box;
	min-height: 44px;
	margin: 0;
	overflow: hidden;
	color: var(--ci-ink);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.45;
	letter-spacing: 0;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.shop-name {
	margin: 0;
	overflow: hidden;
	color: var(--ci-gray);
	font-size: 12px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pcard-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	min-height: 24px;
}

.price {
	min-width: 0;
	overflow: hidden;
	color: var(--ci-ink);
	font-size: 13px;
	font-weight: 800;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.price .amount {
	color: inherit;
	font-weight: 800;
}

.rating {
	flex: 0 0 auto;
	color: var(--ci-warm);
	font-family: Inter, sans-serif;
	font-size: 12px;
	font-weight: 800;
}

.ph {
	position: relative;
	display: grid;
	place-items: center;
	aspect-ratio: 4 / 3;
	width: 100%;
	min-height: 0;
	overflow: hidden;
	background:
		linear-gradient(135deg, color-mix(in srgb, var(--ph-accent) 18%, white), #ffffff 58%),
		linear-gradient(135deg, rgba(96, 200, 232, 0.12), rgba(19, 139, 176, 0.08));
	color: #fff;
	isolation: isolate;
}

.ph::before {
	position: absolute;
	inset: 18px;
	z-index: 0;
	background: url("../images/chikuho-info-logo.png") center / contain no-repeat;
	filter: grayscale(1);
	opacity: 0.12;
	content: "";
}

.ph::after {
	position: absolute;
	inset: 12px;
	z-index: 1;
	border: 1px solid color-mix(in srgb, var(--ph-accent) 22%, transparent);
	border-radius: 8px;
	opacity: 0.42;
	content: "";
}

.ph.has-image::before,
.ph.has-image::after {
	display: none;
}

.ph--article {
	aspect-ratio: 16 / 9;
	background:
		linear-gradient(135deg, color-mix(in srgb, var(--ci-primary-dark) 20%, white), #ffffff 60%),
		var(--ci-bg-soft);
}

.ph--fallback:nth-child(2n) {
	background:
		linear-gradient(135deg, color-mix(in srgb, var(--ph-accent) 18%, white), #ffffff 58%),
		var(--ci-bg-soft);
}

.ph img {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ph-letter {
	position: absolute;
	left: 14px;
	bottom: 14px;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid color-mix(in srgb, var(--ph-accent) 18%, white);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.9);
	color: var(--ph-accent);
	box-shadow: 0 8px 18px rgba(18, 55, 72, 0.08);
	font-size: 18px;
	font-weight: 800;
	line-height: 1;
	opacity: 1;
}

.ph--article .ph-letter {
	width: 52px;
	height: 52px;
	font-size: 20px;
}

.fav {
	position: absolute;
	top: 10px;
	right: 10px;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--ci-primary-dark);
}

.fav svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.chip {
	display: inline-flex;
	align-items: center;
	min-height: 22px;
	padding: 0 8px;
	border-radius: 6px;
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
}

.chip--news {
	background: var(--ci-primary-light);
	color: var(--ci-primary-dark);
}

.chip--product {
	background: #e5f3e8;
	color: var(--ci-green);
}

.chip--article {
	background: #f1f4f6;
	color: var(--ci-gray);
}

.chip--spot {
	background: #ebe9f7;
	color: var(--ci-purple);
}

.chip--pr {
	background: var(--ci-warm);
	color: #fff;
}

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

.dcard {
	display: block;
	min-width: 0;
	border: 1px solid var(--ci-line);
	border-radius: var(--ci-radius);
	background: #fff;
	overflow: hidden;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.dcard:hover {
	transform: translateY(-2px);
	box-shadow: var(--ci-shadow);
}

.dcard-body {
	display: grid;
	gap: 10px;
	padding: 16px;
}

.dcard-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	color: var(--ci-gray);
	font-family: Inter, "Noto Sans JP", system-ui, sans-serif;
	font-size: 11px;
}

.dcard h3 {
	display: -webkit-box;
	min-height: 46px;
	margin: 0;
	overflow: hidden;
	color: var(--ci-ink);
	font-size: 16px;
	font-weight: 800;
	line-height: 1.45;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.dcard p {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	color: var(--ci-gray);
	font-size: 13px;
	line-height: 1.7;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

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

.news-list a {
	display: grid;
	grid-template-columns: 96px auto minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	min-height: 62px;
	padding: 14px 16px;
	border: 1px solid var(--ci-line);
	border-radius: 8px;
	background: #fff;
}

.news-list time {
	color: var(--ci-gray);
	font-family: Inter, sans-serif;
	font-size: 12px;
	font-weight: 700;
}

.news-list strong {
	overflow: hidden;
	color: var(--ci-ink);
	font-size: 14px;
	font-weight: 800;
	text-overflow: ellipsis;
	white-space: nowrap;
}

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

.cat-tile {
	display: grid;
	place-items: center;
	gap: 8px;
	min-height: 132px;
	padding: 14px 10px;
	border: 1px solid var(--ci-line);
	border-radius: var(--ci-radius);
	background: #fff;
	text-align: center;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.cat-tile:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(18, 55, 72, 0.1);
}

.cat-tile span {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--cat-fg) 15%, white);
	color: var(--cat-fg);
	font-size: 20px;
	font-weight: 800;
}

.cat-tile strong {
	width: 100%;
	overflow: hidden;
	color: var(--ci-ink);
	font-size: 13px;
	font-weight: 800;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.cat-tile small {
	color: var(--ci-gray);
	font-family: Inter, sans-serif;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.12em;
}

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

.fcard {
	display: grid;
	align-content: end;
	min-height: 220px;
	padding: 24px;
	border-radius: var(--ci-radius);
	overflow: hidden;
}

.fcard .chip {
	justify-self: start;
}

.fcard--dark {
	background:
		linear-gradient(135deg, rgba(5, 7, 10, 0.96), rgba(19, 139, 176, 0.9)),
		var(--ci-black);
	color: #fff;
}

.fcard--light {
	border: 1px solid var(--ci-line);
	background:
		linear-gradient(135deg, rgba(221, 247, 253, 0.95), rgba(255, 255, 255, 0.9)),
		#fff;
	color: var(--ci-ink);
}

.fcard--photo {
	position: relative;
	background:
		linear-gradient(180deg, rgba(5, 7, 10, 0.08), rgba(5, 7, 10, 0.68)),
		var(--feature-image) center / cover no-repeat,
		var(--ci-black);
	color: #fff;
}

.fcard--photo::before {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(5, 7, 10, 0.64), rgba(5, 7, 10, 0.06));
	content: "";
}

.fcard--photo > * {
	position: relative;
	z-index: 1;
}

.fcard--dark h3,
.fcard--dark p,
.fcard--photo h3,
.fcard--photo p {
	color: #fff;
}

.fcard h3 {
	max-width: 560px;
	margin: 14px 0 8px;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.45;
}

.fcard p {
	max-width: 520px;
	margin: 0;
	color: currentColor;
	font-size: 13px;
	opacity: 0.78;
}

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

.area-tile {
	display: grid;
	gap: 8px;
	align-content: center;
	min-height: 124px;
	padding: 16px;
	border: 1px solid var(--ci-line);
	border-radius: var(--ci-radius);
	background: #fff;
}

.area-tile span {
	color: var(--ci-primary-dark);
	font-family: Inter, sans-serif;
	font-size: 12px;
	font-weight: 800;
}

.area-tile strong {
	color: var(--ci-ink);
	font-size: 16px;
	font-weight: 800;
}

.area-tile small {
	color: var(--ci-gray);
	font-family: Inter, sans-serif;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.apply-section {
	background: var(--ci-black);
	color: #fff;
}

.apply-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	min-height: 186px;
	padding: 38px 0;
}

.apply-inner p {
	color: var(--ci-primary);
}

.apply-inner h2 {
	margin: 8px 0 0;
	font-size: 26px;
	font-weight: 800;
	line-height: 1.4;
}

.apply-inner h2 span + span::before {
	content: " ";
}

.apply-section .btn--light {
	justify-content: space-between;
	min-width: 250px;
	background: #fff;
	color: var(--ci-black);
}

.apply-section .btn--light svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.site-footer {
	padding: 44px 0 26px;
	background: #fff;
	border-top: 1px solid var(--ci-line);
	color: var(--ci-ink);
}

.footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 40px;
	align-items: start;
}

.site-footer .footer-brand img {
	width: auto;
	height: 46px;
}

.footer-brand p {
	max-width: 420px;
	margin: 16px 0 0;
	color: var(--ci-gray);
	font-size: 13px;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(2, auto);
	gap: 10px 28px;
}

.footer-links a {
	color: var(--ci-ink);
	font-size: 13px;
	font-weight: 700;
}

.footer-bottom {
	margin-top: 34px;
	padding-top: 18px;
	border-top: 1px solid var(--ci-line);
	color: var(--ci-gray);
	font-family: Inter, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

		.m-bottom-nav {
	display: none;
}

@media (max-width: 1180px) {
	.header-inner {
		gap: 14px;
	}

	.gnav a {
		min-width: 66px;
		font-size: 12px;
	}

	.header-search {
		max-width: 260px;
	}

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

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

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

@media (max-width: 900px) {
	body.is-front .wrap {
		width: min(100% - 32px, var(--ci-wrap));
	}

	body.is-front {
		padding-bottom: calc(74px + env(safe-area-inset-bottom));
	}

	.header-inner {
		min-height: 58px;
	}

	.site-header .brand img,
	.site-header .brand .custom-logo {
		height: 34px;
	}

	.gnav,
	.header-search,
	.desktop-only {
		display: none;
	}

	.header-actions {
		margin-left: auto;
	}

	.icon-btn {
		width: 40px;
		height: 40px;
	}

	.hero-inner {
		display: block;
		min-height: 0;
		padding: 26px 0 28px;
	}

	.hero-copy h1 {
		font-size: 22px;
		line-height: 1.5;
	}

	.hero-lead {
		margin-top: 12px;
		font-size: 13px;
		line-height: 1.8;
	}

	.hero-search {
		height: 50px;
		margin-top: 20px;
	}

	.hero-search input {
		padding: 0 13px;
		font-size: 13px;
	}

	.hero-search button {
		width: 90px;
		font-size: 12px;
	}

	.popular-tags {
		margin-top: 12px;
		overflow-x: auto;
		flex-wrap: nowrap;
		padding-bottom: 2px;
	}

	.popular-tags a {
		flex: 0 0 auto;
	}

	.pickup {
		margin-top: 22px;
		box-shadow: none;
	}

	.hero-feature {
		margin-top: 22px;
		box-shadow: none;
	}

	.hero-photo-copy {
		padding: 14px;
	}

	.hero-photo-copy h2 {
		font-size: 14px;
	}

	.hero-mini-grid a {
		padding: 10px;
	}

	.pickup-list {
		display: flex;
		gap: 12px;
		padding: 14px;
		overflow-x: auto;
		scroll-snap-type: x proximity;
	}

	.pickup-card {
		grid-template-columns: 92px minmax(0, 1fr);
		flex: 0 0 270px;
		padding: 0;
		border: 0;
		scroll-snap-align: start;
	}

	.pickup-card .ph {
		width: 92px;
		height: 74px;
		border-radius: 8px;
	}

	.tab-section,
	.category-section,
	.feature-section,
	.area-section {
		padding: 32px 0;
	}

	.tabs {
		top: 58px;
		margin-inline: -16px;
		border-right: 0;
		border-left: 0;
		border-radius: 0;
	}

	.tab {
		min-height: 58px;
		font-size: 13px;
	}

	.tab span {
		font-size: 9px;
	}

	.tab-panel {
		padding-top: 26px;
	}

	.section-head {
		align-items: flex-start;
		margin-bottom: 16px;
	}

	.section-head h2 {
		font-size: 18px;
	}

	.section-head a {
		font-size: 12px;
	}

	.product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.pcard-body {
		gap: 7px;
		padding: 11px;
	}

	.pcard h3 {
		min-height: 40px;
		font-size: 13px;
	}

	.pcard-foot {
		display: grid;
		gap: 3px;
	}

	.price,
	.rating,
	.shop-name {
		font-size: 11px;
	}

	.fav {
		top: 8px;
		right: 8px;
		width: 30px;
		height: 30px;
	}

	.discover-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.dcard {
		display: grid;
		grid-template-columns: 132px minmax(0, 1fr);
	}

	.dcard .ph {
		height: 100%;
		min-height: 128px;
		aspect-ratio: auto;
	}

	.dcard-body {
		padding: 12px;
	}

	.dcard h3 {
		min-height: 0;
		font-size: 14px;
	}

	.dcard p {
		font-size: 12px;
		-webkit-line-clamp: 2;
	}

	.news-list a {
		grid-template-columns: 74px minmax(0, 1fr);
		gap: 8px 10px;
	}

	.news-list .chip {
		justify-self: start;
	}

	.news-list strong {
		grid-column: 1 / -1;
		white-space: normal;
	}

	.category-grid {
		display: flex;
		gap: 10px;
		margin-inline: -16px;
		padding: 0 16px 4px;
		overflow-x: auto;
	}

	.cat-tile {
		flex: 0 0 104px;
		min-height: 116px;
	}

	.feature-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.fcard {
		min-height: 196px;
		padding: 20px;
	}

	.fcard h3 {
		font-size: 18px;
	}

	.area-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.area-tile {
		min-height: 104px;
		padding: 14px;
	}

	.apply-inner {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		min-height: 0;
		padding: 32px 0;
	}

	.apply-inner h2 {
		font-size: 20px;
	}

	.btn--light {
		justify-self: start;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.footer-links {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.footer-bottom {
		margin-top: 24px;
	}

	.m-bottom-nav {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 70;
		display: grid;
		grid-template-columns: repeat(5, 1fr);
			padding: 6px 8px calc(6px + env(safe-area-inset-bottom));
			border-top: 1px solid var(--ci-line);
			background: rgba(255, 255, 255, 0.97);
			box-shadow: 0 -8px 24px rgba(18, 55, 72, 0.08);
			backdrop-filter: blur(12px);
		}

		.m-bottom-nav a {
			position: relative;
			display: grid;
			place-items: center;
			align-content: center;
			gap: 5px;
			min-width: 0;
			min-height: 58px;
			border-radius: 6px;
			color: var(--ci-gray);
			font-size: 11px;
			font-weight: 800;
			line-height: 1;
		}

		.m-bottom-nav a.is-active {
			background: transparent;
			color: var(--ci-primary-dark);
		}

		.m-bottom-nav a.is-active::before {
			position: absolute;
			top: -6px;
			left: 50%;
			width: 30px;
			height: 3px;
			border-radius: 0 0 3px 3px;
			background: var(--ci-primary);
			content: "";
			transform: translateX(-50%);
		}

		.m-bottom-nav a:active {
			background: var(--ci-primary-light);
		}

		.m-bottom-nav svg {
			width: 23px;
			height: 23px;
		}
}

@media (max-width: 370px) {
	body.is-front .wrap {
		width: min(100% - 24px, var(--ci-wrap));
	}

	.hero-copy h1 {
		font-size: 20px;
	}

	.hero-search button span {
		display: none;
	}

	.hero-search button {
		width: 56px;
	}

	.pcard h3 {
		font-size: 12px;
	}
}

/* Media-first top v2 */
.media-top {
	background: #fff;
}

.media-hero {
	position: relative;
	display: grid;
	align-items: end;
	min-height: clamp(470px, 64vh, 620px);
	background:
		linear-gradient(90deg, rgba(5, 7, 10, 0.82), rgba(5, 7, 10, 0.38) 47%, rgba(5, 7, 10, 0.12)),
		linear-gradient(180deg, rgba(5, 7, 10, 0.04), rgba(5, 7, 10, 0.56)),
		var(--hero-image) center / cover no-repeat,
		var(--ci-black);
	color: #fff;
	overflow: hidden;
}

.media-hero-slides,
.media-hero-slide {
	position: absolute;
	inset: 0;
}

.media-hero-slides {
	z-index: 0;
	pointer-events: none;
}

.media-hero-slide {
	background:
		linear-gradient(90deg, rgba(5, 7, 10, 0.82), rgba(5, 7, 10, 0.38) 47%, rgba(5, 7, 10, 0.12)),
		linear-gradient(180deg, rgba(5, 7, 10, 0.04), rgba(5, 7, 10, 0.56)),
		var(--slide-image) center / cover no-repeat,
		var(--ci-black);
	opacity: 0;
	transform: scale(1.025);
	transition: opacity 0.7s ease, transform 6s ease;
}

.media-hero-slide.is-active {
	opacity: 1;
	transform: scale(1);
}

.media-hero::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 1px;
	background: rgba(255, 255, 255, 0.22);
	content: "";
	z-index: 1;
}

.media-hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 56px;
	align-items: end;
	padding: 76px 0 48px;
}

.media-hero-copy {
	max-width: 680px;
}

.media-hero .eyebrow {
	color: var(--ci-primary);
}

.media-hero h1 {
	max-width: 760px;
	margin: 10px 0 0;
	color: #fff;
	font-family: Inter, "Noto Sans JP", system-ui, sans-serif;
	font-size: clamp(40px, 4.6vw, 60px);
	font-weight: 800;
	line-height: 1.18;
	letter-spacing: 0;
}

.media-hero h1 span {
	display: inline;
}

.hero-statement {
	margin: 18px 0 0;
	color: #fff;
	font-size: clamp(22px, 2.4vw, 32px);
	font-weight: 800;
	line-height: 1.45;
}

.media-hero .hero-lead {
	max-width: 620px;
	margin: 14px 0 0;
	color: rgba(255, 255, 255, 0.84);
	font-size: 14px;
	line-height: 1.9;
}

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

.hero-actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 16px;
	border: 1px solid rgba(255, 255, 255, 0.34);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	backdrop-filter: blur(10px);
}

.hero-actions a:first-child {
	border-color: transparent;
	background: #fff;
	color: var(--ci-black);
}

.hero-current-story {
	display: grid;
	gap: 10px;
	padding: 18px 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.32);
	color: #fff;
}

.hero-current-story span,
.hero-current-story small {
	color: rgba(255, 255, 255, 0.72);
	font-family: Inter, "Noto Sans JP", system-ui, sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.18em;
}

.hero-current-story strong {
	font-size: 17px;
	font-weight: 800;
	line-height: 1.6;
}

.entry-section {
	padding: 28px 0 46px;
	background: #fff;
	border-bottom: 1px solid var(--ci-line);
}

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

.entry-card {
	display: grid;
	gap: 8px;
	min-height: 144px;
	padding: 22px;
	border: 1px solid var(--ci-line);
	border-radius: var(--ci-radius);
	background: #fff;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.entry-card:hover {
	transform: translateY(-2px);
	border-color: rgba(19, 139, 176, 0.32);
	box-shadow: var(--ci-shadow-soft);
}

.entry-card span {
	color: var(--ci-primary-dark);
	font-family: Inter, "Noto Sans JP", system-ui, sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.2em;
}

.entry-card strong {
	color: var(--ci-ink);
	font-size: 26px;
	font-weight: 800;
	line-height: 1.2;
}

.entry-card p {
	max-width: 320px;
	margin: 0;
	color: var(--ci-gray);
	font-size: 13px;
	line-height: 1.8;
}

.entry-card--read {
	background: linear-gradient(135deg, #fff, rgba(221, 247, 253, 0.7));
}

.entry-card--buy {
	background: linear-gradient(135deg, #fff, rgba(229, 243, 232, 0.9));
}

.entry-card--go {
	background: linear-gradient(135deg, #fff, rgba(252, 238, 221, 0.88));
}

.stories-section,
.shop-picks-section,
.media-category-section,
.media-area-section {
	padding: 54px 0;
}

.stories-section {
	background: var(--ci-bg-soft);
}

.preview-stories-section {
	padding: 54px 0;
	border-top: 1px solid var(--ci-line);
	background: #fff;
}

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

.preview-story-card {
	display: flex;
	flex-direction: column;
	min-height: 164px;
	border: 1px solid var(--ci-line);
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.preview-story-card:hover,
.preview-story-card:focus-visible {
	border-color: rgba(19, 139, 176, 0.42);
	box-shadow: var(--ci-shadow-soft);
	transform: translateY(-2px);
}

.preview-story-number {
	color: var(--ci-primary-dark);
	font-family: Inter, sans-serif;
	font-size: 13px;
	font-weight: 800;
}

.preview-story-media {
	aspect-ratio: 16 / 9;
	background: var(--ci-bg-soft);
	overflow: hidden;
}

.preview-story-media picture {
	display: block;
	width: 100%;
	height: 100% !important;
}

.preview-story-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.preview-story-card:hover .preview-story-media img,
.preview-story-card:focus-visible .preview-story-media img {
	transform: scale(1.025);
}

.preview-story-content {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	gap: 10px;
	flex: 1;
	padding: 18px;
}

.preview-story-body {
	display: grid;
	align-content: start;
	gap: 8px;
	min-width: 0;
}

.preview-story-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--ci-primary-dark);
	font-size: 11px;
	font-weight: 800;
}

.preview-story-meta small {
	padding-left: 10px;
	border-left: 1px solid var(--ci-line);
	color: var(--ci-gray);
	font-size: 10px;
}

.preview-story-card h3 {
	margin: 0;
	color: var(--ci-ink);
	font-size: 17px;
	font-weight: 800;
	line-height: 1.5;
	overflow-wrap: anywhere;
}

.preview-story-card p {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	color: var(--ci-gray);
	font-size: 12px;
	line-height: 1.75;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.preview-image-credits {
	margin-top: 16px;
	color: var(--ci-gray);
	font-size: 10px;
}

.preview-image-credits summary {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	cursor: pointer;
	font-size: 11px;
	font-weight: 700;
}

.preview-image-credits ul {
	display: grid;
	gap: 4px;
	margin: 8px 0 0;
	padding: 12px 14px;
	border-left: 2px solid var(--ci-line);
	list-style: none;
}

.preview-image-credits li {
	line-height: 1.7;
}

.preview-image-credits li > span {
	color: var(--ci-ink);
	font-weight: 700;
}

.preview-image-credits a {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.preview-image-credits small {
	display: block;
	font-size: inherit;
}

.preview-stories-all {
	display: table;
	margin: 22px auto 0;
	padding-bottom: 3px;
	border-bottom: 1px solid var(--ci-primary-dark);
	color: var(--ci-primary-dark);
	font-size: 13px;
	font-weight: 800;
}

.shop-picks-section {
	background: #fff;
}

.media-category-section {
	background: var(--ci-bg-soft);
}

.media-area-section {
	background: #fff;
}

.media-head {
	margin-bottom: 20px;
}

.section-lead {
	max-width: 640px;
	margin: -6px 0 20px;
	color: var(--ci-gray);
	font-size: 13px;
	line-height: 1.8;
}

.story-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.85fr);
	gap: 20px;
}

.story-main,
.story-mini {
	background: #fff;
	border: 1px solid var(--ci-line);
	border-radius: var(--ci-radius);
	overflow: hidden;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.story-main:hover,
.story-mini:hover {
	transform: translateY(-2px);
	box-shadow: var(--ci-shadow-soft);
}

.story-main {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
	min-height: 360px;
}

.story-main img,
.story-mini img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.story-main > div {
	display: grid;
	align-content: end;
	gap: 12px;
	padding: 28px;
}

.story-main h3 {
	margin: 0;
	color: var(--ci-ink);
	font-size: 26px;
	font-weight: 800;
	line-height: 1.45;
}

.story-main p {
	margin: 0;
	color: var(--ci-gray);
	font-size: 13px;
	line-height: 1.9;
}

.story-side {
	display: grid;
	gap: 20px;
}

.story-mini {
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr);
	min-height: 170px;
}

.story-mini > div {
	display: grid;
	align-content: center;
	gap: 8px;
	padding: 18px;
}

.story-mini span {
	color: var(--ci-primary-dark);
	font-family: Inter, "Noto Sans JP", system-ui, sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.16em;
}

.story-mini strong {
	color: var(--ci-ink);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.55;
}

.product-grid--compact {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-grid--media {
	grid-template-columns: repeat(8, minmax(0, 1fr));
}

@media (max-width: 1180px) {
	.media-hero-inner {
		grid-template-columns: minmax(0, 1fr) 300px;
		gap: 34px;
	}

	.story-layout {
		grid-template-columns: 1fr;
	}

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

	.category-grid--media {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.media-hero {
		min-height: 444px;
		background:
			linear-gradient(180deg, rgba(5, 7, 10, 0.18), rgba(5, 7, 10, 0.82)),
			var(--hero-image) center / cover no-repeat,
			var(--ci-black);
	}

	.media-hero-inner {
		display: grid;
		grid-template-columns: 1fr;
		gap: 26px;
		padding: 72px 0 26px;
	}

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

	.hero-statement {
		font-size: 22px;
	}

	.media-hero .hero-lead {
		font-size: 13px;
	}

	.hero-actions {
		gap: 8px;
	}

	.hero-actions a {
		min-height: 38px;
		padding: 0 12px;
		font-size: 12px;
	}

	.hero-current-story {
		gap: 7px;
		padding-top: 14px;
	}

	.hero-current-story strong {
		font-size: 14px;
	}

	.entry-section {
		padding: 18px 0 30px;
	}

	.entry-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.entry-card {
		min-height: 0;
		padding: 16px;
	}

	.entry-card strong {
		font-size: 20px;
	}

	.stories-section,
	.preview-stories-section,
	.shop-picks-section,
	.media-category-section,
	.media-area-section {
		padding: 34px 0;
	}

	.story-main {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.story-main img {
		aspect-ratio: 16 / 10;
		height: auto;
	}

	.story-main > div {
		padding: 18px;
	}

	.story-main h3 {
		font-size: 20px;
	}

	.story-side {
		grid-template-columns: 1fr;
		gap: 12px;
	}

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

	.preview-story-card {
		min-height: 164px;
	}

	.preview-story-content {
		padding: 16px;
	}

	.preview-story-card h3 {
		font-size: 17px;
	}

	.story-mini {
		grid-template-columns: 132px minmax(0, 1fr);
		min-height: 128px;
	}

	.story-mini > div {
		padding: 12px;
	}

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

	.category-grid--media {
		display: flex;
		grid-template-columns: none;
	}
}

@media (max-width: 370px) {
	.media-hero h1 {
		font-size: 32px;
	}

	.hero-statement {
		font-size: 19px;
	}

	.story-mini {
		grid-template-columns: 116px minmax(0, 1fr);
	}
}

/* Content guidance pass */
html {
	scroll-behavior: smooth;
}

body.is-front :target {
	scroll-margin-top: 96px;
}

.guide-section {
	padding: 34px 0 56px;
	background: #fff;
	border-bottom: 1px solid var(--ci-line);
}

.guide-shell {
	display: grid;
	grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
	gap: 18px;
	align-items: stretch;
}

.guide-panel,
.guide-lane {
	border: 1px solid var(--ci-line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 1px 0 rgba(18, 55, 72, 0.04);
}

.guide-panel {
	display: grid;
	gap: 20px;
	padding: 24px;
	background:
		linear-gradient(135deg, rgba(221, 247, 253, 0.92), rgba(255, 255, 255, 0.96) 55%),
		#fff;
}

.guide-copy {
	display: grid;
	gap: 7px;
}

.guide-copy p,
.guide-lane span {
	margin: 0;
	color: var(--ci-primary-dark);
	font-family: Inter, "Noto Sans JP", system-ui, sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.18em;
}

.guide-copy h2 {
	margin: 0;
	color: var(--ci-ink);
	font-size: 28px;
	font-weight: 800;
	line-height: 1.35;
}

.guide-copy span {
	color: var(--ci-gray);
	font-size: 13px;
	line-height: 1.8;
}

.guide-search {
	display: flex;
	align-items: stretch;
	min-height: 54px;
	border: 1px solid rgba(19, 139, 176, 0.22);
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
}

.guide-search input {
	width: 100%;
	min-width: 0;
	padding: 0 16px;
	border: 0;
	outline: 0;
	color: var(--ci-ink);
	font-size: 15px;
}

.guide-search button {
	flex: 0 0 auto;
	min-width: 92px;
	border: 0;
	background: var(--ci-black);
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
	transition: background 0.18s ease;
}

.guide-search button:hover,
.guide-search button:focus-visible {
	background: var(--ci-primary-dark);
}

.guide-shortcuts {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.guide-shortcuts a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 0 13px;
	border: 1px solid rgba(19, 139, 176, 0.2);
	border-radius: 999px;
	background: #fff;
	color: var(--ci-ink);
	font-size: 13px;
	font-weight: 800;
	transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.guide-shortcuts a:hover,
.guide-shortcuts a:focus-visible {
	border-color: rgba(19, 139, 176, 0.36);
	background: var(--ci-primary-light);
	color: var(--ci-primary-dark);
}

.guide-lanes {
	display: grid;
	gap: 10px;
}

.guide-lane {
	position: relative;
	display: grid;
	gap: 7px;
	align-content: center;
	min-height: 116px;
	padding: 18px 42px 18px 18px;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.guide-lane::after {
	position: absolute;
	top: 50%;
	right: 20px;
	width: 9px;
	height: 9px;
	border-right: 2px solid var(--ci-primary-dark);
	border-bottom: 2px solid var(--ci-primary-dark);
	transform: translateY(-50%) rotate(-45deg);
	content: "";
}

.guide-lane:hover,
.guide-lane:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(19, 139, 176, 0.32);
	box-shadow: var(--ci-shadow-soft);
}

.guide-lane strong {
	color: var(--ci-ink);
	font-size: 18px;
	font-weight: 800;
	line-height: 1.35;
}

.guide-lane small {
	color: var(--ci-gray);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.75;
}

.media-head + .section-lead {
	margin-top: -10px;
	margin-bottom: 22px;
}

.category-grid--media .cat-tile {
	min-height: 132px;
	border-radius: 8px;
}

.area-tile {
	border-radius: 8px;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.area-tile:hover,
.area-tile:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(19, 139, 176, 0.32);
	box-shadow: var(--ci-shadow-soft);
}

@media (max-width: 1180px) {
	.guide-shell {
		grid-template-columns: minmax(0, 1fr);
	}

	.guide-lanes {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	body.is-front :target {
		scroll-margin-top: 72px;
	}

	.guide-section {
		padding: 24px 0 38px;
	}

	.guide-panel {
		gap: 16px;
		padding: 18px;
	}

	.guide-copy h2 {
		font-size: 22px;
	}

	.guide-search {
		min-height: 50px;
	}

	.guide-search input {
		padding: 0 12px;
		font-size: 13px;
	}

	.guide-search button {
		min-width: 74px;
		font-size: 13px;
	}

	.guide-lanes {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.guide-lane {
		min-height: 92px;
		padding: 14px 38px 14px 15px;
	}

	.guide-lane strong {
		font-size: 16px;
	}

	.category-grid--media .cat-tile {
		flex: 0 0 116px;
		min-height: 124px;
	}
}

/* Keep the navigation layer visible sooner on desktop. */
@media (min-width: 901px) {
	.media-hero {
		min-height: clamp(420px, 52vh, 540px);
	}

	.media-hero-inner {
		padding: 60px 0 38px;
	}

	.entry-section {
		padding: 22px 0 34px;
	}

	.entry-card {
		min-height: 122px;
		padding: 18px 20px;
	}

	.entry-card strong {
		font-size: 23px;
	}
}

@media (max-width: 900px) {
	.entry-section {
		padding: 12px 0 18px;
	}

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

	.entry-card {
		min-height: 76px;
		padding: 11px 8px;
		border-radius: 8px;
		text-align: center;
	}

	.entry-card span {
		font-size: 9px;
		letter-spacing: 0.12em;
	}

	.entry-card strong {
		font-size: 17px;
	}

	.entry-card p {
		display: none;
	}
}

/* PC/SP UI foundation pass */
.hero-search-panel {
	display: flex;
	align-items: stretch;
	width: min(100%, 560px);
	min-height: 52px;
	margin-top: 22px;
	border: 1px solid rgba(255, 255, 255, 0.42);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 18px 44px rgba(5, 7, 10, 0.18);
	overflow: hidden;
}

.hero-search-panel input {
	flex: 1 1 auto;
	width: auto;
	min-width: 0;
	padding: 0 16px;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--ci-ink);
	font-size: 14px;
}

.hero-search-panel button {
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	min-width: 58px;
	border: 0;
	background: var(--ci-primary-dark);
	color: #fff;
	cursor: pointer;
}

.hero-search-panel button svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

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

.entry-card--search {
	background: linear-gradient(135deg, #fff, rgba(241, 244, 246, 0.96));
}

.media-hero .hero-actions {
	margin-top: 18px;
}

.media-hero .hero-current-story {
	align-self: end;
	box-sizing: border-box;
	width: 100%;
	min-width: 0;
	max-width: 100%;
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-top: 3px solid var(--ci-primary);
	border-radius: 8px;
	background: rgba(5, 7, 10, 0.34);
	backdrop-filter: blur(14px);
}

.media-hero .hero-current-story span {
	display: flex;
	align-items: center;
	gap: 8px;
}

.media-hero .hero-current-story span b {
	color: var(--ci-primary);
	font: inherit;
}

.media-hero .hero-current-story small {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.media-hero .hero-current-story small i {
	font-family: inherit;
	font-size: 16px;
	font-style: normal;
	letter-spacing: 0;
}

.media-hero .hero-current-story:hover,
.media-hero .hero-current-story:focus-visible {
	background: rgba(5, 7, 10, 0.46);
}

.hero-featured-panel {
	align-self: end;
	min-width: 0;
}

.hero-slider-nav {
	display: flex;
	justify-content: flex-end;
	gap: 9px;
	margin-top: 14px;
}

.hero-slider-dot {
	width: 28px;
	height: 28px;
	padding: 0;
	border: 0;
	background: transparent;
	position: relative;
}

.hero-slider-dot::before {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.46);
	content: "";
	transform: translate(-50%, -50%);
	transition: width 0.2s ease, background 0.2s ease;
}

.hero-slider-dot:hover::before,
.hero-slider-dot:focus-visible::before,
.hero-slider-dot.is-active::before {
	width: 20px;
	border-radius: 999px;
	background: var(--ci-primary);
}

.story-main h3,
.story-mini strong,
.pcard h3,
.cat-tile strong,
.area-tile strong {
	overflow-wrap: anywhere;
}

.media-hero-copy,
.hero-search-panel,
.entry-grid,
.entry-card,
.guide-shell,
.guide-panel,
.guide-lane {
	box-sizing: border-box;
	min-width: 0;
	max-width: 100%;
}

@media (min-width: 901px) {
	.media-hero {
		min-height: clamp(500px, 62vh, 650px);
	}

	.media-hero-inner {
		grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
		gap: 44px;
		padding: 72px 0 46px;
	}

	.media-hero h1 {
		font-size: clamp(40px, 4.6vw, 60px);
	}

	.entry-section {
		padding: 20px 0 38px;
	}

	.entry-card {
		min-height: 118px;
		padding: 18px;
		border-radius: 8px;
	}

	.entry-card strong {
		font-size: 22px;
	}

	.entry-card p {
		font-size: 12px;
		line-height: 1.7;
	}
}

@media (max-width: 900px) {
	.site-header {
		position: sticky;
		top: 0;
	}

	.media-hero {
		min-height: clamp(660px, calc(100svh - 58px), 740px);
		align-items: end;
		background:
			linear-gradient(180deg, rgba(5, 7, 10, 0.03), rgba(5, 7, 10, 0.1) 38%, rgba(5, 7, 10, 0.52) 62%, rgba(5, 7, 10, 0.92) 82%, rgba(5, 7, 10, 0.98)),
			var(--hero-image-mobile, var(--hero-image)) 42% center / cover no-repeat,
			var(--ci-black);
	}

	.media-hero-slide {
		background:
			linear-gradient(180deg, rgba(5, 7, 10, 0.03), rgba(5, 7, 10, 0.1) 38%, rgba(5, 7, 10, 0.52) 62%, rgba(5, 7, 10, 0.92) 82%, rgba(5, 7, 10, 0.98)),
			var(--slide-image-mobile, var(--slide-image)) var(--slide-mobile-position, 50% 50%) / cover no-repeat,
			var(--ci-black);
	}

	.media-hero-inner {
		gap: 18px;
		padding: 86px 0 20px;
	}

	.media-hero .eyebrow {
		text-shadow: 0 1px 12px rgba(0, 0, 0, 0.72);
		font-size: 10px;
	}

	.media-hero h1 {
		max-width: 540px;
		font-size: 34px;
		line-height: 1.25;
		text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
	}

	.media-hero h1 span {
		display: block;
	}

	.hero-statement {
		margin-top: 12px;
		font-size: 20px;
	}

	.media-hero .hero-lead {
		max-width: 340px;
		margin-top: 8px;
		color: rgba(255, 255, 255, 0.9);
		font-size: 13px;
		line-height: 1.75;
	}

	.hero-search-panel {
		display: flex;
		width: 100%;
		min-height: 48px;
		margin-top: 16px;
		box-shadow: 0 12px 28px rgba(5, 7, 10, 0.22);
	}

	.hero-search-panel input {
		padding: 0 12px;
		font-size: 13px;
	}

	.hero-search-panel button {
		width: 66px;
		min-width: 0;
		font-size: 12px;
	}

	.media-hero .hero-actions {
		display: none;
	}

	.media-hero .hero-current-story {
		gap: 6px;
		padding: 14px;
		border-radius: 8px;
		background: rgba(5, 7, 10, 0.68);
		backdrop-filter: blur(10px);
	}

	.hero-slider-nav {
		justify-content: center;
		margin-top: 8px;
	}

	.apply-section .btn--light {
		justify-self: stretch;
		width: 100%;
		min-height: 52px;
		padding: 0 18px;
		color: var(--ci-black);
		font-size: 14px;
	}

	.apply-inner h2 span {
		display: block;
	}

	.apply-inner h2 span + span::before {
		content: none;
	}

	.media-hero .hero-current-story strong {
		display: -webkit-box;
		overflow: hidden;
		font-size: 13px;
		line-height: 1.55;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.entry-section {
		position: relative;
		z-index: 2;
		margin-top: -1px;
		padding: 10px 0 18px;
	}

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

	.entry-card {
		justify-items: center;
		min-height: 72px;
		padding: 10px 6px;
		border-radius: 8px;
		overflow: hidden;
		text-align: center;
	}

	.entry-card span {
		max-width: 100%;
		overflow: hidden;
		font-size: 8px;
		letter-spacing: 0.08em;
		text-overflow: ellipsis;
	}

	.entry-card strong {
		font-size: 16px;
		line-height: 1.15;
	}

	.guide-section {
		padding-top: 18px;
	}

	.guide-copy h2 {
		font-size: 20px;
	}

	.section-lead {
		font-size: 12px;
	}
}

@media (min-width: 600px) and (max-width: 900px) {
	.media-hero-slide {
		background:
			linear-gradient(180deg, rgba(5, 7, 10, 0.03), rgba(5, 7, 10, 0.1) 38%, rgba(5, 7, 10, 0.52) 62%, rgba(5, 7, 10, 0.92) 82%, rgba(5, 7, 10, 0.98)),
			var(--slide-image-tablet, var(--slide-image-mobile, var(--slide-image))) var(--slide-tablet-position, 50% 50%) / cover no-repeat,
			var(--ci-black);
	}
}

@media (prefers-reduced-motion: reduce) {
	.media-hero-slide {
		transform: none;
		transition: none;
	}
}

@media (max-width: 420px) {
	body.is-front .wrap {
		width: min(100% - 28px, var(--ci-wrap));
	}

	.media-hero {
		min-height: clamp(660px, calc(100svh - 58px), 720px);
	}

	.media-hero h1 {
		max-width: 330px;
		font-size: 30px;
	}

	.hero-statement {
		font-size: 18px;
	}

	.entry-grid {
		gap: 6px;
	}

	.entry-card {
		min-height: 68px;
		padding-inline: 4px;
	}

	.entry-card strong {
		font-size: 15px;
	}
}

@media (max-width: 900px) {
	body.is-front .media-hero .hero-search-panel {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) 52px !important;
		gap: 0;
		align-items: stretch;
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		min-height: 48px;
		padding: 0;
		border: 1px solid rgba(255, 255, 255, 0.6);
		border-radius: 8px;
		background: rgba(255, 255, 255, 0.97);
		box-shadow: 0 12px 28px rgba(5, 7, 10, 0.22);
		overflow: hidden;
		box-sizing: border-box;
	}

	body.is-front .media-hero .hero-search-panel input {
		grid-column: 1;
		width: 100% !important;
		min-width: 0 !important;
		max-width: none !important;
		height: 46px;
		border-radius: 0;
		background: transparent;
		box-sizing: border-box;
	}

	body.is-front .media-hero .hero-search-panel button {
		display: grid !important;
		place-items: center;
		grid-column: 2;
		width: 52px !important;
		min-width: 0;
		height: 46px;
		padding: 0;
		border-left: 1px solid var(--ci-line);
		border-radius: 0;
		background: #fff;
		color: var(--ci-primary-dark);
		position: relative;
		z-index: 1;
	}

	body.is-front .media-hero .hero-current-story {
		width: 100% !important;
		min-width: 0 !important;
		max-width: 100% !important;
		overflow: hidden;
	}

	body.is-front .media-hero .hero-current-story strong {
		font-size: 13px;
		word-break: break-word;
		overflow-wrap: anywhere;
		-webkit-line-clamp: 2;
	}

	body.is-front .entry-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}
}

/* Mobile editorial hero: use prepared 4:5 portraits without runtime zooming. */
@media (max-width: 430px) {
	body.is-front .media-hero {
		display: grid;
		align-items: end;
		aspect-ratio: 4 / 5;
		height: auto;
		min-height: 0;
		max-height: none;
		padding-top: 0;
		background: var(--ci-black);
	}

	body.is-front .media-hero-slides {
		inset: 0;
		height: auto;
	}

	body.is-front .media-hero-slide {
		background:
			linear-gradient(180deg, rgba(5, 7, 10, 0.02), rgba(5, 7, 10, 0.08) 34%, rgba(5, 7, 10, 0.72) 68%, rgba(5, 7, 10, 0.98)),
			var(--slide-image-mobile, var(--slide-image)) var(--slide-mobile-position, 50% 50%) / cover no-repeat,
			var(--ci-black);
		transform: none;
		transition: opacity 0.5s ease;
	}

	body.is-front .media-hero-inner {
		gap: 10px;
		padding: clamp(168px, 43vw, 188px) 0 10px;
	}

	body.is-front .media-hero h1 {
		font-size: 30px;
	}

	body.is-front .media-hero .hero-lead {
		display: none;
	}

	body.is-front .media-hero .hero-search-panel {
		display: none !important;
	}

	body.is-front .media-hero .hero-current-story {
		padding: 10px 12px;
		background: rgba(5, 7, 10, 0.72);
		backdrop-filter: blur(8px);
	}

	body.is-front .media-hero .hero-slider-nav {
		margin-top: 4px;
	}

	body.is-front .entry-section {
		padding: 8px 0 12px;
	}
}

/* Keep category and area rows visually balanced at every responsive width. */
.category-grid.category-grid--media {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin-inline: 0;
	padding: 0;
	overflow: visible;
}

.category-grid.category-grid--media .cat-tile {
	width: auto;
	min-width: 0;
	min-height: 132px;
	flex: none;
}

.category-grid.category-grid--media.category-grid--count-7 {
	grid-template-columns: repeat(7, minmax(0, 1fr));
}

.media-category-section--primary .category-grid.category-grid--media.category-grid--count-7 {
	grid-template-columns: repeat(12, minmax(0, 1fr));
}

.media-category-section--primary .category-grid--count-7 > .cat-tile {
	grid-column: span 3;
	min-height: 154px;
}

.media-category-section--primary .category-grid--count-7 > .cat-tile:nth-child(n + 5) {
	grid-column: span 4;
}

.media-category-section--primary .cat-tile strong {
	overflow: visible;
	font-size: 14px;
	text-overflow: clip;
	white-space: normal;
}

.media-category-section--primary .cat-tile small {
	max-width: 130px;
	font-family: inherit;
	font-size: 10px;
	font-weight: 600;
	line-height: 1.55;
	letter-spacing: 0;
}

@media (min-width: 561px) and (max-width: 1180px) {
	.preview-story-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.category-grid.category-grid--media.category-grid--count-7,
	.area-grid--count-7 {
		grid-template-columns: repeat(12, minmax(0, 1fr));
	}

	.category-grid--count-7 > .cat-tile,
	.area-grid--count-7 > .area-tile {
		grid-column: span 3;
	}

	.category-grid--count-7 > .cat-tile:nth-child(n + 5),
	.area-grid--count-7 > .area-tile:nth-child(n + 5) {
		grid-column: span 4;
	}
}

@media (max-width: 560px) {
	.preview-story-grid {
		grid-template-columns: 1fr;
	}

	.preview-story-card {
		min-height: 0;
	}

	.preview-story-media {
		aspect-ratio: 4 / 3;
	}

	.category-grid.category-grid--media,
	.category-grid.category-grid--media.category-grid--count-7 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.category-grid.category-grid--media .cat-tile {
		min-height: 116px;
	}

	.media-category-section--primary .category-grid--count-7 > .cat-tile {
		grid-column: auto;
		min-height: 132px;
	}

	.category-grid--count-7 > .cat-tile:last-child,
	.area-grid--count-7 > .area-tile:last-child {
		grid-column: 1 / -1;
	}
}

/* Upper portal navigation: separate user purposes from editorial formats. */
.chikuho-area-section {
	padding: 44px 0 36px;
	border-bottom: 1px solid var(--ci-line);
	background: #fff;
}

.chikuho-area-section .section-head {
	margin-bottom: 0;
}

.chikuho-area-section .section-lead {
	margin: 12px 0 24px;
}

.chikuho-area-section .category-grid.category-grid--media .cat-tile,
.chikuho-area-section .category-grid--count-7 > .cat-tile,
.chikuho-area-section .category-grid--count-7 > .cat-tile:nth-child(n + 5) {
	grid-column: auto;
	min-height: 132px;
}

.chikuho-channel-nav {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 26px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	background: transparent;
	color: #fff;
}

.media-hub-section {
	padding: 40px 0 44px;
	background: var(--ci-black);
	color: #fff;
}

.media-hub-head {
	display: flex;
	gap: 32px;
	align-items: end;
	justify-content: space-between;
}

.media-hub-head > div > p {
	margin: 0 0 6px;
	color: var(--ci-primary);
	font-size: 11px;
	font-weight: 800;
}

.media-hub-head h2 {
	margin: 0;
	color: #fff;
	font-size: 27px;
	font-weight: 800;
	line-height: 1.4;
}

.media-hub-lead {
	max-width: 430px;
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.75;
}

.chikuho-channel-nav a {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	grid-template-areas:
		"eyebrow arrow"
		"title arrow"
		"lead arrow";
	gap: 2px 12px;
	align-content: center;
	min-width: 0;
	min-height: 104px;
	padding: 17px 18px;
	border-left: 1px solid rgba(255, 255, 255, 0.16);
	transition: background 0.18s ease;
}

.chikuho-channel-nav a:first-child {
	border-left: 0;
}

.chikuho-channel-nav a:hover,
.chikuho-channel-nav a:focus-visible {
	background: rgba(96, 200, 232, 0.14);
}

.chikuho-channel-nav span {
	grid-area: eyebrow;
	color: var(--ci-primary);
	font-family: Inter, "Noto Sans JP", system-ui, sans-serif;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0;
}

.chikuho-channel-nav strong {
	grid-area: title;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.4;
}

.chikuho-channel-nav small {
	grid-area: lead;
	color: rgba(255, 255, 255, 0.68);
	font-size: 10px;
	font-weight: 600;
	line-height: 1.5;
}

.chikuho-channel-nav i {
	grid-area: arrow;
	align-self: center;
	font-size: 16px;
	font-style: normal;
}

@media (min-width: 1181px) {
	.chikuho-area-section .category-grid.category-grid--media.category-grid--count-7 {
		grid-template-columns: repeat(7, minmax(0, 1fr));
	}
}

@media (max-width: 700px) {
	.chikuho-area-section {
		padding: 28px 0 24px;
	}

	.chikuho-area-section .section-lead {
		margin: 10px 0 18px;
	}

	.chikuho-area-section .category-grid.category-grid--media.category-grid--count-7 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.chikuho-area-section .category-grid.category-grid--media .cat-tile,
	.chikuho-area-section .category-grid--count-7 > .cat-tile,
	.chikuho-area-section .category-grid--count-7 > .cat-tile:nth-child(n + 5) {
		min-height: 112px;
		padding: 12px 8px;
	}

	.chikuho-area-section .category-grid--count-7 > .cat-tile:last-child {
		grid-column: 1 / -1;
	}

	.chikuho-channel-nav {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-top: 18px;
	}

	.chikuho-channel-nav a {
		min-height: 84px;
		padding: 12px;
		border-top: 1px solid rgba(255, 255, 255, 0.16);
	}

	.chikuho-channel-nav a:nth-child(odd) {
		border-left: 0;
	}

	.chikuho-channel-nav a:nth-child(-n + 2) {
		border-top: 0;
	}

	.chikuho-channel-nav small {
		display: block;
	}
}

/* Field photography: visual entrances to shopping, events and travel. */
.field-scenes-section {
	padding: 52px 0 58px;
	border-bottom: 1px solid var(--ci-line);
	background: var(--ci-bg-soft);
}

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

.field-scene {
	min-width: 0;
	border: 1px solid var(--ci-line);
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
	color: var(--ci-ink);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.field-scene:hover,
.field-scene:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(19, 139, 176, 0.32);
	box-shadow: var(--ci-shadow-soft);
}

.field-scene-media {
	display: block;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: #dfe9ec;
}

.field-scene-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.field-scene-copy {
	position: relative;
	display: grid;
	gap: 5px;
	min-height: 118px;
	padding: 17px 48px 18px 18px;
}

.field-scene-copy small {
	color: var(--ci-primary-dark);
	font-family: Inter, "Noto Sans JP", system-ui, sans-serif;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0;
}

.field-scene-copy strong {
	font-size: 18px;
	font-weight: 800;
	line-height: 1.45;
}

.field-scene-copy em {
	color: var(--ci-gray);
	font-size: 12px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.6;
}

.field-scene-copy i {
	position: absolute;
	top: 50%;
	right: 18px;
	color: var(--ci-primary-dark);
	font-size: 18px;
	font-style: normal;
	transform: translateY(-50%);
}

@media (max-width: 700px) {
	.field-scenes-section {
		padding: 32px 0 38px;
	}

	.field-scenes-grid {
		display: flex;
		gap: 12px;
		padding-bottom: 8px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.field-scenes-grid::-webkit-scrollbar {
		display: none;
	}

	.field-scene {
		flex: 0 0 min(80vw, 320px);
		scroll-snap-align: start;
	}

	.field-scene-media {
		aspect-ratio: 4 / 5;
	}

	.field-scene-copy {
		min-height: 104px;
		padding: 14px 42px 15px 15px;
	}

	.field-scene-copy strong {
		font-size: 16px;
	}

	.chikuho-area-section .category-grid.category-grid--media.category-grid--count-7 {
		gap: 8px;
	}

	.chikuho-area-section .category-grid.category-grid--media .cat-tile,
	.chikuho-area-section .category-grid--count-7 > .cat-tile,
	.chikuho-area-section .category-grid--count-7 > .cat-tile:nth-child(n + 5) {
		position: relative;
		display: grid;
		grid-template-columns: 38px minmax(0, 1fr) 14px;
		gap: 10px;
		align-items: center;
		place-items: initial;
		min-height: 64px;
		padding: 10px 10px;
		border-color: #d9e6ea;
		border-radius: 6px;
		background: #fbfdfe;
		text-align: left;
	}

	.chikuho-area-section .category-grid.category-grid--media .cat-tile::after {
		color: var(--cat-fg);
		font-size: 16px;
		font-weight: 800;
		content: "→";
	}

	.chikuho-area-section .category-grid.category-grid--media .cat-tile:active {
		background: color-mix(in srgb, var(--cat-fg) 8%, white);
		transform: scale(0.985);
	}

	.chikuho-area-section .category-grid.category-grid--media .cat-tile > span {
		width: 38px;
		height: 38px;
		border-radius: 6px;
		font-size: 15px;
	}

	.chikuho-area-section .category-grid.category-grid--media .cat-tile strong {
		font-size: 14px;
		line-height: 1.35;
	}

	.chikuho-area-section .category-grid.category-grid--media .cat-tile small {
		display: none;
	}

	.chikuho-area-section .category-grid--count-7 > .cat-tile:last-child {
		min-height: 60px;
	}

	.media-hub-section {
		padding: 28px 0 32px;
	}

	.media-hub-head {
		display: grid;
		gap: 8px;
	}

	.media-hub-head h2 {
		font-size: 22px;
	}

	.media-hub-lead {
		max-width: 320px;
		font-size: 11px;
		line-height: 1.7;
	}

	.chikuho-channel-nav a {
		min-height: 96px;
		padding: 13px;
	}

	.chikuho-channel-nav strong {
		font-size: 15px;
	}

	.chikuho-channel-nav small {
		font-size: 9px;
		line-height: 1.45;
	}
}

/* Category finder: photo-led priorities with compact secondary actions. */
.category-primary-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.category-card {
	position: relative;
	display: grid;
	grid-template-rows: auto auto;
	min-width: 0;
	border: 1px solid #d7e5ea;
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.category-card:hover,
.category-card:focus-visible {
	border-color: color-mix(in srgb, var(--cat-fg) 48%, white);
	box-shadow: 0 12px 28px rgba(16, 42, 54, 0.12);
	transform: translateY(-2px);
}

.category-card-media {
	position: relative;
	display: block;
	min-height: 0;
	aspect-ratio: 16 / 10;
	background: #eef5f7;
	overflow: hidden;
}

.category-card-media::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(5, 7, 10, 0) 48%, rgba(5, 7, 10, 0.34));
	content: "";
}

.category-card-media img {
	display: block;
	width: 100%;
	height: auto !important;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	object-position: var(--cat-image-position, 50% 50%);
	transition: transform 0.35s ease;
}

.category-card:hover .category-card-media img,
.category-card:focus-visible .category-card-media img {
	transform: scale(1.025);
}

.category-card-media b {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--cat-fg);
	font-size: 15px;
	font-weight: 800;
}

.category-card-copy {
	position: relative;
	display: grid;
	gap: 4px;
	min-height: 82px;
	padding: 13px 40px 13px 14px;
}

.category-card-copy strong {
	color: var(--ci-ink);
	font-size: 16px;
	font-weight: 800;
	line-height: 1.4;
}

.category-card-copy small {
	color: var(--ci-gray);
	font-size: 11px;
	font-weight: 600;
	line-height: 1.5;
}

.category-card-copy i {
	position: absolute;
	top: 50%;
	right: 14px;
	color: var(--cat-fg);
	font-size: 18px;
	font-style: normal;
	font-weight: 800;
	transform: translateY(-50%);
}

.category-shortcuts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-top: 12px;
}

.category-shortcuts a {
	display: grid;
	grid-template-columns: 36px minmax(0, 1fr) auto;
	gap: 10px;
	align-items: center;
	min-height: 62px;
	padding: 10px 14px;
	border: 1px solid #d7e5ea;
	border-radius: 8px;
	background: #f9fcfd;
	transition: border-color 0.18s ease, background 0.18s ease;
}

.category-shortcuts a:hover,
.category-shortcuts a:focus-visible {
	border-color: color-mix(in srgb, var(--cat-fg) 42%, white);
	background: color-mix(in srgb, var(--cat-fg) 6%, white);
}

.category-shortcuts span {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 6px;
	background: color-mix(in srgb, var(--cat-fg) 12%, white);
	color: var(--cat-fg);
	font-size: 14px;
	font-weight: 800;
}

.category-shortcuts strong {
	min-width: 0;
	color: var(--ci-ink);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.35;
}

.category-shortcuts i {
	color: var(--cat-fg);
	font-size: 16px;
	font-style: normal;
	font-weight: 800;
}

@media (max-width: 900px) {
	.category-primary-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.category-card {
		grid-template-rows: auto minmax(76px, auto);
	}

	.category-card-media {
		aspect-ratio: 3 / 2;
	}

	.category-card-media img {
		aspect-ratio: 3 / 2;
	}
}

@media (max-width: 560px) {
	.chikuho-area-section .section-lead {
		max-width: 310px;
		font-size: 12px;
		line-height: 1.7;
	}

	.category-card-copy {
		gap: 2px;
		min-height: 78px;
		padding: 11px 30px 11px 11px;
	}

	.category-card-copy strong {
		font-size: 14px;
	}

	.category-card-copy small {
		display: -webkit-box;
		overflow: hidden;
		font-size: 10px;
		line-height: 1.45;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.category-card-copy i {
		right: 10px;
		font-size: 16px;
	}

	.category-card-media b {
		top: 8px;
		left: 8px;
		width: 30px;
		height: 30px;
		font-size: 13px;
	}

	.category-shortcuts {
		gap: 7px;
		margin-top: 10px;
	}

	.category-shortcuts a {
		grid-template-columns: 1fr;
		justify-items: center;
		gap: 5px;
		min-height: 78px;
		padding: 8px 4px;
		text-align: center;
	}

	.category-shortcuts span {
		width: 30px;
		height: 30px;
		font-size: 12px;
	}

	.category-shortcuts strong {
		font-size: 12px;
	}

	.category-shortcuts i {
		display: none;
	}

}
