@charset "UTF-8";
/* ==================================================
   Design tokens
================================================== */
:root {
	--gold: #b88728;
	--ink: #1a1a1a;
	--ivory: #fdfbf7;
	--serif: "Noto Serif JP",serif;
	--display: "Cormorant Garamond",serif;
	--header: 80px;
}

/* ==================================================
   Base
================================================== */
* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden
}

body {
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
	margin: 0;
	color: var(--ink);
	background: #fff;
	font-family: var(--serif);
	font-weight: 300;
	line-height: 1.8;
	-webkit-font-smoothing: antialiased
}

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

img {
	display: block;
	max-width: 100%
}

button,
input,
textarea {
	font: inherit
}

figure {
	display: block;
	margin-block-start: 0;
	margin-block-end: 0;
	margin-inline-start: 0;
	margin-inline-end: 0;
	unicode-bidi: isolate;
}

/* ==================================================
   Layout
================================================== */
.container {
	width: min(1120px,calc(100% - 48px));
	margin: auto
}

.container.narrow {
	width: min(820px,calc(100% - 48px))
}

/* ==================================================
   Header / navigation
================================================== */
.site-header {
	width: 100%;
	max-width: 100%;
	position: fixed;
	inset: 0 0 auto;
	z-index: 100;
	height: var(--header);
	background: rgba(255,255,255,.8);
	backdrop-filter: blur(12px);
	transition: .4s;
	border-bottom: 1px solid transparent
}

.site-header.scrolled {
	background: rgba(255,255,255,.96);
	border-color: rgba(184,150,90,.12);
	box-shadow: 0 8px 30px rgba(0,0,0,.04)
}

.header-inner {
	max-width: 100%;
	min-width: 0;
	width: min(1280px,calc(100% - 48px));
	height: 100%;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between
}

.footer-brand ,
.brand {
	min-width: 0;
	display: flex;
	align-items: center;
	gap: 12px;
}
.footer-brand {
	justify-content: center;
	margin-bottom: 28px
}
.footer-brand img ,
.brand img {
	width: 40px;
	height: 40px;
	object-fit: contain;
	opacity: .9
}
.brand-text {
	min-width: 0;
	display: flex;
	align-items: center;
	gap: 12px;
	line-height: 1
}
.brand-text small {
	font-size: 12px;
	letter-spacing: .1em;
	color: rgba(26,26,26,.8);
}
.brand-text strong {
	font-family: var(--display);
	font-size: 28px;
	font-weight: 300;
	letter-spacing: .16em
}
.brand-text img {
	width: 68px;
	height: 24px;
	object-fit: contain;
	opacity: .9
}


.global-nav {
	display: flex;
	gap: 38px
}

.global-nav a {
	text-transform: uppercase;
	font-family: var(--display);
	font-size: 14px;
	letter-spacing: .15em;
	color: rgba(26,26,26,.85);
	transition: .3s
}

.global-nav a:hover {
	color: var(--gold)
}

.menu-button {
	flex: 0 0 36px;
	display: none;
	width: 36px;
	height: 36px;
	border: 0;
	background: none;
	position: relative;
	z-index: 120
}

.menu-button span {
	position: absolute;
	left: 7px;
	width: 22px;
	height: 1px;
	background: var(--ink);
	transition: .3s
}
.menu-button span:nth-child(1){
	top:10px;
}
.menu-button span:nth-child(2){
	top:17px;
}
.menu-button span:nth-child(3){
	top:24px;
}
.menu-button.active span:nth-child(1){
	top:10px;
	transform: translateY(4.5px) rotate(45deg)
}
.menu-button.active span:nth-child(2){
	opacity:0;
}
.menu-button.active span:nth-child(3){
	top:19px;
	transform: translateY(-4.5px) rotate(-45deg)
}

/* ==================================================
   Luxury mobile menu
================================================== */

.mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 90;
	display: grid;
	place-items: center;
	padding: calc(var(--header) + 30px) 28px 38px;
	background:
		linear-gradient(
			135deg,
			rgba(255, 255, 255, 0.98),
			rgba(253, 251, 247, 0.98)
		);
	opacity: 0;
	visibility: hidden;
	transform: scale(1.02);
	transition:
		opacity 0.5s ease,
		visibility 0.5s ease,
		transform 0.7s cubic-bezier(.22, 1, .36, 1);
	overflow: hidden;
	backdrop-filter:blur(16px);
}

/* 薄いゴールドの光 */
.mobile-menu::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(
			circle at 50% 20%,
			rgba(184, 150, 90, 0.13),
			transparent 42%
		),
		linear-gradient(
			90deg,
			transparent,
			rgba(184, 150, 90, 0.05),
			transparent
		);
	pointer-events: none;
}

/* 細かい質感 */
.mobile-menu::after {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0.18;
	background-image:
		linear-gradient(
			rgba(184, 150, 90, 0.05) 1px,
			transparent 1px
		),
		linear-gradient(
			90deg,
			rgba(184, 150, 90, 0.04) 1px,
			transparent 1px
		);
	background-size: 48px 48px;
	mask-image:
		linear-gradient(
			to bottom,
			transparent,
			black 20%,
			black 80%,
			transparent
		);
	pointer-events: none;
}

.mobile-menu.open {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
	animation:menuFade .6s ease forwards;
}
.mobile-menu__inner {
	position: relative;
	z-index: 2;
	width: min(420px, 100%);
	display: flex;
	flex-direction: column;
	align-items: center;
}
/* ブランド部分 */
.mobile-menu__brand {
	text-align: center;
	margin-bottom: 38px;
}
.mobile-menu__brand span {
	display: block;
	margin-bottom: 12px;
	font: 400 10px var(--display);
	letter-spacing: 0.32em;
	color: rgba(26,26,26,0.8);
}
.mobile-menu__brand strong {
	display: block;
	font: 300 42px/1 var(--display);
	letter-spacing: 0.2em;
	color: rgba(26,26,26,0.76);
}
.mobile-menu__brand strong img {
	width: 136px;
	height: 48px;
	margin: 0 auto;
	opacity: .9;
}
.mobile-menu__brand i {
	display: block;
	width: 70px;
	height: 1px;
	margin: 20px auto 0;
	background:
		linear-gradient(
			90deg,
			transparent,
			var(--gold),
			transparent
		);
	opacity: 0.7;
}
/* ナビゲーション */
.mobile-menu__nav {
	width: 100%;
	display: flex;
	flex-direction: column;
	border-top: 1px solid rgba(184, 150, 90, 0.16);
}
.mobile-menu__nav a {
	position: relative;
	display: grid;
	grid-template-columns: 44px 1fr 28px;
	align-items: center;
	min-height: 62px;
	padding: 0 4px;
	border-bottom: 1px solid rgba(184, 150, 90, 0.16);
	color: rgba(26,26,26,0.68);
	opacity: 0;
	transform: translateY(18px);
	transition:
		color 0.35s ease,
		padding-left 0.35s ease,
		background-color 0.35s ease;
}
.mobile-menu__nav a::after {
	content: "";
	width: 18px;
	height: 1px;
	justify-self: end;
	background: rgba(184,150,90,.8);
	transform-origin: right center;
	transition:
		width 0.35s ease,
		background-color 0.35s ease;
}

.mobile-menu__nav a small {
	font: 400 24px var(--display);
	letter-spacing: 0.12em;
	color: rgba(184,150,90,.8);
}

.mobile-menu__nav a span {
	font: 400 22px var(--display);
	letter-spacing: 0.12em;
}

/* 開いた時に順番に表示 */
.mobile-menu.open .mobile-menu__nav a {
	animation:
		mobile-menu-item-show 0.8s
		cubic-bezier(.22, 1, .36, 1)
		forwards;
}

.mobile-menu.open .mobile-menu__nav a:nth-child(1) {
	animation-delay: 0.12s;
}
.mobile-menu.open .mobile-menu__nav a:nth-child(2) {
	animation-delay: 0.18s;
}
.mobile-menu.open .mobile-menu__nav a:nth-child(3) {
	animation-delay: 0.24s;
}
.mobile-menu.open .mobile-menu__nav a:nth-child(4) {
	animation-delay: 0.30s;
}
.mobile-menu.open .mobile-menu__nav a:nth-child(5) {
	animation-delay: 0.36s;
}
@keyframes mobile-menu-item-show {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* タッチ時・ホバー時 */
.mobile-menu__nav a:hover,
.mobile-menu__nav a:focus-visible {
	color: var(--gold);
	padding-left: 8px;
	background: rgba(184, 150, 90, 0.035);
}

.mobile-menu__nav a:hover::after,
.mobile-menu__nav a:focus-visible::after {
	width: 26px;
	background: var(--gold);
}

/* 下部テキスト */
.mobile-menu__footer {
	margin-top: 34px;
	text-align: center;
}

.mobile-menu__footer span {
	display: block;
	font: 400 10px var(--display);
	letter-spacing: 0.28em;
	color: var(--gold);
}

.mobile-menu__footer p {
	margin: 5px 0 0;
	font: 300 13px var(--display);
	letter-spacing: 0.16em;
	color: rgba(26,26,26,.8);
}

/* 背景装飾 */
.mobile-menu__ornament {
	position: absolute;
	left: 50%;
	bottom: -110px;
	display: flex;
	transform: translateX(-50%);
	opacity: 0.055;
}

.mobile-menu__ornament i {
	width: 210px;
	height: 210px;
	margin: -24px;
	border: 1px solid var(--gold);
	border-radius: 50%;
}

/* ==================================================
   Entrance page
================================================== */
.entrance {
	min-height: 100svh;
	display: grid;
	place-items: center;
	text-align: center;
	background: linear-gradient(#fff,var(--ivory),#f9f5ee);
	overflow: hidden;
	position: relative
}

.entrance-inner {
	padding: 24px 24px;
	position: relative;
	z-index: 2
}

.entrance-logo {
	width: 80px;
	height: 80px;
	object-fit: contain;
	margin: 0 auto 12px;
	opacity: .9
}

.eyebrow-jp {
	font-size: 14px;
	letter-spacing: .15em;
	color: rgba(26,26,26,.5);
	margin: 0 0 6px;
}

.entrance h1 {
	font: 300 clamp(56px,8vw,82px)/1 var(--display);
	letter-spacing: .16em;
	margin: 0 auto 30px;
	padding: 12px 0;
	text-align: center;
}
.entrance h1 img {
	width: 136px;
	height: 48px;
	margin: 0 auto;
	opacity: .9;
}
.welcome {
	font: 300 21px var(--display);
	letter-spacing: .2em;
	margin: 0 0 6px
}

.invitation {
	font: 400 15px var(--display);
	letter-spacing: .3em;
	text-transform: uppercase;
	color: var(--gold);
	margin: 0 0 36px
}

.entrance-copy {
	font-size: 14px;
	color: rgba(26,26,26,.58);
	line-height: 2
}

.entrance-copy small {
	color: rgba(26,26,26,.4)
}

.gold-line {
	height: 1px;
	background: linear-gradient(90deg,transparent,var(--gold),transparent);
	width: 100%;
	margin: 42px auto
}

.gold-line.short {
	width: 120px;
	margin-top: 38px
}

.outline-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 190px;
	padding: 14px 34px;
	border: 1px solid rgba(184,150,90,.55);
	background: transparent;
	color: var(--gold);
	font: 400 14px var(--display);
	letter-spacing: .28em;
	transition: .3s
}

.outline-button:hover {
	border-color: var(--gold);
	background: rgba(184,150,90,.06)
}

/* ===========================
   HERO
=========================== */

.hero{
	opacity: 0;
	will-change:opacity;
	position:relative;
	min-height:100svh;
	display:grid;
	place-items:center;
	overflow:hidden;
	background:#f8f5ef;
	animation:
		heroShow .8s ease .3s forwards;
}
@keyframes heroShow{
	to{
		opacity:1;
	}
}

/* 背景画像 */
.hero-overlay{
	transform:scale(1.08);
	will-change:transform;
	z-index:0;
	position:absolute;
	inset:0;
	background-image:url("../img/hero-hotel.jpg");
	background-repeat:no-repeat;
	background-position:center center;
	background-size:cover;
	animation:
		heroZoom 12s ease-out forwards;
}
@keyframes heroZoom{
	to{
		transform:scale(1);
	}
}


/* コンテンツ */
.hero-content {
	position:relative;
	z-index:2;
}
.hero-top .hero-content {
	text-shadow: 2px 2px 8px rgba(255,255,255,1),
			 -2px 2px 8px rgba(255,255,255,1),
			 2px -2px 8px rgba(255,255,255,1),
			 -2px -2px 8px rgba(255,255,255,1),
			 0 0 5px rgba(255,255,255,.9),
			 0 0 2px rgba(255,255,255,.9);
}
.hero-membership .hero-content {
	color: #fff;
	text-shadow: 2px 2px 8px rgba(0,0,0,1),
			 -2px 2px 8px rgba(0,0,0,1),
			 2px -2px 8px rgba(0,0,0,1),
			 -2px -2px 8px rgba(0,0,0,1),
			 0 0 5px rgba(0,0,0,.9),
			 0 0 2px rgba(0,0,0,.9);
}
.hero-content > p {
	font: 400 14px var(--display);
	letter-spacing: .3em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 28px;
}
.hero h1 {
	font-size: clamp(26px,4vw,52px);
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: .05em;
}
.hero h1.hero-sub {
	text-transform: uppercase;
	font: 300 clamp(32px,7vw,52px)/1 var(--display);
	font-family: var(--serif);
	font-weight: 300;
	letter-spacing: 0.16em;
	line-height: 1.8;
}
.hero h1.hero-sub span {
	display: block;
	font: 700 clamp(18px, 1.8vw, 24px) var(--display);
	letter-spacing: 0.03em;
	line-height: 1.4;
}


/* ==================================================
   Hero title animation
================================================== */

.hero-title__line {
	display: inline;
}

/* JavaScriptで分割された1文字 */
.hero-title__character {
	display: inline-block;

	opacity: 0;
	visibility: hidden;

	transform: translateY(24px);
	filter: blur(5px);

	animation-name: none;
}

/* JavaScript処理後にアニメーション開始 */
.hero-title.is-animated .hero-title__character {
	visibility: visible;

	animation-name: hero-title-character;
	animation-duration: 1.1s;
	animation-timing-function: cubic-bezier(.22, 1, .36, 1);
	animation-delay: var(--character-delay);
	animation-fill-mode: forwards;
}

@keyframes hero-title-character {
	0% {
		opacity: 0;
		transform: translateY(24px);
		filter: blur(5px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
		filter: blur(0);
	}
}


.scroll-line {
	z-index:2;
	position: absolute;
	left: 50%;
	bottom: 36px;
	width: 1px;
	height: 48px;
	background: linear-gradient(var(--gold),transparent);
	animation: float 2s infinite
}

/* ==================================================
   Shared sections
================================================== */
.section {
	padding: clamp(90px,10vw,145px) 0;
	position: relative
}

.section.ivory,
.page-hero.ivory {
	background: var(--ivory)
}

.page-hero {
	padding: 150px 0 100px
}

.pt0 {
	padding-top: 0
}

.section-heading {
	text-align: center;
	margin-bottom: 62px
}

.section-heading.left {
	text-align: left
}

.section-heading p {
	font: 400 14px var(--display);
	letter-spacing: .28em;
	text-transform: uppercase;
	color: var(--gold);
	margin: 0 0 8px
}

.section-heading h2 {
	font-size: clamp(22px,3vw,32px);
	font-weight: 500;
	letter-spacing: .08em;
	margin: 0
}

.section-heading span:not(.spbr) {
	display: block;
	width: 58px;
	height: 1px;
	background: var(--gold);
	opacity: .45;
	margin: 22px auto 0
}

.section-heading.left span {
	margin-left: 0
}

.prose {
	color: rgba(26,26,26,.9);
	font-size: 15px;
	line-height: 2.2;
	letter-spacing: .03em
}

.prose p {
	margin: 0 0 20px
}

.center-copy {
	text-align: center;
	color: rgba(26,26,26,.65);
	font-size: 15px;
	line-height: 2.2;
	margin: 0 auto 0.2em
}

/* ==================================================
   Membership / services
================================================== */
.hero-membership .hero-overlay {
	background-image:url("../img/hero-membership.jpg");
	background-repeat:no-repeat;
	background-position:center center;
	background-size:cover;
}

.member-grid {
	max-width: 720px;
	margin: auto;
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 12px 28px;
	text-align: center
}

.member-grid span {
	padding: 16px 8px;
	color: var(--gold);
	font-size: 14px
}

.service-grid {
	margin: 2.5em auto 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px 52px
}

.service-card {
	border-left: 2px solid rgba(184,150,90,.32);
	padding: 8px 0 8px 24px;
	transition: .35s
}

.service-card:hover {
	border-color: var(--gold)
}

.service-card h3 {
	font-size: 17px;
	font-weight: 400;
	letter-spacing: .03em;
	margin: 0 0 7px
}

.service-card p {
	font-size: 13px;
	color: rgba(26,26,26,.5);
	margin: 0
}

.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 70px;
	align-items: center
}

.art img ,
.photo img {
	width: 420px;
	margin: auto;
	opacity: 1
}

.news-list a {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 20px;
	padding: 19px 0;
	border-bottom: 1px solid rgba(184,150,90,.18);
	transition: .3s
}

.news-list a:hover {
	border-color: rgba(184,150,90,.55)
}

.news-list time {
	font: 400 13px var(--display);
	letter-spacing: .1em;
	color: var(--gold)
}

.news-list span {
	font-size: 14px;
	color: rgba(26,26,26,.9)
}
/* ==================================================
   Membership flow
   PC：中央ライン＋左右交互
================================================== */

.flow {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 48px;
	max-width: 960px;
	margin: 0 auto;
}

/* 中央の縦ライン */
.flow::before {
	content: "";
	position: absolute;
	top: 20px;
	bottom: 20px;
	left: 50%;
	width: 1px;
	background: linear-gradient(
		to bottom,
		transparent,
		rgba(184, 150, 90, 0.55) 8%,
		rgba(184, 150, 90, 0.55) 92%,
		transparent
	);
	transform: translateX(-50%);
}

.flow-item {
	position: relative;
	width: calc(50% - 48px);
	min-height: 150px;
	padding: 30px 34px;
	text-align: left;
	background: rgba(255, 255, 255, 0.68);
	border: 1px solid rgba(184, 150, 90, 0.2);
	box-shadow: 0 16px 45px rgba(80, 60, 30, 0.05);
}

/* 奇数：左側 */
.flow-item:nth-child(odd) {
	align-self: flex-start;
}

/* 偶数：右側 */
.flow-item:nth-child(even) {
	align-self: flex-end;
}

/* 中央ライン上の丸 */
.flow-item::before {
	content: "";
	position: absolute;
	top: 42px;
	width: 11px;
	height: 11px;
	background: var(--ivory);
	border: 2px solid var(--gold);
	border-radius: 50%;
	z-index: 2;
}

/* 左側カードの丸 */
.flow-item:nth-child(odd)::before {
	right: -54px;
}

/* 右側カードの丸 */
.flow-item:nth-child(even)::before {
	left: -54px;
}

/* カードと中央ラインをつなぐ線 */
.flow-item::after {
	content: "";
	position: absolute;
	top: 47px;
	width: 42px;
	height: 1px;
	background: rgba(184, 150, 90, 0.4);
}

.flow-item:nth-child(odd)::after {
	right: -42px;
}

.flow-item:nth-child(even)::after {
	left: -42px;
}

.flow-item b {
	display: block;
	margin-bottom: 8px;
	font: 300 34px/1 var(--display);
	letter-spacing: 0.08em;
	color: rgba(184, 135, 40, 0.9);
}

.flow-item h3 {
	margin: 0 0 10px;
	font-size: 17px;
	font-weight: 500;
	letter-spacing: 0.08em;
	color: var(--ink);
}

.flow-item p {
	margin: 0;
	font-size: 13px;
	line-height: 2;
	color: rgba(26,26,26,.9);
}





.price-box {
	border: 1px solid rgba(184,150,90,.5);
	padding: 34px 44px
}

.price-box dl {
	margin: 0
}

.price-box dl>div {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 19px 0;
	border-bottom: 1px solid rgba(184,150,90,.3)
}

.price-box dt {
	color: var(--gold)
}

.price-box dd {
	margin: 0;
	color: rgba(26,26,26,.65)
}

.price-box p {
	text-align: center;
	font-size: 13px;
	color: rgba(26,26,26,.8);
	margin: 28px 0 0
}

.cta {
	text-align: center;
	margin-top: 46px
}

/* ==================================================
   Terms
================================================== */
.terms .term {
	padding: 0 0 44px;
	margin-bottom: 44px;
	border-bottom: 1px solid rgba(184,150,90,.53)
}

.term h3 {
	font-size: 19px;
	font-weight: 500;
	letter-spacing: .07em;
	margin: 0 0 20px
}

.term p {
	font-size: 14px;
	color: rgba(26,26,26,.62);
	line-height: 2.1;
	margin: 0
}



/* ==================================================
   Terms / Privacy page
================================================== */
.legal-page {
	background: #fff;
}

.legal-hero {
	padding-bottom: 82px;
}

.legal-hero .section-heading {
	margin-bottom: 28px;
}

.legal-hero .section-heading h1 {
	margin: 0;
	font-size: clamp(24px, 3vw, 36px);
	font-weight: 500;
	letter-spacing: .08em;
}

.legal-hero__lead {
	max-width: 680px;
	margin: 0 auto;
	text-align: center;
	font-size: 14px;
	line-height: 2;
	letter-spacing: .04em;
	color: rgba(26,26,26,.58);
}

.legal-section {
	padding-bottom: 140px;
}

.legal-layout {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	gap: 72px;
	align-items: start;
	width: min(1240px, calc(100% - 48px));
}

/* Table of contents */
.legal-toc {
	position: relative;
}

.legal-toc__inner {
	position: sticky;
	top: calc(var(--header) + 32px);
	padding: 28px 24px;
	background: rgba(253, 251, 247, .88);
	border: 1px solid rgba(184, 150, 90, .18);
}

.legal-toc__inner > p,
.legal-document__header > p {
	margin: 0 0 5px;
	font: 400 12px var(--display);
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--gold);
}

.legal-toc h2 {
	margin: 0 0 20px;
	font-size: 17px;
	font-weight: 500;
	letter-spacing: .08em;
}

.legal-toc ol {
	max-height: calc(100vh - 270px);
	margin: 0;
	padding: 0 4px 0 0;
	list-style: none;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: rgba(184, 150, 90, .35) transparent;
}

.legal-toc li + li {
	border-top: 1px solid rgba(184, 150, 90, .1);
}

.legal-toc a {
	display: block;
	padding: 8px 0;
	font-size: 11px;
	line-height: 1.6;
	letter-spacing: .03em;
	color: rgba(26,26,26,.55);
	transition: color .25s, padding-left .25s;
}

.legal-toc a:hover {
	padding-left: 5px;
	color: var(--gold);
}

.legal-toc__privacy {
	margin-top: 18px;
	padding-top: 16px !important;
	border-top: 1px solid rgba(184, 150, 90, .25);
	font-family: var(--display);
	font-size: 12px !important;
	letter-spacing: .12em !important;
	color: var(--gold) !important;
}

/* Main document */
.legal-content {
	min-width: 0;
}

.legal-document,
.privacy-document {
	scroll-margin-top: calc(var(--header) + 30px);
}

.legal-document__header {
	margin-bottom: 48px;
	padding: 38px 42px;
	background: linear-gradient(135deg, #fff, var(--ivory));
	border: 1px solid rgba(184, 150, 90, .18);
	box-shadow: 0 18px 50px rgba(72, 51, 18, .04);
}

.legal-document__header h2 {
	margin: 0 0 22px;
	font-size: clamp(25px, 3vw, 34px);
	font-weight: 500;
	letter-spacing: .08em;
}

.legal-intro {
	padding-top: 20px;
	border-top: 1px solid rgba(184, 150, 90, .18);
}

.legal-intro p {
	margin: 0;
	font-size: 14px;
	line-height: 2.15;
	letter-spacing: .025em;
	color: rgba(26,26,26,.68);
}

.legal-intro p + p {
	margin-top: 12px;
}

.terms-article {
	scroll-margin-top: calc(var(--header) + 28px);
	margin-bottom: 28px;
	padding: 34px 38px 36px;
	background: #fff;
	border: 1px solid rgba(184, 150, 90, .16);
	box-shadow: 0 14px 42px rgba(62, 42, 15, .035);
}

.terms-article__header {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr);
	gap: 18px;
	align-items: center;
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(184, 150, 90, .18);
}

.terms-article__header > span {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border: 1px solid rgba(184, 150, 90, .42);
	font: 300 24px var(--display);
	letter-spacing: .08em;
	color: var(--gold);
}

.terms-article__header h2 {
	margin: 0;
	font-size: 19px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: .055em;
}

.terms-article__body > p,
.terms-list p,
.privacy-article p {
	margin: 0.5em 0 0;
	font-size: 14px;
	line-height: 2.0;
	letter-spacing: .02em;
	color: rgba(26,26,26,.7);
}

.terms-list {
	counter-reset: legal-item;
	margin: 0;
	padding: 0;
	list-style: none;
}

.terms-list > li {
	counter-increment: legal-item;
	position: relative;
	padding-left: 38px;
}
.terms-list > li + li {
	margin-top: 12px;
}
.terms-list > li::before {
	content: counter(legal-item) ".";
	position: absolute;
	top: 1px;
	left: 0;
	min-width: 26px;
	font: 500 20px/2 var(--display);
	line-height: 1.2;
	color: var(--gold);
}
.terms-list--sub {
	counter-reset: legal-sub;
	margin-top: 14px;
	padding: 18px 20px;
	background: rgba(253, 251, 247, .76);
	border-left: 2px solid rgba(184, 150, 90, .3);
}
.terms-list--sub > li {
	counter-increment: legal-sub;
	padding-left: 40px;
}
.terms-list--sub > li::before {
	content: "(" counter(legal-sub) ")";
	font-family: var(--serif);
	font-size: 12px;
	font-weight: 400;
	color: rgba(184, 150, 90, .92);
}
.legal-signature {
	margin: 50px 0 0 auto;
	padding: 26px 30px;
	max-width: 350px;
	text-align: right;
	background: var(--ivory);
	border-right: 3px solid rgba(184, 150, 90, .55);
}
.legal-signature p {
	margin: 0 0 5px;
	font-size: 12px;
	color: rgba(26,26,26,.5);
}
.legal-signature strong {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .08em;
}

/* Privacy policy */
.privacy-document {
	margin-top: 140px;
	padding-top: 20px;
}
.privacy-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}
.privacy-article {
	padding: 28px 30px;
	background: #fff;
	border: 1px solid rgba(184, 150, 90, .16);
}
.privacy-article h3 {
	margin: 0 0 16px;
	padding-bottom: 13px;
	border-bottom: 1px solid rgba(184, 150, 90, .16);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.65;
	letter-spacing: .05em;
}
.privacy-article .terms-list > li {
	padding-left: 27px;
}

@media (max-width: 1000px) {
	.legal-layout {
		grid-template-columns: 180px minmax(0, 1fr);
		gap: 40px;
	}
	.terms-article {
		padding-inline: 30px;
	}
}

@media (max-width: 800px) {
	.legal-hero {
		padding-bottom: 62px;
	}
	.legal-layout {
		display: block;
		width: calc(100% - 40px);
	}
	.legal-toc {
		margin-bottom: 42px;
	}
	.legal-toc__inner {
		position: static;
		padding: 24px 22px;
	}
	.legal-toc ol {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		max-height: none;
		gap: 0 14px;
	}
	.legal-toc li + li {
		border-top: 0;
	}
	.legal-toc a {
		padding: 4px 0;
		font-size: 14px;
	}
	.legal-document__header {
		margin-bottom: 34px;
		padding: 30px 25px;
	}
	.terms-article {
		margin-bottom: 20px;
		padding: 28px 23px 30px;
	}
	.terms-article__header {
		grid-template-columns: 44px minmax(0, 1fr);
		gap: 13px;
	}
	.terms-article__header > span {
		width: 44px;
		height: 44px;
		font-size: 24px;
	}
	.terms-article__header h2 {
		font-size: 17px;
	}
	.terms-list > li {
		padding-left: 32px;
	}
	.terms-list > li::before {
		top: -2px;
		font: 500 24px/2 var(--display);
		line-height: 1.0;
	}
	.terms-list--sub {
		margin-left: -4px;
		padding: 16px 14px;
	}
	.terms-list--sub > li {
		padding-left: 36px;
	}
	.privacy-document {
		margin-top: 100px;
	}
	.privacy-grid {
		grid-template-columns: 1fr;
	}
}


/* ==================================================
   Contact form
================================================== */
.contact-form {
	display: grid;
	gap: 34px
}

.contact-form label {
	font: 400 12px var(--display);
	letter-spacing: .16em;
	color: rgba(184,150,90,.85)
}

.contact-form em {
	font-style: normal;
	color: var(--gold)
}

.contact-form small {
	color: rgba(26,26,26,.35)
}

.contact-form input,
.contact-form textarea {
	display: block;
	width: 100%;
	margin-top: 8px;
	border: 0;
	border-bottom: 1px solid rgba(184,150,90,.5);
	background: transparent;
	padding: 13px 3px;
	color: var(--ink);
	outline: none;
	font: 300 14px var(--serif);
	letter-spacing: 0
}

.contact-form textarea {
	border: 1px solid rgba(184,150,90,.5);
	padding: 15px;
	resize: vertical
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: var(--gold)
}

.contact-form button {
	margin: 18px auto 0
}

.form-note {
	text-align: center;
	font-size: 11px;
	color: rgba(26,26,26,.4);
	margin: 0
}

/* ==================================================
   Company
================================================== */
.company-table {
	margin: 20px 0 0
}

.company-table>div {
	display: grid;
	grid-template-columns: 170px 1fr;
	padding: 24px 0;
	border-bottom: 1px solid rgba(184,150,90,.18)
}

.company-table dt {
	font: 400 12px var(--display);
	letter-spacing: .18em;
	color: rgba(184,150,90,.8)
}

.company-table dd {
	margin: 0;
	font-size: 14px;
	color: rgba(26,26,26,.9)
}

/* ==================================================
   Footer
================================================== */
.site-footer {
	position: relative;
	overflow: hidden;
	background: #f7f0e1;
	border-top: 1px solid rgba(184,150,90,.2);
	padding: 70px 0
}

.site-footer .gold-line {
	max-width: 320px;
	margin-top: 0
}

.site-footer nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 22px 38px
}

.site-footer nav a {
	text-transform: uppercase;
	font: 400 12px var(--display);
	letter-spacing: .15em;
	color: rgba(26,26,26,.9)
}

.copyright {
	text-align: center;
	font: 400 10px var(--display);
	letter-spacing: .15em;
	color: rgba(26,26,26,.6);
	margin: 36px 0 0
}

.footer-mark {
	position: absolute;
	inset: 50% auto auto 50%;
	transform: translate(-50%,-50%);
	display: flex;
	opacity: .035
}

.footer-mark i {
	width: 170px;
	height: 170px;
	border: 1px solid var(--gold);
	border-radius: 50%;
	margin: -18px
}

/* ==================================================
   Animation
================================================== */
.reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity .9s ease,transform .9s cubic-bezier(.23,1,.32,1)
}

.reveal.is-visible {
	opacity: 1;
	transform: none
}

@keyframes float {
	50% {
		transform: translateY(8px)
	}
}

/* ==================================================
   Responsive: tablet / mobile
================================================== */
@media (max-width: 800px) {
	:root {
		--header: 70px;
	}
	.global-nav {
		display: none
	}
	.site-header {
		width: 100%;
		max-width: 100%
	}

.spbr::before {
	content: "\A" ;
	white-space: pre ;
}
	.header-inner {
		width: 100%;
		max-width: 100%;
		min-width: 0;
		padding-inline: 18px
	}

	.brand {
		max-width: calc(100% - 52px)
	}

	.brand-text strong {
		font-size: 24px;
		letter-spacing: .12em
	}

	.menu-button {
		display: block;
		margin-left: auto
	}
	.container,.container.narrow {
		width: calc(100% - 40px)
	}

	.hero{
		min-height:100dvh;
	}
	.hero-overlay{
		background-image:url("../img/hero-hotel-sp.jpg");
		background-position:center center;
		background-size:cover;
	}
	
	.hero-membership .hero-overlay{
		background-image:url("../img/hero-membership-sp.jpg");
		background-position:center center;
		background-size:cover;
	}
	.hero-content>p {
		font-size: 11px;
		line-height: 1.8
	}
	.hero h1 {
		font-size: 27px
	}
	.section {
		padding: 88px 0
	}
	.section.legal-section {
		padding: 40px 0
	}
	.page-hero {
		padding: 125px 0 75px
	}
	.section-heading {
		margin-bottom: 44px
	}
	.section-heading.left {
		text-align: center
	}
	.section-heading.left span {
		margin-left: auto
	}
	.member-grid {
		grid-template-columns: 1fr 1fr
	}
	.service-grid,.split {
		grid-template-columns: 1fr;
		gap: 48px
	}
	.split .section-heading {
		text-align: center
	}


	.flow {
		gap: 28px;
		padding-left: 30px;
	}

	/* ラインを左側へ移動 */
	.flow::before {
		left: 7px;
		transform: none;
	}

	.flow-item,
	.flow-item:nth-child(odd),
	.flow-item:nth-child(even) {
		align-self: stretch;
		width: 100%;
		min-height: auto;
		padding: 24px 22px;
	}

	.flow-item::before,
	.flow-item:nth-child(odd)::before,
	.flow-item:nth-child(even)::before {
		top: 31px;
		left: -29px;
		right: auto;
	}

	.flow-item::after,
	.flow-item:nth-child(odd)::after,
	.flow-item:nth-child(even)::after {
		top: 36px;
		left: -19px;
		right: auto;
		width: 19px;
	}

	.flow-item b {
		font-size: 28px;
	}

	.flow-item h3 {
		font-size: 16px;
	}



	.company-table>div {
		grid-template-columns: 1fr;
		gap: 7px
	}
	.news-list a {
		grid-template-columns: 95px 1fr;
		gap: 14px
	}
	.price-box {
		padding: 25px 22px
	}
	.price-box dl>div {
		display: block
	}
	.price-box dd {
		margin-top: 5px
	}
	.site-footer nav {
		gap: 18px 25px
	}


	.legal-toc ol {
		grid-template-columns: repeat(2, 1fr);
	}
	.legal-intro p,
	.terms-article__body > p,
	.terms-list p,
	.privacy-article p {
		font-size: 13px;
		line-height: 2;
	}

	.terms-article__header {
		align-items: start;
	}

	.legal-signature {
		max-width: none;
	}
}
