@charset "UTF-8";
/* =============================================================================
   熱海 日本酒イベント LP  —  atami-event.css
   SANU 2nd Home Weekday のデザイン言語を踏襲した独立スタイル。
   - vw 基準サイジング（PC base 1440 / SP base 390 / breakpoint 768）
   - パレット: #ec572e(accent) / #322e21(ink) / beige
   - clip-path 系 inView アニメーション / pill ボタン二重矢印ホバー
   すべて .atami-lp 配下にスコープし、既存テーマへ影響しない。
   ========================================================================== */

/* ------------------------------------------------------------------ Tokens */
:root {
	--c-ink: #322e21;
	--c-ink-soft: #4a4536;
	--c-beige: #e9e3d1;
	--c-beige-deep: #d1c8a6;
	--c-beige-deep2: #d9c9a1;
	--c-beige-light: #f2eee4;
	--c-paper: #faf8f2;
	--c-main: #ec572e;
	--c-main-deep: #c8431f;
	--c-white: #fff;
	--c-line: #d8cfb4;

	--font-gothic: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
	--font-display: "Jost", "Noto Sans JP", sans-serif;
	--font-mincho: "Shippori Mincho", "Hiragino Mincho ProN", serif;

	--ease-outquad: cubic-bezier(.25, .46, .45, .94);
	--ease-outquart: cubic-bezier(.165, .84, .44, 1);
	--ease-outquint: cubic-bezier(.23, 1, .32, 1);
	--ease-expo: cubic-bezier(.16, 1, .3, 1);
}

/* ------------------------------------------------------------------ Reset (scoped) */
.atami-lp-body {
	margin: 0;
	background: var(--c-paper);
	color: var(--c-ink);
	font-family: var(--font-gothic);
	font-size: 1.25vw;
	font-weight: 400;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	font-feature-settings: "palt";
	overflow-x: hidden;
}

.atami-lp *,
.atami-lp *::before,
.atami-lp *::after {
	box-sizing: border-box;
	background-repeat: no-repeat;
}

.atami-lp {
	position: relative;
	width: 100%;
	overflow: clip;
}

.atami-lp :where(img, svg, picture) {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

/* リセットは :where() で詳細度 0 にし、コンポーネント側のクラス指定を常に優先させる */
.atami-lp :where(h1, h2, h3, h4, h5, p, dl, dd, dt, ul, ol, li, figure, figcaption, blockquote) {
	margin: 0;
	padding: 0;
}

.atami-lp :where(ul, ol) {
	list-style: none;
}

/* リンクのリセットは :where() で詳細度 0 にし、コンポーネント側の
   単一クラス指定（.lp-header__reserve / .float-cta 等）が確実に勝つようにする。
   これを `.atami-lp a`（詳細度 0,1,1）のままにすると、白文字指定（0,1,0）が
   負けて color:inherit になり、暗色ボタンが「黒地に黒」で潰れる。 */
.atami-lp :where(a) {
	color: inherit;
	text-decoration: none;
}

.atami-lp b {
	font-weight: 700;
	color: inherit;
}

.atami-lp button {
	font: inherit;
	color: inherit;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.atami-lp input {
	font: inherit;
}

.atami-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--c-ink);
	color: #fff;
	padding: .8em 1.4em;
	z-index: 9999;
	border-radius: 0 0 8px 0;
}
.atami-skip:focus {
	left: 0;
}

/* ------------------------------------------------------------------ Keyframes (SANU library) */
@keyframes fadeIn { 0% { opacity: 0 } to { opacity: 1 } }
@keyframes fadeInUp { 0% { opacity: 0; translate: 0 14px; visibility: visible } to { opacity: 1; translate: 0 0; visibility: visible } }
@keyframes fadeInDown { 0% { opacity: 0; translate: 0 -14px } to { opacity: 1; translate: 0 0 } }
@keyframes up2show { 0% { clip-path: inset(105% 0 0 0); visibility: visible } to { clip-path: inset(0 0 0 0); visibility: visible } }
@keyframes left2show { 0% { clip-path: inset(0 0 0 100%); visibility: visible } to { clip-path: inset(0 0 0 0); visibility: visible } }
@keyframes imgScaleIn { 0% { opacity: 0; transform: scale(1.06); visibility: visible } to { opacity: 1; transform: scale(1); visibility: visible } }
@keyframes imgScale { 0% { transform: scale(1.12) } to { transform: scale(1) } }
@keyframes heroScale { 0% { transform: scale(1.09) } to { transform: scale(1) } }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top } 45% { transform: scaleY(1); transform-origin: top } 55% { transform: scaleY(1); transform-origin: bottom } to { transform: scaleY(0); transform-origin: bottom } }
@keyframes burgerBack { 0% { clip-path: inset(0 100% 0 0) } to { clip-path: inset(0 0 0 0) } }

/* ------------------------------------------------------------------ inView system */
html.atami-js .js-inView-fadeIn { opacity: 0; visibility: hidden; pointer-events: none; }
/* 復帰側は html.atami-js を付けて (0,3,1) とし、初期非表示の
   `html.atami-js .js-inView-fadeIn`(0,2,1) の pointer-events:none に必ず勝たせる。
   これを怠ると表示後も pointer-events:none のままで、内部のボタン/リンク
   （FAQ アコーディオン・地図リンク等）がクリックできなくなる。 */
html.atami-js .js-inView-activate .js-inView-fadeIn,
html.atami-js .js-inView-activate.js-inView-fadeIn {
	animation: fadeInUp 1s var(--ease-outquint) forwards var(--inview-delay, 0s);
	pointer-events: auto;
}

html.atami-js .js-inView-up2show { visibility: hidden; pointer-events: none; will-change: clip-path; }
.js-inView-activate .js-inView-up2show,
.js-inView-activate.js-inView-up2show {
	animation: up2show .8s var(--ease-outquint) forwards var(--inview-delay, 0s);
	visibility: visible;
}

html.atami-js .js-inView-left2show { visibility: hidden; pointer-events: none; will-change: clip-path; }
.js-inView-activate .js-inView-left2show,
.js-inView-activate.js-inView-left2show {
	animation: left2show .85s var(--ease-outquint) forwards var(--inview-delay, 0s);
	visibility: visible;
}

html.atami-js .js-inView-images { overflow: hidden; }
html.atami-js .js-inView-image {
	transform: scale(1.12);
	transform-origin: center;
	transition: transform 1.3s var(--ease-outquint), opacity 1.1s ease;
	transition-delay: var(--inview-delay, 0s);
	will-change: transform;
}
.js-inView-activate .js-inView-image { transform: scale(1); }

html.atami-js .js-inView-ImageScale { will-change: transform; }
.js-inView-activate .js-inView-ImageScale { animation: imgScale 1.4s var(--ease-outquint) forwards var(--inview-delay, 0s); }

/* ------------------------------------------------------------------ Utilities */
.font-condensed {
	display: inline-block;
	transform: scaleX(.94);
	transform-origin: left center;
}
.yakuhan {
	font-feature-settings: "palt" on;
}

/* ------------------------------------------------------------------ Section header (SANU pattern) */
.sec-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 2vw;
	width: 86.111vw;
	margin: 0 auto 6.25vw;
}
.sec-head--center {
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1.4vw;
}
.sec-title {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	font-size: 2.3611vw;
	font-weight: 700;
	letter-spacing: .01em;
	line-height: 1.45;
}
.sec-title span { display: block; }
.sec-title--center { align-items: center; text-align: center; }

.sec-tag {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	flex: 0 0 auto;
	gap: .35vw;
	line-height: 1;
}
.sec-tag--center { align-items: center; }
.sec-tag__en {
	font-family: var(--font-display);
	font-size: 1.3888vw;
	font-weight: 500;
	letter-spacing: .06em;
	color: var(--c-ink);
}
.sec-tag__ja {
	font-size: .9722vw;
	font-weight: 600;
	letter-spacing: .08em;
	color: var(--c-ink-soft);
}
.sec-tag--light .sec-tag__en { color: #fff; }
.sec-tag--light .sec-tag__ja { color: rgba(255, 255, 255, .75); }

/* stagger for title lines */
.sec-title .js-inView-up2show:nth-child(2),
.concept__title .js-inView-up2show:nth-child(2),
.onsen__title .js-inView-up2show:nth-child(2),
.menu__title .js-inView-up2show:nth-child(2) { --inview-delay: .1s; }
.sec-title .js-inView-up2show:nth-child(3) { --inview-delay: .2s; }

/* ------------------------------------------------------------------ Buttons (pill + dual arrow) */
.atami-lp .button,
.atami-lp .button--fill {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .7vw;
	width: fit-content;
	min-width: 17vw;
	height: 3.8194vw;
	padding: 0 2.2vw;
	border: 1px solid var(--c-ink);
	border-radius: 500px;
	font-size: 1.1111vw;
	font-weight: 600;
	letter-spacing: .04em;
	white-space: nowrap;
	transition: background-color .4s var(--ease-outquint), color .4s var(--ease-outquint), border-color .4s var(--ease-outquint);
}
.atami-lp .button { background: transparent; color: var(--c-ink); }
.atami-lp .button--fill { background: var(--c-ink); border-color: var(--c-ink); color: #fff; }
.atami-lp .button--light { background: #fff; border-color: #fff; color: var(--c-ink); }

.button__icon {
	position: relative;
	flex: 0 0 auto;
	width: 1vw;
	height: .8vw;
	overflow: hidden;
}
.button__arrow {
	position: absolute;
	top: 50%;
	left: 0;
	display: flex;
	width: 100%;
	translate: 0 -50%;
	transition: translate .45s var(--ease-outquint);
}
.button__arrow:nth-child(2) { translate: -150% -50%; }
.button__arrow svg { width: 100%; height: auto; }

@media (hover: hover) {
	.atami-lp .button:hover { background: var(--c-ink); color: #fff; }
	.atami-lp .button.is-hoverFill:hover { background: var(--c-ink); border-color: var(--c-ink); color: #fff; }
	.atami-lp .button--fill:hover { background: #fff; border-color: #fff; color: var(--c-ink); }
	.atami-lp .button--light:hover { background: transparent; color: #fff; }
	.atami-lp .button:hover .button__arrow:nth-child(1),
	.atami-lp .button--fill:hover .button__arrow:nth-child(1) { translate: 150% -50%; }
	.atami-lp .button:hover .button__arrow:nth-child(2),
	.atami-lp .button--fill:hover .button__arrow:nth-child(2) { translate: 0 -50%; transition-delay: .1s; }
}

/* ============================================================ HEADER */
.lp-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 800;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 2vw 3.4722vw;
	transition: background-color .4s ease, padding .4s ease;
}
.lp-header.is-scrolled {
	background: rgba(250, 248, 242, .9);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	padding-top: 1.2vw;
	padding-bottom: 1.2vw;
	box-shadow: 0 1px 0 rgba(50, 46, 33, .08);
}
.lp-header__logo {
	display: flex;
	flex-direction: column;
	gap: .15vw;
	line-height: 1;
	color: #fff;
	transition: color .4s ease;
	mix-blend-mode: difference;
}
.lp-header.is-scrolled .lp-header__logo { color: var(--c-ink); mix-blend-mode: normal; }
.lp-header__logo-en {
	font-family: var(--font-display);
	font-size: 1.5vw;
	font-weight: 600;
	letter-spacing: .14em;
}
.lp-header__logo-ja {
	font-size: .8333vw;
	font-weight: 600;
	letter-spacing: .26em;
}
.lp-header__actions {
	display: flex;
	align-items: center;
	gap: 1.4vw;
}
.lp-header__reserve {
	display: inline-flex;
	align-items: center;
	height: 2.9vw;
	padding: 0 1.9vw;
	border: 1px solid var(--c-ink);
	border-radius: 500px;
	background: var(--c-ink);
	color: #fff;
	font-size: .9722vw;
	font-weight: 600;
	letter-spacing: .06em;
	transition: background-color .35s var(--ease-outquint), color .35s var(--ease-outquint);
}
.lp-header__reserve:hover { background: #fff; color: var(--c-ink); }

.lp-header__burger {
	position: relative;
	width: 3.4vw;
	height: 3.4vw;
	border-radius: 50%;
	background: var(--c-beige-light);
	box-shadow: 0 2px 14px rgba(50, 46, 33, .14);
	transition: background-color .3s ease;
}
.lp-header__burger::before,
.lp-header__burger::after,
.lp-header__burger-bar {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 1.4vw;
	height: 1.6px;
	background: var(--c-ink);
	translate: -50% -50%;
	transition: transform .35s var(--ease-outquint), opacity .25s ease;
}
.lp-header__burger::before { margin-top: -.42vw; }
.lp-header__burger::after { margin-top: .42vw; }
.lp-header__burger.is-active::before { margin-top: 0; transform: translate(-50%, -50%) rotate(45deg); }
.lp-header__burger.is-active::after { margin-top: 0; transform: translate(-50%, -50%) rotate(-45deg); }
.lp-header__burger.is-active .lp-header__burger-bar { opacity: 0; }

/* ============================================================ NAV */
.lp-nav {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 790;
	width: 34vw;
	max-width: 480px;
	height: 100dvh;
	padding: 8vw 4vw 4vw;
	background: var(--c-beige-light);
	box-shadow: -10px 0 60px rgba(50, 46, 33, .14);
	overflow-y: auto;
	opacity: 0;
	pointer-events: none;
	translate: 4vw 0;
	transition: opacity .5s ease, translate .6s var(--ease-outquint);
}
.lp-nav.is-active { opacity: 1; pointer-events: auto; translate: 0 0; }
.lp-nav__title {
	font-family: var(--font-display);
	font-size: 1.9vw;
	letter-spacing: .08em;
	color: var(--c-ink);
	margin-bottom: 2vw;
}
.lp-nav__list { display: flex; flex-direction: column; gap: 1.5vw; }
.lp-nav__link { display: flex; align-items: baseline; gap: 1vw; transition: opacity .3s ease; }
.lp-nav__link:hover { opacity: .55; }
.lp-nav__link-ja { font-size: 1.25vw; font-weight: 600; }
.lp-nav__link-en { font-family: var(--font-display); font-size: .8vw; font-weight: 400; letter-spacing: .08em; color: var(--c-ink-soft); }
.lp-nav__cta { margin: 3vw 0 0; width: 100%; }
.lp-nav__meta { margin-top: 2.4vw; padding-top: 2vw; border-top: 1px solid var(--c-line); font-size: .9vw; line-height: 1.9; }
.lp-nav__meta dt { font-weight: 600; color: var(--c-ink-soft); letter-spacing: .1em; margin-bottom: .4vw; }
.lp-nav__meta a:hover { opacity: .6; }

/* ============================================================ HERO */
.hero {
	position: relative;
	width: 100%;
	height: 100dvh;
	min-height: 560px;
	overflow: hidden;
	background: var(--c-ink);
}
.hero__media { position: absolute; inset: 0; }
.hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	animation: heroScale 7s var(--ease-expo) forwards;
}
.hero__scrim {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(24, 19, 12, .5) 0%, rgba(24, 19, 12, .1) 24%, rgba(24, 19, 12, .4) 58%, rgba(16, 12, 6, .8) 100%),
		linear-gradient(75deg, rgba(16, 12, 6, .45) 0%, rgba(16, 12, 6, 0) 55%);
}
.hero__inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 9vw 5.5556vw 5.5vw;
	color: #fff;
}
.hero__badge {
	display: flex;
	align-items: center;
	gap: 1.1vw;
	font-family: var(--font-display);
	letter-spacing: .12em;
	opacity: 0;
	animation: fadeInDown 1.2s var(--ease-expo) forwards .3s;
}
.hero__badge-date { font-size: 1.05vw; font-weight: 500; }
.hero__badge-date em { font-style: normal; font-weight: 400; }
.hero__badge-sep { width: 2.6vw; height: 1px; background: rgba(255, 255, 255, .7); }
.hero__badge-place { font-size: 1.05vw; font-weight: 500; }
.hero__title {
	margin-top: auto;
	font-size: 4.3vw;
	font-weight: 700;
	line-height: 1.32;
	letter-spacing: .015em;
	text-shadow: 0 2px 30px rgba(0, 0, 0, .25);
}
.hero__line { display: block; }
.hero__line:nth-child(2) { --inview-delay: .18s; }
.hero__lead {
	margin-top: 1.4vw;
	font-size: 1.25vw;
	font-weight: 500;
	letter-spacing: .08em;
	text-shadow: 0 1px 16px rgba(0, 0, 0, .45);
	opacity: 0;
	animation: fadeInUp 1.4s var(--ease-expo) forwards .9s;
}
.hero__en {
	margin-top: 1.2vw;
	font-family: var(--font-display);
	font-size: .95vw;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: .04em;
	text-shadow: 0 1px 14px rgba(0, 0, 0, .4);
	opacity: 0;
	animation: fadeInUp 1.4s var(--ease-expo) forwards 1.1s;
}
.hero__cta {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.2vw;
	margin-top: 2.6vw;
	opacity: 0;
	animation: fadeInUp 1.4s var(--ease-expo) forwards 1.3s;
}
.hero__cta .button--fill { box-shadow: 0 10px 30px rgba(0, 0, 0, .28); }
.hero__scroll {
	position: absolute;
	bottom: 2vw;
	left: 50%;
	translate: -50% 0;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .8vw;
	color: #fff;
	font-family: var(--font-display);
	font-size: .75vw;
	letter-spacing: .18em;
	opacity: 0;
	animation: fadeIn 1.4s ease forwards 1.6s;
}
.hero__scroll-line { width: 1px; height: 3.4vw; background: rgba(255, 255, 255, .6); animation: scrollLine 2.4s var(--ease-outquint) infinite; }

/* ============================================================ CONCEPT */
.concept {
	background: var(--c-beige-light);
	padding: 9.7vw 0 10.4vw;
	text-align: center;
}
.concept__inner { width: 74vw; margin: 0 auto; }
.concept__title {
	display: flex;
	flex-direction: column;
	gap: .4vw;
	margin: 2.4vw 0 3.6vw;
	font-size: 2.6vw;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: .02em;
}
.concept__text { display: flex; flex-direction: column; gap: 1.6vw; font-size: 1.25vw; line-height: 1.95; }

/* ============================================================ VENUE */
.venue { padding: 10.4vw 0; }
.venue__kv { position: relative; width: 86.111vw; margin: 0 auto; }
.venue__kv-img { aspect-ratio: 16 / 8; border-radius: 1vw; overflow: hidden; }
.venue__kv-img img { width: 100%; height: 100%; object-fit: cover; }
.venue__name {
	display: flex;
	flex-direction: column;
	gap: .5vw;
	margin-top: 2.2vw;
}
.venue__name-en { font-family: var(--font-display); font-size: 1.6vw; font-weight: 500; letter-spacing: .04em; color: var(--c-ink-soft); }
.venue__name-ja { font-size: 1.45vw; font-weight: 700; letter-spacing: .02em; }
.venue__flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 4vw;
	width: 72.2vw;
	margin: 5vw auto 0;
}
.venue__text { flex: 0 1 32vw; display: flex; flex-direction: column; gap: 1.6vw; font-size: 1.15vw; line-height: 1.95; }
.venue__sub-img { flex: 0 0 auto; width: 38vw; border-radius: .8vw; overflow: hidden; }
.venue__sub-img img { width: 100%; height: 100%; object-fit: cover; }
.venue__sub-img figcaption {
	margin-top: .7vw;
	font-family: var(--font-display);
	font-size: .85vw;
	letter-spacing: .08em;
	color: var(--c-ink-soft);
}

/* ============================================================ ONSEN */
.onsen { position: relative; padding: 12vw 0; color: #fff; overflow: hidden; }
.onsen__bg { position: absolute; inset: 0; z-index: 0; }
.onsen__bg img { width: 100%; height: 100%; object-fit: cover; }
.onsen__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(24, 19, 12, .78) 0%, rgba(24, 19, 12, .5) 55%, rgba(24, 19, 12, .28) 100%); }
.onsen__inner { position: relative; z-index: 2; width: 86.111vw; margin: 0 auto; }
.onsen__title {
	display: flex;
	flex-direction: column;
	gap: .3vw;
	margin: 1.6vw 0 2.4vw;
	font-size: 2.8vw;
	font-weight: 700;
	line-height: 1.35;
}
.onsen__text { max-width: 44vw; display: flex; flex-direction: column; gap: 1.2vw; font-size: 1.2vw; line-height: 1.9; }
.onsen__small { font-size: .95vw; opacity: .85; }

/* ============================================================ LECTURER */
.lecturer { padding: 10.4vw 0; background: var(--c-beige-light); }
.lecturer__inner { width: 58vw; margin: 0 auto; }
/* 名前入りバナー画像は切り抜かず原寸比率のまま全体表示する */
.lecturer__visual { width: 100%; border-radius: .8vw; overflow: hidden; box-shadow: 0 18px 50px rgba(50, 46, 33, .12); }
.lecturer__visual img { width: 100%; height: auto; display: block; }
.lecturer__body { max-width: 48vw; margin: 3.6vw auto 0; text-align: center; }
.lecturer__role {
	font-family: var(--font-display);
	font-size: 1vw;
	letter-spacing: .12em;
	color: var(--c-ink-soft);
	margin-bottom: 1.1vw;
}
.lecturer__desc { font-size: 1.1vw; line-height: 2; }
.lecturer__books {
	margin-top: 2.6vw;
	padding-top: 2.1vw;
	border-top: 1px solid var(--c-line);
	font-size: 1vw;
	line-height: 1.9;
}
.lecturer__books dt { font-weight: 700; color: var(--c-ink-soft); letter-spacing: .08em; margin-bottom: .7vw; }

/* ============================================================ TIMETABLE */
.timetable { padding: 10.4vw 0; }
.timetable__list {
	position: relative;
	width: 64vw;
	margin: 0 auto;
}
.timetable__list::before {
	content: "";
	position: absolute;
	left: 12.2vw;
	top: 1.2vw;
	bottom: 1.2vw;
	width: 1px;
	background: var(--c-line);
}
.timetable__item {
	position: relative;
	display: grid;
	grid-template-columns: 11vw 2.2vw 1fr;
	align-items: start;
	padding: 1.6vw 0;
}
.timetable__time {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	font-family: var(--font-display);
	line-height: 1.2;
}
.timetable__time-start { font-size: 1.7vw; font-weight: 500; letter-spacing: .02em; }
.timetable__time-end { font-size: .9vw; color: var(--c-ink-soft); }
.timetable__time-end--open { color: var(--c-main); }
.timetable__dot {
	position: relative;
	justify-self: center;
	margin-top: .7vw;
	width: .9vw;
	height: .9vw;
	border-radius: 50%;
	background: var(--c-paper);
	border: 2px solid var(--c-main);
}
.timetable__body { padding-top: .2vw; }
.timetable__label { display: block; font-size: 1.4vw; font-weight: 700; letter-spacing: .02em; }
.timetable__desc { display: block; margin-top: .4vw; font-size: 1.05vw; line-height: 1.7; color: var(--c-ink-soft); }

/* ============================================================ MENU */
.menu { display: flex; align-items: stretch; min-height: 52vw; background: var(--c-ink); color: #fff; }
.menu__img { flex: 0 0 42%; overflow: hidden; }
.menu__img img { width: 100%; height: 100%; object-fit: cover; }
.menu__body {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 8vw 6vw;
}
.menu__title {
	display: flex;
	flex-direction: column;
	gap: .3vw;
	margin: 1.4vw 0 2.4vw;
	font-size: 2.6vw;
	font-weight: 700;
	line-height: 1.35;
}
.menu .sec-tag { align-items: flex-start; }
.menu .sec-tag__en { color: #fff; }
.menu .sec-tag__ja { color: rgba(255, 255, 255, .8); }
.menu__text { display: flex; flex-direction: column; gap: 1.4vw; font-size: 1.15vw; line-height: 1.9; }
.menu__text b { color: #fff; }

/* ============================================================ OVERVIEW */
.overview { padding: 10.4vw 0; background: var(--c-beige-light); }
.overview__inner { width: 58vw; margin: 0 auto; }
.overview__list {
	background: var(--c-white);
	border-radius: 1vw;
	padding: 1.4vw 4vw;
	box-shadow: 0 16px 50px rgba(50, 46, 33, .08);
}
.overview__row {
	display: grid;
	grid-template-columns: 11vw 1fr;
	gap: 2vw;
	align-items: baseline;
	padding: 1.7vw 0;
	border-bottom: 1px solid var(--c-line);
}
.overview__row:last-child { border-bottom: 0; }
.overview__row dt { font-size: 1.05vw; font-weight: 700; letter-spacing: .08em; color: var(--c-ink-soft); }
.overview__row dd { font-size: 1.15vw; font-weight: 500; }
.overview__cta { display: flex; justify-content: center; margin-top: 5vw; }

/* ============================================================ ACCESS */
.access { padding: 10.4vw 0; }
.access__inner {
	display: flex;
	gap: 4vw;
	width: 80vw;
	margin: 0 auto;
}
.access__info { flex: 1 1 36vw; }
.access__station {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: .8vw;
	font-size: 2vw;
	font-weight: 700;
	margin-bottom: 2.4vw;
}
.access__station-label { font-size: .9vw; font-weight: 600; color: var(--c-ink-soft); letter-spacing: .1em; }
.access__walk { font-size: 1vw; font-weight: 500; color: var(--c-ink-soft); }
.access__route { display: flex; flex-direction: column; gap: 1.4vw; }
.access__route li {
	display: flex;
	align-items: flex-start;
	gap: 1.2vw;
	font-size: 1.1vw;
	line-height: 1.7;
}
.access__route-num {
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	width: 2.2vw;
	height: 2.2vw;
	border-radius: 50%;
	background: var(--c-ink);
	color: #fff;
	font-family: var(--font-display);
	font-size: 1vw;
}
.access__map { flex: 1 1 38vw; display: flex; }
.access__place {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	min-height: 26vw;
	padding: 3.4vw;
	background: var(--c-ink);
	color: #fff;
	border-radius: 1vw;
	box-shadow: 0 18px 50px rgba(50, 46, 33, .14);
}
.access__place-tag { font-family: var(--font-display); font-size: .95vw; letter-spacing: .14em; color: var(--c-beige-deep); margin-bottom: 1.4vw; }
.access__place-name { font-size: 1.7vw; font-weight: 700; letter-spacing: .02em; }
.access__place-addr { font-size: 1.05vw; line-height: 1.85; margin: 1vw 0 2.6vw; color: rgba(255, 255, 255, .82); }
.access__place-link {
	display: inline-flex;
	align-items: center;
	gap: .6vw;
	align-self: flex-start;
	height: 3.2vw;
	padding: 0 1.9vw;
	border: 1px solid rgba(255, 255, 255, .5);
	border-radius: 500px;
	font-size: 1vw;
	font-weight: 600;
	transition: background-color .3s var(--ease-outquint), color .3s var(--ease-outquint), border-color .3s var(--ease-outquint);
}
.access__place-link:hover { background: #fff; border-color: #fff; color: var(--c-ink); }
.access__place-icon { font-size: 1.1vw; }
.access__sub {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2vw;
	width: 80vw;
	margin: 5vw auto 0;
}
.access__sub-item { background: var(--c-beige-light); border-radius: .8vw; padding: 2.6vw 2.8vw; }
.access__sub-title { position: relative; font-size: 1.3vw; font-weight: 700; margin-bottom: 1vw; padding-left: 1.2vw; }
.access__sub-title::before { content: ""; position: absolute; left: 0; top: .25em; bottom: .25em; width: 4px; border-radius: 4px; background: var(--c-ink); }
.access__sub-item p { font-size: 1.05vw; line-height: 1.85; }
.access__notice { width: 80vw; margin: 2.2vw auto 0; font-size: .95vw; line-height: 1.7; color: var(--c-ink-soft); }

/* ============================================================ NOTICE */
.notice { padding: 10.4vw 0; background: var(--c-beige); }
.notice__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: .1vw;
	width: 80vw;
	margin: 0 auto;
	background: var(--c-line);
	border-radius: 1vw;
	overflow: hidden;
}
.notice__item { background: var(--c-paper); padding: 2.6vw 2.8vw; }
.notice__item dt { font-size: 1.2vw; font-weight: 700; color: var(--c-ink); margin-bottom: .8vw; letter-spacing: .04em; }
.notice__item dd { font-size: 1.05vw; line-height: 1.85; }
.notice__item--contact { grid-column: 1 / -1; }
.notice__item--contact dd { display: flex; gap: 2vw; flex-wrap: wrap; font-family: var(--font-display); font-size: 1.4vw; }
.notice__item--contact a:hover { opacity: .6; }

/* ============================================================ FAQ */
.faq { padding: 10.4vw 0; }
.faq__list { width: 70vw; margin: 0 auto; display: flex; flex-direction: column; gap: 1.2vw; }
.faq__item { background: var(--c-beige-light); border-radius: .8vw; overflow: hidden; }
.faq__q {
	display: flex;
	align-items: center;
	gap: 1.4vw;
	width: 100%;
	padding: 2vw 2.6vw;
	text-align: left;
}
.faq__q-mark { font-family: var(--font-display); font-size: 1.6vw; font-weight: 500; color: var(--c-main); line-height: 1; }
.faq__q-text { flex: 1 1 auto; font-size: 1.2vw; font-weight: 700; line-height: 1.5; }
.faq__q-icon { position: relative; flex: 0 0 auto; width: 1.4vw; height: 1.4vw; }
.faq__q-icon::before,
.faq__q-icon::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	background: var(--c-ink);
	transition: transform .35s var(--ease-outquint), opacity .3s ease;
}
.faq__q-icon::before { width: 1.4vw; height: 1.6px; translate: -50% -50%; }
.faq__q-icon::after { width: 1.6px; height: 1.4vw; translate: -50% -50%; }
.faq__item.is-open .faq__q-icon::after { opacity: 0; transform: rotate(90deg); }
.faq__a { overflow: hidden; }
html.atami-js .faq__a { height: 0; transition: height .42s var(--ease-outquint); }
.faq__a-inner { display: flex; gap: 1.4vw; padding: .3vw 2.6vw 2.2vw; }
.faq__a-mark { font-family: var(--font-display); font-size: 1.6vw; font-weight: 500; color: var(--c-beige-deep); line-height: 1; }
.faq__a p { font-size: 1.1vw; line-height: 1.85; padding-top: .1vw; }

/* ============================================================ POLICY */
.policy { padding: 10.4vw 0; background: var(--c-beige-light); }
.policy__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4vw; width: 80vw; margin: 0 auto; }
.policy__title {
	display: flex;
	flex-direction: column;
	gap: .4vw;
	font-size: 1.7vw;
	font-weight: 700;
	margin-bottom: 1.8vw;
	padding-bottom: 1.2vw;
	border-bottom: 2px solid var(--c-ink);
}
.policy__title-en { font-family: var(--font-display); font-size: 1vw; font-weight: 500; letter-spacing: .1em; color: var(--c-ink-soft); }
.policy__list { display: flex; flex-direction: column; gap: 1.2vw; }
.policy__list li { position: relative; padding-left: 1.6vw; font-size: 1.05vw; line-height: 1.85; }
.policy__list li::before { content: ""; position: absolute; left: 0; top: .65em; width: .6vw; height: .6vw; border-radius: 50%; background: var(--c-main); }

/* ============================================================ RESERVE */
.reserve { position: relative; padding: 11vw 0; color: #fff; overflow: hidden; }
.reserve__bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(120% 120% at 70% 10%, #3a3526 0%, #211e15 60%, #181610 100%); }
.reserve__inner { position: relative; z-index: 2; width: 60vw; margin: 0 auto; }
.reserve__head { text-align: center; margin-bottom: 4vw; }
.reserve__title { font-size: 2.6vw; font-weight: 700; line-height: 1.4; margin: 1.4vw 0 1.6vw; }
.reserve__note { font-size: .95vw; line-height: 1.7; color: rgba(255, 255, 255, .7); }
.reserve__form { display: flex; flex-direction: column; gap: 1.8vw; }
.reserve__field { display: flex; flex-direction: column; gap: .7vw; }
.reserve__field label { font-size: 1vw; font-weight: 600; letter-spacing: .04em; display: flex; align-items: center; gap: .8vw; }
.reserve__req { font-size: .7vw; font-weight: 600; padding: .15em .8em; border-radius: 500px; background: rgba(255, 255, 255, .16); color: #fff; letter-spacing: .04em; }
.reserve__field input {
	height: 3.6vw;
	padding: 0 1.4vw;
	border: 1px solid rgba(255, 255, 255, .25);
	border-radius: .6vw;
	background: rgba(255, 255, 255, .06);
	color: #fff;
	font-size: max(16px, 1.1vw);
	transition: border-color .3s ease, background-color .3s ease;
}
.reserve__field input::placeholder { color: rgba(255, 255, 255, .35); }
.reserve__field input:focus { outline: none; border-color: var(--c-main); background: rgba(255, 255, 255, .1); }
.reserve__field input.is-invalid { border-color: #ff8a6a; background: rgba(255, 80, 50, .1); }
.reserve__error { font-size: .85vw; color: #ffb4a0; }
.reserve__formerror { margin-top: 1.4vw; padding: 1.2vw 1.6vw; border: 1px solid #ff8a6a; border-radius: .6vw; background: rgba(255, 80, 50, .12); color: #ffd9cd; font-size: .95vw; line-height: 1.7; }
.reserve__formerror a { color: #fff; text-decoration: underline; text-underline-offset: .2em; }
.reserve__agree {
	display: flex;
	align-items: center;
	gap: 1vw;
	margin-top: .6vw;
	font-size: 1vw;
	cursor: pointer;
	user-select: none;
}
.reserve__agree input { position: absolute; opacity: 0; width: 0; height: 0; }
.reserve__agree-box {
	flex: 0 0 auto;
	position: relative;
	width: 1.5vw;
	height: 1.5vw;
	border: 1px solid rgba(255, 255, 255, .4);
	border-radius: .3vw;
	transition: background-color .25s ease, border-color .25s ease;
}
.reserve__agree-box::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 46%;
	width: .45vw;
	height: .85vw;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	translate: -50% -50%;
	rotate: 45deg;
	opacity: 0;
	transition: opacity .2s ease;
}
.reserve__agree input:checked + .reserve__agree-box { background: var(--c-main); border-color: var(--c-main); }
.reserve__agree input:checked + .reserve__agree-box::after { opacity: 1; }
.reserve__agree input:focus-visible + .reserve__agree-box { outline: 2px solid var(--c-main); outline-offset: 2px; }
.reserve__agree.is-invalid .reserve__agree-box { border-color: #ff8a6a; background: rgba(255, 80, 50, .12); }
.reserve__agree-text a { text-decoration: underline; text-underline-offset: .2em; }
.reserve__error--agree { margin-top: -.8vw; }
.reserve__options {
	display: flex;
	flex-direction: column;
	gap: 1vw;
	padding: 1.6vw 0 .2vw;
	border-top: 1px solid rgba(255, 255, 255, .14);
}
.reserve__options-title { font-size: 1vw; font-weight: 600; letter-spacing: .04em; display: flex; align-items: center; gap: .8vw; }
.reserve__opt { font-size: .7vw; font-weight: 600; padding: .15em .8em; border-radius: 500px; background: rgba(255, 255, 255, .08); color: rgba(255, 255, 255, .72); letter-spacing: .04em; }
.reserve__checks { display: flex; flex-direction: column; gap: 1vw; }
.reserve__check { display: flex; align-items: center; gap: 1vw; cursor: pointer; user-select: none; font-size: 1vw; }
.reserve__check input { position: absolute; opacity: 0; width: 0; height: 0; }
.reserve__check-box {
	flex: 0 0 auto;
	position: relative;
	width: 1.5vw;
	height: 1.5vw;
	border: 1px solid rgba(255, 255, 255, .4);
	border-radius: .3vw;
	transition: background-color .25s ease, border-color .25s ease;
}
.reserve__check-box::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 46%;
	width: .45vw;
	height: .85vw;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	translate: -50% -50%;
	rotate: 45deg;
	opacity: 0;
	transition: opacity .2s ease;
}
.reserve__check input:checked + .reserve__check-box { background: var(--c-main); border-color: var(--c-main); }
.reserve__check input:checked + .reserve__check-box::after { opacity: 1; }
.reserve__check input:focus-visible + .reserve__check-box { outline: 2px solid var(--c-main); outline-offset: 2px; }
.reserve__checks-note { font-size: .85vw; line-height: 1.7; color: rgba(255, 255, 255, .6); }
.reserve__field textarea {
	min-height: 8vw;
	padding: 1vw 1.4vw;
	border: 1px solid rgba(255, 255, 255, .25);
	border-radius: .6vw;
	background: rgba(255, 255, 255, .06);
	color: #fff;
	font-size: max(16px, 1.1vw);
	line-height: 1.7;
	resize: vertical;
	transition: border-color .3s ease, background-color .3s ease;
}
.reserve__field textarea::placeholder { color: rgba(255, 255, 255, .35); }
.reserve__field textarea:focus { outline: none; border-color: var(--c-main); background: rgba(255, 255, 255, .1); }
.reserve__submit { margin: 1.6vw auto 0; width: 26vw; height: 4.2vw; }
.reserve__submit:disabled { opacity: .6; cursor: default; }
.reserve__done { margin-top: 2.4vw; padding: 2.4vw; border: 1px solid rgba(255, 255, 255, .3); border-radius: .8vw; background: rgba(255, 255, 255, .08); text-align: center; }
.reserve__done-title { font-size: 1.3vw; font-weight: 700; margin-bottom: .8vw; }
.reserve__done-text { font-size: 1vw; line-height: 1.8; }
.reserve__done-text a { text-decoration: underline; }

/* ============================================================ FOOTER */
.lp-footer { background: var(--c-ink); color: #fff; padding: 7vw 0 3vw; }
.lp-footer__inner {
	display: flex;
	justify-content: space-between;
	gap: 4vw;
	width: 80vw;
	margin: 0 auto;
}
.lp-footer__logo { display: flex; flex-direction: column; gap: .3vw; line-height: 1; margin-bottom: 1.6vw; }
.lp-footer__logo-en { font-family: var(--font-display); font-size: 2vw; font-weight: 600; letter-spacing: .14em; }
.lp-footer__logo-ja { font-size: 1vw; font-weight: 600; letter-spacing: .26em; }
.lp-footer__tagline { font-size: 1vw; line-height: 1.8; color: rgba(255, 255, 255, .7); max-width: 22vw; }
.lp-footer__contact-title { font-size: 1.1vw; font-weight: 700; letter-spacing: .08em; margin-bottom: 1.4vw; color: var(--c-beige-deep); }
.lp-footer__contact-list { display: flex; flex-direction: column; gap: 1vw; }
.lp-footer__contact-list div { display: flex; align-items: baseline; gap: 1.2vw; }
.lp-footer__contact-list dt { font-size: .85vw; letter-spacing: .1em; opacity: .7; min-width: 3em; }
.lp-footer__contact-list dd { font-family: var(--font-display); font-size: 1.3vw; }
.lp-footer__contact-list a:hover { opacity: .65; }
.lp-footer__org { display: flex; flex-direction: column; gap: 1.2vw; }
.lp-footer__org div { display: flex; flex-direction: column; gap: .3vw; }
.lp-footer__org dt { font-size: .85vw; letter-spacing: .1em; opacity: .7; }
.lp-footer__org dd { font-size: 1.1vw; font-weight: 500; }
.lp-footer__copy { margin-top: 5vw; text-align: center; font-family: var(--font-display); font-size: .8vw; letter-spacing: .08em; color: rgba(255, 255, 255, .5); }

/* ============================================================ FLOAT CTA */
.float-cta {
	position: fixed;
	right: 2.4vw;
	bottom: 2.4vw;
	z-index: 700;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: .4vw;
	width: 7vw;
	height: 7vw;
	border: 1px solid var(--c-ink);
	border-radius: 50%;
	background: var(--c-ink);
	color: #fff;
	box-shadow: 0 12px 30px rgba(50, 46, 33, .32);
	opacity: 0;
	pointer-events: none;
	translate: 0 1.4vw;
	transition: opacity .5s ease, translate .5s var(--ease-outquint), background-color .35s var(--ease-outquint), color .35s var(--ease-outquint);
}
.float-cta.is-visible { opacity: 1; pointer-events: auto; translate: 0 0; }
.float-cta:hover { background: #fff; color: var(--c-ink); }
.float-cta__text { font-size: 1vw; font-weight: 700; letter-spacing: .04em; }
.float-cta__icon { display: flex; width: 1.1vw; rotate: 90deg; }
.float-cta__icon svg { width: 100%; }

/* =============================================================================
   RESPONSIVE  —  SP (max-width: 768px), base 390
   ========================================================================== */
@media screen and (max-width: 768px) {
	.atami-lp-body { font-size: 4.1025vw; }

	.sec-head { flex-direction: column; align-items: flex-start; gap: 2.5641vw; width: 100%; padding: 0 6.4102vw; margin-bottom: 10.2564vw; }
	.sec-head--center { align-items: center; }
	.sec-title { font-size: 6.4102vw; line-height: 1.4; }
	.sec-tag { flex-direction: row; align-items: baseline; gap: 2vw; }
	.sec-tag__en { font-size: 4.6153vw; }
	.sec-tag__ja { font-size: 3.0769vw; }

	.atami-lp .button,
	.atami-lp .button--fill { font-size: 3.5897vw; height: 13.5vw; min-width: 64vw; gap: 2.5641vw; padding: 0 7vw; }
	.button__icon { width: 3.5897vw; height: 3vw; }

	/* HEADER / NAV */
	.lp-header { padding: 4.1vw 5.1282vw; background: rgba(250, 248, 242, .92); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
	.lp-header__logo { color: var(--c-ink); mix-blend-mode: normal; }
	.lp-header__logo-en { font-size: 5vw; }
	.lp-header__logo-ja { font-size: 2.6vw; }
	.lp-header__reserve { height: 9.7vw; padding: 0 4.6vw; font-size: 3.3vw; }
	.lp-header__burger { width: 11vw; height: 11vw; }
	.lp-header__burger::before,
	.lp-header__burger::after,
	.lp-header__burger-bar { width: 4.6vw; }
	.lp-header__burger::before { margin-top: -1.4vw; }
	.lp-header__burger::after { margin-top: 1.4vw; }

	.lp-nav { width: 100%; max-width: none; padding: 22vw 8vw 10vw; }
	.lp-nav__title { font-size: 7vw; margin-bottom: 6vw; }
	.lp-nav__list { gap: 5vw; }
	.lp-nav__link-ja { font-size: 4.6vw; }
	.lp-nav__link-en { font-size: 3vw; }
	.lp-nav__cta { margin-top: 9vw; }
	.lp-nav__meta { margin-top: 8vw; padding-top: 6vw; font-size: 3.3vw; line-height: 2; }
	.lp-nav__meta dt { margin-bottom: 1.5vw; }

	/* HERO */
	.hero { height: 100svh; min-height: 0; }
	/* 本文を少し上げて、絶対配置の .hero__scroll（bottom:6vw〜）との重なりを回避 */
	.hero__inner { padding: 26vw 6.4102vw 28vw; }
	.hero__badge { gap: 3vw; }
	.hero__badge-date,
	.hero__badge-place { font-size: 3.3vw; }
	.hero__badge-sep { width: 7vw; }
	.hero__title { font-size: 7.4vw; line-height: 1.55; letter-spacing: 0; }
	.hero__lead { margin-top: 5vw; font-size: 3.6vw; }
	/* モバイル FV では英文は表示しない */
	.hero__en { display: none; }
	.hero__cta { gap: 4vw; margin-top: 8vw; }
	.hero__scroll { bottom: 6vw; font-size: 2.6vw; gap: 2vw; }
	.hero__scroll-line { height: 10vw; }

	/* CONCEPT */
	.concept { padding: 24vw 6.4102vw; }
	.concept__inner { width: 100%; }
	.concept__title { font-size: 7vw; margin: 6vw 0 8vw; }
	.concept__text { font-size: 4.1vw; gap: 4vw; line-height: 2; }

	/* VENUE */
	.venue { padding: 24vw 0; }
	.venue__kv { width: 89.74vw; }
	.venue__kv-img { aspect-ratio: 4 / 3; border-radius: 2.5vw; }
	.venue__name { margin-top: 5vw; gap: 1.5vw; }
	.venue__name-en { font-size: 4.6vw; }
	.venue__name-ja { font-size: 4.4vw; }
	.venue__flex { flex-direction: column; gap: 8vw; width: 89.74vw; margin-top: 12vw; }
	.venue__text { flex: none; width: 100%; font-size: 3.8vw; gap: 4vw; }
	.venue__sub-img { width: 100%; border-radius: 2vw; }
	.venue__sub-img figcaption { font-size: 3vw; margin-top: 2vw; }

	/* ONSEN */
	.onsen { padding: 30vw 0; }
	.onsen__scrim { background: linear-gradient(180deg, rgba(24, 19, 12, .35) 0%, rgba(24, 19, 12, .55) 60%, rgba(24, 19, 12, .8) 100%); }
	.onsen__inner { width: 89.74vw; }
	.onsen__title { font-size: 7.4vw; margin: 4vw 0 6vw; }
	.onsen__text { max-width: none; font-size: 3.8vw; gap: 3vw; line-height: 2; }
	.onsen__small { font-size: 3vw; }

	/* LECTURER */
	.lecturer { padding: 24vw 0; }
	.lecturer__inner { width: 89.74vw; }
	.lecturer__visual { border-radius: 2vw; }
	.lecturer__body { max-width: none; margin-top: 8vw; }
	.lecturer__role { font-size: 3.3vw; margin-bottom: 3vw; }
	.lecturer__desc { font-size: 3.8vw; line-height: 2; }
	.lecturer__books { margin-top: 7vw; padding-top: 6vw; font-size: 3.5vw; }
	.lecturer__books dt { margin-bottom: 2vw; }

	/* TIMETABLE */
	.timetable { padding: 24vw 0; }
	.timetable__list { width: 89.74vw; }
	.timetable__list::before { left: 1.5vw; }
	.timetable__item { grid-template-columns: 7vw 1fr; gap: 0 4vw; padding: 4vw 0; }
	.timetable__time { grid-row: 1; grid-column: 2; align-items: flex-start; flex-direction: row; gap: 2vw; align-items: baseline; margin-bottom: 1.5vw; }
	.timetable__time-start { font-size: 5.4vw; }
	.timetable__time-end { font-size: 3vw; }
	.timetable__dot { grid-row: 1 / 3; grid-column: 1; justify-self: start; margin-top: 2vw; width: 3vw; height: 3vw; }
	.timetable__body { grid-row: 2; grid-column: 2; }
	.timetable__label { font-size: 4.6vw; }
	.timetable__desc { font-size: 3.5vw; margin-top: 1.5vw; }

	/* MENU */
	.menu { flex-direction: column; min-height: 0; }
	.menu__img { flex: none; width: 100%; aspect-ratio: 4 / 3; }
	.menu__body { padding: 20vw 7vw; }
	.menu__title { font-size: 7vw; margin: 4vw 0 6vw; }
	.menu__text { font-size: 3.8vw; gap: 4vw; }

	/* OVERVIEW */
	.overview { padding: 24vw 0; }
	.overview__inner { width: 89.74vw; }
	.overview__list { border-radius: 3vw; padding: 3vw 6.4vw; }
	.overview__row { grid-template-columns: 24vw 1fr; gap: 4vw; padding: 4.5vw 0; align-items: start; }
	.overview__row dt { font-size: 3.5vw; }
	.overview__row dd { font-size: 3.8vw; }
	.overview__cta { margin-top: 12vw; }

	/* ACCESS */
	.access { padding: 24vw 0; }
	.access__inner { flex-direction: column; width: 89.74vw; gap: 8vw; }
	.access__station { font-size: 6.4vw; gap: 2.5vw; margin-bottom: 6vw; }
	.access__station-label { font-size: 3.3vw; }
	.access__walk { font-size: 3.5vw; }
	.access__route { gap: 4vw; }
	.access__route li { font-size: 3.8vw; gap: 3.5vw; }
	.access__route-num { width: 7vw; height: 7vw; font-size: 3.5vw; }
	.access__map { width: 100%; }
	.access__place { min-height: 0; padding: 9vw 7vw; border-radius: 2.5vw; }
	.access__place-tag { font-size: 3vw; margin-bottom: 4vw; }
	.access__place-name { font-size: 5.4vw; }
	.access__place-addr { font-size: 3.6vw; margin: 3vw 0 6vw; }
	.access__place-link { height: 11vw; padding: 0 6vw; font-size: 3.5vw; }
	.access__place-icon { font-size: 3.8vw; }
	.access__sub { grid-template-columns: 1fr; width: 89.74vw; gap: 4vw; margin-top: 12vw; }
	.access__sub-item { padding: 7vw; border-radius: 2.5vw; }
	.access__sub-title { font-size: 4.4vw; padding-left: 3.5vw; }
	.access__sub-item p { font-size: 3.6vw; }
	.access__notice { width: 89.74vw; font-size: 3.2vw; margin-top: 6vw; }

	/* NOTICE */
	.notice { padding: 24vw 0; }
	.notice__grid { grid-template-columns: 1fr; width: 89.74vw; border-radius: 3vw; gap: .3vw; }
	.notice__item { padding: 7vw; }
	.notice__item dt { font-size: 4.1vw; margin-bottom: 2.5vw; }
	.notice__item dd { font-size: 3.6vw; }
	.notice__item--contact dd { font-size: 4.6vw; gap: 4vw; }

	/* FAQ */
	.faq { padding: 24vw 0; }
	.faq__list { width: 89.74vw; gap: 3vw; }
	.faq__item { border-radius: 2.5vw; }
	.faq__q { gap: 3.5vw; padding: 5.5vw 6vw; }
	.faq__q-mark { font-size: 5vw; }
	.faq__q-text { font-size: 4vw; }
	.faq__q-icon { width: 4.4vw; height: 4.4vw; }
	.faq__q-icon::before { width: 4.4vw; }
	.faq__q-icon::after { height: 4.4vw; }
	.faq__a-inner { gap: 3.5vw; padding: 1vw 6vw 6vw; }
	.faq__a-mark { font-size: 5vw; }
	.faq__a p { font-size: 3.6vw; }

	/* POLICY */
	.policy { padding: 24vw 0; }
	.policy__inner { grid-template-columns: 1fr; width: 89.74vw; gap: 10vw; }
	.policy__title { font-size: 5.4vw; gap: 1.5vw; margin-bottom: 5vw; padding-bottom: 3.5vw; }
	.policy__title-en { font-size: 3.3vw; }
	.policy__list { gap: 4vw; }
	.policy__list li { font-size: 3.6vw; padding-left: 5vw; }
	.policy__list li::before { width: 2vw; height: 2vw; top: .7em; }

	/* RESERVE */
	.reserve { padding: 28vw 0; }
	.reserve__inner { width: 89.74vw; }
	.reserve__head { margin-bottom: 10vw; }
	.reserve__title { font-size: 6.6vw; margin: 4vw 0 5vw; }
	.reserve__note { font-size: 3.2vw; }
	.reserve__form { gap: 5vw; }
	.reserve__field { gap: 2.2vw; }
	.reserve__field label { font-size: 3.6vw; gap: 2.5vw; }
	.reserve__req { font-size: 2.6vw; }
	.reserve__field input { height: 13vw; padding: 0 4.5vw; font-size: 16px; border-radius: 2vw; }
	.reserve__error { font-size: 3vw; }
	.reserve__formerror { margin-top: 5vw; padding: 4vw 5vw; border-radius: 2vw; font-size: 3.4vw; line-height: 1.8; }
	.reserve__agree { gap: 3vw; font-size: 3.6vw; }
	.reserve__agree-box { width: 5.5vw; height: 5.5vw; border-radius: 1.2vw; }
	.reserve__agree-box::after { width: 1.8vw; height: 3.2vw; }
	.reserve__options { gap: 3vw; padding: 5vw 0 1vw; }
	.reserve__options-title { font-size: 3.6vw; gap: 2.5vw; }
	.reserve__opt { font-size: 2.6vw; }
	.reserve__checks { gap: 3.5vw; }
	.reserve__check { gap: 3vw; font-size: 3.6vw; }
	.reserve__check-box { width: 5.5vw; height: 5.5vw; border-radius: 1.2vw; }
	.reserve__check-box::after { width: 1.8vw; height: 3.2vw; }
	.reserve__checks-note { font-size: 3vw; }
	.reserve__field textarea { min-height: 26vw; padding: 3.5vw 4.5vw; font-size: 16px; border-radius: 2vw; }
	.reserve__submit { width: 100%; height: 14vw; margin-top: 4vw; }
	.reserve__done { padding: 7vw; border-radius: 2.5vw; }
	.reserve__done-title { font-size: 4.4vw; }
	.reserve__done-text { font-size: 3.5vw; }

	/* FOOTER */
	.lp-footer { padding: 22vw 0 8vw; }
	.lp-footer__inner { flex-direction: column; gap: 12vw; width: 89.74vw; }
	.lp-footer__logo-en { font-size: 7vw; }
	.lp-footer__logo-ja { font-size: 3.3vw; }
	.lp-footer__tagline { font-size: 3.5vw; max-width: none; }
	.lp-footer__contact-title { font-size: 4vw; margin-bottom: 4vw; }
	.lp-footer__contact-list { gap: 3vw; }
	.lp-footer__contact-list dt { font-size: 3vw; }
	.lp-footer__contact-list dd { font-size: 4.6vw; }
	.lp-footer__org { gap: 4vw; }
	.lp-footer__org dt { font-size: 3vw; }
	.lp-footer__org dd { font-size: 3.8vw; }
	.lp-footer__copy { margin-top: 14vw; font-size: 2.8vw; }

	/* FLOAT CTA */
	.float-cta { right: 4vw; bottom: 4vw; width: 22vw; height: 22vw; gap: 1.2vw; }
	.float-cta__text { font-size: 3.5vw; }
	.float-cta__icon { width: 3.5vw; }
}

/* small phones */
@media screen and (max-width: 374px) {
	.hero__title { font-size: 7.6vw; }
}

/* large screens — cap the vw growth so the design stays elegant */
@media screen and (min-width: 1728px) {
	.atami-lp-body { font-size: 21.6px; }
	.hero__title { font-size: 74px; }
	.sec-title { font-size: 40px; }
}

/* =============================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
	html.atami-js .js-inView-fadeIn,
	html.atami-js .js-inView-up2show,
	html.atami-js .js-inView-left2show { opacity: 1 !important; visibility: visible !important; clip-path: none !important; }
	.atami-lp *,
	.atami-lp *::before,
	.atami-lp *::after {
		animation-duration: .001ms !important;
		animation-delay: 0ms !important;
		transition-duration: .001ms !important;
	}
	html.atami-js .js-inView-image { transform: none !important; }
	.hero__scroll-line { animation: none !important; }
}
