:root {
	--ginza-gray: #667382;
	--ginza-gray-deep: #344453;
	--ginza-paper: #f4f7fa;
	--ginza-dark: #121a22;
	--ginza-white: #ffffff;
	--ginza-text: #263442;
	--ginza-ice: #e5f0f7;
	--ginza-blue-light: #b9d8ea;
	--ginza-line-light: rgba(255, 255, 255, 0.24);
	--ginza-line-dark: rgba(47, 71, 91, 0.2);
	--ginza-content: 1120px;
	--ginza-wide: 1440px;
	--ginza-serif: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
	--ginza-sans: "Helvetica Neue", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 90px;
}

body.ginza-home,
body.ginza-service-page,
body.ginza-content-page {
	margin: 0;
	background: var(--ginza-gray);
	color: var(--ginza-white);
	font-family: var(--ginza-serif);
	line-height: 1.9;
}

body.ginza-home.admin-bar .ginza-header,
body.ginza-service-page.admin-bar .ginza-header,
body.ginza-content-page.admin-bar .ginza-header {
	top: 32px;
}

.ginza-homepage,
.ginza-homepage * {
	box-sizing: border-box;
}

.ginza-homepage img,
.ginza-homepage video,
.ginza-homepage iframe {
	display: block;
	max-width: 100%;
}

.ginza-concept picture,
.ginza-concept picture img {
	width: 100%;
}

.ginza-homepage a {
	color: inherit;
	text-decoration: none;
}

.ginza-homepage a:focus-visible,
.ginza-homepage button:focus-visible,
.ginza-homepage summary:focus-visible,
.ginza-carousel__track:focus-visible {
	outline: 3px solid #8ec5e6;
	outline-offset: 4px;
}

.ginza-skip-link {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 10000;
	padding: 10px 16px;
	background: var(--ginza-dark);
	color: var(--ginza-white);
	transform: translateY(-160%);
}

.ginza-skip-link:focus {
	transform: translateY(0);
}

.ginza-header {
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid var(--ginza-line-light);
	background: rgba(44, 58, 70, 0.94);
	backdrop-filter: blur(12px);
}

.ginza-header__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(calc(100% - 48px), var(--ginza-wide));
	min-height: 78px;
	margin: 0 auto;
	gap: 36px;
}

.ginza-brand {
	flex: 0 0 auto;
}

.ginza-brand img {
	width: 198px;
	height: auto;
}

.ginza-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(18px, 2.2vw, 38px);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
}

.ginza-nav a {
	position: relative;
	padding: 8px 0;
}

.ginza-nav a::after {
	position: absolute;
	right: 0;
	bottom: 2px;
	left: 0;
	height: 1px;
	background: currentColor;
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 180ms ease;
}

.ginza-nav a:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.ginza-nav-toggle {
	display: none;
	padding: 8px;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	font-size: 12px;
	letter-spacing: 0.14em;
	cursor: pointer;
}

.ginza-line-float {
	position: fixed;
	top: 108px;
	right: 24px;
	z-index: 90;
	display: grid;
	place-content: center;
	width: 78px;
	height: 78px;
	border: 5px solid var(--ginza-white);
	border-radius: 50%;
	background: #0c1117;
	color: var(--ginza-white);
	text-align: center;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.ginza-line-float span {
	color: #9fd2ee;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.1;
}

.ginza-line-float small {
	font-size: 8px;
	line-height: 1.5;
	letter-spacing: 0.08em;
}

.ginza-hero {
	padding: clamp(64px, 8vw, 130px) 24px clamp(70px, 9vw, 150px);
}

.ginza-hero__title {
	width: min(100%, var(--ginza-content));
	margin: 0 auto clamp(38px, 6vw, 78px);
	text-align: center;
}

.ginza-hero h1 {
	margin: 0;
	color: var(--ginza-white);
	font-size: clamp(34px, 5.3vw, 76px);
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: 0.08em;
}

.ginza-hero h1 span,
.ginza-hero h1 small {
	display: block;
}

.ginza-hero h1 small {
	margin-top: 20px;
	font-size: clamp(16px, 2vw, 27px);
	font-weight: 400;
	letter-spacing: 0.12em;
}

.ginza-hero__title p {
	margin: 28px 0 0;
	font-size: clamp(12px, 1.4vw, 17px);
	letter-spacing: 0.28em;
}

.ginza-hero__media {
	position: relative;
	width: min(100%, 1240px);
	margin: 0 auto;
	overflow: hidden;
	background: var(--ginza-dark);
}

.ginza-hero video {
	width: 100%;
	aspect-ratio: 16 / 8.6;
	object-fit: cover;
}

.ginza-video-toggle {
	position: absolute;
	right: 16px;
	bottom: 16px;
	padding: 8px 13px;
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.66);
	color: var(--ginza-white);
	font: inherit;
	font-size: 11px;
	cursor: pointer;
}

.ginza-section {
	padding: clamp(74px, 10vw, 150px) 24px;
}

.ginza-section--gray {
	background: var(--ginza-gray);
	color: var(--ginza-white);
}

.ginza-section--paper {
	background: var(--ginza-paper);
	color: var(--ginza-text);
}

.ginza-section--dark {
	background: var(--ginza-dark);
	color: var(--ginza-white);
}

.ginza-section__inner {
	width: min(100%, var(--ginza-content));
	margin: 0 auto;
}

.ginza-eyebrow {
	margin: 0 0 24px;
	font-size: clamp(21px, 2.8vw, 38px);
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.24em;
}

.ginza-section h2 {
	margin: 0 0 34px;
	color: inherit;
	font-size: clamp(27px, 4vw, 52px);
	font-weight: 400;
	line-height: 1.35;
}

.ginza-section h2.ginza-eyebrow {
	margin: 0 0 24px;
	font-size: clamp(21px, 2.8vw, 38px);
	font-weight: 500;
	line-height: 1.2;
}

.ginza-section p {
	font-size: clamp(15px, 1.35vw, 18px);
}

.ginza-introduction {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(24px, 5vw, 70px);
	max-width: 1000px;
}

.ginza-introduction p {
	margin: 0;
}

.ginza-service-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 58px;
}

.ginza-service-card {
	display: flex;
	flex-direction: column;
	padding: clamp(26px, 3.5vw, 42px);
	border: 1px solid var(--ginza-line-dark);
	background: var(--ginza-white);
}

.ginza-service-card__eyebrow {
	margin: 0 0 18px;
	color: #6a6a6a;
	font-size: 11px !important;
	font-weight: 700;
	letter-spacing: 0.12em;
}

.ginza-service-card h3 {
	margin: 0 0 20px;
	font-size: clamp(21px, 2.3vw, 30px);
	font-weight: 500;
}

.ginza-service-card > p:not(.ginza-service-card__eyebrow) {
	margin: 0 0 28px;
	font-size: 14px;
}

.ginza-service-card .ginza-text-link {
	margin-top: auto;
	font-weight: 600;
}

.ginza-concept,
.ginza-info,
.ginza-stylist,
.ginza-inside {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
	align-items: center;
	gap: clamp(42px, 8vw, 110px);
}

.ginza-concept img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.ginza-carousel {
	position: relative;
}

.ginza-carousel__controls {
	display: flex;
	justify-content: flex-end;
	gap: 8px;
	margin-bottom: 18px;
}

.ginza-carousel__controls button {
	display: grid;
	place-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid currentColor;
	border-radius: 50%;
	background: transparent;
	color: inherit;
	font-size: 19px;
	cursor: pointer;
}

.ginza-carousel__track {
	display: grid;
	grid-auto-columns: minmax(250px, 31%);
	grid-auto-flow: column;
	gap: 18px;
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	scroll-snap-type: inline mandatory;
	scrollbar-width: thin;
}

.ginza-carousel__slide {
	margin: 0;
	scroll-snap-align: start;
}

.ginza-carousel__slide img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

.ginza-info dl {
	margin: 0;
}

.ginza-info dl > div {
	display: grid;
	grid-template-columns: 110px minmax(0, 1fr);
	gap: 20px;
	padding: 18px 0;
	border-bottom: 1px solid var(--ginza-line-light);
}

.ginza-info dt {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
}

.ginza-info dd {
	margin: 0;
}

.ginza-menu-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px;
	margin-top: 58px;
}

.ginza-menu-column {
	padding: clamp(26px, 4vw, 48px);
	border: 1px solid var(--ginza-line-dark);
	background: var(--ginza-white);
}

.ginza-menu-column--service {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: 160px repeat(2, minmax(0, 1fr));
	align-items: start;
	gap: 30px;
}

.ginza-menu-column h3 {
	margin: 0 0 30px;
	font-size: 25px;
	font-weight: 500;
	letter-spacing: 0.2em;
}

.ginza-menu-group + .ginza-menu-group {
	margin-top: 34px;
}

.ginza-menu-group h4 {
	margin: 0 0 12px;
	font-size: 13px;
	letter-spacing: 0.14em;
}

.ginza-menu-group ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ginza-menu-group li,
.ginza-menu-group p {
	padding: 5px 0;
	font-size: 14px;
	line-height: 1.7;
}

.ginza-stylist {
	align-items: start;
}

.ginza-stylist > img {
	width: 100%;
	max-height: 780px;
	object-fit: cover;
}

.ginza-achievement {
	margin: 44px 0 0;
	padding-top: 30px;
	border-top: 1px solid var(--ginza-line-light);
}

.ginza-achievement figcaption {
	margin-bottom: 20px;
	font-size: 15px;
	letter-spacing: 0.08em;
}

.ginza-achievement img {
	width: min(100%, 520px);
}

.ginza-carousel--hair .ginza-carousel__track {
	grid-auto-columns: minmax(230px, 27%);
}

.ginza-center {
	margin: 44px 0 0;
	text-align: center;
}

.ginza-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 190px;
	padding: 13px 28px;
	border: 1px solid currentColor;
	font-size: 12px;
	letter-spacing: 0.18em;
}

.ginza-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(22px, 4vw, 52px);
}

.ginza-post-card {
	display: flex;
	flex-direction: column;
	min-height: 280px;
	padding: 32px 0;
	border-top: 1px solid var(--ginza-line-dark);
	border-bottom: 1px solid var(--ginza-line-dark);
}

.ginza-post-card h3 {
	margin: 0;
	font-size: clamp(18px, 1.7vw, 23px);
	font-weight: 600;
	line-height: 1.6;
}

.ginza-post-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 14px;
	margin: 22px 0;
	color: #707070;
	font-size: 12px !important;
}

.ginza-text-link {
	margin-top: auto;
	font-size: 13px;
	letter-spacing: 0.08em;
}

.ginza-inside__brand {
	padding: 50px;
	background: rgba(255, 255, 255, 0.08);
	text-align: center;
}

.ginza-inside__brand img {
	width: min(100%, 320px);
	margin: 0 auto;
}

.ginza-link-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
}

.ginza-link-cards a {
	display: grid;
	grid-template-columns: 180px minmax(0, 1fr);
	align-items: center;
	overflow: hidden;
	border: 1px solid var(--ginza-line-dark);
	background: var(--ginza-white);
}

.ginza-link-cards img {
	width: 100%;
	aspect-ratio: 1 / 0.85;
	object-fit: cover;
}

.ginza-link-cards span {
	padding: 28px;
	font-size: 15px;
	letter-spacing: 0.16em;
}

.ginza-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	width: min(calc(100% - 48px), var(--ginza-content));
	margin: 0 auto;
	padding: 28px 0;
	font-size: 12px;
}

.ginza-breadcrumb a {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.ginza-service-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
	align-items: stretch;
	width: min(calc(100% - 48px), 1240px);
	margin: 0 auto clamp(74px, 9vw, 130px);
	background: var(--ginza-dark);
}

.ginza-service-hero__copy {
	align-self: center;
	padding: clamp(40px, 7vw, 90px);
}

.ginza-service-hero h1 {
	margin: 0 0 30px;
	font-size: clamp(34px, 4.6vw, 64px);
	font-weight: 400;
	line-height: 1.35;
}

.ginza-service-hero__copy > p:not(.ginza-eyebrow) {
	margin-bottom: 34px;
	font-size: clamp(15px, 1.35vw, 18px);
}

.ginza-service-hero figure {
	margin: 0;
}

.ginza-service-hero img {
	width: 100%;
	height: 100%;
	min-height: 620px;
	object-fit: cover;
}

.ginza-service-overview {
	max-width: 860px;
}

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

.ginza-feature-grid article {
	padding: clamp(26px, 3.5vw, 42px);
	border: 1px solid var(--ginza-line-light);
}

.ginza-feature-grid article > span {
	display: block;
	margin-bottom: 28px;
	font-size: 12px;
	letter-spacing: 0.18em;
}

.ginza-feature-grid h3 {
	margin: 0 0 18px;
	font-size: 22px;
	font-weight: 500;
}

.ginza-feature-grid p {
	margin: 0;
	font-size: 14px;
}

.ginza-service-two-column {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
	align-items: start;
	gap: clamp(40px, 7vw, 90px);
}

.ginza-check-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ginza-check-list li {
	position: relative;
	padding: 18px 0 18px 36px;
	border-bottom: 1px solid var(--ginza-line-dark);
	font-size: 16px;
}

.ginza-check-list li::before {
	position: absolute;
	top: 19px;
	left: 4px;
	content: "✓";
	font-weight: 700;
}

.ginza-price-card {
	padding: clamp(30px, 4vw, 50px);
	background: var(--ginza-dark);
	color: var(--ginza-white);
}

.ginza-price-card > p:first-child {
	margin: 0 0 22px;
	font-size: 11px;
	letter-spacing: 0.18em;
}

.ginza-price-card h2 {
	margin-bottom: 18px;
	font-size: 28px;
}

.ginza-price-card small {
	display: block;
	margin-top: 24px;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.8;
}

.ginza-process-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin: 0;
	padding: 0;
	counter-reset: ginza-process;
	list-style: none;
}

.ginza-process-list li {
	position: relative;
	padding: 38px 30px 32px;
	border-top: 1px solid var(--ginza-line-light);
	counter-increment: ginza-process;
}

.ginza-process-list li::before {
	display: block;
	margin-bottom: 26px;
	content: "0" counter(ginza-process);
	font-size: 12px;
	letter-spacing: 0.16em;
}

.ginza-process-list h3 {
	margin: 0 0 16px;
	font-size: 20px;
	font-weight: 500;
}

.ginza-process-list p {
	margin: 0;
	font-size: 14px;
}

.ginza-faq {
	max-width: 900px;
}

.ginza-faq details {
	border-top: 1px solid var(--ginza-line-dark);
}

.ginza-faq details:last-child {
	border-bottom: 1px solid var(--ginza-line-dark);
}

.ginza-faq summary {
	padding: 24px 42px 24px 0;
	font-size: 17px;
	font-weight: 600;
	cursor: pointer;
}

.ginza-faq details p {
	margin: 0;
	padding: 0 0 28px;
}

.ginza-related-services {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.ginza-related-services a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px;
	border: 1px solid var(--ginza-line-light);
}

.ginza-map iframe {
	width: 100%;
	height: min(58vw, 520px);
	border: 0;
}

.ginza-footer {
	padding: 70px 24px 150px;
	background: var(--ginza-gray-deep);
	color: var(--ginza-white);
	text-align: center;
}

.ginza-footer nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px 34px;
	font-size: 12px;
	letter-spacing: 0.08em;
}

.ginza-footer p {
	margin: 42px 0 0;
	color: rgba(255, 255, 255, 0.72);
}

.ginza-fixed-actions {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 110;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	width: min(100%, 720px);
	margin: 0 auto;
	padding: 8px;
	background: rgba(20, 20, 20, 0.94);
	box-shadow: 0 -5px 24px rgba(0, 0, 0, 0.18);
}

.ginza-fixed-actions a {
	position: relative;
	display: grid;
	place-content: center;
	min-height: 70px;
	overflow: hidden;
	border-right: 1px solid rgba(255, 255, 255, 0.22);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
	color: var(--ginza-white);
}

.ginza-fixed-actions a:last-child {
	border-right: 0;
}

.ginza-fixed-actions span {
	position: relative;
	z-index: 1;
	font-size: 12px;
	letter-spacing: 0.1em;
}

.ginza-visually-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.ginza-content-main {
	min-height: 70vh;
	padding-bottom: clamp(76px, 9vw, 130px);
	background: var(--ginza-paper);
	color: var(--ginza-text);
}

.ginza-content-main .ginza-breadcrumb {
	padding-top: 28px;
	color: #666;
}

.ginza-content-article {
	width: min(calc(100% - 48px), var(--ginza-content));
	margin: 0 auto;
}

.ginza-content-hero {
	padding: clamp(58px, 8vw, 112px) 0 clamp(42px, 6vw, 78px);
	border-bottom: 1px solid var(--ginza-line-dark);
}

.ginza-content-hero .ginza-eyebrow {
	margin-bottom: 22px;
}

.ginza-content-hero h1 {
	max-width: 900px;
	margin: 0;
	font-size: clamp(32px, 4.2vw, 54px);
	font-weight: 500;
	line-height: 1.42;
	letter-spacing: 0.035em;
}

.ginza-article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 24px;
	margin: 24px 0 0;
	color: #666;
	font-size: 13px;
}

.ginza-article-meta a {
	text-decoration: underline;
	text-underline-offset: 0.24em;
}

.ginza-article-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: clamp(42px, 7vw, 90px);
	padding-top: clamp(48px, 7vw, 84px);
}

.ginza-entry-content {
	max-width: 820px;
	padding-top: clamp(48px, 7vw, 84px);
	font-size: 16px;
	line-height: 2;
	word-break: break-word;
}

.ginza-article-layout .ginza-entry-content {
	padding-top: 0;
}

.ginza-entry-content > :first-child,
.ginza-entry-content .ginza-article-featured + * {
	margin-top: 0;
}

.ginza-entry-content h2 {
	margin: 3.2em 0 1.1em;
	padding-bottom: 0.45em;
	border-bottom: 1px solid var(--ginza-line-dark);
	font-size: clamp(25px, 3vw, 34px);
	line-height: 1.5;
}

.ginza-entry-content h3 {
	margin: 2.4em 0 0.8em;
	font-size: clamp(21px, 2.4vw, 27px);
	line-height: 1.55;
}

.ginza-entry-content h4 {
	margin: 2em 0 0.65em;
	font-size: 19px;
}

.ginza-entry-content p,
.ginza-entry-content ul,
.ginza-entry-content ol,
.ginza-entry-content figure,
.ginza-entry-content table {
	margin-top: 1.35em;
	margin-bottom: 1.35em;
}

.ginza-entry-content a {
	color: #294f71;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
}

.ginza-entry-content img {
	width: auto;
	height: auto;
	margin-right: auto;
	margin-left: auto;
	border-radius: 2px;
}

.ginza-article-featured {
	margin: 0 0 clamp(42px, 6vw, 72px) !important;
}

.ginza-article-featured img {
	width: 100%;
	max-height: 680px;
	object-fit: cover;
}

.ginza-entry-content blockquote {
	margin: 2em 0;
	padding: 20px 24px;
	border-left: 3px solid var(--ginza-gray);
	background: #eef3f7;
}

.ginza-entry-content .st-kaiwa-box {
	display: flex;
	margin: 1.5em 0;
}

.ginza-entry-content .st-kaiwa-area {
	width: 100%;
}

.ginza-entry-content .st-kaiwa-hukidashi {
	padding: 18px 20px;
	border-left: 3px solid #8595a2;
	background: #edf3f7;
}

.ginza-entry-content .st-kaiwa-hukidashi > :first-child {
	margin-top: 0;
}

.ginza-entry-content .st-kaiwa-hukidashi > :last-child {
	margin-bottom: 0;
}

.ginza-entry-content .st-mymarker-s {
	background: linear-gradient(transparent 62%, #d7eaf6 62%);
}

.ginza-entry-content .wp-block-table {
	overflow-x: auto;
}

.ginza-entry-content table {
	width: 100%;
	border-collapse: collapse;
}

.ginza-entry-content th,
.ginza-entry-content td {
	padding: 12px 14px;
	border: 1px solid #c9d2d9;
	text-align: left;
	vertical-align: top;
}

.ginza-entry-content th {
	background: #edf3f7;
}

.ginza-entry-content .has-background {
	padding: 18px 22px;
}

.ginza-entry-content input:not([type="submit"]),
.ginza-entry-content textarea,
.ginza-entry-content select {
	width: 100%;
	padding: 13px 14px;
	border: 1px solid #b8c4cd;
	border-radius: 0;
	background: var(--ginza-white);
	color: var(--ginza-text);
	font: inherit;
}

.ginza-entry-content textarea {
	min-height: 180px;
	resize: vertical;
}

.ginza-entry-content input[type="submit"],
.ginza-entry-content button[type="submit"] {
	min-width: 180px;
	padding: 14px 26px;
	border: 1px solid var(--ginza-dark);
	background: var(--ginza-dark);
	color: var(--ginza-white);
	font: inherit;
	cursor: pointer;
}

.ginza-contact-form {
	max-width: 760px;
}

.ginza-contact-form > p {
	margin: 0 0 28px;
}

.ginza-contact-form label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
}

.ginza-required {
	display: inline-block;
	margin-left: 8px;
	padding: 1px 7px;
	background: #263b4d;
	color: #fff;
	font-size: 11px;
	font-weight: 500;
}

.ginza-consent {
	margin: 32px 0;
	padding: 20px;
	background: #edf3f7;
}

.ginza-consent .wpcf7-list-item {
	margin: 0;
}

.ginza-consent input[type="checkbox"] {
	width: 20px;
	height: 20px;
	margin: 0 10px 0 0;
	vertical-align: -4px;
}

.ginza-contact-submit {
	margin-top: 32px !important;
}

.ginza-article-aside {
	align-self: start;
	position: sticky;
	top: 110px;
	padding: 28px;
	background: #edf3f7;
}

.ginza-article-aside h2 {
	margin: 0 0 20px;
	font-size: 20px;
	line-height: 1.6;
}

.ginza-article-aside ul {
	margin: 0 0 26px;
	padding: 0;
	list-style: none;
}

.ginza-article-aside li + li {
	border-top: 1px solid var(--ginza-line-dark);
}

.ginza-article-aside li a {
	display: block;
	padding: 13px 0;
	font-size: 14px;
}

.ginza-article-aside .ginza-button {
	width: 100%;
	padding-right: 16px;
	padding-left: 16px;
	text-align: center;
}

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

.ginza-sitemap-section {
	padding: 28px;
	background: #edf3f7;
}

.ginza-sitemap-section h2 {
	margin-top: 0;
	font-size: 24px;
}

.ginza-sitemap-section ul {
	margin-bottom: 0;
	padding-left: 1.2em;
}

.ginza-archive-description {
	max-width: 820px;
	margin-top: 26px;
	color: #5b5b5b;
	font-size: 16px;
}

.ginza-archive-description p {
	margin: 0;
}

.ginza-archive-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
	padding: clamp(48px, 7vw, 84px) 0;
}

.ginza-archive-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	border: 1px solid var(--ginza-line-dark);
	background: var(--ginza-white);
}

.ginza-archive-card__image {
	display: block;
	overflow: hidden;
	background: #e7eef3;
}

.ginza-archive-card__image img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.ginza-archive-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 26px;
}

.ginza-archive-card__body .ginza-post-card__meta {
	margin: 0 0 16px;
}

.ginza-archive-card h2 {
	margin: 0 0 18px;
	font-size: 21px;
	line-height: 1.55;
}

.ginza-archive-card__body > p:not(.ginza-post-card__meta) {
	margin: 0 0 24px;
	color: #595959;
	font-size: 14px;
}

.ginza-pagination {
	padding-bottom: 20px;
}

.ginza-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ginza-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	padding: 6px 12px;
	border: 1px solid var(--ginza-line-dark);
}

.ginza-pagination .current {
	background: var(--ginza-dark);
	color: var(--ginza-white);
}

.ginza-empty-state {
	padding: 64px 0;
}

.ginza-search-form {
	max-width: 680px;
	margin-top: 32px;
}

.ginza-search-form form {
	display: flex;
	gap: 8px;
}

.ginza-search-form label {
	flex: 1;
}

.ginza-search-form input[type="search"] {
	width: 100%;
	min-height: 48px;
	padding: 11px 14px;
	border: 1px solid #aab6bf;
	background: var(--ginza-white);
	font: inherit;
}

.ginza-search-form input[type="submit"] {
	padding: 11px 22px;
	border: 1px solid var(--ginza-dark);
	background: var(--ginza-dark);
	color: var(--ginza-white);
	cursor: pointer;
}

.ginza-error-page {
	padding-top: 32px;
}

@media (max-width: 959px) {
	body.ginza-home.admin-bar .ginza-header,
	body.ginza-service-page.admin-bar .ginza-header,
	body.ginza-content-page.admin-bar .ginza-header {
		top: 46px;
	}

	.ginza-header__inner {
		width: min(calc(100% - 32px), var(--ginza-wide));
		min-height: 68px;
	}

	.ginza-brand img {
		width: 162px;
	}

	.ginza-nav {
		position: absolute;
		top: calc(100% + 1px);
		right: 0;
		display: none;
		width: min(84vw, 330px);
		padding: 18px;
		background: var(--ginza-dark);
		box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
	}

	.ginza-nav.is-open {
		display: grid;
	}

	.ginza-nav a {
		padding: 10px 6px;
		border-bottom: 1px solid var(--ginza-line-light);
		font-size: 12px;
		letter-spacing: 0.08em;
	}

	.ginza-nav-toggle {
		display: block;
	}

	.ginza-line-float {
		top: 92px;
		right: 12px;
		width: 66px;
		height: 66px;
		border-width: 4px;
	}

	.ginza-concept,
	.ginza-info,
	.ginza-stylist,
	.ginza-inside {
		grid-template-columns: 1fr;
	}

	.ginza-menu-column--service {
		grid-template-columns: 1fr;
	}

	.ginza-introduction,
	.ginza-service-grid,
	.ginza-feature-grid,
	.ginza-process-list,
	.ginza-service-two-column,
	.ginza-service-hero {
		grid-template-columns: 1fr;
	}

	.ginza-service-hero img {
		min-height: 0;
		max-height: 720px;
	}

	.ginza-post-grid {
		grid-template-columns: 1fr;
	}

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

	.ginza-post-card {
		min-height: 0;
	}

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

	.ginza-article-aside {
		position: static;
	}
}

@media (max-width: 599px) {
	html {
		scroll-padding-top: 74px;
	}

	.ginza-hero {
		padding: 62px 10px 84px;
	}

	.ginza-hero h1 {
		font-size: clamp(31px, 9.5vw, 45px);
		letter-spacing: 0.04em;
	}

	.ginza-hero h1 small {
		font-size: 15px;
		line-height: 1.7;
		letter-spacing: 0.07em;
	}

	.ginza-hero__title p {
		font-size: 11px;
		letter-spacing: 0.17em;
	}

	.ginza-hero video {
		aspect-ratio: 16 / 9;
	}

	.ginza-section {
		padding: 78px 20px;
	}

	.ginza-eyebrow {
		font-size: 23px;
	}

	.ginza-section h2 {
		font-size: 28px;
	}

	.ginza-carousel__track,
	.ginza-carousel--hair .ginza-carousel__track {
		grid-auto-columns: 83%;
	}

	.ginza-menu-grid,
	.ginza-link-cards,
	.ginza-related-services {
		grid-template-columns: 1fr;
	}

	.ginza-service-hero {
		width: min(calc(100% - 20px), 1240px);
	}

	.ginza-service-hero__copy {
		padding: 42px 24px;
	}

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

	.ginza-menu-column--service {
		grid-column: auto;
	}

	.ginza-info dl > div {
		grid-template-columns: 82px minmax(0, 1fr);
		gap: 14px;
	}

	.ginza-link-cards a {
		grid-template-columns: 130px minmax(0, 1fr);
	}

	.ginza-fixed-actions {
		padding: 6px;
	}

	.ginza-fixed-actions a {
		min-height: 62px;
	}

	.ginza-fixed-actions span {
		font-size: 10px;
	}

	.ginza-content-article {
		width: min(calc(100% - 40px), var(--ginza-content));
	}

	.ginza-content-hero h1 {
		font-size: 32px;
	}

	.ginza-entry-content {
		font-size: 15px;
	}

	.ginza-sitemap-grid {
		grid-template-columns: 1fr;
	}

	.ginza-archive-grid {
		grid-template-columns: 1fr;
	}

	.ginza-search-form form {
		align-items: stretch;
		flex-direction: column;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.ginza-homepage *,
	.ginza-homepage *::before,
	.ginza-homepage *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

/* --------------------------------------------------------------------------
	2026 editorial brand redesign
   -------------------------------------------------------------------------- */

body.ginza-home,
body.ginza-service-page,
body.ginza-content-page {
	background-color: var(--ginza-paper);
	background-image:
		radial-gradient(circle at 18% 4%, rgba(255, 255, 255, 0.75), transparent 34%),
		radial-gradient(circle at 82% 22%, rgba(75, 126, 161, 0.055), transparent 28%);
	color: var(--ginza-text);
	font-family: var(--ginza-serif);
}

.ginza-homepage {
	overflow: clip;
}

.ginza-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 200;
	border-bottom: 1px solid rgba(47, 71, 91, 0.14);
	background: rgba(248, 251, 253, 0.94);
	color: var(--ginza-text);
	backdrop-filter: blur(18px);
	transition: background-color 420ms ease, color 420ms ease, border-color 420ms ease;
}

body.ginza-home .ginza-header:not(.is-scrolled) {
	border-color: rgba(255, 255, 255, 0.24);
	background: linear-gradient(to bottom, rgba(11, 23, 34, 0.52), rgba(11, 23, 34, 0));
	color: var(--ginza-white);
	backdrop-filter: none;
}

.ginza-header__inner {
	width: min(calc(100% - 64px), 1520px);
	min-height: 88px;
	gap: clamp(22px, 2.4vw, 46px);
}

.ginza-brand img {
	width: clamp(154px, 13vw, 202px);
	transition: filter 420ms ease, opacity 200ms ease;
}

body.ginza-home .ginza-header:not(.is-scrolled) .ginza-brand img {
	filter: invert(1) brightness(1.45);
}

.ginza-brand:hover img {
	opacity: 0.68;
}

.ginza-nav {
	margin-left: auto;
	gap: clamp(14px, 1.65vw, 30px);
	font-family: var(--ginza-sans);
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 0.08em;
}

.ginza-nav a {
	display: grid;
	gap: 0;
	padding: 12px 0;
	text-align: center;
}

.ginza-nav a span {
	font-size: 10px;
}

.ginza-nav a small {
	font-family: var(--ginza-serif);
	font-size: 9px;
	font-weight: 400;
	letter-spacing: 0.06em;
	opacity: 0.65;
}

.ginza-nav a::after {
	bottom: 7px;
	height: 1px;
}

.ginza-reserve-link {
	display: grid;
	min-width: 142px;
	min-height: 48px;
	place-content: center;
	border: 1px solid currentColor;
	font-family: var(--ginza-sans);
	line-height: 1.25;
	text-align: center;
	transition: background-color 240ms ease, color 240ms ease;
}

.ginza-reserve-link span {
	font-size: 11px;
	letter-spacing: 0.08em;
}

.ginza-reserve-link small {
	font-family: var(--ginza-serif);
	font-size: 9px;
	letter-spacing: 0.08em;
	opacity: 0.65;
}

.ginza-reserve-link:hover {
	background: var(--ginza-text);
	color: var(--ginza-white);
}

body.ginza-home .ginza-header:not(.is-scrolled) .ginza-reserve-link:hover {
	background: var(--ginza-white);
	color: var(--ginza-text);
}

.ginza-nav-toggle {
	align-items: center;
	gap: 10px;
	font-family: var(--ginza-sans);
}

.ginza-nav-toggle i,
.ginza-nav-toggle i::before,
.ginza-nav-toggle i::after {
	display: block;
	width: 22px;
	height: 1px;
	background: currentColor;
	content: "";
	transition: transform 220ms ease;
}

.ginza-nav-toggle i::before {
	transform: translateY(-6px);
}

.ginza-nav-toggle i::after {
	transform: translateY(5px);
}

.ginza-nav-toggle[aria-expanded="true"] i {
	background: transparent;
}

.ginza-nav-toggle[aria-expanded="true"] i::before {
	transform: translateY(0) rotate(45deg);
}

.ginza-nav-toggle[aria-expanded="true"] i::after {
	transform: translateY(-1px) rotate(-45deg);
}

.ginza-editorial-wrap {
	width: min(calc(100% - 64px), 1160px);
	margin-right: auto;
	margin-left: auto;
}

.ginza-editorial-kicker {
	margin: 0 0 20px;
	font-family: var(--ginza-sans);
	font-size: 10px;
	line-height: 1.5;
	letter-spacing: 0.23em;
	text-transform: uppercase;
}

.ginza-editorial-concept__copy > .ginza-editorial-kicker {
	text-transform: none;
}

.ginza-editorial-heading {
	max-width: 840px;
}

.ginza-editorial-heading h2,
.ginza-editorial-concept h2,
.ginza-editorial-stylist h2,
.ginza-editorial-salon h2,
.ginza-editorial-menu h2,
.ginza-editorial-reserve h2 {
	margin: 0;
	font-size: clamp(34px, 4.8vw, 64px);
	font-weight: 400;
	line-height: 1.55;
	letter-spacing: 0.06em;
}

.ginza-editorial-heading > p:last-child {
	max-width: 640px;
	margin: 30px 0 0 auto;
	font-size: 14px;
	line-height: 2.1;
}

.ginza-editorial-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 28px;
	padding: 8px 0 10px;
	font-family: var(--ginza-sans);
	font-size: 11px;
	letter-spacing: 0.13em;
}

.ginza-editorial-link::after {
	position: absolute;
	right: 0;
	bottom: 4px;
	left: 0;
	height: 1px;
	background: currentColor;
	content: "";
	transform: scaleX(0.3);
	transform-origin: left;
	transition: transform 320ms ease;
}

.ginza-editorial-link:hover::after {
	transform: scaleX(1);
}

.ginza-editorial-hero {
	position: relative;
	display: grid;
	min-height: max(720px, 100svh);
	place-items: center;
	overflow: hidden;
	background: var(--ginza-dark);
	color: var(--ginza-white);
}

.ginza-editorial-hero__slides,
.ginza-editorial-hero__slide,
.ginza-editorial-hero__slide picture,
.ginza-editorial-hero__slide img,
.ginza-editorial-hero__veil {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.ginza-editorial-hero__slide {
	margin: 0;
	opacity: 0;
	transform: scale(1.035);
	transition: opacity 1800ms ease, transform 7800ms ease;
}

.ginza-editorial-hero__slide.is-active {
	z-index: 1;
	opacity: 1;
	transform: scale(1);
}

.ginza-editorial-hero__slide img {
	object-fit: cover;
	object-position: center;
}

.ginza-editorial-hero__slide:nth-child(2) img,
.ginza-editorial-hero__slide:nth-child(3) img {
	object-position: center 42%;
}

.ginza-editorial-hero__veil {
	z-index: 2;
	background:
		linear-gradient(90deg, rgba(13, 29, 43, 0.55), rgba(13, 29, 43, 0.05) 62%),
		linear-gradient(0deg, rgba(13, 29, 43, 0.42), transparent 56%);
}

.ginza-editorial-hero__copy {
	position: relative;
	z-index: 3;
	width: min(calc(100% - 13vw), 1420px);
	margin-top: 20vh;
}

.ginza-editorial-hero__location {
	margin: 0 0 28px;
	font-family: var(--ginza-sans);
	font-size: 10px;
	letter-spacing: 0.32em;
}

.ginza-editorial-hero h1 {
	max-width: 760px;
	margin: 0;
	font-weight: 400;
}

.ginza-editorial-hero h1 > span,
.ginza-editorial-hero h1 strong {
	display: block;
}

.ginza-editorial-hero h1 > span {
	margin-bottom: 24px;
	font-family: var(--ginza-sans);
	font-size: clamp(15px, 1.5vw, 21px);
	font-weight: 400;
	letter-spacing: 0.18em;
}

.ginza-editorial-hero h1 strong {
	font-size: clamp(42px, 6.5vw, 92px);
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: 0.07em;
}

.ginza-editorial-hero__lead {
	margin: 34px 0 0;
	font-size: clamp(13px, 1.3vw, 17px);
	letter-spacing: 0.12em;
}

.ginza-editorial-hero__scroll {
	position: absolute;
	right: 3.5vw;
	bottom: 40px;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 0;
	font-family: var(--ginza-sans);
	font-size: 8px;
	letter-spacing: 0.28em;
	transform: rotate(90deg);
	transform-origin: right bottom;
}

.ginza-editorial-hero__scroll span {
	display: block;
	width: 48px;
	height: 1px;
	background: currentColor;
}

.ginza-editorial-concept {
	padding: clamp(120px, 15vw, 230px) 0;
}

.ginza-editorial-concept__grid {
	display: grid;
	grid-template-columns: 60px minmax(0, 1.05fr) minmax(340px, 0.95fr);
	align-items: start;
	gap: clamp(38px, 5vw, 74px);
}

.ginza-editorial-concept__label {
	justify-self: center;
	font-size: 13px;
	letter-spacing: 0.3em;
	writing-mode: vertical-rl;
}

.ginza-editorial-concept__copy {
	padding-top: clamp(30px, 5vw, 84px);
}

.ginza-editorial-concept__copy h2 {
	font-size: clamp(31px, 3vw, 39px);
}

.ginza-editorial-concept__copy > p:not(.ginza-editorial-kicker) {
	margin: 34px 0 0;
	font-size: 14px;
	line-height: 2.35;
}

.ginza-editorial-concept__copy .ginza-editorial-link {
	margin-top: 36px;
}

.ginza-editorial-concept__image {
	position: relative;
	margin: 0;
}

.ginza-editorial-concept__image::before {
	position: absolute;
	top: -34px;
	right: -34px;
	z-index: -1;
	width: 75%;
	height: 64%;
	border: 1px solid rgba(47, 71, 91, 0.28);
	content: "";
}

.ginza-editorial-concept__image img {
	width: 100%;
	aspect-ratio: 4 / 5.4;
	object-fit: cover;
}

.ginza-editorial-services {
	padding: clamp(110px, 14vw, 210px) 0;
	background: rgba(224, 235, 243, 0.72);
}

.ginza-editorial-service-list {
	display: grid;
	gap: clamp(120px, 15vw, 230px);
	margin-top: clamp(80px, 11vw, 150px);
}

.ginza-editorial-service {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
	align-items: center;
	gap: clamp(52px, 9vw, 138px);
}

.ginza-editorial-service:nth-child(even) .ginza-editorial-service__image {
	grid-column: 2;
	grid-row: 1;
}

.ginza-editorial-service:nth-child(even) .ginza-editorial-service__copy {
	grid-column: 1;
	grid-row: 1;
}

.ginza-editorial-service__image {
	margin: 0;
}

.ginza-editorial-service__image img {
	width: 100%;
	height: clamp(520px, 60vw, 760px);
	object-fit: cover;
}

.ginza-editorial-service__copy {
	position: relative;
	max-width: 420px;
}

.ginza-editorial-service__number {
	position: absolute;
	top: -82px;
	left: -28px;
	margin: 0;
	font-size: 84px;
	font-style: italic;
	line-height: 1;
	opacity: 0.1;
}

.ginza-editorial-service__copy h3 {
	margin: 0;
	font-size: clamp(38px, 5vw, 64px);
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0.12em;
}

.ginza-editorial-service__copy > p:not(.ginza-editorial-kicker, .ginza-editorial-service__number) {
	margin: 32px 0;
	font-size: 14px;
	line-height: 2.25;
}

.ginza-editorial-film {
	position: relative;
	display: grid;
	min-height: min(82vw, 900px);
	place-items: center;
	overflow: hidden;
	background: var(--ginza-dark);
	color: var(--ginza-white);
}

.ginza-editorial-film::after {
	position: absolute;
	inset: 0;
	background: rgba(17, 35, 49, 0.36);
	content: "";
	pointer-events: none;
}

.ginza-editorial-film video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ginza-editorial-film__copy {
	position: relative;
	z-index: 1;
	text-align: center;
}

.ginza-editorial-film__copy p {
	margin: 0 0 32px;
	font-size: clamp(20px, 3.5vw, 48px);
	line-height: 1.75;
	letter-spacing: 0.2em;
}

.ginza-editorial-film__button {
	padding: 13px 24px;
	border: 1px solid currentColor;
	background: rgba(0, 0, 0, 0.12);
	color: inherit;
	font-family: var(--ginza-sans);
	font-size: 10px;
	letter-spacing: 0.14em;
	cursor: pointer;
}

.ginza-editorial-style {
	padding: clamp(110px, 14vw, 210px) 0;
}

.ginza-editorial-gallery {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-auto-rows: clamp(74px, 8vw, 112px);
	gap: clamp(10px, 1.4vw, 20px);
	margin-top: clamp(70px, 9vw, 120px);
}

.ginza-editorial-gallery figure {
	margin: 0;
	overflow: hidden;
}

.ginza-editorial-gallery figure:nth-child(1) {
	grid-column: 1 / 6;
	grid-row: span 6;
}

.ginza-editorial-gallery figure:nth-child(2) {
	grid-column: 7 / 10;
	grid-row: 1 / span 4;
}

.ginza-editorial-gallery figure:nth-child(3) {
	grid-column: 10 / 13;
	grid-row: 2 / span 5;
}

.ginza-editorial-gallery figure:nth-child(4) {
	grid-column: 6 / 9;
	grid-row: 5 / span 4;
}

.ginza-editorial-gallery figure:nth-child(5) {
	grid-column: 9 / 13;
	grid-row: 7 / span 5;
}

.ginza-editorial-gallery figure:nth-child(6) {
	grid-column: 2 / 6;
	grid-row: 7 / span 4;
}

.ginza-editorial-gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 700ms ease;
}

.ginza-editorial-gallery figure:hover img {
	transform: scale(1.025);
}

.ginza-editorial-style__link {
	margin: 70px 0 0;
	text-align: right;
}

.ginza-editorial-stylist {
	padding: clamp(110px, 14vw, 210px) 0;
	background: var(--ginza-gray-deep);
	color: var(--ginza-white);
}

.ginza-editorial-stylist__grid {
	display: grid;
	grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
	align-items: center;
	gap: clamp(56px, 10vw, 150px);
}

.ginza-editorial-stylist figure {
	margin: 0;
}

.ginza-editorial-stylist figure img {
	width: 100%;
	aspect-ratio: 4 / 5.2;
	object-fit: cover;
}

.ginza-editorial-stylist__copy h2 {
	font-size: clamp(38px, 5vw, 64px);
}

.ginza-editorial-stylist__role {
	margin: 16px 0 42px;
	font-family: var(--ginza-sans);
	font-size: 10px;
	letter-spacing: 0.18em;
	opacity: 0.7;
}

.ginza-editorial-stylist__copy > p:not(.ginza-editorial-kicker, .ginza-editorial-stylist__role) {
	margin: 22px 0 0;
	font-size: 14px;
	line-height: 2.2;
}

.ginza-editorial-stylist blockquote {
	margin: 38px 0 28px;
	padding: 24px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.24);
	border-bottom: 1px solid rgba(255, 255, 255, 0.24);
	font-size: 13px;
	line-height: 2;
}

.ginza-editorial-salon {
	padding: clamp(110px, 14vw, 210px) 0;
}

.ginza-editorial-salon__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
	align-items: center;
	gap: clamp(70px, 10vw, 150px);
}

.ginza-editorial-salon__gallery {
	position: relative;
	min-height: 720px;
}

.ginza-editorial-salon__gallery figure {
	position: absolute;
	margin: 0;
}

.ginza-editorial-salon__gallery figure:first-child {
	top: 0;
	left: 0;
	width: 68%;
}

.ginza-editorial-salon__gallery figure:last-child {
	right: 0;
	bottom: 0;
	width: 53%;
	padding: 14px;
	background: var(--ginza-paper);
}

.ginza-editorial-salon__gallery img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

.ginza-editorial-salon__copy h2 {
	font-size: clamp(32px, 4vw, 50px);
}

.ginza-editorial-salon dl {
	margin: 42px 0 0;
}

.ginza-editorial-salon dl > div {
	display: grid;
	grid-template-columns: 90px minmax(0, 1fr);
	gap: 20px;
	padding: 16px 0;
	border-bottom: 1px solid var(--ginza-line-dark);
}

.ginza-editorial-salon dt {
	font-family: var(--ginza-sans);
	font-size: 10px;
	letter-spacing: 0.13em;
}

.ginza-editorial-salon dd {
	margin: 0;
	font-size: 13px;
	line-height: 1.9;
}

.ginza-editorial-salon__links {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 34px;
	margin-top: 34px;
}

.ginza-editorial-menu {
	padding: clamp(100px, 12vw, 180px) 0;
	background: rgba(224, 235, 243, 0.72);
}

.ginza-editorial-menu__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1fr);
	gap: clamp(70px, 11vw, 160px);
}

.ginza-editorial-menu header h2 {
	font-size: clamp(38px, 4.5vw, 58px);
}

.ginza-editorial-menu header > p:last-child {
	margin: 30px 0 0;
	font-size: 13px;
	line-height: 2.1;
}

.ginza-editorial-menu__list > p {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 20px;
	margin: 0;
	padding: 19px 0;
	border-bottom: 1px solid var(--ginza-line-dark);
	font-size: 14px;
}

.ginza-editorial-menu__list strong {
	font-family: var(--ginza-sans);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.06em;
}

.ginza-editorial-menu__list .ginza-editorial-link {
	margin-top: 34px;
}

.ginza-editorial-journal {
	padding: clamp(110px, 14vw, 200px) 0;
}

.ginza-editorial-journal__list {
	margin-top: clamp(60px, 8vw, 100px);
}

.ginza-editorial-journal__list article {
	display: grid;
	grid-template-columns: 130px minmax(0, 1fr) auto;
	align-items: center;
	gap: 30px;
	padding: 30px 0;
	border-top: 1px solid var(--ginza-line-dark);
}

.ginza-editorial-journal__list article:last-child {
	border-bottom: 1px solid var(--ginza-line-dark);
}

.ginza-editorial-journal__list article > p {
	margin: 0;
	font-family: var(--ginza-sans);
	font-size: 10px;
	letter-spacing: 0.12em;
}

.ginza-editorial-journal__list h3 {
	margin: 0;
	font-size: clamp(17px, 2vw, 22px);
	font-weight: 400;
	line-height: 1.7;
}

.ginza-editorial-journal__more {
	margin: 50px 0 0;
	text-align: right;
}

.ginza-editorial-reserve {
	position: relative;
	display: grid;
	min-height: 700px;
	place-items: center;
	padding: 100px 32px;
	background:
		linear-gradient(rgba(20, 37, 51, 0.66), rgba(20, 37, 51, 0.66)),
		url("../images/shop-interior-1920.webp") center / cover no-repeat;
	color: var(--ginza-white);
	text-align: center;
}

.ginza-editorial-reserve__inner {
	width: min(100%, 720px);
}

.ginza-editorial-reserve h2 {
	font-size: clamp(38px, 5.5vw, 68px);
}

.ginza-editorial-reserve__inner > p:not(.ginza-editorial-kicker) {
	margin: 30px 0 0;
	font-size: 14px;
}

.ginza-editorial-reserve__inner > div {
	display: flex;
	justify-content: center;
	gap: 18px;
	margin-top: 50px;
}

.ginza-editorial-reserve__primary,
.ginza-editorial-reserve__secondary {
	display: grid;
	min-width: 220px;
	min-height: 60px;
	place-content: center;
	border: 1px solid currentColor;
	font-family: var(--ginza-sans);
	font-size: 11px;
	letter-spacing: 0.11em;
	transition: background-color 240ms ease, color 240ms ease;
}

.ginza-editorial-reserve__primary {
	background: var(--ginza-white);
	color: var(--ginza-text);
}

.ginza-editorial-reserve__primary:hover {
	background: transparent;
	color: var(--ginza-white);
}

.ginza-editorial-reserve__secondary:hover {
	background: var(--ginza-white);
	color: var(--ginza-text);
}

.ginza-footer.ginza-editorial-footer {
	padding: clamp(90px, 10vw, 140px) max(32px, 5vw) 40px;
	background: var(--ginza-gray-deep);
	color: var(--ginza-white);
}

.ginza-editorial-footer__grid {
	display: grid;
	grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
	width: min(100%, 1380px);
	margin: 0 auto;
	gap: clamp(70px, 10vw, 160px);
}

.ginza-editorial-footer__wordmark {
	display: inline-block;
	font-size: clamp(44px, 6vw, 78px);
	font-weight: 400;
	letter-spacing: 0.04em;
}

.ginza-editorial-footer__identity > p {
	margin: 30px 0;
	font-size: 13px;
	line-height: 2;
}

.ginza-editorial-footer address {
	font-family: var(--ginza-sans);
	font-size: 11px;
	font-style: normal;
	line-height: 2;
	opacity: 0.72;
}

.ginza-editorial-footer__nav {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 34px;
}

.ginza-editorial-footer__nav div {
	display: grid;
	align-content: start;
	gap: 12px;
}

.ginza-editorial-footer__nav p {
	margin: 0 0 12px;
	font-family: var(--ginza-sans);
	font-size: 9px;
	letter-spacing: 0.22em;
	opacity: 0.6;
}

.ginza-editorial-footer__nav a {
	font-size: 12px;
	line-height: 1.6;
}

.ginza-editorial-footer__nav a:hover {
	opacity: 0.58;
}

.ginza-editorial-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(100%, 1380px);
	margin: 90px auto 0;
	padding-top: 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	font-family: var(--ginza-sans);
	font-size: 9px;
	letter-spacing: 0.12em;
}

.ginza-editorial-footer__bottom p {
	margin: 0;
}

.ginza-fixed-actions {
	display: none;
}

/* Shared inner-page refinements. */
.ginza-content-main,
body.ginza-service-page main {
	padding-top: 92px;
}

.ginza-content-main {
	background: transparent;
}

.ginza-content-article {
	width: min(calc(100% - 64px), 1040px);
}

.ginza-content-hero {
	padding: clamp(70px, 9vw, 130px) 0 clamp(54px, 7vw, 92px);
}

.ginza-content-hero .ginza-eyebrow,
.ginza-service-page .ginza-eyebrow {
	font-family: var(--ginza-sans);
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 0.22em;
}

.ginza-content-hero h1 {
	font-family: var(--ginza-serif);
	font-size: clamp(40px, 6vw, 72px);
	font-weight: 400;
	letter-spacing: 0.08em;
}

.ginza-entry-content {
	font-family: var(--ginza-serif);
	font-size: 15px;
	line-height: 2.15;
}

.ginza-brand-page-lead {
	margin: 0 0 80px;
	padding: 36px clamp(24px, 5vw, 62px);
	border-left: 1px solid var(--ginza-text);
	background: rgba(224, 235, 243, 0.64);
	font-size: clamp(18px, 2.6vw, 27px);
	line-height: 2;
}

.ginza-brand-page-lead p {
	margin: 0;
}

.ginza-entry-content > section {
	margin: clamp(70px, 9vw, 120px) 0;
}

.ginza-entry-content > section h2 {
	font-family: var(--ginza-serif);
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 400;
	line-height: 1.65;
	letter-spacing: 0.07em;
}

.ginza-salon-page-access dl > div {
	display: grid;
	grid-template-columns: 130px minmax(0, 1fr);
	gap: 24px;
	padding: 18px 0;
	border-bottom: 1px solid var(--ginza-line-dark);
}

.ginza-salon-page-access dt {
	font-family: var(--ginza-sans);
	font-size: 11px;
	letter-spacing: 0.12em;
}

.ginza-salon-page-access dd {
	margin: 0;
}

.ginza-salon-page-gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.ginza-salon-page-gallery figure {
	margin: 0;
}

.ginza-salon-page-gallery img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

.ginza-js [data-reveal] {
	opacity: 0;
	transform: translateY(38px);
	transition: opacity 900ms cubic-bezier(0.23, 1, 0.32, 1), transform 900ms cubic-bezier(0.23, 1, 0.32, 1);
}

.ginza-js [data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1120px) {
	.ginza-header__inner {
		width: min(calc(100% - 40px), 1520px);
	}

	.ginza-reserve-link {
		display: none;
	}

	.ginza-editorial-concept__grid {
		grid-template-columns: 48px minmax(0, 0.9fr) minmax(300px, 1fr);
		gap: 44px;
	}
}

@media (max-width: 959px) {
	body.ginza-home.admin-bar .ginza-header,
	body.ginza-service-page.admin-bar .ginza-header,
	body.ginza-content-page.admin-bar .ginza-header {
		top: 46px;
	}

	.ginza-header__inner {
		min-height: 72px;
	}

	.ginza-brand img {
		width: 158px;
	}

	.ginza-nav-toggle {
		display: flex;
	}

	.ginza-nav {
		position: fixed;
		top: 0;
		right: 0;
		display: grid;
		width: min(86vw, 420px);
		height: 100svh;
		align-content: center;
		gap: 0;
		padding: 90px 48px;
		background: var(--ginza-gray-deep);
		color: var(--ginza-white);
		box-shadow: -24px 0 60px rgba(30, 45, 58, 0.2);
		opacity: 0;
		pointer-events: none;
		transform: translateX(100%);
		transition: opacity 300ms ease, transform 420ms cubic-bezier(0.23, 1, 0.32, 1);
	}

	.ginza-nav.is-open {
		display: grid;
		opacity: 1;
		pointer-events: auto;
		transform: translateX(0);
	}

	.ginza-nav a {
		display: flex;
		align-items: baseline;
		justify-content: space-between;
		padding: 16px 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
		text-align: left;
	}

	.ginza-nav a span {
		font-family: var(--ginza-serif);
		font-size: 16px;
	}

	.ginza-nav a small {
		font-size: 10px;
	}

	.ginza-nav-toggle {
		position: relative;
		z-index: 2;
	}

	body.ginza-nav-open {
		overflow: hidden;
	}

	.ginza-editorial-wrap {
		width: min(calc(100% - 48px), 760px);
	}

	.ginza-editorial-concept__grid,
	.ginza-editorial-stylist__grid,
	.ginza-editorial-salon__grid,
	.ginza-editorial-menu__grid {
		grid-template-columns: 1fr;
	}

	.ginza-editorial-concept__label {
		display: none;
	}

	.ginza-editorial-concept__copy {
		padding-top: 0;
	}

	.ginza-editorial-concept__image {
		width: min(86%, 540px);
		margin: 28px 0 0 auto;
	}

	.ginza-editorial-service {
		grid-template-columns: 1fr 0.86fr;
		gap: 42px;
	}

	.ginza-editorial-service__image img {
		height: clamp(470px, 74vw, 660px);
	}

	.ginza-editorial-salon__gallery {
		min-height: min(100vw, 700px);
	}

	.ginza-editorial-footer__grid {
		grid-template-columns: 1fr;
	}

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

@media (max-width: 699px) {
	html {
		scroll-padding-top: 72px;
	}

	.ginza-header__inner {
		width: calc(100% - 32px);
		min-height: 68px;
	}

	.ginza-brand img {
		width: 142px;
	}

	.ginza-nav-toggle span {
		display: none;
	}

	.ginza-nav {
		width: 100%;
		padding: 80px 28px 96px;
	}

	.ginza-editorial-wrap {
		width: calc(100% - 40px);
	}

	.ginza-editorial-hero {
		min-height: max(620px, 100svh);
	}

	.ginza-editorial-hero__copy {
		width: calc(100% - 44px);
		margin-top: 24vh;
	}

	.ginza-editorial-hero h1 strong {
		font-size: clamp(38px, 12vw, 58px);
		line-height: 1.45;
	}

	.ginza-editorial-hero h1 > span {
		font-size: 13px;
		letter-spacing: 0.13em;
	}

	.ginza-editorial-hero__lead {
		max-width: 270px;
		font-size: 12px;
		line-height: 2;
	}

	.ginza-editorial-hero__scroll {
		right: 8px;
		bottom: 32px;
	}

	.ginza-editorial-heading h2,
	.ginza-editorial-concept h2,
	.ginza-editorial-stylist h2,
	.ginza-editorial-salon h2,
	.ginza-editorial-menu h2,
	.ginza-editorial-reserve h2 {
		font-size: clamp(29px, 9vw, 42px);
		line-height: 1.65;
	}

	.ginza-editorial-concept,
	.ginza-editorial-services,
	.ginza-editorial-style,
	.ginza-editorial-stylist,
	.ginza-editorial-salon,
	.ginza-editorial-menu,
	.ginza-editorial-journal {
		padding: 100px 0;
	}

	.ginza-editorial-concept__copy > p:not(.ginza-editorial-kicker) {
		font-size: 13px;
		line-height: 2.2;
	}

	.ginza-editorial-concept__image::before {
		top: -18px;
		right: -18px;
	}

	.ginza-editorial-service-list {
		gap: 112px;
		margin-top: 80px;
	}

	.ginza-editorial-service,
	.ginza-editorial-service:nth-child(even) {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 46px;
	}

	.ginza-editorial-service:nth-child(even) .ginza-editorial-service__image {
		order: 0;
	}

	.ginza-editorial-service:nth-child(even) .ginza-editorial-service__copy {
		order: 1;
	}

	.ginza-editorial-service__image {
		width: calc(100% + 40px);
		margin-left: -20px;
	}

	.ginza-editorial-service__image img {
		height: min(132vw, 620px);
	}

	.ginza-editorial-service__copy {
		padding: 0 10px;
	}

	.ginza-editorial-service__number {
		top: -55px;
		left: 0;
		font-size: 60px;
	}

	.ginza-editorial-service__copy h3 {
		font-size: 38px;
	}

	.ginza-editorial-film {
		min-height: 76svh;
	}

	.ginza-editorial-gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-auto-rows: 54vw;
		gap: 8px;
	}

	.ginza-editorial-gallery figure:nth-child(n) {
		grid-column: auto;
		grid-row: auto;
	}

	.ginza-editorial-gallery figure:first-child,
	.ginza-editorial-gallery figure:nth-child(4) {
		grid-row: span 2;
	}

	.ginza-editorial-stylist__grid,
	.ginza-editorial-salon__grid,
	.ginza-editorial-menu__grid {
		gap: 60px;
	}

	.ginza-editorial-stylist figure {
		width: 86%;
	}

	.ginza-editorial-salon__gallery {
		min-height: 126vw;
	}

	.ginza-editorial-salon__gallery figure:last-child {
		padding: 8px;
	}

	.ginza-editorial-menu__list > p {
		font-size: 13px;
	}

	.ginza-editorial-journal__list article {
		grid-template-columns: 1fr auto;
		gap: 12px 20px;
		padding: 24px 0;
	}

	.ginza-editorial-journal__list article > p {
		grid-column: 1 / -1;
	}

	.ginza-editorial-reserve {
		min-height: 620px;
		padding: 80px 20px;
	}

	.ginza-editorial-reserve__inner > div {
		flex-direction: column;
	}

	.ginza-editorial-reserve__primary,
	.ginza-editorial-reserve__secondary {
		width: 100%;
		min-width: 0;
	}

	.ginza-footer.ginza-editorial-footer {
		padding: 80px 24px 100px;
	}

	.ginza-editorial-footer__grid {
		gap: 64px;
	}

	.ginza-editorial-footer__nav {
		gap: 44px 22px;
	}

	.ginza-editorial-footer__bottom {
		margin-top: 68px;
	}

	.ginza-fixed-actions {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 220;
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		padding: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.28);
		background: rgba(18, 29, 40, 0.96);
		backdrop-filter: blur(12px);
	}

	.ginza-fixed-actions a {
		min-height: 56px;
		border-right: 1px solid rgba(255, 255, 255, 0.2);
		background: transparent;
		color: var(--ginza-white);
	}

	.ginza-fixed-actions span {
		font-family: var(--ginza-sans);
		font-size: 9px;
		letter-spacing: 0.12em;
	}

	.ginza-content-main,
	body.ginza-service-page main {
		padding-top: 72px;
	}

	.ginza-content-article {
		width: calc(100% - 40px);
	}

	.ginza-content-hero {
		padding: 62px 0 48px;
	}

	.ginza-content-hero h1 {
		font-size: 36px;
	}

	.ginza-brand-page-lead {
		margin-bottom: 60px;
		padding: 28px 22px;
		font-size: 17px;
	}

	.ginza-salon-page-access dl > div {
		grid-template-columns: 84px minmax(0, 1fr);
	}

	.ginza-salon-page-gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ginza-editorial-hero__slide {
		transition: none;
	}

	.ginza-editorial-hero__slide:not(:first-child) {
		display: none;
	}

	.ginza-js [data-reveal] {
		opacity: 1;
		transform: none;
	}
}

/* --------------------------------------------------------------------------
	Cool-tone palette, Japanese line breaking and menu catalogue
   -------------------------------------------------------------------------- */
body.ginza-home :where(h1, h2, h3, p, li, dt, dd),
body.ginza-service-page :where(h1, h2, h3, p, li, dt, dd),
body.ginza-content-page :where(h1, h2, h3, p, li, dt, dd) {
	line-break: strict;
	overflow-wrap: break-word;
	word-break: normal;
}

body.ginza-home :where(h1, h2, h3),
body.ginza-service-page :where(h1, h2, h3),
body.ginza-content-page :where(h1, h2, h3) {
	text-wrap: balance;
}

body.ginza-home :where(p, li),
body.ginza-service-page :where(p, li),
body.ginza-content-page :where(p, li) {
	text-wrap: pretty;
}

.ginza-heading-line {
	display: block;
}

.ginza-hero-copy-line {
	display: inline;
}

@media (min-width: 700px) {
	.ginza-editorial-hero h1 {
		max-width: 920px;
	}

	.ginza-editorial-hero h1 strong {
		white-space: nowrap;
	}
}

.ginza-menu-page-lead {
	max-width: 820px;
	margin-right: auto;
	margin-left: auto;
	border-left: 0;
	background: var(--ginza-ice);
	text-align: center;
}

.ginza-menu-index {
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr);
	align-items: start;
	gap: 38px;
	margin: 0 0 clamp(90px, 12vw, 150px);
	padding: 30px 0;
	border-top: 1px solid var(--ginza-line-dark);
	border-bottom: 1px solid var(--ginza-line-dark);
}

.ginza-menu-index > p {
	margin: 4px 0 0;
	font-family: var(--ginza-sans);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.22em;
}

.ginza-menu-index ul {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ginza-menu-index a {
	display: flex;
	align-items: baseline;
	gap: 10px;
	font-family: var(--ginza-sans);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-decoration: none;
}

.ginza-menu-index a span {
	color: #7897ad;
	font-size: 9px;
}

.ginza-menu-index a:hover {
	color: #4f7896;
}

.ginza-menu-category {
	scroll-margin-top: 118px;
	margin: 0 0 clamp(90px, 11vw, 140px);
}

.ginza-menu-category > header {
	margin-bottom: clamp(32px, 5vw, 54px);
	text-align: center;
}

.ginza-menu-category > header p {
	margin: 0 0 10px;
	color: #7897ad;
	font-family: var(--ginza-sans);
	font-size: 9px;
	letter-spacing: 0.24em;
}

.ginza-menu-category > header h2 {
	position: relative;
	display: inline-block;
	margin: 0;
	padding: 0 0 20px;
	font-family: var(--ginza-sans);
	font-size: clamp(25px, 3vw, 34px);
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.34em;
}

.ginza-menu-category > header h2::after {
	position: absolute;
	right: 18%;
	bottom: 0;
	left: 18%;
	height: 1px;
	background: var(--ginza-text);
	content: "";
}

.ginza-menu-category > header span {
	display: block;
	margin-top: 12px;
	color: #667382;
	font-size: 12px;
	letter-spacing: 0.14em;
}

.ginza-menu-category__items {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: clamp(44px, 8vw, 100px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.ginza-menu-category__items li {
	display: flex;
	min-width: 0;
	min-height: 78px;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin: 0;
	padding: 21px 0;
	border-bottom: 1px solid rgba(47, 71, 91, 0.42);
	font-size: 14px;
	line-height: 1.7;
}

.ginza-menu-category__items li > span {
	min-width: 0;
}

.ginza-menu-category__items strong {
	flex: 0 0 auto;
	font-family: var(--ginza-sans);
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.04em;
	white-space: nowrap;
}

.ginza-menu-notes {
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr);
	gap: 38px;
	margin: 0 0 54px;
	padding: clamp(28px, 4vw, 46px);
	background: var(--ginza-ice);
}

.ginza-menu-notes h2 {
	margin: 0;
	font-family: var(--ginza-sans);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.16em;
}

.ginza-menu-notes ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ginza-menu-notes li {
	position: relative;
	margin: 0;
	padding: 3px 0 3px 18px;
	font-size: 13px;
	line-height: 1.9;
}

.ginza-menu-notes li::before {
	position: absolute;
	top: 1.02em;
	left: 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #7897ad;
	content: "";
}

.ginza-menu-consult {
	margin: 0;
	text-align: center;
}

@media (min-width: 700px) and (max-width: 959px) {
	.ginza-content-hero h1 {
		font-size: clamp(43px, 6.3vw, 52px);
		line-height: 1.45;
		letter-spacing: 0.055em;
	}

	.ginza-menu-index {
		grid-template-columns: 120px minmax(0, 1fr);
	}

	.ginza-menu-index ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 699px) {
	.ginza-content-hero h1 {
		font-size: clamp(30px, 8.2vw, 34px);
		line-height: 1.5;
		letter-spacing: 0.035em;
	}

	.ginza-hero-copy-line {
		display: block;
		white-space: nowrap;
	}

	.ginza-editorial-hero h1 strong {
		font-size: clamp(38px, 11.5vw, 52px);
		letter-spacing: 0.04em;
	}

	.ginza-editorial-heading h2,
	.ginza-editorial-concept h2,
	.ginza-editorial-stylist h2,
	.ginza-editorial-salon h2,
	.ginza-editorial-menu h2,
	.ginza-editorial-reserve h2 {
		font-size: clamp(26.5px, 6vw, 34px);
		letter-spacing: 0.025em;
	}

	#concept-title .ginza-heading-line,
	#services-title .ginza-heading-line,
	#hair-title .ginza-heading-line,
	#reserve-title .ginza-heading-line {
		white-space: nowrap;
	}

	.ginza-menu-page-lead {
		padding: 26px 20px;
		font-size: 16px;
		line-height: 1.95;
	}

	.ginza-menu-index {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-bottom: 88px;
		padding: 24px 0;
	}

	.ginza-menu-index ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 15px 18px;
	}

	.ginza-menu-index a {
		font-size: 10px;
	}

	.ginza-menu-category {
		scroll-margin-top: 96px;
		margin-bottom: 92px;
	}

	.ginza-menu-category > header {
		margin-bottom: 28px;
	}

	.ginza-menu-category > header h2 {
		padding-bottom: 17px;
		font-size: 25px;
		letter-spacing: 0.28em;
	}

	.ginza-menu-category__items {
		grid-template-columns: 1fr;
	}

	.ginza-menu-category__items li {
		min-height: 70px;
		gap: 12px;
		padding: 18px 0;
		font-size: 13.5px;
	}

	.ginza-menu-category__items strong {
		font-size: 12px;
	}

	.ginza-menu-notes {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 28px 22px;
	}
}

@media (max-width: 374px) {
	.ginza-content-hero h1 {
		font-size: 29px;
	}

	.ginza-menu-index ul {
		grid-template-columns: 1fr;
	}

	#reserve-title .ginza-heading-line {
		white-space: normal;
	}

	.ginza-menu-category__items li {
		font-size: 13px;
	}
}

/* --------------------------------------------------------------------------
	Reservation routes, service hero contrast and expanded editorial pages
   -------------------------------------------------------------------------- */
.ginza-reserve-link {
	min-width: 174px;
}

.ginza-reserve-link small {
	font-family: var(--ginza-sans);
	font-size: 8px;
}

.ginza-fixed-actions a {
	gap: 2px;
}

.ginza-fixed-actions small {
	font-family: var(--ginza-sans);
	font-size: 7px;
	letter-spacing: 0.09em;
	opacity: 0.68;
}

.ginza-button {
	box-sizing: border-box;
	text-align: center;
}

.ginza-button--primary {
	border-color: var(--ginza-dark);
	background: var(--ginza-dark);
	color: var(--ginza-white);
}

.ginza-page-reserve-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.ginza-menu-consult {
	justify-content: center;
}

.ginza-global-reserve {
	padding: clamp(82px, 10vw, 130px) 32px;
	background: var(--ginza-ice);
	color: var(--ginza-text);
}

.ginza-global-reserve__inner {
	display: grid;
	grid-template-columns: minmax(260px, 0.7fr) minmax(480px, 1.3fr);
	align-items: start;
	width: min(100%, 1160px);
	margin: 0 auto;
	gap: clamp(54px, 9vw, 120px);
}

.ginza-global-reserve header > p:first-child {
	margin: 0 0 18px;
	font-family: var(--ginza-sans);
	font-size: 9px;
	letter-spacing: 0.24em;
}

.ginza-global-reserve h2 {
	margin: 0;
	font-size: clamp(32px, 4vw, 52px);
	font-weight: 400;
	line-height: 1.45;
}

.ginza-global-reserve header > p:last-child {
	margin: 26px 0 0;
	font-size: 13px;
	line-height: 2;
}

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

.ginza-global-reserve__choices a {
	display: flex;
	min-height: 220px;
	box-sizing: border-box;
	flex-direction: column;
	justify-content: space-between;
	padding: clamp(26px, 3vw, 38px);
	border: 1px solid rgba(47, 71, 91, 0.28);
	text-decoration: none;
	transition: transform 220ms ease, background-color 220ms ease, color 220ms ease;
}

.ginza-global-reserve__choices a:hover {
	transform: translateY(-4px);
}

.ginza-global-reserve__hotpepper {
	background: var(--ginza-dark);
	color: var(--ginza-white);
}

.ginza-global-reserve__line {
	background: var(--ginza-white);
	color: var(--ginza-text);
}

.ginza-global-reserve__choices small,
.ginza-global-reserve__choices span {
	font-family: var(--ginza-sans);
	font-size: 9px;
	letter-spacing: 0.13em;
}

.ginza-global-reserve__choices strong {
	font-family: var(--ginza-sans);
	font-size: clamp(18px, 2.2vw, 25px);
	font-weight: 500;
	line-height: 1.45;
}

.ginza-service-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	border: 1px solid rgba(47, 71, 91, 0.2);
	background: var(--ginza-dark);
	color: var(--ginza-white);
}

.ginza-service-hero__copy {
	position: relative;
	z-index: 2;
	background: var(--ginza-dark);
	color: var(--ginza-white);
}

.ginza-service-hero .ginza-eyebrow {
	color: var(--ginza-blue-light);
}

.ginza-service-hero h1 {
	color: var(--ginza-white);
	font-size: clamp(36px, 4vw, 52px);
}

.ginza-service-title-line {
	display: block;
	white-space: nowrap;
}

.ginza-service-hero__copy > p:not(.ginza-eyebrow) {
	color: rgba(255, 255, 255, 0.82);
	line-height: 2;
}

.ginza-service-hero figure {
	position: relative;
	z-index: 1;
	overflow: hidden;
	background: var(--ginza-ice);
}

.ginza-service-reserve-actions {
	display: grid;
	max-width: 390px;
	gap: 10px;
}

.ginza-service-reserve-actions .ginza-button {
	width: 100%;
	min-width: 0;
}

.ginza-service-reserve-actions .ginza-button--primary {
	border-color: var(--ginza-white);
	background: var(--ginza-white);
	color: var(--ginza-dark);
}

.ginza-service-reserve-actions .ginza-button--secondary {
	border-color: rgba(255, 255, 255, 0.72);
	color: var(--ginza-white);
}

.ginza-editorial-hero__slides {
	z-index: 0;
}

.ginza-editorial-hero__veil {
	z-index: 2;
	pointer-events: none;
}

.ginza-editorial-hero__copy {
	z-index: 5;
	isolation: isolate;
}

.ginza-editorial-reserve__primary,
.ginza-editorial-reserve__secondary {
	min-width: 270px;
}

.ginza-profile-intro {
	display: grid;
	grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
	align-items: center;
	margin: 0 0 clamp(80px, 10vw, 130px);
	background: var(--ginza-ice);
}

.ginza-profile-intro figure {
	margin: 0;
}

.ginza-profile-intro img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

.ginza-profile-intro > div {
	padding: clamp(32px, 6vw, 76px);
}

.ginza-profile-intro__lead {
	margin: 20px 0 26px;
	font-size: clamp(20px, 2.6vw, 30px);
	line-height: 1.85;
}

.ginza-profile-specialties,
.ginza-concept-values {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 38px;
}

.ginza-profile-specialties article,
.ginza-concept-values article {
	padding: clamp(24px, 3.2vw, 38px);
	border-top: 1px solid rgba(47, 71, 91, 0.5);
	background: rgba(229, 240, 247, 0.5);
}

.ginza-profile-specialties h3,
.ginza-concept-values h3 {
	margin: 0 0 18px;
	font-size: clamp(18px, 2vw, 23px);
	font-weight: 500;
	line-height: 1.6;
}

.ginza-profile-specialties p,
.ginza-concept-values p {
	margin: 0;
	font-size: 13px;
	line-height: 2;
}

.ginza-concept-values span {
	display: block;
	margin-bottom: 26px;
	color: #7897ad;
	font-family: var(--ginza-sans);
	font-size: 10px;
	letter-spacing: 0.16em;
}

.ginza-concept-checks {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 34px;
	margin: 34px 0 0;
	padding: 0;
	list-style: none;
}

.ginza-concept-checks li {
	padding: 15px 0;
	border-bottom: 1px solid var(--ginza-line-dark);
	font-size: 14px;
}

@media (max-width: 959px) {
	.ginza-global-reserve__inner {
		grid-template-columns: 1fr;
	}

	.ginza-service-hero__copy,
	.ginza-service-hero figure {
		isolation: isolate;
	}

	.ginza-editorial-hero__copy {
		box-sizing: border-box;
		max-width: 720px;
		padding: 28px 30px;
		border-left: 1px solid rgba(185, 216, 234, 0.8);
		background: linear-gradient(120deg, rgba(12, 26, 38, 0.82), rgba(12, 26, 38, 0.5));
		box-shadow: 0 18px 52px rgba(0, 0, 0, 0.16);
		backdrop-filter: blur(3px);
	}

	.ginza-profile-intro {
		grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
	}
}

@media (max-width: 699px) {
	.ginza-global-reserve {
		padding: 76px 20px;
	}

	.ginza-global-reserve__inner {
		gap: 44px;
	}

	.ginza-global-reserve__choices {
		grid-template-columns: 1fr;
	}

	.ginza-global-reserve__choices a {
		min-height: 180px;
	}

	.ginza-editorial-hero__copy {
		width: calc(100% - 32px);
		margin-top: 22vh;
		padding: 24px 22px;
	}

	.ginza-service-hero__copy {
		padding: 40px 24px 44px;
	}

	.ginza-service-hero h1 {
		font-size: clamp(27px, 8vw, 34px);
		line-height: 1.5;
	}

	.ginza-service-hero img {
		min-height: 420px;
		max-height: 560px;
	}

	.ginza-editorial-reserve__primary,
	.ginza-editorial-reserve__secondary {
		min-width: 0;
	}

	.ginza-page-reserve-actions {
		flex-direction: column;
	}

	.ginza-page-reserve-actions .ginza-button {
		width: 100%;
		min-width: 0;
	}

	.ginza-profile-intro {
		grid-template-columns: 1fr;
	}

	.ginza-profile-intro figure {
		width: 78%;
	}

	.ginza-profile-specialties,
	.ginza-concept-values,
	.ginza-concept-checks {
		grid-template-columns: 1fr;
	}
}

/* --------------------------------------------------------------------------
	HPB image pool, reservation contrast and responsive Japanese composition
   -------------------------------------------------------------------------- */
.ginza-editorial-hero__slide img {
	object-position: 50% 42%;
}

.ginza-reserve-link,
.ginza-editorial-reserve__primary,
.ginza-button--primary,
.ginza-global-reserve__hotpepper {
	border: 2px solid #b9d8ea;
	background: #173e59;
	box-shadow: 0 10px 28px rgba(12, 31, 45, 0.24);
	color: #fff;
}

body.ginza-home .ginza-header:not(.is-scrolled) .ginza-reserve-link {
	border-color: #d9edf8;
	background: rgba(19, 55, 80, 0.96);
	color: #fff;
}

.ginza-reserve-link:hover,
.ginza-editorial-reserve__primary:hover,
.ginza-button--primary:hover,
.ginza-global-reserve__hotpepper:hover,
body.ginza-home .ginza-header:not(.is-scrolled) .ginza-reserve-link:hover {
	border-color: #173e59;
	background: #e5f0f7;
	color: #173e59;
}

.ginza-reserve-link span {
	font-size: 10px;
	font-weight: 650;
	letter-spacing: 0.035em;
	white-space: nowrap;
}

.ginza-reserve-link small {
	margin-top: 2px;
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.14em;
	opacity: 1;
}

a.ginza-reserve-link,
body.ginza-home .ginza-header:not(.is-scrolled) a.ginza-reserve-link {
	color: #fff;
}

.ginza-global-reserve__choices a.ginza-global-reserve__hotpepper {
	border-color: #b9d8ea;
	background: #173e59;
	color: #fff;
}

.ginza-global-reserve__hotpepper small,
.ginza-global-reserve__hotpepper strong,
.ginza-global-reserve__hotpepper span {
	color: #fff;
	opacity: 1;
}

.ginza-editorial-stylist {
	position: relative;
	z-index: 1;
	isolation: isolate;
	overflow: clip;
}

/*
 * WordPress adds intrinsic width/height attributes to these images. Reset the
 * fixed height so the section-specific aspect ratios control the rendered
 * size instead of leaving the image at 1024px tall on narrower screens.
 */
.ginza-editorial-concept__image img,
.ginza-editorial-stylist figure img {
	height: auto;
}

@media (max-width: 959px) {
	.ginza-editorial-concept__image {
		width: min(78%, 560px);
		margin-right: auto;
		margin-left: auto;
	}

	.ginza-editorial-stylist figure {
		width: min(78%, 620px);
		margin-right: auto;
		margin-left: auto;
	}

	.ginza-editorial-concept__image img {
		aspect-ratio: 4 / 3;
		object-position: center 48%;
	}

	.ginza-editorial-stylist figure img {
		aspect-ratio: 5 / 4;
		object-position: center 24%;
	}
}

.ginza-editorial-salon {
	position: relative;
	z-index: 0;
	isolation: isolate;
	overflow: clip;
}

body.ginza-home :where(h1, h2, h3, p, li, dt, dd, blockquote),
body.ginza-service-page :where(h1, h2, h3, p, li, dt, dd, blockquote),
body.ginza-content-page:not(.single-post) :where(h1, h2, h3, p, li, dt, dd, blockquote) {
	line-break: strict;
	word-break: normal;
	overflow-wrap: break-word;
	hyphens: none;
}

@supports (word-break: auto-phrase) {
	body.ginza-home :where(h1, h2, h3, p, li, dt, dd, blockquote),
	body.ginza-service-page :where(h1, h2, h3, p, li, dt, dd, blockquote),
	body.ginza-content-page:not(.single-post) :where(h1, h2, h3, p, li, dt, dd, blockquote) {
		word-break: auto-phrase;
	}
}

.ginza-heading-line,
.ginza-service-title-line {
	max-width: 100%;
	text-wrap: balance;
}

@media (min-width: 700px) and (max-width: 959px) {
	body.ginza-home :where(p, li, dd, blockquote),
	body.ginza-service-page :where(p, li, dd, blockquote),
	body.ginza-content-page:not(.single-post) :where(p, li, dd, blockquote) {
		text-wrap: pretty;
	}
}

.ginza-service-detail > h2 {
	max-width: 820px;
}

.ginza-service-detail-list {
	margin-top: clamp(52px, 7vw, 84px);
}

.ginza-service-detail-list article {
	display: grid;
	grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
	gap: clamp(34px, 7vw, 94px);
	padding: clamp(34px, 5vw, 58px) 0;
	border-top: 1px solid rgba(47, 71, 91, 0.38);
}

.ginza-service-detail-list article:last-child {
	border-bottom: 1px solid rgba(47, 71, 91, 0.38);
}

.ginza-service-detail-list h3 {
	margin: 0;
	font-size: clamp(21px, 2.6vw, 30px);
	font-weight: 500;
	line-height: 1.7;
}

.ginza-service-detail-list p {
	margin: 0;
	font-size: 14px;
	line-height: 2.15;
}

.ginza-service-detail-list p + p {
	margin-top: 20px;
}

@media (max-width: 699px) {
	.ginza-service-detail-list article {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.ginza-service-detail-list p {
		font-size: 13px;
		line-height: 2.05;
	}
}

@media (max-width: 699px) {
	.ginza-editorial-concept__image,
	.ginza-editorial-stylist figure {
		width: 100%;
	}

	.ginza-editorial-stylist__grid,
	.ginza-editorial-salon__grid {
		gap: 52px;
	}

	.ginza-editorial-salon__gallery {
		display: grid;
		grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
		align-items: start;
		gap: 10px;
		min-height: 0;
	}

	.ginza-editorial-salon__gallery figure:first-child,
	.ginza-editorial-salon__gallery figure:last-child {
		position: relative;
		top: auto;
		right: auto;
		bottom: auto;
		left: auto;
		width: 100%;
	}

	.ginza-editorial-salon__gallery figure:last-child {
		margin-top: 46px;
		padding: 6px;
	}

	.ginza-editorial-salon__gallery figure {
		height: clamp(300px, 88vw, 380px);
		overflow: hidden;
	}

	.ginza-editorial-salon__gallery picture {
		display: block;
		height: 100%;
	}

	.ginza-editorial-salon__gallery img {
		display: block;
		height: 100%;
		aspect-ratio: auto;
		object-fit: cover;
	}

	.ginza-fixed-actions a:nth-child(2) {
		border-top: 3px solid #8bb7d0;
		background: #e5f0f7;
		box-shadow: 0 -8px 24px rgba(8, 28, 43, 0.24);
		color: #173e59;
	}

	.ginza-fixed-actions a:nth-child(2) span {
		font-size: 8px;
		font-weight: 700;
		letter-spacing: 0.015em;
		white-space: nowrap;
	}

	.ginza-fixed-actions a:nth-child(2) small {
		font-size: 8px;
		font-weight: 700;
		letter-spacing: 0.12em;
		opacity: 1;
	}

	body.ginza-home :where(p, li, dd, blockquote),
	body.ginza-service-page :where(p, li, dd, blockquote),
	body.ginza-content-page:not(.single-post) :where(p, li, dd, blockquote) {
		text-wrap: pretty;
	}
}
