:root {
	/* Colors */
	--bg-color: #fdfcfc;
	--text-color: #333333;
	--primary-color: #333333;
	/* 文字メイン */
	--accent-color: #bf9b7a;
	/* ゴールド/キャメル */
	--accent-light: #f4ece6;
	/* 薄いベージュピンク */
	--accent-hover: #a38263;
	--white: #ffffff;

	/* Typography */
	--font-base: 'Noto Sans JP', sans-serif;
	--font-heading: 'Noto Serif JP', serif;
	--font-accent: 'Cormorant Garamond', serif;

	/* Spacing */
	--section-padding: 100px;
	--section-padding-sp: 60px;

	/* Border Radius */
	--radius-sm: 2px;
	--radius-md: 4px;
}

body {
	background-color: var(--bg-color);
	color: var(--text-color);
	font-family: var(--font-base);
	line-height: 1.8;
	letter-spacing: 0.05em;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	font-weight: 400;
}

.en-font {
	font-family: var(--font-accent);
}

/* Common Components */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.8em 2em;
	background-color: var(--accent-color);
	color: var(--white);
	text-decoration: none;
	transition: all 0.3s ease;
	font-family: var(--font-base);
	font-size: 0.95rem;
	letter-spacing: 0.1em;
	position: relative;
	overflow: hidden;
	border: 1px solid var(--accent-color);
}

.btn::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.1);
	transform: translateX(-100%);
	transition: transform 0.3s ease;
}

.btn:hover {
	background-color: var(--accent-hover);
	border-color: var(--accent-hover);
}

.btn:hover::after {
	transform: translateX(0);
}

.btn.btn-outline {
	background-color: transparent;
	color: var(--accent-color);
	border: 1px solid var(--accent-color);
}

.btn.btn-outline:hover {
	background-color: var(--accent-color);
	color: var(--white);
}

.btn.btn-lg {
	padding: 1em 3em;
	font-size: 1.1rem;
}

.section-title {
	text-align: center;
	margin-bottom: 4rem;
	position: relative;
}

.section-title .en {
	display: block;
	font-family: var(--font-accent);
	font-size: 3rem;
	color: var(--accent-color);
	line-height: 1;
	margin-bottom: 0.5rem;
}

.section-title .ja {
	display: block;
	font-size: 1rem;
	letter-spacing: 0.2em;
	color: var(--text-color);
	font-weight: 300;
}

/* Section Spacing */
section {
	padding-top: var(--section-padding);
	padding-bottom: var(--section-padding);
}

@media (max-width: 768px) {
	section {
		padding-top: var(--section-padding-sp);
		padding-bottom: var(--section-padding-sp)
	}
}

/* Utility */
.container-custom {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ./parts/common-header.html */

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 50;
	transition: all 0.4s ease;
	background-color: rgba(253, 252, 252, 0.85);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

header.scrolled {
	background-color: rgba(253, 252, 252, 0.98);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
	padding: 0.5rem 1rem;
}

header .header-container {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem;
	transition: padding 0.3s ease;
}

header .logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
	z-index: 60;
	position: relative;
}

header .logo img {
	height: 40px;
	width: auto;
}

header .logo .logo-text {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.5rem;
	color: #333;
	letter-spacing: 0.05em;
	line-height: 1;
}

header .logo .logo-text span {
	display: block;
	font-size: 0.6rem;
	font-family: 'Noto Sans JP', sans-serif;
	letter-spacing: 0.1em;
	color: #888;
	margin-top: 2px;
}

/* Desktop Nav */

header .desktop-nav {
	display: none;
	gap: 2.5rem;
	align-items: center;
}

@media (min-width: 1024px) {

	header .desktop-nav {
		display: flex
	}
}

header .desktop-nav a {
	text-decoration: none;
	color: #333;
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.1rem;
	letter-spacing: 0.1em;
	position: relative;
	transition: color 0.3s ease;
}

header .desktop-nav a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 1px;
	background-color: #bf9b7a;
	transition: width 0.3s ease;
}

header .desktop-nav a:hover {
	color: #bf9b7a;
}

header .desktop-nav a:hover::after {
	width: 100%;
}

/* CTA Button in Header */

header .header-cta {
	display: none;
}

@media (min-width: 768px) {

	header .header-cta {
		display: inline-flex;
		align-items: center;
		background-color: #bf9b7a;
		color: #fff;
		padding: 0.6rem 1.5rem;
		border-radius: 2px;
		text-decoration: none;
		font-size: 0.9rem;
		letter-spacing: 0.05em;
		transition: background-color 0.3s
	}

	header .header-cta:hover {
		background-color: #a38263;
	}
}

/* Mobile Menu Button */

header .menu-btn {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	z-index: 60;
	background: none;
	border: none;
	cursor: pointer;
}

@media (min-width: 1024px) {

	header .menu-btn {
		display: none
	}
}

header .menu-btn span {
	display: block;
	width: 24px;
	height: 1px;
	background-color: #333;
	margin: 4px 0;
	transition: all 0.3s ease;
}

header .menu-btn.is-active span:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}

header .menu-btn.is-active span:nth-child(2) {
	opacity: 0;
}

header .menu-btn.is-active span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Nav Overlay */

header .mobile-nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: #fdfcfc;
	z-index: 55;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

header .mobile-nav.is-open {
	opacity: 1;
	pointer-events: auto;
}

header .mobile-nav a {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2rem;
	color: #333;
	text-decoration: none;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.4s ease;
}

header .mobile-nav.is-open a {
	opacity: 1;
	transform: translateY(0);
}

header .mobile-nav.is-open a:nth-child(1) {
	transition-delay: 0.1s;
}

header .mobile-nav.is-open a:nth-child(2) {
	transition-delay: 0.2s;
}

header .mobile-nav.is-open a:nth-child(3) {
	transition-delay: 0.3s;
}

header .mobile-nav.is-open a:nth-child(4) {
	transition-delay: 0.4s;
}

header .mobile-nav.is-open a:nth-child(5) {
	transition-delay: 0.5s;
}

header .mobile-nav .mobile-cta {
	margin-top: 1rem;
	background-color: #bf9b7a;
	color: white;
	padding: 1rem 2rem;
	font-size: 1rem;
	font-family: 'Noto Sans JP', sans-serif;
	border-radius: 2px;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.4s ease;
	transition-delay: 0.6s;
	text-decoration: none;
}

header .mobile-nav.is-open .mobile-cta {
	opacity: 1;
	transform: translateY(0);
}

/* ./parts/common-footer.html */

footer {
	background-color: #2d2d2d;
	color: #fff;
	padding: 60px 0 20px;
	font-family: 'Noto Sans JP', sans-serif;
}

footer .footer-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 2rem;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
}

@media (min-width: 768px) {

	footer .footer-content {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
		text-align: left
	}
}

footer .footer-logo .logo-text {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2.5rem;
	line-height: 1;
	margin-bottom: 0.5rem;
	display: block;
}

footer .footer-logo .sub {
	font-size: 0.8rem;
	opacity: 0.7;
	letter-spacing: 0.1em;
}

footer .footer-info {
	font-size: 0.9rem;
	line-height: 1.8;
}

footer .footer-info p {
	margin-bottom: 0.5rem;
}

footer .footer-sns {
	display: flex;
	gap: 1.5rem;
	margin-top: 1rem;
	justify-content: center;
}

@media (min-width: 768px) {

	footer .footer-sns {
		justify-content: flex-start
	}
}

footer .footer-sns a {
	opacity: 0.8;
	transition: opacity 0.3s;
}

footer .footer-sns a:hover {
	opacity: 1;
}

footer .footer-sns a img {
	width: 24px;
	height: 24px;
	/* filter: invert(1); */
	/* アイコンを白くする */
}

footer .copyright {
	margin-top: 60px;
	text-align: center;
	font-size: 0.75rem;
	opacity: 0.5;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
}

/* ./parts/index-menu.html */

#menu {
	background-color: var(--bg-color);
	position: relative;
}

#menu::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 300px;
	background: linear-gradient(to bottom, #f8f8f8, var(--bg-color));
	z-index: 0;
	pointer-events: none;
}

#menu .menu-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	position: relative;
	z-index: 1;
}

@media (min-width: 768px) {

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

#menu .menu-card {
	position: relative;
	background-color: #fff;
	box-shadow: var(--shadow);
	transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
	opacity: 1;
	/* for AOS */
}

#menu .menu-card:hover {
	transform: translateY(-10px);
}

#menu .menu-card:hover .menu-img img {
	transform: scale(1.1);
}

#menu .menu-img {
	position: relative;
	width: 100%;
	height: 300px;
	overflow: hidden;
}

#menu .menu-img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	transition: transform 0.6s ease;
}

#menu .menu-img::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.3));
}

#menu .menu-content {
	padding: 2rem;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

#menu .menu-content .en-title {
	font-family: var(--font-accent);
	font-size: 2rem;
	color: var(--text-color);
	margin-bottom: 0.5rem;
	position: relative;
	display: inline-block;
}

#menu .menu-content .en-title::after {
	content: '';
	display: block;
	width: 40px;
	height: 1px;
	background-color: var(--accent-color);
	margin: 0.5rem auto 0;
}

#menu .menu-content .ja-title {
	font-size: 0.9rem;
	font-weight: 500;
	margin-bottom: 1.5rem;
	color: var(--accent-color);
}

#menu .menu-content .desc {
	font-size: 0.9rem;
	color: #666;
	line-height: 1.8;
	margin-bottom: 2rem;
}

#menu .menu-content .card-btn {
	margin-top: auto;
	font-size: 0.85rem;
	letter-spacing: 0.1em;
	color: var(--text-color);
	text-decoration: none;
	border-bottom: 1px solid var(--text-color);
	padding-bottom: 2px;
	transition: color 0.3s, border-color 0.3s;
}

#menu .menu-content .card-btn:hover {
	color: var(--accent-color);
	border-color: var(--accent-color);
}

/* ./parts/index-access.html */

#access {
	background-color: var(--bg-color);
	position: relative;
	overflow: hidden;
}

#access .access-container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
}

@media (min-width: 992px) {

	#access .access-container {
		grid-template-columns: 1fr 1.2fr;
		gap: 6rem;
		align-items: start
	}
}

/* Left Side: Information */

#access .info-area h3 {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	margin-bottom: 2rem;
	border-bottom: 1px solid #eee;
	padding-bottom: 1rem;
	display: inline-block;
	min-width: 200px;
}

#access .info-area dl {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1.5rem 2rem;
	align-items: baseline;
	margin-bottom: 3rem;
}

#access .info-area dl dt {
	font-weight: 500;
	color: var(--text-color);
	min-width: 80px;
	position: relative;
}

#access .info-area dl dt::after {
	content: '';
	position: absolute;
	right: -1rem;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 12px;
	background-color: #ddd;
}

#access .info-area dl dd {
	color: #555;
	line-height: 1.6;
}

/* Parking Highlight */

#access .parking-info {
	background-color: #f9f9f9;
	padding: 1.5rem;
	margin-bottom: 2rem;
	border-left: 3px solid var(--accent-color);
}

#access .parking-info strong {
	color: var(--accent-color);
	font-weight: 600;
	display: block;
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
}

#access .parking-info p {
	font-size: 0.9rem;
	color: #666;
	margin-bottom: 0.5rem;
}

#access .parking-info .parking-map-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.85rem;
	color: var(--text-color);
	text-decoration: underline;
	cursor: pointer;
}

#access .parking-info .parking-map-link:hover {
	color: var(--accent-color);
}

/* Payment Methods */

#access .payment-methods {
	margin-top: 2rem;
}

#access .payment-methods p {
	font-size: 0.9rem;
	margin-bottom: 1rem;
	color: #666;
}

#access .payment-methods .card-icons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

#access .payment-methods .card-icons img {
	height: 24px;
	width: auto;
	opacity: 0.7;
	transition: opacity 0.3s;
}

#access .payment-methods .card-icons img:hover {
	opacity: 1;
}

/* Right Side: Map */

#access .map-area {
	width: 100%;
	height: 100%;
	min-height: 400px;
	position: relative;
	border-radius: var(--radius-sm);
	overflow: hidden;
	box-shadow: var(--shadow-card);
}

#access .map-area iframe {
	width: 100%;
	height: 100%;
	min-height: 400px;
	border: 0;
	filter: grayscale(100%);
	transition: filter 0.3s ease;
}

#access .map-area iframe:hover {
	filter: grayscale(0%);
}

/* ./parts/index-hero.html */

#top {
	position: relative;
	width: 100%;
	height: 100vh;
	/* モバイルでのアドレスバー考慮 */
	height: 100dvh;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* スライダー背景 */

#top .hero-slider {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

#top .hero-slider .swiper-slide {
	position: relative;
	background-size: cover;
	background-position: center;
}

/* 画像のアニメーション（ズームアウト効果） */

#top .hero-slider .swiper-slide::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.2);
	/* フィルター */
}

#top .hero-slider .swiper-slide img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

/* キャッチコピーエリア */

#top .hero-content {
	position: relative;
	z-index: 10;
	text-align: center;
	color: #fff;
	padding: 0 20px;
	mix-blend-mode: normal;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#top .hero-content .catch-en {
	display: block;
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.5rem;
	letter-spacing: 0.2em;
	margin-bottom: 1rem;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeUp 1s ease forwards 0.5s;
	color: var(--accent-light);
}

@media (min-width: 768px) {

	#top .hero-content .catch-en {
		font-size: 2rem
	}
}

#top .hero-content .catch-main {
	display: block;
	font-family: 'Noto Serif JP', serif;
	font-size: 2rem;
	line-height: 1.6;
	font-weight: 500;
	margin-bottom: 1.5rem;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeUp 1s ease forwards 0.8s;
}

@media (min-width: 768px) {

	#top .hero-content .catch-main {
		font-size: 3.5rem;
		line-height: 1.4
	}
}

/* 改行制御 */

#top .hero-content .catch-main br {
	display: block;
}

@media (min-width: 768px) {

	#top .hero-content .catch-main br {
		display: none
	}
}

#top .hero-content .catch-sub {
	display: block;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 0.9rem;
	letter-spacing: 0.1em;
	font-weight: 300;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeUp 1s ease forwards 1.1s;
}

@media (min-width: 768px) {

	#top .hero-content .catch-sub {
		font-size: 1.1rem
	}
}

/* スクロールインジケーター */

#top .scroll-indicator {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #fff;
	font-family: 'Cormorant Garamond', serif;
	font-size: 0.9rem;
	letter-spacing: 0.2em;
	opacity: 0.8;
}

#top .scroll-indicator span {
	margin-bottom: 10px;
}

#top .scroll-indicator .line {
	width: 1px;
	height: 60px;
	background: rgba(255, 255, 255, 0.3);
	position: relative;
	overflow: hidden;
}

#top .scroll-indicator .line::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background: #fff;
	animation: scrollDown 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes fadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes scrollDown {
	0% {
		transform: translateY(-100%);
	}

	100% {
		transform: translateY(200%);
	}
}

/* Swiper カスタムズームアニメーション */
@keyframes zoomBg {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(1.1);
	}
}

#top .swiper-slide-active img {
	animation: zoomBg 8s linear forwards;
}

/* ./parts/index-identity.html */

#identity {
	background-color: var(--bg-color);
	position: relative;
	overflow: hidden;
}

/* 背景装飾（パララックス用） */
.identity-bg-text {
	position: absolute;
	top: -5%;
	right: -5%;
	font-family: var(--font-accent);
	font-size: 20vw;
	color: rgba(191, 155, 122, 0.03);
	line-height: 1;
	z-index: 0;
	pointer-events: none;
	white-space: nowrap;
}

.identity-container {
	position: relative;
	z-index: 1;
}

/* リードエリア */
.identity-lead {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	align-items: center;
	margin-bottom: 6rem;
}

@media (min-width: 992px) {
	.identity-lead {
		flex-direction: row;
		align-items: center;
		gap: 6rem
	}
}

.identity-image {
	width: 100%;
	max-width: 500px;
	position: relative;
	order: 1;
}

@media (min-width: 992px) {

	.identity-image {
		order: 2;
		width: 45%
	}
}

.identity-image .img-wrapper {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-sm);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
	z-index: 2;
}

.identity-image .img-wrapper img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.5s ease;
}

.identity-image .img-wrapper:hover img {
	transform: scale(1.05);
}

/* 装飾フレーム */

.identity-image::before {
	content: '';
	position: absolute;
	top: 20px;
	right: -20px;
	width: 100%;
	height: 100%;
	border: 1px solid var(--accent-color);
	z-index: 1;
	opacity: 0.6;
}

.identity-text {
	width: 100%;
	order: 2;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

@media (min-width: 992px) {

	.identity-text {
		order: 1;
		width: 50%
	}
}

.identity-text h3 {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	line-height: 1.6;
	color: var(--text-color);
}

@media (min-width: 768px) {

	.identity-text h3 {
		font-size: 1.8rem
	}
}

.identity-text h3 .highlight {
	background: linear-gradient(transparent 60%, var(--accent-light) 60%);
	padding: 0 4px;
}

.identity-text p {
	font-size: 0.95rem;
	line-height: 2;
	color: #555;
	text-align: justify;
}

/* 3つのポイント */
.identity-points {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin-top: 2rem;
}

@media (min-width: 992px) {
	.identity-points {
		grid-template-columns: repeat(3, 1fr);
		gap: 3rem
	}
}

.point-card {
	text-align: center;
	padding: 3rem 2rem;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.03);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	height: 100%;
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-sm);
}

.point-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: var(--accent-color);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.point-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.point-card:hover::after {
	transform: scaleX(1);
}

.point-card:hover .icon-wrapper {
	transform: scale(1.1);
	color: var(--accent-hover);
}

.point-card .icon-wrapper {
	width: 70px;
	height: 70px;
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent-color);
	transition: all 0.4s ease;
	background-color: var(--bg-color);
	border-radius: 50%;
}

.point-card .icon-wrapper .material-symbols-outlined {
	font-size: 36px;
}

.point-card h4 {
	font-family: var(--font-heading);
	font-size: 1.1rem;
	margin-bottom: 1rem;
	color: var(--text-color);
	letter-spacing: 0.05em;
}

.point-card p {
	font-size: 0.9rem;
	line-height: 1.8;
	color: #666;
}

/* ./parts/index-voice.html */

#voice {
	position: relative;
	overflow: hidden;
	background: linear-gradient(to bottom, #ffffff 0%, #fdfcfc 100%);
}

#voice .container-voice {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Badge Style */

#voice .voice-badge-container {
	display: flex;
	justify-content: center;
	margin-bottom: 4rem;
}

#voice .voice-badge {
	background-color: #fff;
	border: 1px solid #e6e6e6;
	padding: 1.5rem 3rem;
	text-align: center;
	box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
	position: relative;
}

#voice .voice-badge::before,
#voice .voice-badge::after {
	content: '';
	position: absolute;
	width: 40px;
	height: 1px;
	background-color: #bf9b7a;
	top: 50%;
}

#voice .voice-badge::before {
	left: -20px;
}

#voice .voice-badge::after {
	right: -20px;
}

#voice .voice-badge .score {
	font-family: 'Cormorant Garamond', serif;
	font-size: 3.5rem;
	color: #bf9b7a;
	line-height: 1;
}

#voice .voice-badge .score span {
	font-size: 1.5rem;
	color: #333;
}

#voice .voice-badge .stars {
	color: #bf9b7a;
	margin: 0.5rem 0;
	font-size: 1.2rem;
	letter-spacing: 2px;
}

#voice .voice-badge .label {
	font-size: 0.8rem;
	color: #888;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

/* Voice Cards (Swiper) */

#voice .swiper-voice {
	padding-bottom: 3rem;
}

#voice .voice-card {
	background: #fff;
	padding: 2.5rem;
	border: 1px solid #f0f0f0;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#voice .voice-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
	border-color: #bf9b7a;
}

#voice .voice-card .voice-header {
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
	border-bottom: 1px solid #f5f5f5;
	padding-bottom: 1rem;
}

#voice .voice-card .voice-header .avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 1rem;
	background-color: #f0f0f0;
	flex-shrink: 0;
}

#voice .voice-card .voice-header .avatar img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

#voice .voice-card .voice-header .info .name {
	font-weight: 500;
	font-size: 0.95rem;
	color: #333;
}

#voice .voice-card .voice-header .info .meta {
	font-size: 0.75rem;
	color: #999;
	margin-top: 2px;
}

#voice .voice-card .voice-content {
	font-size: 0.95rem;
	line-height: 1.8;
	color: #555;
	flex-grow: 1;
	font-style: italic;
	/* 引用っぽさを演出 */
}

/* Coupon Area */

#voice .coupon-section {
	margin-top: 5rem;
	border-top: 1px solid #eee;
	padding-top: 4rem;
}

#voice .coupon-title {
	text-align: center;
	font-family: 'Cormorant Garamond', serif;
	font-size: 2rem;
	margin-bottom: 2rem;
	color: #333;
}

#voice .coupon-title span {
	display: block;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 0.9rem;
	color: #888;
	margin-top: 0.5rem;
	letter-spacing: 0.1em;
}

#voice .coupon-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media(min-width: 768px) {

	#voice .coupon-grid {
		grid-template-columns: repeat(2, 1fr)
	}
}

#voice .coupon-card {
	border: 1px solid #dcdcdc;
	background: #fff;
	padding: 2.5rem 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	transition: all 0.3s ease;
	overflow: hidden;
}

#voice .coupon-card:hover {
	border-color: #bf9b7a;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

#voice .coupon-card:hover .btn {
	background-color: #333;
	border-color: #333;
	color: #fff;
}

#voice .coupon-card .tag {
	position: absolute;
	top: 0;
	left: 0;
	background-color: #bf9b7a;
	color: #fff;
	font-size: 0.75rem;
	padding: 6px 16px;
	letter-spacing: 0.1em;
}

#voice .coupon-card .title {
	font-size: 1.2rem;
	font-weight: 500;
	text-align: center;
	margin-top: 1rem;
	margin-bottom: 1rem;
	font-family: 'Noto Serif JP', serif;
	line-height: 1.5;
}

#voice .coupon-card .price {
	text-align: center;
	color: #bf9b7a;
	font-family: 'Cormorant Garamond', serif;
	font-size: 2.5rem;
	margin-bottom: 2rem;
	line-height: 1;
}

#voice .coupon-card .price .unit {
	font-size: 1.2rem;
	margin-right: 0.2rem;
}

#voice .coupon-card .price .sub-text {
	display: block;
	font-size: 0.75rem;
	color: #999;
	text-decoration: line-through;
	margin-top: 0.5rem;
	font-family: 'Noto Sans JP', sans-serif;
}

#voice .coupon-card .btn {
	width: 100%;
	max-width: 240px;
	background-color: transparent;
	color: #333;
	border: 1px solid #333;
}