/* ==============================
   Design Tokens
   ============================== */
:root {
	--key: #62BCEA;
	--key-600: #2F9BD0;
	--key-700: #1B7FB0;
	--key-50: #EEF8FD;
	--key-100: #D8EFFA;
	--ink: #0C1821;
	--ink-2: #33414D;
	--ink-3: #6A7785;
	--line: #E7ECF1;
	--line-2: #F1F4F7;
	--bg: #FFFFFF;
	--bg-2: #F7FAFC;
	--bg-3: #FBFCFD;
	--radius: 14px;
	--radius-lg: 22px;
	--maxw: 1240px;
	--shadow-sm: 0 2px 10px rgba(12,24,33,.04);
	--shadow: 0 20px 50px -20px rgba(12,24,33,.18), 0 2px 6px rgba(12,24,33,.04);
	--shadow-key: 0 18px 40px -16px rgba(98,188,234,.55);
	--fs-jp: "Zen Kaku Gothic New", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic UI", Meiryo, sans-serif;
	--fs-en: "Inter", system-ui, sans-serif;
	--fs-mono: "JetBrains Mono", ui-monospace, monospace;
}

/* ==============================
   Base Reset
   ============================== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
	font-family: var(--fs-jp);
	color: var(--ink);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	font-feature-settings: "palt" 1;
	line-height: 1.75;
	letter-spacing: .02em;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ==============================
   Navigation
   ============================== */
.nav {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(255,255,255,.78);
	backdrop-filter: saturate(140%) blur(14px);
	-webkit-backdrop-filter: saturate(140%) blur(14px);
	border-bottom: 1px solid rgba(12,24,33,.06);
}
.nav-inner {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 14px 28px;
	display: flex;
	align-items: center;
	gap: 28px;
}
.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	letter-spacing: .04em;
}
.brand-mark {
	width: 30px;
	height: 30px;
	border-radius: 9px;
	background: linear-gradient(135deg, var(--key) 0%, var(--key-600) 100%);
	position: relative;
	overflow: hidden;
	box-shadow: 0 6px 16px -4px rgba(98,188,234,.55);
	flex-shrink: 0;
}
.brand-mark::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 30% 30%, rgba(255,255,255,.6), transparent 40%),
		repeating-linear-gradient(90deg, rgba(255,255,255,.18) 0 1px, transparent 1px 4px);
}
/* カスタムロゴ画像 */
.brand-logo {
	width: 30px;
	height: 30px;
	border-radius: 5px;
	object-fit: contain;
	flex-shrink: 0;
	display: block;
}

.brand small {
	font-family: var(--fs-en);
	color: var(--ink-3);
	font-weight: 500;
	font-size: 11px;
	display: block;
	line-height: 1;
	margin-top: 2px;
	letter-spacing: .12em;
}
.nav-links {
	display: flex;
	gap: 6px;
	margin-left: auto;
	font-size: 14px;
}
.nav-links a {
	padding: 8px 14px;
	border-radius: 10px;
	color: var(--ink-2);
	font-weight: 500;
	transition: color .2s, background .2s;
}
.nav-links a:hover,
.nav-links a.current-menu-item,
.nav-links a.current_page_item {
	color: var(--key-700);
	background: var(--key-50);
}
.nav-cta {
	margin-left: 8px;
	padding: 10px 18px;
	background: var(--ink);
	color: #fff;
	border-radius: 999px;
	font-weight: 600;
	font-size: 13px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: transform .2s, background .2s;
}
.nav-cta:hover { background: var(--key-700); transform: translateY(-1px); color: #fff; }
.nav-cta .arr { transition: transform .2s; }
.nav-cta:hover .arr { transform: translateX(3px); }

/* ハンバーガーボタン */
.nav-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 8px;
	margin-left: 8px;
	background: none;
	border: none;
	cursor: pointer;
	flex-shrink: 0;
}
.nav-burger span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--ink);
	border-radius: 2px;
	transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .3s;
	transform-origin: center;
}
body.nav-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
body.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ドロワー閉じるボタン */
.drawer-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: var(--ink);
	transition: background .2s;
}
.drawer-close:hover { background: var(--key-50); }

/* ドロワー */
.nav-drawer {
	position: fixed;
	top: 0;
	right: 0;
	width: min(300px, 82vw);
	height: 100%;
	background: #fff;
	z-index: 1100;
	transform: translateX(100%);
	transition: transform .35s cubic-bezier(.4,0,.2,1);
	padding: 88px 28px 40px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	overflow-y: auto;
	box-shadow: -4px 0 24px rgba(0,0,0,.08);
}
body.nav-open .nav-drawer {
	transform: translateX(0);
}
.nav-drawer a {
	display: block;
	padding: 14px 12px;
	font-size: 15px;
	font-weight: 500;
	color: var(--ink-1);
	border-radius: 10px;
	text-decoration: none;
	transition: background .2s, color .2s;
	letter-spacing: .03em;
}
.nav-drawer a:hover,
.nav-drawer a.active {
	background: var(--key-50);
	color: var(--key-700);
}
.drawer-cta {
	margin-top: 16px;
	padding: 14px 18px !important;
	background: var(--key-600);
	color: #fff !important;
	border-radius: 10px;
	font-size: 14px !important;
	font-weight: 600;
	text-align: center;
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 6px;
	transition: background .2s !important;
}
.drawer-cta:hover { background: var(--key-700) !important; }

/* オーバーレイ */
.nav-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,.45);
	z-index: 1099;
	opacity: 0;
	pointer-events: none;
	transition: opacity .35s;
}
body.nav-open .nav-overlay {
	opacity: 1;
	pointer-events: auto;
}

/* ==============================
   Hero (トップページ)
   ============================== */
.hero {
	position: relative;
	padding: 72px 28px 96px;
	overflow: hidden;
}
.hero-inner {
	max-width: var(--maxw);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 48px;
	align-items: center;
	position: relative;
	z-index: 2;
}
.hero-kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 7px 14px 7px 10px;
	border-radius: 999px;
	background: var(--key-50);
	color: var(--key-700);
	font-family: var(--fs-en);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .08em;
	border: 1px solid rgba(98,188,234,.25);
}
.hero-kicker .dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--key);
	box-shadow: 0 0 0 0 rgba(98,188,234,.7);
	animation: pulse 2.4s infinite;
}
@keyframes pulse {
	0%   { box-shadow: 0 0 0 0 rgba(98,188,234,.7); }
	70%  { box-shadow: 0 0 0 10px rgba(98,188,234,0); }
	100% { box-shadow: 0 0 0 0 rgba(98,188,234,0); }
}
.hero h1 {
	font-size: clamp(34px, 4.8vw, 64px);
	line-height: 1.18;
	letter-spacing: .01em;
	font-weight: 900;
	margin: 22px 0 20px;
}
.hero h1 .accent {
	color: var(--key-700);
	background: linear-gradient(180deg, transparent 62%, rgba(98,188,234,.28) 62%);
	padding: 0 .08em;
}
.hero h1 .en {
	display: block;
	font-family: var(--fs-en);
	font-weight: 500;
	font-size: .28em;
	letter-spacing: .2em;
	color: var(--ink-3);
	margin-top: 20px;
}
.hero-lead {
	color: var(--ink-2);
	font-size: 16px;
	line-height: 1.9;
	max-width: 540px;
}
.hero-ctas {
	margin-top: 32px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

/* Hero visual */
.hero-visual {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	max-width: 560px;
	margin-left: auto;
	justify-self: end;
}
.hero-canvas-wrap {
	position: absolute;
	inset: 0;
	border-radius: 24px;
	overflow: hidden;
	background:
		radial-gradient(80% 60% at 70% 30%, rgba(98,188,234,.18), transparent 60%),
		radial-gradient(60% 60% at 20% 80%, rgba(98,188,234,.1), transparent 60%),
		#FBFCFD;
	border: 1px solid var(--line);
}
.hero-canvas-wrap canvas { width: 100%; height: 100%; display: block; }
.hero-float {
	position: absolute;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 12px 14px;
	box-shadow: var(--shadow);
	font-size: 12px;
	font-family: var(--fs-mono);
	color: var(--ink-2);
	display: flex;
	align-items: center;
	gap: 10px;
	animation: floaty 6s ease-in-out infinite;
}
.hero-float .tag {
	font-size: 10px;
	color: var(--key-700);
	background: var(--key-50);
	padding: 3px 7px;
	border-radius: 6px;
	font-family: var(--fs-en);
	letter-spacing: .08em;
	font-weight: 600;
}
.hero-float.f1 { top: 8%; left: -6%; animation-delay: 0s; }
.hero-float.f2 { bottom: 14%; right: -8%; animation-delay: -2s; }
.hero-float.f3 { bottom: -3%; left: 10%; animation-delay: -4s; }
@keyframes floaty {
	0%, 100% { transform: translateY(0); }
	50%       { transform: translateY(-8px); }
}
.hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	background:
		radial-gradient(60% 50% at 90% 0%, rgba(98,188,234,.12), transparent 60%),
		radial-gradient(40% 40% at 0% 100%, rgba(98,188,234,.25), transparent 60%);
}
.hero-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(to right, rgba(12,24,33,.06) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(12,24,33,.06) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 75%);
	-webkit-mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 75%);
	z-index: 0;
}

/* ==============================
   Page Head (下層ページ共通)
   ============================== */
.page-head {
	position: relative;
	padding: 64px 28px 56px;
	overflow: hidden;
	border-bottom: 1px solid var(--line);
	background:
		radial-gradient(50% 60% at 90% 10%, rgba(98,188,234,.12), transparent 60%),
		radial-gradient(40% 40% at 0% 100%, rgba(98,188,234,.08), transparent 60%),
		var(--bg);
}
.page-head::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(to right, rgba(12,24,33,.04) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(12,24,33,.04) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: radial-gradient(circle at 70% 30%, #000 0%, transparent 70%);
	-webkit-mask-image: radial-gradient(circle at 70% 30%, #000 0%, transparent 70%);
	pointer-events: none;
}
.page-head-inner { max-width: var(--maxw); margin: 0 auto; position: relative; }
.crumb {
	font-family: var(--fs-en);
	font-size: 12px;
	color: var(--ink-3);
	letter-spacing: .12em;
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 20px;
}
.crumb a { color: var(--ink-3); transition: color .2s; }
.crumb a:hover { color: var(--key-700); }
.crumb .sep { opacity: .4; }
.crumb .now { color: var(--ink); font-weight: 600; }
.page-head h1 {
	font-size: clamp(36px, 4.6vw, 60px);
	font-weight: 900;
	margin: 0;
	letter-spacing: .01em;
	line-height: 1.18;
}
.page-head h1 .en {
	display: block;
	font-family: var(--fs-en);
	font-weight: 500;
	font-size: .28em;
	letter-spacing: .22em;
	color: var(--key-700);
	margin-top: 8px;
}
.page-head p.lead {
	margin: 20px 0 0;
	color: var(--ink-2);
	font-size: 15px;
	max-width: 620px;
	line-height: 1.9;
}

/* ==============================
   Section General
   ============================== */
section.block { padding: 96px 28px; position: relative; }
.inner { max-width: var(--maxw); margin: 0 auto; }
.eyebrow {
	font-family: var(--fs-en);
	font-size: 12px;
	font-weight: 600;
	color: var(--key-700);
	letter-spacing: .2em;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--key); }
.section-head {
	margin-bottom: 56px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: end;
}
.section-head h2 {
	font-size: clamp(28px, 3.2vw, 44px);
	font-weight: 800;
	line-height: 1.3;
	margin: 14px 0 0;
	letter-spacing: .01em;
}
.section-head p { color: var(--ink-2); font-size: 15px; line-height: 1.9; margin: 0; }

/* ==============================
   Buttons
   ============================== */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 22px;
	border-radius: 12px;
	font-weight: 600;
	font-size: 14px;
	transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s;
}
.btn.primary {
	background: var(--ink);
	color: #fff;
	box-shadow: 0 8px 24px -12px rgba(12,24,33,.5);
}
.btn.primary:hover { background: var(--key-700); box-shadow: var(--shadow-key); transform: translateY(-2px); color: #fff; }
.btn.ghost {
	background: transparent;
	color: var(--ink);
	border: 1px solid var(--line);
}
.btn.ghost:hover { border-color: var(--key); color: var(--key-700); background: var(--key-50); }
.btn .arr { transition: transform .25s; }
.btn:hover .arr { transform: translateX(4px); }

/* ==============================
   Services
   ============================== */
.services { background: var(--bg); }
.services .cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.svc-card {
	padding: 28px 24px 26px;
	background: var(--bg);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	position: relative;
	overflow: hidden;
	transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s, border-color .3s;
}
.svc-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 60%, var(--key-50) 140%);
	opacity: 0;
	transition: opacity .3s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(98,188,234,.4); }
.svc-card:hover::before { opacity: 1; }
.svc-num {
	font-family: var(--fs-en);
	font-size: 20px;
	font-weight: 600;
	color: var(--ink-3);
	letter-spacing: .2em;
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.svc-num .dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--key);
	opacity: .4;
	transition: opacity .3s, transform .3s;
}
.svc-card:hover .svc-num .dot { opacity: 1; transform: scale(1.3); }

/* アイコン＋h3 を横並びにするためのグリッドレイアウト */
.svc-card {
	display: grid;
	grid-template-areas:
		"num  num"
		"icon title"
		"body body";
	grid-template-columns: 44px 1fr;
	grid-template-rows: auto auto 1fr;
	column-gap: 12px;
	row-gap: 0;
}
.svc-card .svc-num  { grid-area: num; }
.svc-icon {
	grid-area: icon;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--key-50);
	color: var(--key-700);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0;
	position: relative;
	align-self: center;
	transition: background .3s, color .3s;
}
.svc-card:hover .svc-icon { background: var(--key); color: #fff; }
.svc-icon svg { width: 22px; height: 22px; }
.svc-card h3 { grid-area: title; font-size: 17px; font-weight: 700; margin: 0; line-height: 1.55; position: relative; align-self: center; }
.svc-card p  { grid-area: body; font-size: 13px; color: var(--ink-3); line-height: 1.8; margin: 16px 0 0; position: relative; }

/* ==============================
   Flow
   ============================== */
.flow { background: var(--bg-2); position: relative; }
.flow::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.flow-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	position: relative;
}
.flow-item {
	padding: 32px 28px;
	position: relative;
}
.flow-item:not(:last-child) { border-right: 1px dashed var(--line); }
.flow-item::before {
	content: "";
	position: absolute;
	top: 40px;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--key);
	box-shadow: 0 0 0 4px var(--bg-2), 0 0 0 5px rgba(98,188,234,.4);
}
.flow-num { font-family: var(--fs-en); font-size: 12px; color: var(--key-700); letter-spacing: .16em; font-weight: 600; }
.flow-item h3 { font-size: 20px; font-weight: 700; margin: 16px 0 12px; letter-spacing: .01em; }
.flow-item p { color: var(--ink-3); font-size: 13px; margin: 0; line-height: 1.85; }
.flow-line {
	position: absolute;
	top: 44px;
	left: 28px;
	right: 28px;
	height: 1px;
	background: repeating-linear-gradient(90deg, var(--key) 0 6px, transparent 6px 12px);
	opacity: .4;
	z-index: 0;
}

/* ==============================
   Works (トップページカード)
   ============================== */
.works { background: var(--bg); }
.works-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}
.work {
	background: var(--bg);
	border-radius: var(--radius-lg);
	border: 1px solid var(--line);
	overflow: hidden;
	transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .3s, border-color .3s;
	cursor: pointer;
	position: relative;
}
.work:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(98,188,234,.4); }
.work-thumb {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: linear-gradient(135deg, #E9F4FB 0%, #CFE7F5 100%);
}
.work-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s cubic-bezier(.2,.8,.2,1), filter .4s;
}
.work:hover .work-thumb img { transform: scale(1.04); }
.work-thumb::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(12,24,33,.18));
	opacity: 0;
	transition: opacity .3s;
}
.work:hover .work-thumb::after { opacity: 1; }
.work-body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 10px; }
.work-cat {
	font-family: var(--fs-en);
	font-size: 11px;
	letter-spacing: .18em;
	color: var(--key-700);
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.work-cat::before { content: ""; width: 16px; height: 1px; background: var(--key-700); display: inline-block; }
.work h3 { font-size: 17px; font-weight: 700; margin: 0; line-height: 1.55; }
.work .more {
	margin-top: 8px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: var(--ink-3);
	transition: gap .2s, color .2s;
}
.work:hover .more { color: var(--key-700); gap: 12px; }
.works-footer { margin-top: 40px; display: flex; justify-content: center; }

/* ==============================
   Works Archive (事例一覧)
   ============================== */
.filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 40px;
	align-items: center;
}
.filter-label { font-family: var(--fs-en); font-size: 11px; color: var(--ink-3); letter-spacing: .16em; font-weight: 600; margin-right: 8px; }
.chip {
	padding: 8px 16px;
	border: 1px solid var(--line);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 500;
	color: var(--ink-2);
	background: #fff;
	cursor: pointer;
	transition: all .2s;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.chip .count { font-family: var(--fs-en); font-size: 11px; color: var(--ink-3); }
.chip:hover { border-color: var(--key); color: var(--key-700); }
.chip.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip.on .count { color: rgba(255,255,255,.6); }
.works-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.work-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .3s, border-color .3s;
	cursor: pointer;
	display: flex;
	flex-direction: column;
}
.work-card.hide { display: none; }
.work-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(98,188,234,.4); }
.work-card .work-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; background: linear-gradient(135deg, #E9F4FB 0%, #CFE7F5 100%); }
.work-card .work-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.work-card:hover .work-thumb img { transform: scale(1.04); }
.work-thumb .ph {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--key-700);
	font-family: var(--fs-mono);
	font-size: 12px;
	letter-spacing: .12em;
}
.work-thumb .tag {
	position: absolute;
	top: 14px;
	left: 14px;
	background: rgba(255,255,255,.95);
	padding: 5px 10px;
	border-radius: 6px;
	font-family: var(--fs-en);
	font-weight: 700;
	font-size: 10px;
	letter-spacing: .14em;
	color: var(--key-700);
	backdrop-filter: blur(6px);
}
.work-body { padding: 24px 26px 26px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.work-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: var(--fs-en);
	font-size: 11px;
	color: var(--ink-3);
	letter-spacing: .1em;
}
.work-card h3 { font-size: 16px; font-weight: 700; margin: 0; line-height: 1.6; }
.work-card .more { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-size: 12px; color: var(--ink-3); transition: gap .2s, color .2s; }
.work-card:hover .more { color: var(--key-700); gap: 12px; }
.empty { padding: 60px 28px; text-align: center; color: var(--ink-3); grid-column: 1 / -1; }

/* ==============================
   News (お知らせ)
   ============================== */
.news { background: var(--bg-2); }
.news-list { border-top: 1px solid var(--line); }
.news-row {
	display: grid;
	grid-template-columns: 140px 140px 1fr 32px;
	gap: 24px;
	padding: 22px 8px;
	border-bottom: 1px solid var(--line);
	align-items: center;
	transition: background .2s, padding .2s;
}
.news-row:hover { background: rgba(98,188,234,.06); padding-left: 16px; }
.news-row.hide { display: none; }
.news-date { font-family: var(--fs-en); font-size: 13px; color: var(--ink-3); letter-spacing: .04em; }
.news-tag {
	font-size: 11px;
	letter-spacing: .12em;
	color: var(--key-700);
	background: var(--key-50);
	padding: 5px 10px;
	border-radius: 6px;
	font-weight: 600;
	display: inline-flex;
	justify-self: start;
	align-self: center;
}
.news-tag.corp { color: #6B4E9B; background: #F1ECF9; }
.news-tag.biz  { color: #2F7A57; background: #E7F5EE; }
.news-tag.media { color: #B36B1E; background: #FBEFDE; }
.news-title { font-size: 14px; color: var(--ink); font-weight: 500; }
.news-row svg { color: var(--ink-3); transition: color .2s, transform .2s; }
.news-row:hover svg { color: var(--key-700); transform: translateX(3px); }
.news-empty { padding: 40px 8px; color: var(--ink-3); font-size: 13px; text-align: center; border-bottom: 1px solid var(--line); }

/* News Archive Layout */
.news-layout {
	display: grid;
	grid-template-columns: 1fr 280px;
	gap: 56px;
	align-items: start;
}
.news-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.news-chip {
	padding: 7px 14px;
	border: 1px solid var(--line);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
	color: var(--ink-2);
	background: #fff;
	cursor: pointer;
	transition: all .2s;
	letter-spacing: .06em;
}
.news-chip:hover { border-color: var(--key); color: var(--key-700); }
.news-chip.on { background: var(--ink); color: #fff; border-color: var(--ink); }

/* News Sidebar */
.side h3 {
	font-family: var(--fs-en);
	font-size: 12px;
	letter-spacing: .18em;
	color: var(--ink-3);
	font-weight: 600;
	margin: 0 0 14px;
	text-transform: uppercase;
}
.side-box {
	background: var(--bg-2);
	border-radius: var(--radius-lg);
	padding: 20px 22px;
	margin-bottom: 20px;
}
.side-box ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.side-box ul a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
	color: var(--ink-2);
	padding: 6px 0;
	border-bottom: 1px dashed var(--line);
	transition: color .2s;
}
.side-box ul li:last-child a { border-bottom: none; }
.side-box ul a:hover { color: var(--key-700); }
.side-box ul a .ct { font-family: var(--fs-en); font-size: 11px; color: var(--ink-3); }

/* Pagination */
.pager {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 48px;
}
.pager a,
.pager span,
.pager .page-numbers {
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	font-family: var(--fs-en);
	font-size: 13px;
	font-weight: 600;
	border: 1px solid var(--line);
	color: var(--ink-2);
	background: #fff;
	transition: all .2s;
}
.pager a:hover { border-color: var(--key); color: var(--key-700); background: var(--key-50); }
.pager .cur,
.pager .current { background: var(--ink); color: #fff; border-color: var(--ink); }
.pager .prev,
.pager .next { width: auto; padding: 0 14px; }

/* ==============================
   Work Detail (事例詳細)
   ============================== */
.w-hero {
	padding: 56px 28px 40px;
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid var(--line);
	background: radial-gradient(50% 60% at 90% 10%, rgba(98,188,234,.12), transparent 60%), var(--bg);
}
.w-hero-inner { max-width: var(--maxw); margin: 0 auto; position: relative; }
.w-cat {
	font-family: var(--fs-en);
	font-size: 11px;
	color: var(--key-700);
	letter-spacing: .2em;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 6px 12px;
	background: var(--key-50);
	border-radius: 999px;
	border: 1px solid rgba(98,188,234,.25);
	margin-top: 18px;
}
.w-hero h1 {
	font-size: clamp(28px, 3.6vw, 44px);
	font-weight: 900;
	line-height: 1.35;
	margin: 20px 0 0;
	max-width: 100%;
}
.w-visual {
	margin-top: 36px;
	aspect-ratio: 16 / 9;
	background: linear-gradient(135deg, #E9F4FB 0%, #CFE7F5 100%);
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--line);
}
.w-visual img { width: 100%; height: 100%; object-fit: cover; }
.w-body {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 80px;
	align-items: start;
}
.w-content h2 {
	font-size: 22px;
	font-weight: 800;
	margin: 56px 0 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--line);
	display: flex;
	align-items: baseline;
	gap: 12px;
}
.w-content h2::before {
	content: "";
	width: 6px;
	height: 18px;
	background: var(--key);
	border-radius: 2px;
	display: inline-block;
}
.w-content h2:first-child { margin-top: 0; }
.w-content p { color: var(--ink-2); font-size: 15px; line-height: 2; margin: 0 0 16px; }
.w-content ul { padding-left: 22px; margin: 14px 0; color: var(--ink-2); font-size: 14.5px; line-height: 2; }
.w-content ul li::marker { color: var(--key); }
.w-gallery {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin: 20px 0;
}
.w-gallery .ph {
	aspect-ratio: 4/3;
	background: linear-gradient(135deg, #E9F4FB 0%, #F7FAFC 100%);
	border-radius: 12px;
	border: 1px solid var(--line);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--key-700);
	font-family: var(--fs-mono);
	font-size: 12px;
	letter-spacing: .08em;
}

/* Work Sidebar */
.w-side { position: sticky; top: 84px; }
.w-side-card {
	background: var(--bg-2);
	border-radius: var(--radius-lg);
	padding: 22px 24px;
	margin-bottom: 16px;
	border: 1px solid var(--line);
}
.w-side-card h3 {
	font-family: var(--fs-en);
	font-size: 11px;
	letter-spacing: .18em;
	color: var(--ink-3);
	font-weight: 600;
	margin: 0 0 14px;
	text-transform: uppercase;
}
.w-side-card dl { margin: 0; }
.w-side-card dt { font-size: 11px; color: var(--ink-3); letter-spacing: .08em; margin-top: 12px; font-weight: 600; }
.w-side-card dt:first-child { margin-top: 0; }
.w-side-card dd { margin: 4px 0 0; font-size: 14px; font-weight: 600; }
.w-side-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.w-side-card ul li {
	padding: 4px 10px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 999px;
	font-size: 11px;
	letter-spacing: .06em;
}
.w-side-visit {
	display: block;
	padding: 16px 18px;
	background: var(--ink);
	color: #fff;
	border-radius: 12px;
	text-align: center;
	font-weight: 700;
	font-size: 14px;
	transition: background .2s, transform .2s;
}
.w-side-visit:hover { background: var(--key-700); transform: translateY(-2px); color: #fff; }
.w-nav {
	margin-top: 64px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.w-nav a {
	padding: 22px 24px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	transition: all .2s;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.w-nav a:hover { border-color: var(--key); background: var(--key-50); }
.w-nav a .lab { font-family: var(--fs-en); font-size: 11px; color: var(--ink-3); letter-spacing: .14em; font-weight: 600; }
.w-nav a .t { font-size: 14px; font-weight: 700; line-height: 1.5; }
.w-nav a.next { text-align: right; }

/* ==============================
   Doc / Page (汎用固定ページ)
   ============================== */
.doc-layout {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 80px;
	align-items: start;
}
.toc {
	position: sticky;
	top: 84px;
	border-left: 1px solid var(--line);
	padding-left: 20px;
}
.toc-label {
	font-family: var(--fs-en);
	font-size: 11px;
	letter-spacing: .2em;
	color: var(--ink-3);
	font-weight: 600;
	margin: 0 0 14px;
	text-transform: uppercase;
}
.toc ol { list-style: none; padding: 0; margin: 0; counter-reset: s; }
.toc ol li { counter-increment: s; margin-bottom: 10px; }
.toc ol li a {
	font-size: 13px;
	color: var(--ink-2);
	display: flex;
	gap: 10px;
	align-items: baseline;
	transition: color .2s;
	line-height: 1.6;
}
.toc ol li a::before {
	content: counter(s, decimal-leading-zero);
	font-family: var(--fs-en);
	font-size: 11px;
	color: var(--ink-3);
	font-weight: 600;
	letter-spacing: .08em;
	min-width: 22px;
}
.toc ol li a:hover,
.toc ol li a.active { color: var(--key-700); }
.doc { max-width: 760px; }
.doc .intro {
	color: var(--ink-2);
	font-size: 15px;
	line-height: 1.95;
	margin: 0 0 48px;
	padding: 24px 26px;
	background: var(--key-50);
	border-radius: var(--radius-lg);
	border-left: 3px solid var(--key);
}
.doc-sec { margin-bottom: 48px; scroll-margin-top: 96px; }
.doc-sec h2 {
	display: flex;
	align-items: baseline;
	gap: 14px;
	font-size: 22px;
	font-weight: 800;
	margin: 0 0 18px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--line);
	letter-spacing: .01em;
}
.doc-sec h2 .num {
	font-family: var(--fs-en);
	font-size: 12px;
	color: var(--key-700);
	font-weight: 600;
	letter-spacing: .16em;
	padding: 4px 10px;
	background: var(--key-50);
	border-radius: 6px;
}
.doc-sec p { color: var(--ink-2); font-size: 14.5px; line-height: 2; margin: 0 0 14px; }
.doc-sec ul, .doc-sec ol { padding-left: 22px; margin: 14px 0; color: var(--ink-2); font-size: 14.5px; line-height: 2; }
.doc-sec ul li, .doc-sec ol li { margin-bottom: 4px; }
.doc-sec ul li::marker { color: var(--key); }
.doc-meta {
	margin-top: 64px;
	padding-top: 28px;
	border-top: 1px solid var(--line);
	display: flex;
	justify-content: space-between;
	font-family: var(--fs-en);
	font-size: 12px;
	color: var(--ink-3);
	letter-spacing: .08em;
}

/* Entry Content (page.php, single.php generic styles) */
.entry-content { max-width: 760px; }
.entry-content h2 {
	font-size: 24px;
	font-weight: 800;
	margin: 48px 0 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--line);
	letter-spacing: .01em;
	scroll-margin-top: 96px;
}
.entry-content h3 { font-size: 19px; font-weight: 700; margin: 32px 0 12px; letter-spacing: .01em; }
.entry-content h4 { font-size: 16px; font-weight: 700; margin: 24px 0 10px; }
.entry-content p { color: var(--ink-2); font-size: 15px; line-height: 2; margin: 0 0 18px; }
.entry-content ul, .entry-content ol { padding-left: 22px; margin: 14px 0; color: var(--ink-2); font-size: 14.5px; line-height: 2; }
.entry-content ul li::marker { color: var(--key); }
.entry-content a { color: var(--key-700); text-decoration: underline; }
.entry-content a:hover { color: var(--key-600); }

/* ==============================
   About Page
   ============================== */
.mission-grid {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: 80px;
	align-items: start;
}
.mission-grid h2 { font-size: clamp(28px, 3.2vw, 42px); font-weight: 800; line-height: 1.4; margin: 14px 0 0; letter-spacing: .01em; }
.mission-body p { color: var(--ink-2); font-size: 15px; line-height: 2; margin: 0 0 20px; }
.mission-body p:last-child { margin-bottom: 0; }
.mission-body .pull {
	border-left: 3px solid var(--key);
	padding: 4px 0 4px 20px;
	margin: 28px 0;
	color: var(--ink);
	font-weight: 700;
	font-size: 18px;
	line-height: 1.8;
}
.company { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.co-head { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: end; margin-bottom: 48px; }
.co-head h2 { font-size: clamp(28px, 3.2vw, 42px); font-weight: 800; line-height: 1.3; margin: 14px 0 0; letter-spacing: .01em; }
.co-head p { color: var(--ink-2); font-size: 14px; margin: 0; line-height: 1.9; }
.co-table { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.co-row { display: grid; grid-template-columns: 220px 1fr; border-bottom: 1px solid var(--line); transition: background .2s; }
.co-row:last-child { border-bottom: 0; }
.co-row:hover { background: rgba(98,188,234,.04); }
.co-row dt, .co-row dd { margin: 0; }
.co-row dt {
	padding: 26px 28px;
	background: var(--bg-3);
	color: var(--ink-2);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .08em;
	border-right: 1px solid var(--line);
	display: flex;
	align-items: flex-start;
	gap: 10px;
}
.co-row dt .num { font-family: var(--fs-en); font-size: 11px; color: var(--key-700); letter-spacing: .16em; font-weight: 600; padding-top: 3px; min-width: 24px; }
.co-row dd { padding: 26px 28px; font-size: 14px; color: var(--ink); line-height: 1.85; }
.co-row dd .addr-zip { display: inline-block; font-family: var(--fs-mono); color: var(--ink-3); font-size: 12px; margin-right: 10px; padding: 2px 8px; background: var(--bg-2); border-radius: 6px; letter-spacing: .04em; }
.co-row dd ul.ppl { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 24px; }
.co-row dd ul.ppl li { display: grid; grid-template-columns: auto 1fr; gap: 12px; font-size: 13px; align-items: baseline; padding: 8px 0; border-bottom: 1px dashed var(--line); }
.co-row dd ul.ppl li:nth-last-child(-n+2) { border-bottom: none; }
.co-row dd ul.ppl .role { color: var(--key-700); font-size: 11px; font-weight: 600; letter-spacing: .08em; background: var(--key-50); padding: 3px 8px; border-radius: 6px; justify-self: start; white-space: nowrap; }
.co-row dd ul.ppl .name { font-weight: 700; }
.co-row dd ul.ppl .affil { grid-column: 1 / -1; color: var(--ink-3); font-size: 12px; margin-top: -4px; }
.co-row dd ul.biz { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.co-row dd ul.biz li { padding: 8px 14px; background: #fff; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; transition: border-color .2s, color .2s; }
.co-row dd ul.biz li:hover { border-color: var(--key); color: var(--key-700); }
.co-row dd ul.biz li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--key); }
.location { margin-top: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.loc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; display: flex; flex-direction: column; gap: 12px; position: relative; overflow: hidden; }
.loc-card::before { content: ""; position: absolute; top: 0; right: 0; width: 120px; height: 120px; background: radial-gradient(circle at 80% 20%, rgba(98,188,234,.18), transparent 60%); pointer-events: none; }
.loc-card .label { font-family: var(--fs-en); font-size: 11px; letter-spacing: .16em; color: var(--key-700); font-weight: 600; }
.loc-card h3 { margin: 0; font-size: 18px; font-weight: 700; }
.loc-card .addr { color: var(--ink-2); font-size: 14px; line-height: 1.8; }
.loc-map-embed {
	margin-top: 16px;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--line);
	line-height: 0; /* iframeの下の余白を除去 */
}
.loc-map-embed iframe {
	display: block;
	width: 100%;
	height: 220px;
	border: 0;
}

/* ==============================
   Contact Page / MW WP Form
   ============================== */
.contact-wrap { max-width: 760px; margin: 0 auto; }

/* フォーム全体 */
.mw_wp_form form { width: 100%; }
.mw_wp_form > form > p:first-child {
	font-size: 13px;
	color: var(--ink-3);
	margin-bottom: 24px;
}

/* テーブル → ブロックレイアウト */
.mw_wp_form table {
	width: 100%;
	border-collapse: collapse;
}
.mw_wp_form table tbody { display: flex; flex-direction: column; gap: 20px; }
.mw_wp_form table tr { display: flex; flex-direction: column; gap: 6px; }
.mw_wp_form table th {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--ink-2);
	letter-spacing: .04em;
	padding: 0;
	text-align: left;
}
.mw_wp_form table td { display: block; padding: 0; }

/* 入力フィールド共通 */
.mw_wp_form input[type="text"],
.mw_wp_form input[type="email"],
.mw_wp_form input[type="tel"],
.mw_wp_form textarea,
.mw_wp_form select {
	width: 100%;
	padding: 12px 14px;
	font-size: 15px;
	font-family: inherit;
	color: var(--ink);
	background: #fff;
	border: 1px solid var(--line, #e2e8ed);
	border-radius: 10px;
	outline: none;
	transition: border-color .2s, box-shadow .2s;
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
}
.mw_wp_form input[type="text"]:focus,
.mw_wp_form input[type="email"]:focus,
.mw_wp_form input[type="tel"]:focus,
.mw_wp_form textarea:focus,
.mw_wp_form select:focus {
	border-color: var(--key-600, #3aa0d0);
	box-shadow: 0 0 0 3px rgba(98,188,234,.18);
}
.mw_wp_form textarea {
	min-height: 140px;
	resize: vertical;
	line-height: 1.7;
}

/* 電話番号フィールド */
.mwform-tel-field {
	display: flex;
	align-items: center;
	gap: 8px;
}
.mwform-tel-field input[type="text"] {
	width: auto;
	flex: 1;
	min-width: 0;
}
.mwform-tel-field input[type="text"]:first-child { max-width: 90px; }

/* 送信・確認ボタン */
.mw_wp_form input[type="submit"],
.mw_wp_form input[type="button"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 40px;
	font-size: 15px;
	font-weight: 600;
	font-family: inherit;
	color: #fff;
	background: var(--ink, #0c1821);
	border: none;
	border-radius: 999px;
	cursor: pointer;
	letter-spacing: .06em;
	transition: background .2s, transform .2s;
	-webkit-appearance: none;
	appearance: none;
}
.mw_wp_form input[type="submit"]:hover,
.mw_wp_form input[type="button"]:hover {
	background: var(--key-700, #2580b0);
	transform: translateY(-1px);
}
.mw_wp_form p[style*="text-align: center"],
.mw_wp_form p[style*="text-align:center"] {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 32px !important;
}

/* エラー表示 */
.mw_wp_form .error,
.mw_wp_form .mwform-err-msg {
	display: block;
	margin-top: 4px;
	font-size: 12px;
	color: #e03030;
}
.mw_wp_form input.error,
.mw_wp_form textarea.error {
	border-color: #e03030;
	box-shadow: 0 0 0 3px rgba(224,48,48,.12);
}

/* 確認画面 (.mw_wp_form_confirm) */
.mw_wp_form_confirm table th {
	color: var(--ink-3);
	font-size: 12px;
	font-weight: 500;
	padding-bottom: 2px;
}
.mw_wp_form_confirm table td {
	font-size: 15px;
	padding-bottom: 4px;
	border-bottom: 1px solid var(--line, #e2e8ed);
}

/* 完了画面 */
.mw_wp_form_complete p {
	text-align: center;
	font-size: 15px;
	line-height: 1.8;
	color: var(--ink-2);
}

/* ==============================
   CTA
   ============================== */
.cta { padding: 100px 28px; position: relative; overflow: hidden; }
.cta-inner {
	max-width: var(--maxw);
	margin: 0 auto;
	background: var(--ink);
	color: #fff;
	border-radius: 28px;
	padding: 64px 56px;
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	gap: 48px;
	align-items: center;
	position: relative;
	overflow: hidden;
}
.cta-inner::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(40% 60% at 100% 0%, rgba(98,188,234,.45), transparent 60%),
		radial-gradient(30% 60% at 0% 100%, rgba(98,188,234,.2), transparent 60%);
	pointer-events: none;
}
.cta-inner > * { position: relative; z-index: 1; }
.cta h2 { font-size: clamp(26px, 3.2vw, 38px); font-weight: 800; line-height: 1.4; margin: 14px 0 0; letter-spacing: .01em; }
.cta h2 .en { display: block; font-family: var(--fs-en); font-weight: 500; font-size: .36em; letter-spacing: .2em; color: var(--key); margin-bottom: 8px; }
.cta p { color: rgba(255,255,255,.75); margin: 20px 0 0; line-height: 1.9; font-size: 14px; }
.cta-right { display: flex; flex-direction: column; gap: 16px; }
.cta-btn {
	background: var(--key);
	color: var(--ink);
	padding: 20px 28px;
	border-radius: 14px;
	font-weight: 700;
	font-size: 15px;
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
	transition: background .2s, transform .2s;
}
.cta-btn:hover { background: #fff; transform: translateY(-2px); }
.cta-btn .arr { transition: transform .3s; }
.cta-btn:hover .arr { transform: translateX(6px); }
.cta-sub {
	color: rgba(255,255,255,.8);
	font-size: 13px;
	padding: 16px 20px;
	border: 1px solid rgba(255,255,255,.15);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.cta-sub a { color: #fff; font-weight: 600; }
.cta-sub a:hover { color: var(--key); }

/* ==============================
   Footer
   ============================== */
footer {
	padding: 60px 28px 40px;
	border-top: 1px solid var(--line);
	background: var(--bg);
}
.foot {
	max-width: var(--maxw);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr;
	gap: 32px;
	align-items: start;
}
.foot-brand small { color: var(--ink-3); font-size: 12px; line-height: 1.8; display: block; margin-top: 12px; }
.foot h4 { font-size: 12px; color: var(--ink-3); letter-spacing: .14em; margin: 0 0 14px; font-weight: 600; text-transform: uppercase; font-family: var(--fs-en); }
.foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot ul a { font-size: 13px; color: var(--ink-2); transition: color .2s; }
.foot ul a:hover { color: var(--key-700); }
.foot-bottom {
	max-width: var(--maxw);
	margin: 40px auto 0;
	padding-top: 24px;
	border-top: 1px solid var(--line);
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
	color: var(--ink-3);
	font-family: var(--fs-en);
	letter-spacing: .04em;
}

/* ==============================
   Reveal Animation
   ============================== */
.reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* ==============================
   404
   ============================== */
.not-found {
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 80px 28px;
}
.not-found .code {
	font-family: var(--fs-en);
	font-size: clamp(80px, 12vw, 160px);
	font-weight: 900;
	color: var(--key-50);
	line-height: 1;
	letter-spacing: .01em;
}
.not-found h1 { font-size: 28px; font-weight: 800; margin: 0 0 16px; }
.not-found p { color: var(--ink-2); font-size: 15px; margin: 0 0 32px; }

/* ==============================
   Responsive
   ============================== */
@media (max-width: 960px) {
	.services .cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
	.hero { padding: 48px 24px 72px; }
	.hero-inner { grid-template-columns: 1fr; gap: 24px; }
	.hero-visual { max-width: 440px; margin: 0 auto; }
	.hero-float.f2 { right: 0; }
	.hero-float.f1 { left: 0; }
	section.block { padding: 72px 24px; }
	.section-head { grid-template-columns: 1fr; gap: 16px; }
	.flow-list { grid-template-columns: 1fr 1fr; }
	.flow-item { border-right: none !important; border-bottom: 1px dashed var(--line); padding-right: 0; }
	.flow-item:nth-child(2n) { border-left: 1px dashed var(--line); padding-left: 28px; }
	.flow-line { display: none; }
	.works-grid { grid-template-columns: repeat(2, 1fr); }
	.w-body { grid-template-columns: 1fr; gap: 32px; }
	.doc-layout { grid-template-columns: 1fr; gap: 32px; }
	.toc { position: static; }
	.mission-grid { grid-template-columns: 1fr; gap: 32px; }
	.co-row { grid-template-columns: 1fr; }
	.co-row dt { border-right: 0; border-bottom: 1px solid var(--line); padding: 14px 20px; }
	.co-row dd { padding: 20px; }
	.co-row dd ul.ppl { grid-template-columns: 1fr; }
	.co-head { grid-template-columns: 1fr; gap: 16px; }
	.location { grid-template-columns: 1fr; }
	.cta { padding: 72px 20px; }
	.cta-inner { grid-template-columns: 1fr; padding: 44px 28px; }
	.news-layout { grid-template-columns: 1fr; gap: 32px; }
	.w-nav { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
	.foot { grid-template-columns: 1fr 1fr; }
	.foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
	.works-list { grid-template-columns: 1fr; }
	/* タブレット: 日付列を少し縮小 */
	.news-row { grid-template-columns: 110px 120px 1fr 24px; gap: 16px; }
}
@media (max-width: 640px) {
	.nav-links { display: none; }
	.nav-cta { display: none; }
	.nav-burger { display: flex; margin-left: auto; }
	.hero h1 { font-size: 36px; }
	.w-gallery { grid-template-columns: 1fr; }
	/* お知らせ: 2列×2行レイアウト
	   Row1: [タグ]  [日付]
	   Row2: [タイトル...]  [→]
	*/
	.news-row {
		grid-template-columns: 1fr auto;
		grid-template-rows: auto auto;
		gap: 6px 12px;
		padding: 16px 12px;
	}
	.news-row:hover { padding-left: 12px; }
	.news-tag   { grid-column: 1; grid-row: 1; align-self: center; }
	.news-date  { grid-column: 2; grid-row: 1; align-self: center; font-size: 11px; white-space: nowrap; }
	.news-title { grid-column: 1; grid-row: 2; font-size: 13px; line-height: 1.65; }
	.news-row svg { grid-column: 2; grid-row: 2; align-self: center; }
}
@media (max-width: 600px) {
	.works-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
	.services .cards { grid-template-columns: 1fr; }
	.flow-list { grid-template-columns: 1fr; }
	.flow-item { border-left: none !important; padding-left: 28px; }
}
