/* ========================================
   ぼら納屋 - Boranaya Style Sheet
   ======================================== */

/* CSS Variables */
:root {
	--background: #0a1628;
	--foreground: #f5f3ef;
	--card: #0f1d32;
	--card-foreground: #f5f3ef;
	--primary: #c9a227;
	--primary-foreground: #0a1628;
	--secondary: #1a2d4a;
	--secondary-foreground: #f5f3ef;
	--muted: #1a2d4a;
	--muted-foreground: #ededed;
	--border: #1a2d4a;
	--font-serif: "Noto Serif JP", serif;
	--font-sans: "Noto Sans JP", sans-serif;
}

/* Reset & Base */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-sans);
	background-color: var(--background);
	color: var(--foreground);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

img,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Typography */
.font-serif {
	font-family: var(--font-serif);
}

.font-bold {
	font-weight: 700;
}

.tracking-wider {
	letter-spacing: 0.05em;
}

.tracking-widest {
	letter-spacing: 0.1em;
}

/* Container */
.container {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* ========================================
   Splash Screen
   ======================================== */
.splash-screen {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--background);
	transition: opacity 0.5s ease;
}

.splash-screen.fade-out {
	opacity: 0;
	pointer-events: none;
}

.splash-screen.hidden {
	display: none;
}

.splash-logo {
	text-align: center;
	animation: fadeInUp 1s ease forwards;
}

.splash-logo h1 {
	font-family: var(--font-serif);
	font-size: 3rem;
	letter-spacing: 0.2em;
	color: var(--foreground);
}

.splash-logo .subtitle {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-top: 1.5rem;
}

.splash-logo .subtitle .line {
	width: 3rem;
	height: 1px;
	background-color: var(--primary);
}

.splash-logo .subtitle span {
	color: var(--primary);
	font-size: 0.75rem;
	letter-spacing: 0.3em;
}

.splash-logo .location {
	color: rgba(245, 243, 239, 0.6);
	font-size: 0.875rem;
	letter-spacing: 0.1em;
	margin-top: 1rem;
}

/* Corner Decorations */
.corner {
	position: absolute;
	width: 4rem;
	height: 4rem;
	border-color: rgba(201, 162, 39, 0.3);
	border-style: solid;
	border-width: 0;
}

.corner.top-left {
	top: 2rem;
	left: 2rem;
	border-top-width: 1px;
	border-left-width: 1px;
}
.corner.top-right {
	top: 2rem;
	right: 2rem;
	border-top-width: 1px;
	border-right-width: 1px;
}
.corner.bottom-left {
	bottom: 2rem;
	left: 2rem;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
.corner.bottom-right {
	bottom: 2rem;
	right: 2rem;
	border-bottom-width: 1px;
	border-right-width: 1px;
}

/* ========================================
   Header
   ======================================== */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	transition:
		background-color 0.3s ease,
		backdrop-filter 0.3s ease,
		border-color 0.3s ease;
}

.header.scrolled {
	background-color: rgba(10, 22, 40, 0.95);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border);
}

.header nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.5rem;
	flex-wrap: wrap;
}

/* スクロール前のヘッダーレイアウト調整 */
.header:not(.scrolled) nav {
	justify-content: space-between;
}

/* デスクトップ時：スクロール後のレイアウト */
@media (min-width: 768px) {
	.header.scrolled nav {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		padding: 0.75rem 1.5rem;
		position: relative;
	}

	.header.scrolled .logo {
		order: 1;
		margin-bottom: 0;
	}

	/* 電話番号、SNS、言語切り替えを同じ行に配置（右寄せ） */
	.header.scrolled .header-top-right {
		position: static;
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 1rem;
		margin-left: auto;
		margin-bottom: 0;
		order: 2;
	}

	.header.scrolled .lang-select-wrapper {
		display: flex;
		margin-left: 0;
		margin-bottom: 0;
		order: 0;
		margin-top: 0;
	}

	/* メニューを電話番号・SNS・言語切り替えの下に配置 */
	.header.scrolled .nav-links {
		display: flex !important;
		width: 100%;
		justify-content: flex-end;
		margin-top: 0.5rem;
		order: 3;
	}
}

/* スクロール後のヘッダーレイアウト */
.header.scrolled nav {
	padding: 0.75rem 1.5rem;
}

.header .logo {
	font-family: var(--font-serif);
	font-size: 1.25rem;
	letter-spacing: 0.1em;
	color: var(--primary);
}

.header .nav-links {
	display: none !important;
	align-items: center;
	gap: 2rem;
}

/* スクロール前：上部に縦書きメニュー（デスクトップのみ） */
/* デスクトップのみ：未スクロール時は縦書きメニュー */
@media (min-width: 768px) {
	.header:not(.scrolled) .nav-links {
		display: flex !important;
		position: fixed;
		right: 2rem;
		top: 2rem;
		flex-direction: column;
		gap: 1.5rem;
		writing-mode: vertical-rl;
		z-index: 60;
		align-items: flex-start;
	}
}

.header:not(.scrolled) .nav-links a {
	font-size: 0.875rem;
	letter-spacing: 0.2em;
	color: rgba(245, 243, 239, 0.9);
	transition: all 0.3s ease;
	padding: 0.5rem 0;
}

.header:not(.scrolled) .nav-links a:hover {
	color: var(--primary);
	transform: translateX(-0.25rem);
}

/* スクロール後：横書きメニュー */
.header.scrolled .nav-links {
	position: static;
	display: flex;
	flex-direction: row;
	gap: 2rem;
	writing-mode: horizontal-tb;
	transform: none;
}

.header.scrolled .nav-links a {
	font-size: 0.875rem;
	letter-spacing: 0.05em;
	color: rgba(245, 243, 239, 0.8);
	transition: color 0.3s ease;
	padding: 0;
}

.header.scrolled .nav-links a:hover {
	color: var(--primary);
	transform: none;
}

/* スクロール前：電話番号とSNSは非表示 */
.header-top-right {
	position: fixed;
	right: 2rem;
	top: 1.5rem;
	z-index: 60;
	display: none;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.75rem;
}

.header:not(.scrolled) .header-top-right {
	display: none;
}

.header:not(.scrolled) .header-contact,
.header:not(.scrolled) .header-social {
	display: flex;
}

.header:not(.scrolled) .lang-select-wrapper {
	display: none;
}

.header-social {
	display: none;
	align-items: center;
	gap: 0.75rem;
}

.header-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border: 1px solid rgba(245, 243, 239, 0.3);
	color: rgba(245, 243, 239, 0.8);
	background-color: rgba(10, 22, 40, 0.3);
	backdrop-filter: blur(4px);
	transition: all 0.3s ease;
	border-radius: 50%;
}

.header-social a:hover {
	border-color: var(--primary);
	color: var(--primary);
	background-color: rgba(201, 162, 39, 0.1);
}

.header-social a svg {
	width: 1rem;
	height: 1rem;
}

/* スクロール後のSNSアイコン */
.header.scrolled .header-social a {
	width: 2.25rem;
	height: 2.25rem;
	border: 1px solid rgba(245, 243, 239, 0.2);
	background-color: rgba(10, 22, 40, 0.2);
}

.header.scrolled .header-social a svg {
	width: 1.125rem;
	height: 1.125rem;
}

/* モバイル時はハンバーガーメニューを表示 */
.hamburger {
	display: flex;
}

/* デスクトップ時はハンバーガーメニューを常に非表示 */
@media (min-width: 768px) {
	.header .hamburger {
		display: none !important;
	}
}

/* スクロール後は表示 */
.header.scrolled .header-top-right {
	position: static;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 1rem;
}

.header.scrolled .header-contact {
	display: flex;
}

.header.scrolled .header-social {
	display: flex;
	gap: 0.5rem;
}

.header.scrolled .lang-select-wrapper {
	display: block;
}

/* スクロール後はハンバーガーメニューを表示（モバイルのみ） */
.header.scrolled .hamburger {
	display: flex;
}

.header-contact {
	display: none;
	align-items: center;
}

.header-contact .phone-link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: rgba(245, 243, 239, 0.9);
	transition: color 0.3s ease;
	padding: 0;
	background-color: transparent;
	border: none;
	border-radius: 0;
}

.header-contact .phone-link:hover {
	color: var(--primary);
}

.header-contact .phone-link svg {
	width: 1rem;
	height: 1rem;
}

/* スクロール後の電話番号スタイル */
.header.scrolled .header-contact .phone-link {
	padding: 0;
	font-size: 1rem;
	font-weight: 500;
}

.header.scrolled .header-contact .phone-link svg {
	width: 1.125rem;
	height: 1.125rem;
}

.lang-select-wrapper {
	display: none;
	align-items: center;
	gap: 0.375rem;
	flex-shrink: 0;
	border: 1px solid rgba(245, 243, 239, 0.4);
	border-radius: 1rem;
	padding: 0.375rem 0.625rem;
	transition: all 0.3s ease;
}

.lang-select-wrapper:hover {
	border-color: var(--primary);
}

.lang-icon-external {
	width: 0.875rem;
	height: 0.875rem;
	color: rgba(245, 243, 239, 0.8);
	flex-shrink: 0;
	transition: color 0.3s ease;
}

.lang-select-wrapper:hover .lang-icon-external {
	color: var(--primary);
}

.lang-select-simple {
	appearance: none;
	background-color: transparent;
	border: none;
	color: rgba(245, 243, 239, 0.9);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	cursor: pointer;
	padding: 0;
}

.lang-select-simple:hover,
.lang-select-simple:focus {
	outline: none;
	color: var(--primary);
}

.hamburger {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	gap: 6px;
	width: 32px;
	height: 32px;
	background: none;
	border: none;
	color: var(--foreground);
	cursor: pointer;
	order: 10; /* 一番右に配置 */
	padding: 0;
}

.hamburger-line {
	display: block;
	width: 26px;
	height: 2px;
	background-color: var(--foreground);
	transition: all 0.3s ease;
}

.hamburger-line-short {
	width: 18px;
}

/* モバイル時のヘッダーレイアウト */
@media (max-width: 767px) {
	.header nav {
		display: flex;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: center;
	}

	.header .logo {
		flex-shrink: 0;
		order: 1;
	}

	/* モバイル時はナビゲーションリンクは常に非表示（ドロワーで表示） */
	.header .nav-links {
		display: none !important;
	}

	/* モバイル時は電話番号とSNSは非表示（ドロワーで表示） */
	.header .header-contact,
	.header .header-social {
		display: none !important;
	}

	/* モバイル時のheader-top-rightは言語切り替えのみ表示 */
	.header .header-top-right {
		position: static !important;
		display: flex !important;
		flex-direction: row;
		align-items: center;
		gap: 0.5rem;
		margin-left: auto;
		order: 2;
	}

	/* モバイル時は言語切り替えを表示 */
	.header .lang-select-wrapper {
		display: flex !important;
		position: static !important;
		margin-left: 0;
	}

	/* ハンバーガーメニューは常に表示・右端に */
	.header .hamburger {
		display: flex !important;
		margin-left: 0.5rem;
		flex-shrink: 0;
		order: 3;
	}
}

/* Drawer */
.drawer-overlay {
	position: fixed;
	inset: 0;
	z-index: 100;
	background-color: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.drawer-overlay.active {
	opacity: 1;
	pointer-events: auto;
}

.drawer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 101;
	width: 85%;
	max-width: 320px;
	background-color: var(--background);
	border-left: 1px solid var(--border);
	transform: translateX(100%);
	transition: transform 0.3s ease;
}

.drawer.active {
	transform: translateX(0);
}

.drawer-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem;
	border-bottom: 1px solid var(--border);
}

.drawer-header .logo {
	font-family: var(--font-serif);
	font-size: 1.25rem;
	letter-spacing: 0.1em;
	color: var(--primary);
}

.drawer-close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: none;
	border: none;
	color: var(--foreground);
	cursor: pointer;
	transition: color 0.3s ease;
}

.drawer-close:hover {
	color: var(--primary);
}

.drawer-nav {
	padding: 1.5rem;
}

.drawer-nav a {
	display: block;
	font-family: var(--font-serif);
	font-size: 1.125rem;
	letter-spacing: 0.05em;
	padding: 1rem;
	border-bottom: 1px solid rgba(26, 45, 74, 0.5);
	transition: all 0.3s ease;
}

.drawer-nav a:hover {
	color: var(--primary);
	background-color: rgba(26, 45, 74, 0.5);
}

.drawer-contact {
	padding: 1.5rem;
	border-top: 1px solid var(--border);
	margin-top: auto;
	text-align: center;
}

.drawer-contact-label {
	font-size: 0.75rem;
	color: rgba(245, 243, 239, 0.5);
	letter-spacing: 0.1em;
	margin-bottom: 0.5rem;
}

.drawer-phone {
	font-family: var(--font-serif);
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--foreground);
	letter-spacing: 0.05em;
}

.drawer-buttons {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding: 0 1.5rem 1.5rem;
}

.drawer-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.875rem 1.25rem;
	border: 1px solid rgba(245, 243, 239, 0.3);
	background-color: transparent;
	color: var(--foreground);
	font-size: 0.875rem;
	letter-spacing: 0.05em;
	transition: all 0.3s ease;
}

.drawer-btn:hover {
	border-color: var(--primary);
	color: var(--primary);
}

.drawer-btn-primary {
	background-color: var(--primary);
	border-color: var(--primary);
	color: var(--primary-foreground);
}

.drawer-btn-primary:hover {
	background-color: #b8922e;
	border-color: #b8922e;
	color: var(--primary-foreground);
}

.drawer-btn .arrow {
	font-size: 1rem;
	transition: transform 0.3s ease;
}

.drawer-btn:hover .arrow {
	transform: translateX(0.125rem);
}

.drawer-lang {
	padding: 1.5rem;
	border-top: 1px solid var(--border);
}

.drawer-lang p {
	font-size: 0.75rem;
	color: var(--muted-foreground);
	letter-spacing: 0.05em;
	margin-bottom: 0.75rem;
}

.drawer-lang-select {
	width: 100%;
	appearance: none;
	background-color: var(--card);
	border: 1px solid var(--border);
	border-radius: 0.25rem;
	color: var(--foreground);
	padding: 0.75rem 1rem;
	font-size: 0.875rem;
	cursor: pointer;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
	position: relative;
	height: 100vh;
	width: 100%;
	overflow: hidden;
}

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

.hero-overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(10, 22, 40, 0.37);
}

.hero-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(10, 22, 40, 0.37), transparent, var(--background));
}

.hero-content {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	text-align: center;
}

.hero-vertical-text {
	position: absolute;
	right: 1.5rem;
	top: 33%;
	writing-mode: vertical-rl;
	font-size: 0.875rem;
	letter-spacing: 0.5em;
	color: rgba(201, 162, 39, 0.6);
	opacity: 0;
	transform: translateX(1rem);
	transition: all 1s ease 0.5s;
}

.hero-vertical-text.visible {
	opacity: 1;
	transform: translateX(0);
}

.hero-main {
	opacity: 0;
	transform: translateY(2rem);
	transition: all 1s ease;
}

.hero-main.visible {
	opacity: 1;
	transform: translateY(0);
}

.hero-main .subtitle {
	color: var(--primary);
	font-size: 0.875rem;
	letter-spacing: 0.3em;
	margin-bottom: 1rem;
}

.hero-main h1 {
	font-family: var(--font-serif);
	font-size: 3rem;
	letter-spacing: 0.1em;
	margin-bottom: 1.5rem;
}

.hero-main .line {
	width: 4rem;
	height: 1px;
	background-color: var(--primary);
	margin: 0 auto 1.5rem;
}

.hero-main .description {
	color: rgba(245, 243, 239, 0.8);
	font-size: 1rem;
	letter-spacing: 0.05em;
	max-width: 28rem;
	line-height: 1.8;
}

.hero-features {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-top: 3rem;
	opacity: 0;
	transform: translateY(2rem);
	transition: all 1s ease 0.3s;
}

.hero-features.visible {
	opacity: 0.8;
	transform: translateY(0);
}

.hero-feature-badge {
	display: inline-block;
	padding: 0.375rem 0.875rem;
	border: 1px solid rgba(245, 243, 239, 0.8);
	border-radius: 0;
	background-color: transparent;
	color: rgba(245, 243, 239, 0.9);
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	white-space: nowrap;
	min-width: 9rem;
	text-align: center;
}

.scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	opacity: 0;
	transition: opacity 1s ease 0.7s;
}

.scroll-indicator.visible {
	opacity: 1;
}

.scroll-indicator span {
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	color: rgba(245, 243, 239, 0.6);
}

.scroll-indicator svg {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--primary);
	animation: bounce 2s infinite;
}

@keyframes bounce {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-0.5rem);
	}
}

/* ========================================
   Concept Section
   ======================================== */
.concept {
	position: relative;
	padding: 5rem 0;
	overflow: hidden;
}

.concept-grid {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
}

.concept-top {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 3rem;
}

.concept-image {
	position: relative;
	width: 9rem;
	height: 11rem;
	overflow: hidden;
	opacity: 0;
	transform: translateY(2rem);
	transition: all 1s ease;
}

.concept-image.visible {
	opacity: 1;
	transform: translateY(0);
}

.concept-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.concept-image.upper {
	margin-top: 0;
}

.concept-image.lower {
	margin-top: 3rem;
}

.concept-image .border-accent {
	position: absolute;
	width: 0.75rem;
	border-color: var(--primary);
	border-style: solid;
}

.concept-image .border-accent.bottom-right {
	bottom: -0.25rem;
	right: -0.25rem;
	height: 3rem;
	border-right-width: 1px;
	border-bottom-width: 1px;
}

.concept-image .border-accent.top-left {
	top: -0.25rem;
	left: -0.25rem;
	height: 3rem;
	border-top-width: 1px;
	border-left-width: 1px;
}

.concept-vertical-text {
	writing-mode: vertical-rl;
	font-family: var(--font-serif);
	font-size: 1.5rem;
	color: var(--primary);
	letter-spacing: 0.25em;
	line-height: 2;
	opacity: 0;
	transition: all 1s ease;
}

.concept-vertical-text.left {
	transform: translateX(-2rem);
}

.concept-vertical-text.right {
	transform: translateX(2rem);
}

.concept-vertical-text.visible {
	opacity: 1;
	transform: translateX(0);
}

.concept-center {
	text-align: center;
	padding: 2rem 0;
	opacity: 0;
	transform: translateY(2rem);
	transition: all 1s ease 0.5s;
}

.concept-center.visible {
	opacity: 1;
	transform: translateY(0);
}

.concept-center .decorative-line {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.concept-center .decorative-line .line {
	width: 2rem;
	height: 1px;
	background-color: rgba(201, 162, 39, 0.4);
}

.concept-center .decorative-line .diamond {
	width: 0.5rem;
	height: 0.5rem;
	border: 1px solid rgba(201, 162, 39, 0.6);
	transform: rotate(45deg);
}

.concept-center h2 {
	font-family: var(--font-serif);
	font-size: 0.75rem;
	letter-spacing: 0.5em;
	color: var(--primary);
	margin-bottom: 1rem;
}

.concept-center .tagline {
	font-family: var(--font-serif);
	font-size: 1.25rem;
	line-height: 1.8;
	color: rgba(245, 243, 239, 0.9);
	margin-bottom: 1.5rem;
}

.concept-center .tagline .highlight {
	color: var(--primary);
}

.concept-center .vertical-line {
	width: 1px;
	height: 2rem;
	background: linear-gradient(to bottom, rgba(201, 162, 39, 0.6), transparent);
	margin: 0 auto 1.5rem;
}

.concept-center .description {
	font-size: 0.875rem;
	color: var(--muted-foreground);
	line-height: 2;
	letter-spacing: 0.05em;
	max-width: 20rem;
	margin: 0 auto;
}

.concept-center .signature {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-top: 2rem;
}

.concept-center .signature .line {
	width: 2rem;
	height: 1px;
	background-color: var(--border);
}

.concept-center .signature span {
	font-family: var(--font-serif);
	font-size: 1rem;
	letter-spacing: 0.1em;
	color: rgba(245, 243, 239, 0.7);
}

/* Concept Marquee Gallery */
.concept-marquee-container {
	width: 100%;
	margin-top: 4rem;
	overflow: hidden;
	opacity: 0;
	transition: opacity 1s ease 0.5s;
}

.concept-marquee-container.visible {
	opacity: 1;
}

.concept-marquee {
	display: flex;
	animation: concept-marquee 40s linear infinite;
}

.concept-marquee-item {
	flex-shrink: 0;
	width: 17rem;
	aspect-ratio: 4 / 3;
	margin: 0 0.5rem;
	overflow: hidden;
}

.concept-marquee-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@keyframes concept-marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* ========================================
   Menu Section
   ======================================== */
.menu {
	padding: 6rem 0;
	background-color: var(--background);
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-header .label {
	color: var(--primary);
	font-size: 0.875rem;
	letter-spacing: 0.3em;
	margin-bottom: 1rem;
}

.section-header h2 {
	font-family: var(--font-serif);
	font-size: 1.875rem;
	letter-spacing: 0.1em;
}

.section-header .line {
	width: 3rem;
	height: 1px;
	background-color: var(--primary);
	margin: 1.5rem auto 0;
}

.menu-items {
	display: flex;
	flex-direction: column;
	gap: 6rem;
}

.menu-item {
	display: grid;
	gap: 2rem;
	opacity: 0;
	transform: translateY(3rem);
	transition: all 1s ease;
}

.menu-item.visible {
	opacity: 1;
	transform: translateY(0);
}

.menu-item-image {
	position: relative;
	aspect-ratio: 4/3;
	overflow: hidden;
}

.menu-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}

.menu-item-image:hover img {
	transform: scale(1.05);
}

.menu-item-image .border {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(201, 162, 39, 0.2);
}

.menu-item-content .name-en {
	color: rgba(201, 162, 39, 0.6);
	font-size: 0.75rem;
	letter-spacing: 0.3em;
	margin-bottom: 0.5rem;
}

.menu-item-content .catch-copy {
	color: var(--primary);
	font-size: 0.875rem;
	letter-spacing: 0.1em;
	margin-bottom: 0.5rem;
	font-weight: 500;
}

.menu-item-content h3 {
	font-family: var(--font-serif);
	font-size: 1.5rem;
	letter-spacing: 0.1em;
	margin-bottom: 1rem;
}

.menu-item-content .description {
	color: rgba(245, 243, 239, 0.7);
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.menu-item-content .price {
	font-family: var(--font-serif);
	font-size: 1.125rem;
	letter-spacing: 0.1em;
	color: var(--primary);
}

.menu-item-content .price .tax {
	font-size: 0.75rem;
	color: rgba(245, 243, 239, 0.5);
	margin-left: 0.25rem;
}

/* メニュースライド */
.menu-slider-section {
	position: relative;
	margin-top: 5rem;
	opacity: 0;
	transform: translateY(2rem);
	transition: all 0.8s ease;
}

.menu-slider-section.visible {
	opacity: 1;
	transform: translateY(0);
}

/* スライダーコントロール */
.slider-control {
	display: none;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 3rem;
	height: 3rem;
	border: 1px solid rgba(245, 243, 239, 0.3);
	border-radius: 50%;
	background-color: rgba(10, 22, 40, 0.8);
	backdrop-filter: blur(8px);
	color: var(--foreground);
	cursor: pointer;
	transition: all 0.3s ease;
	align-items: center;
	justify-content: center;
}

.slider-control:hover {
	border-color: var(--primary);
	color: var(--primary);
	background-color: rgba(10, 22, 40, 0.95);
}

.slider-control:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.slider-control:disabled:hover {
	border-color: rgba(245, 243, 239, 0.3);
	color: var(--foreground);
}

.slider-control svg {
	width: 1.25rem;
	height: 1.25rem;
}

.slider-prev {
	left: -1.5rem;
}

.slider-next {
	right: -1.5rem;
}

@media (min-width: 768px) {
	.slider-control {
		display: flex;
	}

	.slider-prev {
		left: -2rem;
	}

	.slider-next {
		right: -2rem;
	}
}

@media (min-width: 1024px) {
	.slider-prev {
		left: -3rem;
	}

	.slider-next {
		right: -3rem;
	}
}

.menu-slider {
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: var(--primary) rgba(245, 243, 239, 0.1);
	padding-bottom: 1rem;
}

.menu-slider::-webkit-scrollbar {
	height: 6px;
}

.menu-slider::-webkit-scrollbar-track {
	background: rgba(245, 243, 239, 0.1);
	border-radius: 3px;
}

.menu-slider::-webkit-scrollbar-thumb {
	background: var(--primary);
	border-radius: 3px;
}

.menu-slider-track {
	display: flex;
	gap: 1.5rem;
	padding: 0.5rem 0;
}

.menu-slide {
	flex-shrink: 0;
	width: 280px;
	background-color: rgba(15, 29, 50, 0.6);
	border: 1px solid var(--border);
	overflow: hidden;
	transition: all 0.3s ease;
}

.menu-slide:hover {
	border-color: var(--primary);
	transform: translateY(-0.25rem);
}

.menu-slide .slide-image {
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.menu-slide .slide-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.menu-slide:hover .slide-image img {
	transform: scale(1.05);
}

.menu-slide .slide-content {
	padding: 1.25rem;
}

.menu-slide h4 {
	font-size: 1rem;
	letter-spacing: 0.05em;
	color: var(--foreground);
	margin-bottom: 0.5rem;
}

.menu-slide .slide-price {
	font-family: var(--font-serif);
	font-size: 1.125rem;
	color: var(--primary);
	margin-bottom: 0.75rem;
}

.menu-slide .slide-price .tax {
	font-size: 0.75rem;
	color: rgba(245, 243, 239, 0.5);
	margin-left: 0.25rem;
}

.menu-slide .slide-desc {
	font-size: 0.8125rem;
	color: rgba(245, 243, 239, 0.7);
	line-height: 1.7;
}

.menu-slider-note {
	text-align: center;
	margin-top: 1.5rem;
	font-size: 0.8125rem;
	color: rgba(245, 243, 239, 0.5);
}

@media (min-width: 768px) {
	.menu-slide {
		width: 320px;
	}
}

@media (min-width: 1024px) {
	.menu-slide {
		width: 340px;
	}
}

.menu-note {
	text-align: center;
	margin-top: 4rem;
	color: rgba(245, 243, 239, 0.6);
	font-size: 0.875rem;
}

.menu-note p:nth-child(2) {
	margin-top: 0.5rem;
}

/* ========================================
   News Section
   ======================================== */
.news {
	position: relative;
	padding: 5rem 0;
	background-color: rgba(15, 29, 50, 0.5);
}

.news-header {
	text-align: center;
	margin-bottom: 3rem;
	opacity: 0;
	transform: translateY(2rem);
	transition: all 0.7s ease;
}

.news-header.visible {
	opacity: 1;
	transform: translateY(0);
}

.news-header .icon-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.news-header .icon-wrapper .line {
	width: 2rem;
	height: 1px;
	background-color: rgba(201, 162, 39, 0.4);
}

.news-header .icon-wrapper svg {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--primary);
}

.news-header .label {
	font-family: var(--font-serif);
	font-size: 0.875rem;
	letter-spacing: 0.4em;
	color: var(--primary);
	margin-bottom: 0.5rem;
}

.news-header h2 {
	font-family: var(--font-serif);
	font-size: 1.5rem;
	letter-spacing: 0.1em;
}

.news-list {
	max-width: 48rem;
	margin: 0 auto;
}

.news-item {
	opacity: 0;
	transform: translateY(2rem);
	transition: all 0.7s ease;
}

.news-item.visible {
	opacity: 1;
	transform: translateY(0);
}

.news-item a {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1.25rem 1rem;
	border-bottom: 1px solid rgba(26, 45, 74, 0.5);
	transition: background-color 0.3s ease;
	border-radius: 0.25rem;
	margin: 0 -1rem;
}

.news-item a:hover {
	background-color: rgba(26, 45, 74, 0.3);
}

.news-item .meta {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-shrink: 0;
}

.news-item .date {
	font-size: 0.875rem;
	color: var(--muted-foreground);
	letter-spacing: 0.05em;
	font-family: monospace;
}

.news-item .category {
	font-size: 0.75rem;
	padding: 0.125rem 0.5rem;
	background-color: var(--secondary);
	color: rgba(245, 243, 239, 0.8);
	border-radius: 0.25rem;
	letter-spacing: 0.05em;
}

.news-item .new-badge {
	font-size: 0.75rem;
	padding: 0.125rem 0.5rem;
	background-color: var(--primary);
	color: var(--primary-foreground);
	border-radius: 0.25rem;
	letter-spacing: 0.05em;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.7;
	}
}

.news-item .content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex: 1;
}

.news-item .title {
	font-size: 0.875rem;
	color: rgba(245, 243, 239, 0.9);
	line-height: 1.6;
	transition: color 0.3s ease;
}

.news-item a:hover .title {
	color: var(--primary);
}

.news-item .arrow {
	width: 1rem;
	height: 1rem;
	color: var(--muted-foreground);
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.news-item a:hover .arrow {
	color: var(--primary);
	transform: translateX(0.25rem);
}

.news-more {
	text-align: center;
	margin-top: 2.5rem;
	opacity: 0;
	transform: translateY(2rem);
	transition: all 0.7s ease 0.7s;
}

.news-more.visible {
	opacity: 1;
	transform: translateY(0);
}

.news-more a {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	letter-spacing: 0.1em;
	color: rgba(245, 243, 239, 0.7);
	transition: color 0.3s ease;
}

.news-more a:hover {
	color: var(--primary);
}

.news-more a svg {
	width: 1rem;
	height: 1rem;
	transition: transform 0.3s ease;
}

.news-more a:hover svg {
	transform: translateX(0.25rem);
}

/* ========================================
   About Section
   ======================================== */
.about {
	padding: 6rem 0;
	background-color: var(--card);
}

.about-intro {
	max-width: 48rem;
	margin: 0 auto 5rem;
	text-align: left;
	opacity: 0;
	transform: translateY(2rem);
	transition: all 1s ease;
}

@media (min-width: 768px) {
	.about-intro {
		text-align: center;
	}
}

.about-intro.visible {
	opacity: 1;
	transform: translateY(0);
}

.about-intro p {
	color: rgba(245, 243, 239, 0.8);
	line-height: 2;
	font-size: 1rem;
}

.about-features {
	display: grid;
	gap: 2rem;
	margin-bottom: 5rem;
}

.about-feature {
	text-align: center;
	padding: 2rem;
	border: 1px solid var(--border);
	opacity: 0;
	transform: translateY(2rem);
	transition: all 0.5s ease;
}

.about-feature.visible {
	opacity: 1;
	transform: translateY(0);
}

.about-feature svg {
	width: 2rem;
	height: 2rem;
	color: var(--primary);
	margin: 0 auto 1.5rem;
}

.about-feature h3 {
	font-family: var(--font-serif);
	font-size: 1.25rem;
	letter-spacing: 0.1em;
	margin-bottom: 1rem;
}

.about-feature p {
	color: rgba(245, 243, 239, 0.7);
	font-size: 0.875rem;
	line-height: 1.8;
}

.about-feature-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1.25rem;
	padding: 0.75rem 1.25rem;
	border: 1px solid rgba(245, 243, 239, 0.3);
	background-color: transparent;
	color: rgba(245, 243, 239, 0.9);
	font-size: 0.875rem;
	letter-spacing: 0.05em;
	text-decoration: none;
	transition: all 0.3s ease;
}

.about-feature-btn:hover {
	border-color: rgba(245, 243, 239, 0.6);
	color: var(--foreground);
}

/* About - アクセス画像（セクション内で幅100%・縦並び） */
.about-access {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(245, 243, 239, 0.1);
	width: 100%;
}

.about-access h3 {
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
	text-align: center;
}

.access-images {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
	margin-bottom: 6rem;
}

.access-image {
	margin: 0;
	width: 100%;
}

.access-image img {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	height: auto;
	display: block;
	border-radius: 4px;
}

/* Marquee Gallery */
.marquee-container {
	overflow: hidden;
	opacity: 0;
	transition: opacity 1s ease 0.5s;
}

.marquee-container.visible {
	opacity: 1;
}

.marquee {
	display: flex;
	animation: marquee 30s linear infinite;
}

.marquee-item {
	flex-shrink: 0;
	width: 16rem;
	aspect-ratio: 4/3;
	margin: 0 0.5rem;
}

.marquee-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@keyframes marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* ========================================
   Info Section
   ======================================== */
.info {
	padding: 6rem 0;
	background-color: var(--background);
}

.info-grid {
	display: grid;
	gap: 3rem;
}

.info-items {
	display: grid;
	gap: 2rem;
	opacity: 0;
	transform: translateX(-2rem);
	transition: all 1s ease;
}

.info-items.visible {
	opacity: 1;
	transform: translateX(0);
}

.info-item {
	padding: 1.5rem;
	border: 1px solid var(--border);
	transition: border-color 0.3s ease;
}

.info-item:hover {
	border-color: rgba(201, 162, 39, 0.4);
}

.info-item .header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.info-item .header svg {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--primary);
}

.info-item .header h3 {
	font-family: var(--font-serif);
	font-size: 1.125rem;
	letter-spacing: 0.1em;
}

.info-item .content p {
	color: rgba(245, 243, 239, 0.7);
	font-size: 0.875rem;
	line-height: 1.8;
}

.info-map {
	opacity: 0;
	transform: translateX(2rem);
	transition: all 1s ease 0.3s;
}

.info-map.visible {
	opacity: 1;
	transform: translateX(0);
}

.info-map .map-wrapper {
	position: relative;
	aspect-ratio: 4/3;
	border: 1px solid var(--border);
	overflow: hidden;
}

.info-map iframe {
	width: 100%;
	height: 100%;
	filter: grayscale(100%);
	transition: filter 0.5s ease;
}

.info-map .map-wrapper:hover iframe {
	filter: grayscale(0%);
}

.info-map .note {
	text-align: center;
	color: rgba(245, 243, 239, 0.6);
	font-size: 0.875rem;
	margin-top: 1rem;
}

.info-notice {
	margin-top: 4rem;
	padding: 2rem;
	border: 1px solid rgba(201, 162, 39, 0.3);
	text-align: center;
	opacity: 0;
	transform: translateY(2rem);
	transition: all 1s ease 0.5s;
}

.info-notice.visible {
	opacity: 1;
	transform: translateY(0);
}

.info-notice h3 {
	font-family: var(--font-serif);
	font-size: 1.125rem;
	letter-spacing: 0.1em;
	color: var(--primary);
	margin-bottom: 0.5rem;
}

.info-notice p {
	color: rgba(245, 243, 239, 0.7);
	font-size: 0.875rem;
}

.info-notice p:nth-child(3) {
	margin-top: 0.5rem;
}

/* ========================================
   Footer
   ======================================== */
.footer {
	position: relative;
	padding: 4rem 0 8rem;
	overflow: hidden;
}

.footer-bg {
	position: absolute;
	inset: 0;
}

.footer-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.4;
}

.footer-bg .gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgb(10 22 40 / 85%) 0%, rgb(10 22 40 / 70%) 50%, rgb(10 22 40 / 40%) 100%);
}

.footer-bg .accent-lines {
	position: absolute;
	top: 0;
	right: 0;
	width: 33%;
	height: 100%;
	opacity: 0.4;
}

.footer-bg .accent-lines .line {
	position: absolute;
	width: 1px;
	background: linear-gradient(to bottom, transparent, var(--primary), transparent);
}

.footer-bg .accent-lines .line:nth-child(1) {
	top: 25%;
	right: 5rem;
	height: 8rem;
}
.footer-bg .accent-lines .line:nth-child(2) {
	top: 50%;
	right: 10rem;
	height: 12rem;
}
.footer-bg .accent-lines .line:nth-child(3) {
	bottom: 25%;
	right: 15rem;
	height: 6rem;
}

.footer-content {
	position: relative;
	z-index: 10;
}

/* フッターメインレイアウト */
.footer-main {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

@media (min-width: 768px) {
	.footer-main {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
		gap: 3rem;
	}
}

@media (min-width: 1024px) {
	.footer-main {
		gap: 4rem;
	}
}

/* 左側：ロゴ・電話・予約 */
.footer-left {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.footer-left {
		align-items: flex-start;
		flex-shrink: 0;
	}
}

.footer-logo {
	margin-bottom: 1.5rem;
}

.footer-logo .logo-vertical {
	writing-mode: vertical-rl;
	font-size: 2.5rem;
	letter-spacing: 0.2em;
	color: var(--foreground);
}

@media (min-width: 768px) {
	.footer-logo .logo-vertical {
		font-size: 3rem;
	}
}

.footer-contact {
	text-align: center;
}

@media (min-width: 768px) {
	.footer-contact {
		text-align: left;
	}
}

.footer-contact .label {
	font-size: 0.6875rem;
	letter-spacing: 0.1em;
	color: rgba(245, 243, 239, 0.5);
	margin-bottom: 0.5rem;
}

.footer-contact .phone {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-serif);
	font-size: 1.5rem;
	color: var(--foreground);
	transition: color 0.3s ease;
}

.footer-contact .phone:hover {
	color: var(--primary);
}

.footer-contact .phone svg {
	width: 1.125rem;
	height: 1.125rem;
	color: rgba(245, 243, 239, 0.5);
}

/* 予約ボタン */
.footer-buttons {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	width: 100%;
	max-width: 220px;
}

.footer-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.75rem 1rem;
	border: 1px solid rgba(245, 243, 239, 0.2);
	background-color: transparent;
	color: rgba(245, 243, 239, 0.8);
	font-size: 0.8125rem;
	letter-spacing: 0.05em;
	transition: all 0.3s ease;
}

.footer-btn:hover {
	border-color: rgba(245, 243, 239, 0.5);
	color: var(--foreground);
}

.footer-btn .arrow {
	font-size: 1rem;
	transition: transform 0.3s ease;
}

.footer-btn:hover .arrow {
	transform: translateX(0.125rem);
}

/* FAX */
.footer-contact .fax {
	font-size: 0.75rem;
	color: rgba(245, 243, 239, 0.5);
	margin-top: 0.375rem;
}

/* 中央：店舗情報 */
.footer-center {
	flex: 1;
	text-align: left;
}

@media (min-width: 768px) {
	.footer-center {
		text-align: left;
	}
}

.footer-center .address {
	font-size: 0.9375rem;
	color: var(--foreground);
	line-height: 1.7;
	margin-bottom: 0.75rem;
}

.footer-center .map-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.875rem 2.5rem;
	border: 1px solid rgba(245, 243, 239, 0.4);
	background-color: rgba(245, 243, 239, 0.08);
	color: var(--foreground);
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	transition: all 0.3s ease;
	margin-bottom: 1.5rem;
}

.footer-center .map-link:hover {
	border-color: var(--primary);
	background-color: rgba(201, 162, 39, 0.1);
	color: var(--primary);
}

.footer-center .map-link .arrow {
	font-size: 0.875rem;
	transition: transform 0.3s ease;
}

.footer-center .map-link:hover .arrow {
	transform: translateX(0.125rem);
}

.footer-center .info-row {
	margin-bottom: 1.25rem;
}

.footer-center .info-row .info-main {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--foreground);
	line-height: 1.6;
}

.footer-center .info-row p {
	font-size: 0.875rem;
	color: var(--foreground);
	line-height: 1.6;
}

.footer-center .info-label-inline {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: rgba(245, 243, 239, 0.7);
	margin-right: 1rem;
	padding: 0.25rem 0.5rem;
	border: 1px solid rgba(245, 243, 239, 0.4);
	background-color: transparent;
}

.footer-center .note {
	font-size: 0.75rem;
	color: rgba(245, 243, 239, 0.7);
	margin-top: 0.375rem;
}

.footer-center .pet-notice {
	font-size: 0.8125rem;
	color: var(--primary);
	margin-top: 1rem;
	font-weight: 500;
}

/* 右側：案内カード */
.footer-right {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	text-align: center;
}

@media (min-width: 768px) {
	.footer-right {
		text-align: center;
		align-items: stretch;
		flex-shrink: 0;
		width: 300px;
	}
}

@media (min-width: 1024px) {
	.footer-right {
		width: 320px;
	}
}

/* フッターカード */
.footer-card {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.875rem 1rem;
	background-color: rgba(245, 243, 239, 0.05);
	border: 1px solid rgba(245, 243, 239, 0.1);
}

.footer-card .card-badge {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border: 1px solid rgba(100, 60, 40, 0.8);
	background-color: rgba(100, 60, 40, 0.3);
}

.footer-card .card-badge .badge-text {
	font-size: 0.625rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: var(--foreground);
	text-align: center;
	line-height: 1.3;
}

.footer-card .card-content {
	flex: 1;
}

.footer-card .card-title {
	font-size: 0.8125rem;
	color: var(--foreground);
	line-height: 1.5;
}

/* 駐車場カード */
.footer-card.parking-card {
	flex-direction: column;
	align-items: stretch;
	text-align: center;
	padding: 1.25rem 1.5rem;
	background-color: rgba(180, 140, 100, 0.2);
	border: 2px solid rgba(180, 140, 100, 0.5);
}

.footer-card .card-heading {
	font-size: 1.25rem;
	letter-spacing: 0.15em;
	color: var(--foreground);
	margin-bottom: 0.625rem;
}

.footer-card .card-subtitle {
	font-size: 0.8125rem;
	color: var(--foreground);
	padding-bottom: 0.875rem;
	border-bottom: 1px solid rgba(180, 140, 100, 0.4);
	margin-bottom: 0.875rem;
}

.footer-card .card-prices {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem 2rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--foreground);
	margin-bottom: 0.625rem;
	white-space: nowrap;
}

.footer-card .card-prices span {
	white-space: nowrap;
}

.footer-card .card-note {
	font-size: 0.75rem;
	color: var(--primary);
	font-weight: 500;
	margin-bottom: 1rem;
}

.footer-card .card-text {
	font-size: 0.75rem;
	color: rgba(245, 243, 239, 0.8);
	line-height: 1.7;
	text-align: left;
}

.footer-reservation {
	max-width: 28rem;
	margin: 0 auto 3rem;
}

.footer-reservation a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.5rem;
	border: 1px solid var(--primary);
	background-color: rgba(10, 22, 40, 0.2);
	backdrop-filter: blur(4px);
	transition: all 0.3s ease;
}

.footer-reservation a:hover {
	background-color: var(--primary);
	color: var(--primary-foreground);
}

.footer-reservation a span:first-child {
	letter-spacing: 0.1em;
}

.footer-reservation a span:last-child {
	font-size: 1.25rem;
	transition: transform 0.3s ease;
}

.footer-reservation a:hover span:last-child {
	transform: translateX(0.25rem);
}

.footer-social {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 0.5rem;
}

@media (min-width: 768px) {
	.footer-social {
		justify-content: flex-start;
	}
}

.footer-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border: 1px solid rgba(245, 243, 239, 0.15);
	border-radius: 50%;
	color: rgba(245, 243, 239, 0.5);
	background-color: transparent;
	transition: all 0.3s ease;
}

.footer-social a:hover {
	border-color: rgba(245, 243, 239, 0.4);
	color: var(--foreground);
}

.footer-social a svg {
	width: 0.875rem;
	height: 0.875rem;
}

/* 店舗情報リスト */
.footer-info-list {
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
}

.footer-info-item {
	display: flex;
	align-items: flex-start;
	gap: 0.875rem;
}

.footer-info-item .info-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.5rem;
	height: 1.5rem;
	color: rgba(245, 243, 239, 0.5);
	margin-top: 0.125rem;
}

.footer-info-item .info-icon svg {
	width: 1.125rem;
	height: 1.125rem;
}

.footer-info-item .info-content {
	flex: 1;
}

.footer-info-item .info-label {
	font-size: 0.6875rem;
	letter-spacing: 0.1em;
	color: rgba(245, 243, 239, 0.5);
	margin-bottom: 0.25rem;
}

.footer-info-item .info-text {
	color: rgba(245, 243, 239, 0.9);
	font-size: 0.875rem;
	line-height: 1.6;
}

.footer-info-item .info-text.hours-text {
	font-size: 1rem;
	font-weight: 500;
	color: var(--foreground);
	letter-spacing: 0.02em;
}

/* Googleマップリンク */
.footer-info-item .map-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.375rem 0.75rem;
	border: 1px solid rgba(245, 243, 239, 0.2);
	background-color: transparent;
	color: rgba(245, 243, 239, 0.7);
	font-size: 0.6875rem;
	letter-spacing: 0.05em;
	transition: all 0.3s ease;
	margin-top: 0.5rem;
}

.footer-info-item .map-link:hover {
	border-color: rgba(245, 243, 239, 0.5);
	color: var(--foreground);
}

.footer-info-item .map-link .arrow {
	font-size: 0.875rem;
	transition: transform 0.3s ease;
}

.footer-info-item .map-link:hover .arrow {
	transform: translateX(0.125rem);
}

/* フッター下部 */
.footer-bottom {
	margin-top: 3rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(245, 243, 239, 0.1);
}

.footer-divider {
	width: 100%;
	height: 1px;
	background: linear-gradient(to right, transparent, rgba(245, 243, 239, 0.2), transparent);
	margin-bottom: 3rem;
}

.footer-share {
	text-align: center;
	margin-bottom: 2.5rem;
}

.footer-share .copy-url {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: var(--muted-foreground);
	background: none;
	border: none;
	cursor: pointer;
	transition: color 0.3s ease;
}

.footer-share .copy-url:hover {
	color: var(--primary);
}

.footer-share .copy-url svg {
	width: 1rem;
	height: 1rem;
}

.footer-social-share {
	display: flex;
	justify-content: center;
	gap: 0.75rem;
	margin-bottom: 2.5rem;
}

.footer-social-share a {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	color: white;
	transition: opacity 0.3s ease;
}

.footer-social-share a:hover {
	opacity: 0.8;
}

.footer-social-share a svg {
	width: 1rem;
	height: 1rem;
}

.footer-social-share .twitter {
	background-color: #000;
}
.footer-social-share .facebook {
	background-color: #1877f2;
}
.footer-social-share .line {
	background-color: #06c755;
}

.footer-lang {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	font-size: 0.875rem;
	margin-bottom: 2.5rem;
}

.footer-lang a {
	color: var(--muted-foreground);
	transition: color 0.3s ease;
}

.footer-lang a:hover {
	color: var(--primary);
}

.footer-lang .divider {
	color: var(--border);
}

.footer-copyright {
	text-align: center;
	font-size: 0.75rem;
	color: var(--muted-foreground);
}

/* Mobile Fixed Footer */
.mobile-footer {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background-color: var(--background);
	border-top: 1px solid var(--border);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	height: 4rem;
}

.mobile-footer a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.25rem;
	color: rgba(245, 243, 239, 0.7);
	transition: color 0.3s ease;
}

.mobile-footer a:hover {
	color: var(--primary);
}

.mobile-footer a svg {
	width: 1.25rem;
	height: 1.25rem;
}

.mobile-footer a span {
	font-size: 0.625rem;
}

.mobile-footer .reservation {
	background-color: var(--primary);
	color: var(--primary-foreground);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	white-space: nowrap;
	padding: 0 0.5rem;
	text-align: center;
	line-height: 1.2;
}

/* ========================================
   Utilities
   ======================================== */
.fade-in {
	opacity: 0;
	transform: translateY(2rem);
	transition: all 0.8s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ========================================
   Media Queries
   ======================================== */
@media (min-width: 768px) {
	.splash-logo h1 {
		font-size: 4.5rem;
	}

	.header nav {
		padding: 1rem 2rem;
	}

	.header .logo {
		font-size: 1.5rem;
	}

	/* デスクトップでもスクロール前は上部に縦書きメニュー */
	.header:not(.scrolled) .nav-links {
		right: 3rem;
		top: 2rem;
		gap: 2rem;
	}

	.header:not(.scrolled) .nav-links a {
		font-size: 0.875rem;
		letter-spacing: 0.2em;
	}

	/* スクロール後のヘッダー調整 */
	.header.scrolled .header-top-right {
		gap: 1.5rem;
	}

	.header.scrolled .header-social {
		gap: 0.75rem;
	}

	/* スクロール後のみ表示 */
	.header.scrolled .header-contact {
		display: flex;
	}

	.header.scrolled .lang-select-wrapper {
		display: block;
	}

	/* デスクトップではハンバーガーメニューを非表示 */
	.header.scrolled .hamburger {
		display: none;
	}

	.hamburger {
		display: none;
	}

	.drawer-overlay,
	.drawer {
		display: none;
	}

	.hero-main h1 {
		font-size: 4.5rem;
	}

	.hero-main .subtitle {
		font-size: 1rem;
	}

	.hero-main .description {
		font-size: 1.125rem;
		line-height: 2.4rem;
	}

	.hero-features {
		gap: 1.5rem;
	}

	.hero-feature-badge {
		padding: 0.5rem 1rem;
		font-size: 0.875rem;
		min-width: 9rem;
	}

	.hero-vertical-text {
		right: 3rem;
	}

	.concept {
		padding: 8rem 0;
	}

	.concept-vertical-text {
		font-size: 3rem;
	}

	.concept-image {
		width: 20rem;
		height: 23rem;
	}

	.concept-center .tagline {
		font-size: 1.75rem;
	}

	.concept-marquee-item {
		width: 28rem;
		margin: 0 1.5rem;
	}

	.menu {
		padding: 8rem 0;
	}

	.section-header h2 {
		font-size: 2.5rem;
	}

	.menu-item {
		grid-template-columns: repeat(2, 1fr);
		gap: 4rem;
		align-items: center;
	}

	.menu-item.reverse .menu-item-image {
		order: 2;
	}

	.menu-item.reverse .menu-item-content {
		order: 1;
		text-align: right;
	}

	.menu-item-content h3 {
		font-size: 1.875rem;
	}

	.news-item a {
		flex-direction: row;
		align-items: center;
		gap: 1.5rem;
	}

	.news-item .title {
		font-size: 1rem;
	}

	.about-features {
		grid-template-columns: repeat(3, 1fr);
		gap: 3rem;
	}

	.about-feature.about-feature-full {
		grid-column: 1 / -1;
		width: 100%;
	}

	.marquee-item {
		width: 20rem;
	}

	.info-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 5rem;
	}

	.info-items {
		grid-template-columns: repeat(2, 1fr);
	}

	.info-map .map-wrapper {
		aspect-ratio: 1;
	}

	.footer {
		padding: 6rem 0;
	}

	.footer-contact .phone {
		font-size: 2.5rem;
	}

	.mobile-footer {
		display: none;
	}
}

@media (min-width: 1024px) {
	.hero-main h1 {
		font-size: 6rem;
	}

	.concept-vertical-text {
		font-size: 3rem;
		line-height: 1.6;
	}

	.section-header h2 {
		font-size: 3rem;
	}

	.marquee-item {
		width: 24rem;
	}

	.concept-marquee-item {
		width: 12rem;
		margin: 0 1rem;
	}
}

/* ========================================
   News List Page
   ======================================== */
.news-list-page {
	padding: 8rem 0 4rem;
	min-height: 100vh;
}

.page-header {
	margin-bottom: 3rem;
}

.back-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: rgba(245, 243, 239, 0.7);
	margin-bottom: 2rem;
	transition: color 0.3s ease;
}

.back-link:hover {
	color: var(--primary);
}

.back-link svg {
	width: 1rem;
	height: 1rem;
}

.news-list-full {
	max-width: 48rem;
	margin: 0 auto;
}

.news-list-full .news-item {
	margin-bottom: 0;
}

/* ========================================
   News Detail Page
   ======================================== */
.news-detail-page {
	padding: 8rem 0 4rem;
	min-height: 100vh;
}

.news-detail {
	max-width: 48rem;
	margin: 0 auto;
}

.news-detail-header {
	margin-bottom: 2.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(26, 45, 74, 0.5);
}

.news-detail-header .meta {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}

.news-detail-header .date {
	font-size: 0.875rem;
	color: var(--muted-foreground);
	letter-spacing: 0.05em;
	font-family: monospace;
}

.news-detail-header .category {
	font-size: 0.75rem;
	padding: 0.125rem 0.5rem;
	background-color: var(--secondary);
	color: rgba(245, 243, 239, 0.8);
	border-radius: 0.25rem;
	letter-spacing: 0.05em;
}

.news-detail-header .new-badge {
	font-size: 0.75rem;
	padding: 0.125rem 0.5rem;
	background-color: var(--primary);
	color: var(--primary-foreground);
	border-radius: 0.25rem;
	letter-spacing: 0.05em;
	animation: pulse 2s infinite;
}

.news-detail-header h1 {
	font-family: var(--font-serif);
	font-size: 1.75rem;
	line-height: 1.6;
	color: var(--foreground);
	margin-top: 1rem;
}

.news-detail-content {
	color: rgba(245, 243, 239, 0.8);
	line-height: 2;
	font-size: 0.9375rem;
}

.news-detail-content p {
	margin-bottom: 1.5rem;
}

.news-detail-content h2 {
	font-family: var(--font-serif);
	font-size: 1.5rem;
	color: var(--foreground);
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid rgba(26, 45, 74, 0.5);
}

.news-detail-content ul,
.news-detail-content ol {
	margin: 1.5rem 0;
	padding-left: 1.5rem;
}

.news-detail-content li {
	margin-bottom: 0.75rem;
}

.news-detail-footer {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(26, 45, 74, 0.5);
}

.back-to-list {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: rgba(245, 243, 239, 0.7);
	transition: color 0.3s ease;
}

.back-to-list:hover {
	color: var(--primary);
}

.back-to-list svg {
	width: 1rem;
	height: 1rem;
}

@media (min-width: 768px) {
	.news-detail-header h1 {
		font-size: 2.25rem;
	}

	.news-detail-content {
		font-size: 1rem;
	}

	.news-detail-content h2 {
		font-size: 1.75rem;
	}
}
