/* 料理页面专用样式 */
.custom-hero-banner {
	position: relative;
	width: 100vw;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	margin-top: -70px;
	min-width: 100vw;
	height: 40vh;
	min-height: 300px;
	max-height: 400px;
	overflow: hidden;
	z-index: 1;
}

.hero-bg-img {
	position: absolute;
	top: 0; left: 0; width: 100%; height: 100%;
	object-fit: cover;
	object-position: center center;
	z-index: 1;
	transition: transform 1s cubic-bezier(0.4,0,0.2,1);
	filter: brightness(1.3);
}

.custom-hero-banner:hover .hero-bg-img {
	transform: scale(1.05);
}

.hero-banner-content {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-shadow: 0 2px 8px rgba(0,0,0,0.4);
	z-index: 2;
	font-family: 'Noto Sans JP', 'Microsoft YaHei', Arial, sans-serif;
}

.hero-banner-content h1 {
	font-size: 60px;
	font-weight: bold;
	margin-bottom: 24px;
	letter-spacing: 0.1em;
}

.hero-banner-content p {
	font-size: 28px;
	opacity: 0.95;
}

/* 名物料理セクション */
.signature-dish-container {
	background: transparent;
	padding: 0 0 80px;
	position: relative;
}

.japanese-bg-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:
		/* 几何装饰 */
		repeating-conic-gradient(from 0deg at 20% 30%, rgba(255, 165, 0, 0.03) 0deg 60deg, transparent 60deg 120deg),
		repeating-conic-gradient(from 45deg at 80% 70%, rgba(255, 140, 0, 0.025) 0deg 45deg, transparent 45deg 90deg),
		/* 网格纹理 */
		linear-gradient(0deg, rgba(218, 165, 32, 0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(218, 165, 32, 0.02) 1px, transparent 1px),
		/* 光晕效果 */
		radial-gradient(circle at 40% 20%, rgba(255, 215, 0, 0.06) 0%, transparent 40%),
		radial-gradient(circle at 60% 80%, rgba(255, 223, 0, 0.04) 0%, transparent 35%),
		/* 基底 */
		linear-gradient(135deg, rgba(255, 252, 240, 0.7) 0%, rgba(255, 248, 220, 0.8) 50%, rgba(255, 245, 200, 0.7) 100%);
	background-size:
		120px 120px, 80px 80px,
		30px 30px, 30px 30px,
		300px 300px, 250px 250px,
		100% 100%;
	background-position:
		0 0, 40px 40px,
		0 0, 0 0,
		0% 0%, 100% 100%,
		0 0;
	pointer-events: none;
	z-index: 1;
	animation: geometricFloat 15s ease-in-out infinite;
}

@keyframes geometricFloat {
	0%, 100% {
		background-position:
			0 0, 40px 40px,
			0 0, 0 0,
			0% 0%, 100% 100%,
			0 0;
	}
	50% {
		background-position:
			10px 10px, 50px 50px,
			5px 5px, 5px 5px,
			10% 10%, 90% 90%,
			0 0;
	}
}

/* 甜品模块日式装饰 */
.dessert-section::before {
	content: '';
	position: absolute;
	top: -30px;
	right: 8%;
	width: 150px;
	height: 150px;
	background:
		/* 樱花造型 */
		radial-gradient(circle at center, rgba(255, 182, 193, 0.15) 0%, rgba(255, 182, 193, 0.08) 25%, transparent 50%),
		/* 内圈金粉 */
		radial-gradient(circle at center, rgba(218, 165, 32, 0.08) 0%, transparent 30%);
	border-radius: 60% 40% 60% 40%;
	transform: rotate(45deg);
	z-index: 1;
}

.dessert-section::after {
	content: '';
	position: absolute;
	bottom: -25px;
	left: 12%;
	width: 100px;
	height: 100px;
	background:
		/* 扇形造型 */
		conic-gradient(from 0deg, rgba(255, 200, 220, 0.12) 0deg, transparent 120deg, rgba(255, 160, 180, 0.08) 180deg, transparent 300deg);
	border-radius: 50%;
	z-index: 1;
}

/* 水果模块日式装饰 */


.signature-dish-wrapper {
	display: flex;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	gap: 60px;
	position: relative;
	z-index: 2;
}

.signature-dish-image {
	flex: 2.5;
	position: relative;
	overflow: hidden;
}

.dish-main-image {
	width: 100%;
	height: 500px;
	object-fit: cover;
	border-radius: 0;
}


.signature-dish-content {
	flex: 0.4;
	padding: 20px;
}

.dish-label {
	display: inline-block;
	background: #D2691E;
	color: white;
	padding: 6px 16px;
	border-radius: 0;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 16px;
	letter-spacing: 0.5px;
}

.dish-title {
	font-size: 48px;
	color: #333;
	margin: 0 0 8px;
	font-weight: 300;
	line-height: 1.3;
	font-family: 'Noto Sans JP', 'Microsoft YaHei', Arial, sans-serif;
}

.dish-subtitle {
	font-size: 14px;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 24px;
	font-family: Arial, sans-serif;
}

.seasonal-description {
	margin-top: 20px;
}

.seasonal-description p {
	font-size: 16px;
	color: #666;
	line-height: 1.8;
	margin-bottom: 12px;
	font-family: 'Noto Sans JP', 'Microsoft YaHei', serif;
	font-style: italic;
}

.dish-description {
	font-size: 16px;
	color: #666;
	line-height: 1.8;
	margin-bottom: 32px;
	font-family: 'Noto Sans JP', 'Microsoft YaHei', Arial, sans-serif;
}

.dish-season {
	display: flex;
	align-items: center;
	padding: 12px 20px;
	background: rgba(210, 105, 30, 0.1);
	border-left: 4px solid #D2691E;
	border-radius: 0;
}

.season-label {
	font-size: 14px;
	color: #D2691E;
	font-weight: 600;
	margin-right: 16px;
}

.season-period {
	font-size: 16px;
	color: #333;
	font-weight: 500;
}

/* 三つの特色料理卡片 */
.dish-highlights {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-top: 60px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 20px;
	position: relative;
	z-index: 2;
}

/* 四つの設施卡片 */
.dish-highlights.four-items {
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}

/* 五つの設施卡片 */
.dish-highlights.five-items {
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}

/* 六つの設施卡片 */
.dish-highlights.six-items {
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

/* 二つの設施卡片 */
.dish-highlights.two-items {
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	justify-content: center;
}

/* 一つの設施卡片 */
.dish-highlights.single-item {
	display: flex;
	justify-content: center;
}

.dish-highlights.single-item .dish-highlight-item {
	max-width: 400px;
}

.dish-highlight-item {
	background: white;
	border-radius: 0;
	border: 1px solid #e0e0e0;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dish-highlight-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.highlight-image {
	position: relative;
	overflow: hidden;
	height: 280px;
}

.highlight-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
	border-radius: 0;
}

.dish-highlight-item:hover .highlight-img {
	transform: scale(1.1);
}

.highlight-content {
	padding: 24px;
}

.highlight-title {
	font-size: 18px;
	color: #333;
	margin: 0 0 12px;
	font-weight: 500;
	font-family: 'Noto Sans JP', 'Microsoft YaHei', Arial, sans-serif;
}

.highlight-description {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	margin: 0;
	font-family: 'Noto Sans JP', 'Microsoft YaHei', Arial, sans-serif;
}

.highlight-info {
	display: flex;
	align-items: center;
	padding: 12px 20px;
	background: rgba(210, 105, 30, 0.1);
	border-left: 4px solid #D2691E;
	border-radius: 0;
	margin-top: 16px;
}

.highlight-info .info-label {
	font-size: 14px;
	color: #D2691E;
	font-weight: 600;
	margin-right: 16px;
}

.highlight-info .info-period {
	font-size: 14px;
	color: #333;
	font-weight: 500;
}

/* レストランリンクボタン */
.restaurant-link {
	margin-top: 16px;
}

.restaurant-btn {
	display: inline-block;
	background: #D2691E;
	color: white;
	padding: 10px 20px;
	border-radius: 0;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s ease;
	border: 2px solid #D2691E;
}

.restaurant-btn:hover {
	background: white;
	color: #D2691E;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(210, 105, 30, 0.3);
}

/* 施設ボタンスタイル */
.facility-buttons {
	display: flex;
	gap: 10px;
	margin-top: 16px;
}

.facility-btn {
	flex: 1;
	display: inline-block;
	padding: 8px 16px;
	border-radius: 0;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	transition: all 0.3s ease;
	border: 2px solid;
}

.website-btn {
	background: #D2691E;
	color: white;
	border-color: #D2691E;
}

.website-btn:hover {
	background: white;
	color: #D2691E;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(210, 105, 30, 0.3);
}

.map-btn {
	background: white;
	color: #228B22;
	border-color: #228B22;
}

.map-btn:hover {
	background: #228B22;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(34, 139, 34, 0.3);
}


/* 甜品模块样式 */
.dessert-section {
	background:
		/* 几何图案 */
		repeating-linear-gradient(0deg, rgba(255, 206, 84, 0.1) 0px, rgba(255, 206, 84, 0.1) 2px, transparent 2px, transparent 20px),
		repeating-linear-gradient(90deg, rgba(255, 195, 77, 0.08) 0px, rgba(255, 195, 77, 0.08) 2px, transparent 2px, transparent 18px),
		/* 六边形点阵 */
		radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.06) 0%, transparent 20%),
		radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.04) 0%, transparent 15%),
		/* 现代渐变 */
		linear-gradient(120deg, #fff9e6 0%, #fff4d6 30%, #ffedc7 60%, #ffe8b8 100%);
	background-size: 100% 100%, 100% 100%, 80px 80px, 60px 60px, 100% 100%;
	padding: 80px 0;
	position: relative;
	overflow: hidden;
	width: 100vw;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

.dessert-wrapper {
	display: flex;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	gap: 60px;
	position: relative;
	z-index: 2;
}

.dessert-content {
	flex: 0.6;
	padding: 20px;
}

.dessert-image {
	flex: 1.4;
	position: relative;
	overflow: hidden;
	border-radius: 0;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.dessert-label {
	display: inline-block;
	background: #8B4513;
	color: white;
	padding: 6px 16px;
	border-radius: 0;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 16px;
	letter-spacing: 0.5px;
}

.dessert-title {
	font-size: 32px;
	color: #333;
	margin: 0 0 8px;
	font-weight: 300;
	line-height: 1.3;
	font-family: 'Noto Sans JP', 'Microsoft YaHei', Arial, sans-serif;
}

.dessert-subtitle {
	font-size: 14px;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 24px;
	font-family: Arial, sans-serif;
}

.dessert-description {
	font-size: 16px;
	color: #666;
	line-height: 1.8;
	margin-bottom: 32px;
	font-family: 'Noto Sans JP', 'Microsoft YaHei', Arial, sans-serif;
}

.dessert-features {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.feature-item {
	display: flex;
	align-items: center;
	font-size: 15px;
	color: #555;
	font-family: 'Noto Sans JP', 'Microsoft YaHei', Arial, sans-serif;
}

.feature-item i {
	color: #8B4513;
	margin-right: 12px;
	font-size: 16px;
	width: 20px;
}

.dessert-main-image {
	width: 100%;
	height: 400px;
	object-fit: cover;
	transition: transform 0.5s ease;
	border-radius: 0;
}

.dessert-image:hover .dessert-main-image {
	transform: scale(1.05);
}

.dessert-image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
	pointer-events: none;
}

/* 水果模块样式 */
.fruit-section {
	background: transparent;
	padding: 80px 0;
	position: relative;
	width: 100vw;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

.fruit-wrapper {
	display: flex;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	gap: 60px;
	position: relative;
	z-index: 2;
	/* 默认就是左图片右文字的布局 */
}

.fruit-content {
	flex: 0.6;
	padding: 20px;
}

.fruit-image {
	flex: 1.4;
	position: relative;
	overflow: hidden;
	border-radius: 0;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.fruit-label {
	display: inline-block;
	background: #228B22;
	color: white;
	padding: 6px 16px;
	border-radius: 0;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 16px;
	letter-spacing: 0.5px;
}

.fruit-title {
	font-size: 32px;
	color: #333;
	margin: 0 0 8px;
	font-weight: 300;
	line-height: 1.3;
	font-family: 'Noto Sans JP', 'Microsoft YaHei', Arial, sans-serif;
}

.fruit-subtitle {
	font-size: 14px;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 24px;
	font-family: Arial, sans-serif;
}

.fruit-description {
	font-size: 16px;
	color: #666;
	line-height: 1.8;
	margin-bottom: 32px;
	font-family: 'Noto Sans JP', 'Microsoft YaHei', Arial, sans-serif;
}

.fruit-features {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.fruit-features .feature-item {
	display: flex;
	align-items: center;
	font-size: 15px;
	color: #555;
	font-family: 'Noto Sans JP', 'Microsoft YaHei', Arial, sans-serif;
}

.fruit-features .feature-item i {
	color: #228B22;
	margin-right: 12px;
	font-size: 16px;
	width: 20px;
}

.fruit-main-image {
	width: 100%;
	height: 400px;
	object-fit: cover;
	transition: transform 0.5s ease;
	border-radius: 0;
}

.fruit-image:hover .fruit-main-image {
	transform: scale(1.05);
}

.fruit-image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
	pointer-events: none;
}

/* 料理内容表格 - 参考客房概要风格 */
.buffet-menu-section {
	background: #f7f4ec;
	width: 100vw;
	min-width: 100vw;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	position: relative;
	padding: 60px 0 40px 0;
	font-family: 'Noto Sans JP', 'Microsoft YaHei', Arial, sans-serif;
}

.buffet-menu-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.buffet-menu-title {
	text-align: center;
	font-size: 32px;
	font-weight: 500;
	letter-spacing: 0.1em;
	margin-bottom: 36px;
	color: #444;
}

.buffet-menu-grid {
	display: flex;
	gap: 48px;
	flex-wrap: wrap;
}

.buffet-menu-col {
	flex: 1 1 0;
	min-width: 320px;
}

.buffet-menu-col h3 {
	font-size: 20px;
	font-weight: 600;
	color: #333;
	margin-bottom: 20px;
	margin-top: 30px;
	padding-bottom: 10px;
	border-bottom: 2px solid #D2691E;
}

.buffet-menu-col:first-child h3:first-child {
	margin-top: 0;
}

.buffet-menu-block {
	border-bottom: 1px solid #d6d1c4;
	padding: 18px 0 12px 0;
}

.buffet-menu-label {
	font-size: 15px;
	color: #8b7c5a;
	font-weight: bold;
	margin-bottom: 8px;
}

.buffet-menu-value {
	font-size: 15px;
	color: #444;
	line-height: 1.8;
	margin-bottom: 2px;
}

/* Active navigation link */
.main-navigation a.active {
	color: #D2691E;
}

/* Page Layout */
.page-content {
    margin-top: 70px;
}

/* 统一标题样式 - 带装饰线条 */
.unified-section-title {
	padding: 60px 0 20px 0;
	background: #fff;
	width: 100%;
}

.unified-section-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.unified-section-header {
	text-align: center;
	margin-bottom: 40px;
	position: relative;
}

.unified-section-title-text {
	font-size: 32px;
	font-weight: 300;
	color: #2c2c2c;
	margin-bottom: 8px;
	letter-spacing: 0.1em;
	font-family: 'Noto Sans JP', 'Microsoft YaHei', Arial, sans-serif;
	position: relative;
	display: inline-block;
	background: #fff;
	padding: 0 30px;
	z-index: 2;
}

.unified-section-title-text::before,
.unified-section-title-text::after {
	content: '';
	position: absolute;
	top: 50%;
	width: 350px;
	height: 1px;
	background: linear-gradient(to right, transparent, #d2691e, transparent);
	z-index: 1;
}

.unified-section-title-text::before {
	right: 100%;
	margin-right: 20px;
}

.unified-section-title-text::after {
	left: 100%;
	margin-left: 20px;
}

.unified-section-subtitle {
	font-size: 14px;
	color: #8a7a5e;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0;
	font-weight: 400;
	position: relative;
	z-index: 2;
}

/* 响应式设计 */
@media (max-width: 992px) {
	.unified-section-title-text::before,
	.unified-section-title-text::after {
		width: 200px;
	}

	.signature-dish-wrapper {
		flex-direction: column;
		gap: 40px;
		text-align: center;
	}

	.signature-dish-content {
		padding: 0;
	}

	.dish-title {
		font-size: 28px;
	}

	.dish-highlights.two-items {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
		margin-top: 50px;
	}

	.dessert-wrapper {
		flex-direction: column;
		gap: 40px;
		text-align: center;
	}

	.dessert-content {
		padding: 0;
	}

	.dessert-title {
		font-size: 28px;
	}

	.fruit-wrapper {
		flex-direction: column;
		gap: 40px;
		text-align: center;
	}

	.fruit-content {
		padding: 0;
	}

	.fruit-title {
		font-size: 28px;
	}

	.buffet-menu-grid {
		flex-direction: column;
		gap: 0;
	}

	.buffet-menu-col {
		min-width: 0;
	}
}

@media (max-width: 768px) {
	.custom-hero-banner {
		min-height: 250px;
		height: 50vh;
	}

	.unified-section-title-text {
		font-size: 28px;
		padding: 0 20px;
	}

	.unified-section-title-text::before,
	.unified-section-title-text::after {
		width: 150px;
		margin-left: 15px;
		margin-right: 15px;
	}

	.unified-section-subtitle {
		font-size: 12px;
	}

	.unified-section-header {
		margin-bottom: 30px;
	}

	.unified-section-title {
		padding: 40px 0 15px 0;
	}

	.custom-hero-banner {
		min-height: 250px;
		height: 50vh;
	}

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

	.hero-banner-content p {
		font-size: 18px;
	}

	.signature-dish-container {
		padding: 0 0 60px;
	}

	.signature-dish-wrapper {
		padding: 0 15px;
		gap: 30px;
	}

	.dish-main-image {
		height: 300px;
	}

	.dish-title {
		font-size: 24px;
	}

	.seasonal-description p {
		font-size: 15px;
	}

	/* 所有设施卡片在手机版都显示为单列 */
	.dish-highlights,
	.dish-highlights.four-items,
	.dish-highlights.five-items,
	.dish-highlights.six-items,
	.dish-highlights.two-items {
		grid-template-columns: 1fr;
		gap: 25px;
		margin-top: 40px;
		padding: 0 15px;
	}

	/* 卡片布局优化：横向布局 */
	.dish-highlight-item {
		display: flex;
		flex-direction: row;
		align-items: stretch;
		min-height: auto;
	}

	.highlight-image {
		width: 40%;
		min-width: 140px;
		max-width: 180px;
		height: auto;
		flex-shrink: 0;
	}

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

	.highlight-content {
		flex: 1;
		display: flex;
		flex-direction: column;
	}

	.highlight-content {
		padding: 20px;
	}

	.highlight-title {
		font-size: 16px;
	}

	.highlight-description {
		font-size: 13px;
	}

	.dessert-section {
		padding: 60px 0;
	}

	.dessert-wrapper {
		padding: 0 15px;
		gap: 30px;
	}

	.dessert-main-image {
		height: 300px;
	}

	.dessert-title {
		font-size: 24px;
	}

	.dessert-description {
		font-size: 15px;
	}

	.fruit-section {
		padding: 60px 0;
	}

	.fruit-wrapper {
		padding: 0 15px;
		gap: 30px;
	}

	.fruit-main-image {
		height: 300px;
	}

	.fruit-title {
		font-size: 24px;
	}

	.fruit-description {
		font-size: 15px;
	}

}

/* レストラン紹介モジュール */
.restaurant-info-section {
	padding: 0 0 80px;
	background: #fff;
}

.restaurant-info-wrapper {
	max-width: 1200px;
	margin: 0 auto;
}

.restaurant-main-image {
	position: relative;
	width: 100%;
	height: 500px;
	overflow: hidden;
	border-radius: 0;
	margin-bottom: 50px;
}

.restaurant-full-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 0;
}

.restaurant-header-text {
	text-align: center;
	margin-bottom: 40px;
}

.restaurant-image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.1) 100%);
	pointer-events: none;
}

.restaurant-description-wrapper {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
	padding: 0 20px;
}

.restaurant-intro-label {
	display: inline-block;
	padding: 6px 20px;
	background: linear-gradient(135deg, #D2691E 0%, #CD853F 100%);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	margin-bottom: 20px;
	border-radius: 0;
}

.restaurant-intro-title {
	font-size: 32px;
	font-weight: 600;
	color: #333;
	margin-bottom: 12px;
	font-family: 'Noto Sans JP', 'Microsoft YaHei', Arial, sans-serif;
	line-height: 1.4;
}

.restaurant-intro-subtitle {
	font-size: 14px;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 400;
}

.restaurant-intro-text {
	font-size: 16px;
	line-height: 1.8;
	color: #666;
	margin-bottom: 40px;
	text-align: left;
}

.restaurant-info-details {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 40px;
	padding-top: 40px;
	border-top: 1px solid #e5e5e5;
}

.info-item {
	display: flex;
	align-items: center;
	gap: 15px;
	text-align: left;
}

.info-item i {
	font-size: 24px;
	color: #D2691E;
	width: 30px;
	text-align: center;
}

.info-content {
	flex: 1;
}

.info-label {
	display: block;
	font-size: 12px;
	color: #999;
	margin-bottom: 4px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.info-value {
	display: block;
	font-size: 15px;
	color: #333;
	font-weight: 500;
}

@media (max-width: 992px) {
	.restaurant-info-details {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.restaurant-main-image {
		height: 400px;
	}
}

@media (max-width: 768px) {
	.restaurant-info-section {
		padding: 0 0 60px;
	}

	.restaurant-header-text {
		margin-bottom: 30px;
	}

	.restaurant-main-image {
		height: 300px;
		margin-bottom: 35px;
	}

	.restaurant-intro-title {
		font-size: 26px;
	}

	.restaurant-intro-subtitle {
		font-size: 12px;
	}

	.restaurant-intro-text {
		font-size: 15px;
		margin-bottom: 30px;
	}

	.restaurant-info-details {
		padding-top: 30px;
		margin-top: 30px;
	}

	.info-item i {
		font-size: 20px;
	}

	.info-value {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.unified-section-title-text::before,
	.unified-section-title-text::after {
		width: 100px;
		margin-left: 10px;
		margin-right: 10px;
	}

	.unified-section-title-text {
		padding: 0 15px;
	}
}

/* 四季背景颜色 - 全宽背景 */
.spring-container,
.summer-container,
.autumn-container,
.winter-container {
	max-width: 100% !important;
	width: 100vw !important;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw !important;
	margin-right: -50vw !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	padding: 0 !important;
	border: none !important;
	box-sizing: border-box !important;
}

/* 移除所有季节容器之间的间距 */
.spring-container + .summer-container,
.summer-container + .autumn-container,
.autumn-container + .winter-container {
	margin-top: 0 !important;
}

.spring-container {
	background: #fff5fa !important;
	position: relative;
	overflow: hidden;
}

/* 春天樱花装饰 - 黑色线条雕刻 */
.spring-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:
		/* 樱花枝条 */
		linear-gradient(135deg, transparent 10%, rgba(0, 0, 0, 0.08) 10.3%, transparent 10.5%),
		linear-gradient(45deg, transparent 85%, rgba(0, 0, 0, 0.08) 85.3%, transparent 85.5%),

		/* 樱花1 - 左上 */
		radial-gradient(ellipse 25px 30px at 15% 20%, transparent 48%, rgba(0, 0, 0, 0.15) 48%, rgba(0, 0, 0, 0.15) 52%, transparent 52%),
		radial-gradient(ellipse 25px 30px at calc(15% + 20px) calc(20% + 10px), transparent 48%, rgba(0, 0, 0, 0.15) 48%, rgba(0, 0, 0, 0.15) 52%, transparent 52%),
		radial-gradient(ellipse 25px 30px at calc(15% + 5px) calc(20% + 25px), transparent 48%, rgba(0, 0, 0, 0.15) 48%, rgba(0, 0, 0, 0.15) 52%, transparent 52%),
		radial-gradient(ellipse 25px 30px at calc(15% - 15px) calc(20% + 15px), transparent 48%, rgba(0, 0, 0, 0.15) 48%, rgba(0, 0, 0, 0.15) 52%, transparent 52%),
		radial-gradient(ellipse 25px 30px at calc(15% - 5px) calc(20% - 10px), transparent 48%, rgba(0, 0, 0, 0.15) 48%, rgba(0, 0, 0, 0.15) 52%, transparent 52%),
		radial-gradient(circle 8px at 15% 20%, rgba(0, 0, 0, 0.2) 0%, transparent 100%),

		/* 樱花2 - 右上 */
		radial-gradient(ellipse 25px 30px at 85% 30%, transparent 48%, rgba(0, 0, 0, 0.15) 48%, rgba(0, 0, 0, 0.15) 52%, transparent 52%),
		radial-gradient(ellipse 25px 30px at calc(85% + 20px) calc(30% + 10px), transparent 48%, rgba(0, 0, 0, 0.15) 48%, rgba(0, 0, 0, 0.15) 52%, transparent 52%),
		radial-gradient(ellipse 25px 30px at calc(85% + 5px) calc(30% + 25px), transparent 48%, rgba(0, 0, 0, 0.15) 48%, rgba(0, 0, 0, 0.15) 52%, transparent 52%),
		radial-gradient(ellipse 25px 30px at calc(85% - 15px) calc(30% + 15px), transparent 48%, rgba(0, 0, 0, 0.15) 48%, rgba(0, 0, 0, 0.15) 52%, transparent 52%),
		radial-gradient(ellipse 25px 30px at calc(85% - 5px) calc(30% - 10px), transparent 48%, rgba(0, 0, 0, 0.15) 48%, rgba(0, 0, 0, 0.15) 52%, transparent 52%),
		radial-gradient(circle 8px at 85% 30%, rgba(0, 0, 0, 0.2) 0%, transparent 100%),

		/* 樱花3 - 左下 */
		radial-gradient(ellipse 25px 30px at 20% 75%, transparent 48%, rgba(0, 0, 0, 0.15) 48%, rgba(0, 0, 0, 0.15) 52%, transparent 52%),
		radial-gradient(ellipse 25px 30px at calc(20% + 20px) calc(75% + 10px), transparent 48%, rgba(0, 0, 0, 0.15) 48%, rgba(0, 0, 0, 0.15) 52%, transparent 52%),
		radial-gradient(ellipse 25px 30px at calc(20% + 5px) calc(75% + 25px), transparent 48%, rgba(0, 0, 0, 0.15) 48%, rgba(0, 0, 0, 0.15) 52%, transparent 52%),
		radial-gradient(ellipse 25px 30px at calc(20% - 15px) calc(75% + 15px), transparent 48%, rgba(0, 0, 0, 0.15) 48%, rgba(0, 0, 0, 0.15) 52%, transparent 52%),
		radial-gradient(ellipse 25px 30px at calc(20% - 5px) calc(75% - 10px), transparent 48%, rgba(0, 0, 0, 0.15) 48%, rgba(0, 0, 0, 0.15) 52%, transparent 52%),
		radial-gradient(circle 8px at 20% 75%, rgba(0, 0, 0, 0.2) 0%, transparent 100%),

		/* 樱花4 - 右下 */
		radial-gradient(ellipse 25px 30px at 80% 80%, transparent 48%, rgba(0, 0, 0, 0.15) 48%, rgba(0, 0, 0, 0.15) 52%, transparent 52%),
		radial-gradient(ellipse 25px 30px at calc(80% + 20px) calc(80% + 10px), transparent 48%, rgba(0, 0, 0, 0.15) 48%, rgba(0, 0, 0, 0.15) 52%, transparent 52%),
		radial-gradient(ellipse 25px 30px at calc(80% + 5px) calc(80% + 25px), transparent 48%, rgba(0, 0, 0, 0.15) 48%, rgba(0, 0, 0, 0.15) 52%, transparent 52%),
		radial-gradient(ellipse 25px 30px at calc(80% - 15px) calc(80% + 15px), transparent 48%, rgba(0, 0, 0, 0.15) 48%, rgba(0, 0, 0, 0.15) 52%, transparent 52%),
		radial-gradient(ellipse 25px 30px at calc(80% - 5px) calc(80% - 10px), transparent 48%, rgba(0, 0, 0, 0.15) 48%, rgba(0, 0, 0, 0.15) 52%, transparent 52%),
		radial-gradient(circle 8px at 80% 80%, rgba(0, 0, 0, 0.2) 0%, transparent 100%),

		/* 樱花5 - 中间 */
		radial-gradient(ellipse 25px 30px at 50% 50%, transparent 48%, rgba(0, 0, 0, 0.15) 48%, rgba(0, 0, 0, 0.15) 52%, transparent 52%),
		radial-gradient(ellipse 25px 30px at calc(50% + 20px) calc(50% + 10px), transparent 48%, rgba(0, 0, 0, 0.15) 48%, rgba(0, 0, 0, 0.15) 52%, transparent 52%),
		radial-gradient(ellipse 25px 30px at calc(50% + 5px) calc(50% + 25px), transparent 48%, rgba(0, 0, 0, 0.15) 48%, rgba(0, 0, 0, 0.15) 52%, transparent 52%),
		radial-gradient(ellipse 25px 30px at calc(50% - 15px) calc(50% + 15px), transparent 48%, rgba(0, 0, 0, 0.15) 48%, rgba(0, 0, 0, 0.15) 52%, transparent 52%),
		radial-gradient(ellipse 25px 30px at calc(50% - 5px) calc(50% - 10px), transparent 48%, rgba(0, 0, 0, 0.15) 48%, rgba(0, 0, 0, 0.15) 52%, transparent 52%),
		radial-gradient(circle 8px at 50% 50%, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
	pointer-events: none;
	z-index: 0;
}

.spring-layout {
	position: relative;
	z-index: 1;
}

.summer-container {
	background: #f0f9ff !important;
}

.autumn-container {
	background: #fff8ed !important;
}

/* 保持内部内容居中 */
.spring-layout,
.summer-layout,
.autumn-layout,
.winter-layout {
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 20px;
}
}