@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Shippori+Mincho:wght@400;500;600;700&display=swap");

:root {
	--ink: #111111;
	--text: #222426;
	--muted: #6c7074;
	--line: rgba(17, 17, 17, 0.14);
	--paper: #f8f8f6;
	--panel: #ffffff;
	--blue: #2858ff;
	--radius: 8px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--text);
	background: var(--paper);
	font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", "Times New Roman", serif;
	line-height: 1.75;
	letter-spacing: 0;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: var(--blue);
}

/* --- Layout Container --- */
.shell {
	width: min(1280px, calc(100% - 44px));
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

/* --- Header --- */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 20;
	background: rgba(248, 248, 246, 0.78);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.header-inner {
	width: min(1280px, calc(100% - 44px));
	min-height: 76px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 220px 1fr 220px;
	align-items: center;
	gap: 24px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 850;
	line-height: 1.05;
	color: var(--ink);
}

.brand-mark {
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	color: #fff;
	background: var(--ink);
	border-radius: 50%;
	font-size: 13px;
	font-weight: 900;
}

.brand small {
	display: block;
	color: var(--muted);
	font-size: 11px;
	font-weight: 750;
	margin-top: 2px;
}

.nav {
	justify-self: center;
	display: flex;
	gap: clamp(18px, 3.2vw, 56px);
	color: var(--ink);
	font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	font-size: 18px;
	font-weight: 500;
}

.header-cta {
	justify-self: end;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 22px;
	color: #fff;
	background: var(--ink);
	border-radius: 999px;
	font-weight: 800;
	box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.16);
}

/* --- Page Hero --- */
.page-hero {
	padding: 160px 0 60px;
	border-bottom: 1px solid var(--line);
	background: linear-gradient(180deg, #fff 0%, var(--paper) 100%);
}

.eyebrow {
	color: var(--muted);
	font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	font-size: 16px;
	letter-spacing: 0.1em;
	margin-bottom: 12px;
}

.page-hero h1 {
	margin: 0;
	color: var(--ink);
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 500;
	line-height: 1.2;
}

.page-hero p {
	margin: 16px 0 0;
	color: var(--muted);
	font-size: 16px;
}

/* --- Privacy Content --- */
.privacy-content {
	padding: 80px 0 120px;
	background: #ffffff;
}

.privacy-body {
	max-width: 800px;
	margin: 0 auto;
}

.privacy-body > p {
	font-size: 16px;
	color: var(--text);
	margin-bottom: 40px;
}

.privacy-body h2 {
	margin: 48px 0 20px;
	color: var(--ink);
	font-size: 22px;
	font-weight: 600;
	border-bottom: 1px solid var(--line);
	padding-bottom: 10px;
}

.privacy-body p, 
.privacy-body li {
	font-size: 15px;
	color: var(--text);
	line-height: 1.85;
}

.privacy-body ul {
	margin: 16px 0 24px;
	padding-left: 20px;
}

.privacy-body li {
	margin-bottom: 8px;
}

.privacy-body a {
	color: var(--blue);
	text-decoration: underline;
}

.privacy-body a:hover {
	color: var(--ink);
}

.privacy-date {
	margin-top: 60px;
	text-align: right;
	color: var(--muted);
	font-size: 14px;
}

/* --- Footer --- */
.footer {
	padding: 28px 0;
	color: var(--muted);
	background: #fff;
	border-top: 1px solid var(--line);
	font-size: 12px;
	font-weight: 750;
}

.footer .shell {
	display: flex;
	justify-content: space-between;
	gap: 18px;
}

/* --- Responsive --- */
@media (max-width: 980px) {
	.header-inner {
		grid-template-columns: 1fr auto;
	}

	.nav {
		display: none;
	}

	.privacy-content {
		padding: 60px 0 90px;
	}
}

@media (max-width: 680px) {
	.header-inner,
	.shell {
		width: min(100% - 26px, 1280px);
	}

	.header-inner {
		min-height: 66px;
	}

	.header-cta {
		min-height: 38px;
		padding: 0 14px;
		font-size: 12px;
	}

	.page-hero {
		padding-top: 120px;
	}

	.footer .shell {
		flex-direction: column;
	}
}










.breadcrumb {
	display: block;
	margin-bottom: 18px;
	color: var(--muted);
	font-size: 13px;
	font-weight: 700;
}

.breadcrumb a {
	color: var(--navy);
}

.breadcrumb-inner {
	display: block;
}

.breadcrumb-inner ul,
.breadcrumb-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.breadcrumb-inner li,
.breadcrumb-item {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
}

.breadcrumb-inner li + li::before,
.breadcrumb-item + .breadcrumb-item::before {
	content: "/";
	color: var(--muted);
}