:root {
	/* Color System */
	--color-primary: #1a1a1a;
	--color-secondary: #121212;
	--color-surface: #242424;
	--color-accent: #c5a059;
	--color-accent-hover: #d4af37;
	--color-text: #f5f5f5;
	--color-text-muted: #a0a0a0;

	/* Fonts */
	--font-en: 'Cinzel', serif;
	--font-jp: 'Shippori Mincho', serif;
	--font-body: 'Lato', 'Noto Sans JP', sans-serif;

	/* Spacing */
	--section-spacing: clamp(80px, 10vw, 120px);
	--container-width: 1200px;
	--header-height: 80px;
}

html {
	scroll-behavior: smooth;
}

body {
	background-color: var(--color-primary);
	color: var(--color-text);
	font-family: var(--font-body);
	line-height: 1.8;
	overflow-x: hidden;
}

/* Utility Layout */
.container-custom {
	width: 100%;
	max-width: var(--container-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}

/* Section Spacing - 使用上の注意: marginではなくpaddingを使用する */
section {
	padding-top: var(--section-spacing);
	padding-bottom: var(--section-spacing);
	position: relative;
}

/* Typography */
h1,
h2,
h3,
.font-heading {
	font-family: var(--font-en);
	letter-spacing: 0.05em;
}

.jp-serif {
	font-family: var(--font-jp);
}

.text-accent {
	color: var(--color-accent);
}

.text-gold-gradient {
	background: linear-gradient(135deg, #c5a059 0%, #f0e68c 50%, #c5a059 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* Buttons */
.btn-gold {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.8rem 2rem;
	border: 1px solid var(--color-accent);
	color: var(--color-accent);
	font-family: var(--font-en);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	transition: all 0.4s cubic-bezier(0.215, 0.610, 0.355, 1.000);
	position: relative;
	overflow: hidden;
	background: transparent;
}

.btn-gold::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0%;
	height: 100%;
	background-color: var(--color-accent);
	transition: width 0.4s ease;
	z-index: -1;
}

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

.btn-gold:hover::before {
	width: 100%;
}

.btn-gold.btn-fill {
	background-color: var(--color-accent);
	color: var(--color-primary);
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: var(--color-primary);
}

::-webkit-scrollbar-thumb {
	background: #333;
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--color-accent);
}

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

.header-glass {
	background: rgba(26, 26, 26, 0);
	-webkit-backdrop-filter: blur(0px);
	backdrop-filter: blur(0px);
	transition: all 0.4s ease;
	border-bottom: 1px solid rgba(255, 255, 255, 0);
}

.header-content {
	/* 高さやパディングの調整 */
	height: var(--header-height);
}

/* スクロール・アクティブ時の状態 */
.header-scrolled {
	background: rgba(26, 26, 26, 0.95);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-link {
	position: relative;
	font-family: var(--font-en);
	letter-spacing: 0.05em;
	font-size: 0.9rem;
	color: #fff;
	text-decoration: none;
	transition: color 0.3s;
}

.nav-link::after {
	content: '';
	position: absolute;
	width: 0;
	height: 1px;
	bottom: -4px;
	left: 0;
	background-color: var(--color-accent);
	transition: width 0.3s ease;
}

.nav-link:hover::after {
	width: 100%;
}

.nav-link.active {
	color: var(--color-accent);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
	background-color: var(--color-primary);
	z-index: 49;
	/* Header(50)より下 */
}

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

footer {
	position: relative;
	z-index: 10;
	overflow: hidden;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ./parts/index-trust.html */

#trust {
	background-color: var(--color-secondary);
	position: relative;
}

#trust .trust-card {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.05);
	padding: 2.5rem 2rem;
	transition: all 0.4s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

#trust .trust-card:hover {
	background: rgba(255, 255, 255, 0.04);
	border-color: var(--color-accent);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

#trust .trust-card:hover .icon-wrapper {
	color: var(--color-accent);
	border-color: var(--color-accent);
}

#trust .icon-wrapper {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.1);
	margin-bottom: 1.5rem;
	color: var(--color-text-muted);
	transition: all 0.4s ease;
}

#trust .icon-wrapper span {
	font-size: 40px;
}

#trust .trust-title {
	font-family: var(--font-jp);
	font-size: 1.1rem;
	margin-bottom: 1rem;
	color: #fff;
	letter-spacing: 0.05em;
}

#trust .trust-desc {
	font-size: 0.9rem;
	color: var(--color-text-muted);
	line-height: 1.8;
}

/* 背景装飾 */

#trust::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* ./parts/index-plan.html */

.plan-card-bg {
	background: linear-gradient(145deg, #1e1e1e 0%, #151515 100%);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.plan-border-decoration {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
	border: 1px solid rgba(197, 160, 89, 0.3);
	z-index: 10;
}

.plan-border-decoration::after {
	content: '';
	position: absolute;
	top: 10px;
	left: 10px;
	right: 10px;
	bottom: 10px;
	border: 1px solid rgba(197, 160, 89, 0.1);
}

.plan-feature-list li {
	position: relative;
	padding-left: 2.5rem;
	margin-bottom: 1rem;
	color: #d1d5db;
	/* gray-300 */
}

.plan-feature-list li::before {
	content: 'check_circle';
	font-family: 'Material Symbols Outlined';
	position: absolute;
	left: 0;
	top: 2px;
	color: var(--color-accent);
	font-size: 1.25rem;
}

/* ./parts/index-contact.html */

#contact {
	position: relative;
	overflow: hidden;
	color: white;
}

.contact-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.contact-bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	opacity: 0.4;
	filter: brightness(0.6) contrast(1.2);
}

.contact-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at center, rgba(26, 26, 26, 0.7) 0%, rgba(26, 26, 26, 0.95) 100%);
	z-index: 1;
}

.contact-container {
	position: relative;
	z-index: 2;
}

/* Form Styles */
.premium-input-group {
	position: relative;
	margin-bottom: 2rem;
}

.premium-input {
	width: 100%;
	background: transparent;
	border: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	padding: 1rem 0;
	color: white;
	font-family: var(--font-body);
	font-size: 1rem;
	transition: all 0.3s ease;
	border-radius: 0;
}

.premium-input:focus {
	outline: none;
	border-bottom-color: var(--color-accent);
	background: rgba(255, 255, 255, 0.02);
}

.premium-label {
	position: absolute;
	top: 1rem;
	left: 0;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.6);
	pointer-events: none;
	transition: all 0.3s ease;
	font-family: var(--font-en);
	letter-spacing: 0.05em;
}

.premium-input:not(:-moz-placeholder)~.premium-label {
	top: -1.2rem;
	font-size: 0.75rem;
	color: var(--color-accent);
}

.premium-input:focus~.premium-label,
.premium-input:not(:placeholder-shown)~.premium-label {
	top: -1.2rem;
	font-size: 0.75rem;
	color: var(--color-accent);
}

/* Select Customization */
select.premium-input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}

select.premium-input option {
	background-color: var(--color-secondary);
	color: white;
	padding: 10px;
}

.form-notice {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.5);
	margin-top: 1rem;
}

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

#hero {
	height: 100svh;
	/* モバイルブラウザのアドレスバー対策 */
	min-height: 600px;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	/* sectionのデフォルトpaddingをリセット */
}

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

.hero-bg {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	transform: scale(1.1);
	/* 読み込み時のズームアウトアニメーション */
	animation: zoomOutHero 20s ease-out forwards;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* 視認性確保のためのグラデーションオーバーレイ */
	background: linear-gradient(to bottom,
			rgba(26, 26, 26, 0.3) 0%,
			rgba(26, 26, 26, 0.2) 50%,
			rgba(26, 26, 26, 0.6) 100%);
	z-index: 2;
}

.hero-content {
	position: relative;
	z-index: 3;
	text-align: center;
	color: #fff;
	width: 100%;
	max-width: 1000px;
	padding: 0 2rem;
}

.hero-title {
	line-height: 1.2;
	margin-bottom: 1.5rem;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
	font-size: clamp(1rem, 2vw, 1.25rem);
	font-weight: 300;
	letter-spacing: 0.05em;
	margin-bottom: 0;
	opacity: 0.9;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* 縦書きテキスト（装飾用） */
.hero-decoration-text {
	position: absolute;
	right: 4vw;
	top: 50%;
	transform: translateY(-50%);
	writing-mode: vertical-rl;
	font-family: var(--font-jp);
	font-size: 0.9rem;
	letter-spacing: 0.2em;
	color: rgba(255, 255, 255, 0.6);
	z-index: 3;
	display: none;
}

@media (min-width: 1024px) {
	.hero-decoration-text {
		display: block
	}
}

.hero-decoration-text .line {
	display: inline-block;
	height: 60px;
	width: 1px;
	background-color: rgba(255, 255, 255, 0.4);
	margin: 1rem auto;
}

/* スクロールダウンインジケーター */
.scroll-down {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.7);
	font-family: var(--font-en);
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	cursor: pointer;
	text-decoration: none;
	transition: color 0.3s;
}

.scroll-down:hover {
	color: var(--color-accent);
}

.scroll-down:hover .line {
	background-color: var(--color-accent);
}

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

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

@keyframes zoomOutHero {
	from {
		transform: scale(1.15);
	}

	to {
		transform: scale(1.0);
	}
}

@keyframes scrollDown {
	0% {
		top: -100%;
	}

	100% {
		top: 100%;
	}
}

/* ./parts/index-concept.html */

#concept {
	background-color: var(--color-primary);
	position: relative;
	overflow: hidden;
}

/* 背景の質感 */
.concept-bg {
	position: absolute;
	inset: 0;
	opacity: 0.2;
	/* 黒背景に馴染ませる */
	z-index: 0;
	mix-blend-mode: overlay;
}

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

/* 装飾的な円や光 */
.concept-decoration {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60vw;
	height: 60vw;
	background: radial-gradient(circle, rgba(197, 160, 89, 0.08) 0%, rgba(26, 26, 26, 0) 70%);
	border-radius: 50%;
	z-index: 0;
	pointer-events: none;
}

/* コンテンツラッパー */
.concept-content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 60vh;
}

/* 縦書きテキスト（PC用） */
.vertical-text {
	font-family: var(--font-jp);
	color: #e5e5e5;
	font-size: 1.125rem;
	/* 18px */
	letter-spacing: 0.25em;
	line-height: 2.8;

	/* PC: 縦書き */
	writing-mode: vertical-rl;
	text-orientation: upright;
	height: auto;
	min-height: 480px;

	display: flex;
	flex-wrap: wrap;
	/* 文章が長すぎる場合の折り返し制御 */
	gap: 2rem;
	/* 行間 */
}

/* 見出し装飾 */
.concept-title-en {
	color: var(--color-accent);
	font-family: var(--font-en);
	font-size: 1rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	margin-bottom: 3rem;
	opacity: 0.8;
}

.concept-vertical-line {
	width: 1px;
	height: 80px;
	background: linear-gradient(to bottom, var(--color-accent) 0%, transparent 100%);
	margin: 0 auto 1.5rem;
}

/* モバイルレスポンシブ */
@media (max-width: 768px) {
	.concept-content {
		min-height: auto;
		padding: 2rem 0;
	}

	.vertical-text {
		/* モバイル: 横書き中央揃えに変更 */
		writing-mode: horizontal-tb;
		min-height: auto;
		text-align: center;
		font-size: 0.95rem;
		line-height: 2.2;
		gap: 1.5rem;
		width: 100%;
		max-width: 90%;

		flex-direction: column;
	}

	/* モバイルでは行ごとに改行させるための調整 */
	.vertical-text p {
		display: block;
		margin-bottom: 1.5rem;
	}

	.concept-title-en {
		margin-bottom: 2rem;
	}
}

/* ./parts/index-option.html */

#option {
	background-color: var(--color-surface);
	position: relative;
	overflow: hidden;
}

/* 背景にうっすらと和柄やテクスチャを入れても良い */

#option::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 20px 20px;
	opacity: 0.5;
	pointer-events: none;
}

#option .section-header {
	text-align: center;
	margin-bottom: 5rem;
}

#option .option-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin-bottom: 4rem;
}

@media (min-width: 768px) {

	#option .option-grid {
		grid-template-columns: repeat(3, 1fr)
	}
}

#option .option-item {
	background-color: var(--color-primary);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 2rem;
	transition: all 0.3s ease;
	position: relative;
}

#option .option-item:hover {
	border-color: var(--color-accent);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

#option .option-item .icon-area {
	height: 60px;
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
	color: var(--color-accent);
}

#option .option-item .icon-area span {
	font-size: 40px;
}

#option .option-item h3 {
	font-family: var(--font-en);
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
	color: white;
}

#option .option-item .price {
	font-family: var(--font-en);
	color: var(--color-accent);
	font-size: 1.1rem;
	margin-bottom: 1rem;
	display: block;
}

#option .option-item p {
	font-size: 0.9rem;
	color: var(--color-text-muted);
	line-height: 1.6;
}

#option .full-package {
	background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
	border: 1px solid var(--color-accent);
	padding: 3rem;
	position: relative;
	margin-top: 4rem;
}

/* ラグジュアリーな光沢感 */

#option .full-package::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
	opacity: 0.5;
}

@media (min-width: 992px) {

	#option .full-package {
		padding: 4rem;
		display: grid;
		grid-template-columns: 1.2fr 0.8fr;
		gap: 4rem;
		align-items: center
	}
}

#option .full-package .badge {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--color-accent);
	color: var(--color-primary);
	padding: 0.5rem 2rem;
	font-family: var(--font-en);
	font-weight: 600;
	font-size: 0.9rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

#option .full-package .package-content h3 {
	font-family: var(--font-en);
	font-size: clamp(1.5rem, 3vw, 2.5rem);
	color: white;
	margin-bottom: 1rem;
}

#option .full-package .package-content .package-price {
	font-family: var(--font-en);
	font-size: 2rem;
	color: var(--color-accent);
	margin-bottom: 2rem;
	display: block;
}

#option .full-package .package-content ul {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@media (min-width: 768px) {

	#option .full-package .package-content ul {
		grid-template-columns: 1fr 1fr
	}
}

#option .full-package .package-content ul li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: #e0e0e0;
	font-family: var(--font-jp);
	font-size: 0.95rem;
}

#option .full-package .package-content ul li .material-symbols-outlined {
	color: var(--color-accent);
	font-size: 20px;
}

#option .full-package .package-image {
	position: relative;
	margin-top: 2rem;
}

@media (min-width: 992px) {

	#option .full-package .package-image {
		margin-top: 0
	}
}

#option .full-package .package-image img {
	width: 100%;
	height: auto;
	border-radius: 4px;
	filter: brightness(0.9) contrast(1.1);
	transition: all 0.5s ease;
}

#option .full-package .package-image::before {
	content: '';
	position: absolute;
	top: -10px;
	right: -10px;
	bottom: -10px;
	left: -10px;
	border: 1px solid rgba(197, 160, 89, 0.3);
	z-index: 0;
}

/* ./parts/index-flow.html */

#flow {
	background-color: var(--color-secondary);
	overflow: hidden;
}

.flow-container {
	position: relative;
	padding-top: 2rem;
}

/* PC: Horizontal Line */
@media (min-width: 768px) {
	.flow-line {
		position: absolute;
		top: 140px;
		/* Adjust based on image/icon height */
		left: 0;
		width: 100%;
		height: 1px;
		background: linear-gradient(90deg,
				transparent 0%,
				var(--color-accent) 20%,
				var(--color-accent) 80%,
				transparent 100%);
		z-index: 0;
		opacity: 0.3;
	}
}

/* SP: Vertical Line */
@media (max-width: 767px) {
	.flow-line {
		position: absolute;
		top: 0;
		left: 28px;
		/* Center of the number circle */
		width: 1px;
		height: 100%;
		background: linear-gradient(180deg,
				var(--color-accent) 0%,
				var(--color-primary) 100%);
		z-index: 0;
		opacity: 0.3;
	}
}

.flow-step {
	position: relative;
	z-index: 1;
	height: 100%;
}

.step-number {
	font-family: var(--font-en);
	font-size: 3rem;
	line-height: 1;
	color: transparent;
	-webkit-text-stroke: 1px var(--color-accent);
	margin-bottom: 1rem;
	opacity: 0.5;
	transition: all 0.3s ease;
}

.flow-card {
	background: var(--color-primary);
	padding: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.05);
	height: 100%;
	transition: all 0.4s ease;
}

.flow-card:hover {
	border-color: var(--color-accent);
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.flow-card:hover .step-number {
	opacity: 1;
	text-shadow: 0 0 10px rgba(197, 160, 89, 0.3);
}

.step-image {
	width: 100%;
	height: 200px;
	-o-object-fit: cover;
	object-fit: cover;
	margin-bottom: 1.5rem;
	filter: grayscale(20%) contrast(110%);
}

.delivery-note {
	background: rgba(197, 160, 89, 0.1);
	border: 1px solid rgba(197, 160, 89, 0.3);
	padding: 1.5rem;
	margin-top: 4rem;
	text-align: center;
}

/* ./parts/index-charm.html */

/* Styles specific to index-charm section */
#charm {
	background-color: var(--color-primary);
	overflow: hidden;
	/* AOS要素のはみ出し防止 */
	position: relative;
}

/* 背景装飾：和紙のようなテクスチャを薄く重ねる想定（今回はCSSグラデーションで奥行きを表現） */
#charm::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 10% 20%, rgba(197, 160, 89, 0.03) 0%, transparent 40%);
	pointer-events: none;
	z-index: 0;
}

.charm-item {
	display: flex;
	flex-direction: column-reverse;
	/* モバイルでは画像が上(HTML構造上は画像が先だが、視線の流れを考慮して下にするか、あるいはデザイン指示通り画像->テキストとするか。ここでは画像->テキストの順になるよう通常フローとし、HTML順序に依存させる) */
	/* HTML構造: 画像 -> テキスト */
	gap: 3rem;
	margin-bottom: 8rem;
	/* アイテム間の余白 */
	align-items: center;
	position: relative;
	z-index: 1;
}

/* PC: ジグザグレイアウト */
@media (min-width: 768px) {
	.charm-item {
		flex-direction: row;
		gap: 6rem;
	}

	/* 偶数番目は画像を右に（リバース） */
	.charm-item:nth-child(even) {
		flex-direction: row-reverse;
	}

	.charm-item:last-child {
		margin-bottom: 0;
	}
}

.charm-image-wrapper {
	flex: 1;
	position: relative;
	aspect-ratio: 4/3;
	width: 100%;
	overflow: hidden;
	border-radius: 2px;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
	background-color: #000;
}

.charm-image {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	transition: transform 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000);
	opacity: 0.9;
}

/* ホバーエフェクト: ズーム＆明るく */
.charm-image-wrapper:hover .charm-image {
	transform: scale(1.05);
	opacity: 1;
}

/* 画像装飾枠 */
.charm-image-wrapper::after {
	content: '';
	position: absolute;
	top: 12px;
	left: 12px;
	right: 12px;
	bottom: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.4s ease;
	pointer-events: none;
	z-index: 2;
}

.charm-item:hover .charm-image-wrapper::after {
	border-color: var(--color-accent);
	top: 8px;
	left: 8px;
	right: 8px;
	bottom: 8px;
	box-shadow: inset 0 0 20px rgba(197, 160, 89, 0.1);
}

.charm-text {
	flex: 1;
	padding: 1rem;
}

.charm-number {
	font-family: var(--font-en);
	font-size: 5rem;
	line-height: 1;
	color: rgba(255, 255, 255, 0.03);
	margin-bottom: -2rem;
	margin-left: -0.5rem;
	position: relative;
	z-index: 0;
	font-weight: 400;
	pointer-events: none;
}

.charm-title {
	font-family: var(--font-jp);
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	color: #fff;
	margin-bottom: 2rem;
	position: relative;
	z-index: 1;
	line-height: 1.5;
	border-left: 3px solid var(--color-accent);
	padding-left: 1.5rem;
}

.charm-description {
	color: var(--color-text-muted);
	line-height: 2.2;
	font-size: 1rem;
	text-align: justify;
	padding-left: 1.5rem;
	/* タイトルの線に合わせる */
}

/* モバイル調整 */
@media (max-width: 767px) {
	.charm-text {
		width: 100%;
		padding: 0;
	}

	.charm-title,
	.charm-description {
		border-left: none;
		padding-left: 0;
	}

	.charm-title {
		text-align: center;
		padding-bottom: 1rem;
		border-bottom: 1px solid rgba(197, 160, 89, 0.3);
		margin-left: auto;
		margin-right: auto;
		display: table;
	}

	.charm-number {
		text-align: center;
		margin-left: 0;
		margin-bottom: -2.5rem;
		font-size: 6rem;
	}
}