/* ============================================================
index.css — トップページ（index.htm）専用スタイル
============================================================ */

/* ==================== 1. HERO SECTION (ヒーローセクション) ==================== */

.hero-section {
	position: relative;
	height: calc(90vh - 84px);
	min-height: 580px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

@media (min-width: 640px) {
	.hero-section {
		height: calc(100vh - 101.39px);
		min-height: 640px;
	}
}

.hero-bg-wrap {
	position: absolute;
	inset: 0;
	z-index: 0;
}

/* overlay-1：白系グラデーション（テキスト可読性確保） */
.hero-bg-wrap::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.6), rgba(236, 253, 245, 0.9));
	z-index: 1;
}

/* overlay-2：上部に木漏れ日風の光演出（装飾） */
.hero-bg-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at top, rgba(254, 243, 199, 0.4), transparent, transparent);
	z-index: 2;
}

.hero-bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1.05);
	transition: transform 1000ms ease;
}

.hero-container {
	position: relative;
	z-index: 10;
	max-width: 1024px;
	margin: 0 auto;
	padding: 24px 16px;
	width: 90%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
}

@media (min-width: 640px) {
	.hero-container {
		padding-left: 40px;
		padding-right: 40px;
	}
}

/* ヒーロー用スライド切替アニメーション（常時上下中央基準） */
.hero-slide {
	text-align: center;
	transition: opacity 0.5s ease-in-out, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform, opacity;
	width: 100%;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.hero-slide.hidden-slide {
	opacity: 0;
	pointer-events: none;
	transform: translateY(-50%) translateX(100%);
}

.hero-slide.active-slide {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(-50%) translateX(0);
}

.hero-sub-title {
	font-family: var(--font-title);
	font-size: 16px;
	letter-spacing: 0.4em;
	color: var(--color-forest-sub);
	font-weight: 600;
	margin-bottom: 24px;
}

@media (min-width: 640px) {
	.hero-sub-title {
		font-size: 18px;
	}
}

.hero-main-title {
	font-family: var(--font-title);
	font-size: 36px;
	font-weight: 400;
	letter-spacing: 0.1em;
	line-height: 1.625;
	color: var(--color-forest-text);
	filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.05));
}

@media (min-width: 640px) {
	.hero-main-title {
		font-size: 60px;
		line-height: 2;
	}
}

@media (min-width: 1024px) {
	.hero-main-title {
		font-size: 72px;
	}
}

.hero-divider {
	width: 64px;
	height: 2px;
	background-color: rgba(66, 154, 66, 0.4);
	margin: 16px auto;
	border-radius: 9999px;
	border: none;
}

.hero-desc-text {
	max-width: 576px;
	margin: 0 auto;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.625;
	color: var(--color-forest-text);
	padding: 0 8px;
	filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.9));
}

.hero-cta-btns {
	padding-top: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
}

@media (min-width: 640px) {
	.hero-cta-btns {
		flex-direction: row;
	}
}

/* ヒーローセクション1枚目 初回アクセス時のフワッと浮かび上がるアニメーション */
@keyframes heroFadeInUp {
	0% {
		opacity: 0;
		transform: translateY(24px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* メインキャッチコピー：最初に浮かび上がる */
#hero-slide-1 .hero-main-title {
	animation: heroFadeInUp 5s cubic-bezier(0.16, 1, 0.3, 1) 0.2s backwards;
}

/* サブタイトル：少し遅れて浮かび上がる */
#hero-slide-1 .hero-sub-title {
	animation: heroFadeInUp 3s cubic-bezier(0.16, 1, 0.3, 1) 0.6s backwards;
}

/* 区切り線・説明文・CTAボタン：順次浮かび上がる */
#hero-slide-1 .hero-divider {
	animation: heroFadeInUp 2s cubic-bezier(0.16, 1, 0.3, 1) 0.7s backwards;
}

#hero-slide-1 .hero-desc-text {
	animation: heroFadeInUp 2s cubic-bezier(0.16, 1, 0.3, 1) 0.8s backwards;
}

#hero-slide-1 .hero-cta-btns {
	animation: heroFadeInUp 2s cubic-bezier(0.16, 1, 0.3, 1) 0.9s backwards;
}

/* ヒーローCTAボタン */
.btn-hero-primary {
	width: 100%;
	padding: 14px 32px;
	background-color: var(--color-forest-sub);
	color: #FFFFFF;
	border-radius: 9999px;
	font-weight: 500;
	font-size: 16px;
	font-family: var(--font-sans);
	transition: var(--transition-default);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: none;
	cursor: pointer;
}

.btn-hero-primary:hover {
	background-color: var(--color-forest-dark);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.btn-hero-secondary {
	width: 100%;
	padding: 14px 32px;
	background-color: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(66, 154, 66, 0.3);
	color: var(--color-forest-dark);
	border-radius: 9999px;
	font-weight: 500;
	font-size: 16px;
	font-family: var(--font-sans);
	transition: var(--transition-default);
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	cursor: pointer;
}

.btn-hero-secondary:hover {
	background-color: #ECFDF5;
}

@media (min-width: 640px) {
	.btn-hero-primary,
	.btn-hero-secondary {
		width: auto;
	}
}

/* スライド2 ヘッダー＆テキスト */
.hero-slide-header {
	display: flex;
	flex-direction: column;
	margin-bottom: 10px;
}

.hero-badge-tag {
	display: inline-block;
	background-color: rgba(66, 154, 66, 0.15);
	color: var(--color-forest-sub);
	font-size: 14px;
	padding: 4.8px 14px;
	border-radius: 9999px;
	font-weight: 700;
	margin: 0 auto;
}

.hero-slide-title {
	font-family: var(--font-title);
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: var(--color-forest-text);
	margin: 4px 0 0 0;
}

@media (min-width: 640px) {
	.hero-slide-title {
		font-size: 44px;
	}
}

.hero-slide-sub {
	font-size: 15px;
	color: var(--color-forest-muted);
	font-weight: 500;
	margin-top: 5px;
}

@media (min-width: 640px) {
	.hero-slide-sub {
		font-size: 17px;
	}
}

/* プラン比較グリッド（スライド2：スマホ縦4枚・PC横4枚配置） */
.hero-plan-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 7.2px;
	max-width: 768px;
	margin: 0 auto;
	padding-top: 5.6px;
	text-align: left;
}

@media (min-width: 640px) {
	.hero-plan-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
	}
}

.hero-plan-card {
	background-color: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(4px);
	border-radius: 12px;
	padding: 8px 12px;
	border: 1px solid rgba(226, 232, 240, 0.8);
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
}

@media (min-width: 640px) {
	.hero-plan-card {
		padding: 14px 18px;
		gap: 6px;
	}
}

.hero-plan-card.recommend {
	background-color: rgba(255, 255, 255, 0.97);
	border: 2px solid var(--color-forest-sub);
	box-shadow: 0 4px 8px -1px rgba(0, 0, 0, 0.1);
	position: relative;
}

.hero-plan-badge {
	position: absolute;
	top: -11px;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--color-forest-sub);
	color: #FFFFFF;
	font-size: 11px;
	font-weight: 700;
	padding: 2.4px 10px;
	border-radius: 9999px;
	white-space: nowrap;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* プランカード上段（左：タイトル関連、右：料金） */
.hero-card-main {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
}

.hero-card-title-wrap {
	flex: 1;
	min-width: 0;
}

.hero-card-meta {
	font-size: 12px;
	color: var(--color-forest-muted);
	display: block;
	line-height: 1.2;
}

@media (min-width: 640px) {
	.hero-card-meta {
		font-size: 14px;
	}
}

.hero-card-title {
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 14px;
	color: var(--color-forest-text);
	margin: 2px 0 0 0;
	line-height: 1.3;
}

@media (min-width: 640px) {
	.hero-card-title {
		font-size: 18px;
	}
}

.hero-card-bottom {
	white-space: nowrap;
	flex-shrink: 0;
}

.hero-card-price-label {
	font-size: 10px;
	color: var(--color-forest-muted);
	display: block;
	line-height: 1.1;
}

@media (min-width: 640px) {
	.hero-card-price-label {
		font-size: 11px;
	}
}

.hero-card-price {
	color: var(--color-forest-sub);
	font-weight: 700;
	font-size: 18px;
	line-height: 1.2;
}

.hero-card-price span {
	font-size: 10px;
	font-weight: 500;
}

@media (min-width: 640px) {
	.hero-card-price {
		font-size: 20px;
	}

	.hero-card-price span {
		font-size: 12px;
	}
}

/* プランカード下段（詳細内容） */
.hero-card-sub {
	font-size: 12px;
	color: var(--color-forest-muted);
	margin: 0;
	padding-top: 3px;
	border-top: 1px dashed #E2E8F0;
	line-height: 1.3;
}

@media (min-width: 640px) {
	.hero-card-sub {
		font-size: 14px;
		padding-top: 5px;
	}
}

.hero-plan-note {
	font-size: 11px;
	color: var(--color-forest-muted);
	margin-top: 6.4px;
	margin-bottom: 0;
}

@media (min-width: 640px) {
	.hero-plan-note {
		font-size: 14px;
		margin-top: 16px;
	}
}

/* スライド2 アクション */
.hero-plan-actions {
	padding-top: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

@media (min-width: 640px) {
	.hero-plan-actions {
		flex-direction: row;
	}
}

.btn-hero-plan-table {
	width: 100%;
	padding: 12px 28px;
	background-color: var(--color-forest-sub);
	color: #FFFFFF;
	border-radius: 9999px;
	font-weight: 500;
	font-size: 15px;
	font-family: var(--font-sans);
	transition: var(--transition-default);
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-decoration: none;
}

@media (min-width: 640px) {
	.btn-hero-plan-table {
		width: auto;
		font-size: 16px;
	}
}

.btn-hero-plan-table:hover {
	background-color: var(--color-forest-dark);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* スライド切り替えコントロール (矢印絶対位置固定・ドット) */
.hero-arrow-btn {
	display: none;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 30;
	width: 52px;
	height: 52px;
	border-radius: 9999px;
	background-color: rgba(255, 255, 255, 0.9);
	color: var(--color-forest-text);
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(226, 232, 240, 0.8);
	cursor: pointer;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	font-size: 18px;
	transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s;
}

.hero-arrow-btn.prev {
	left: 24px;
}

.hero-arrow-btn.next {
	right: 24px;
}

@media (min-width: 768px) {
	.hero-arrow-btn {
		display: flex;
	}
}

.hero-arrow-btn:hover {
	background-color: #FFFFFF;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15);
}

.hero-arrow-btn.prev:hover {
	transform: translateY(-50%) translateX(-2px);
}

.hero-arrow-btn.next:hover {
	transform: translateY(-50%) translateX(2px);
}

.hero-dots-wrap {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 30;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-dots {
	display: flex;
	align-items: center;
	gap: 10px;
}

.hero-dot {
	width: 12px;
	height: 12px;
	border-radius: 9999px;
	background-color: #CBD5E1;
	transition: all 0.3s ease;
	cursor: pointer;
}

.hero-dot.active {
	background-color: var(--color-forest-sub, #429A42);
}

.hero-dot:hover:not(.active) {
	background-color: rgba(66, 154, 66, 0.5);
}

/* ==================== 2. ABOUT SECTION (山林散骨とは) ==================== */

.about-section {
	padding-top: 80px;
	padding-bottom: 80px;
	background-color: #FFFFFF;
	position: relative;
	overflow: hidden;
}

@media (min-width: 640px) {
	.about-section {
		padding-top: 112px;
		padding-bottom: 112px;
	}
}

/* 右上のぼかし背景装飾 */
.about-section::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 256px;
	height: 256px;
	background-color: rgba(66, 154, 66, 0.05);
	border-radius: 9999px;
	filter: blur(64px);
	z-index: 0;
	transform: translate(50%, -50%);
	pointer-events: none;
}

/* 左下のぼかし背景装飾 */
.about-section::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 384px;
	height: 384px;
	background-color: rgba(236, 253, 245, 0.5);
	border-radius: 9999px;
	filter: blur(64px);
	z-index: 0;
	transform: translate(-50%, 33.33%);
	pointer-events: none;
}

.about-container {
	max-width: 1280px;
	margin: 0 auto;
	padding-left: 16px;
	padding-right: 16px;
	position: relative;
	z-index: 10;
}

@media (min-width: 640px) {
	.about-container {
		padding-left: 24px;
		padding-right: 24px;
	}
}

@media (min-width: 1024px) {
	.about-container {
		padding-left: 32px;
		padding-right: 32px;
	}
}

/* 共通セクションヘッダー */
.section-header {
	text-align: center;
	margin-bottom: 56px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.section-sub-title {
	color: var(--color-forest-sub);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

@media (min-width: 640px) {
	.section-sub-title {
		font-size: 16px;
	}
}

.section-main-title {
	font-family: var(--font-title);
	font-size: 36px;
	font-weight: 700;
	color: var(--color-forest-text);
	letter-spacing: 0.025em;
}

@media (min-width: 640px) {
	.section-main-title {
		font-size: 48px;
	}
}

@media (min-width: 1024px) {
	.section-main-title {
		font-size: 60px;
	}
}

.about-lead-container {
	max-width: 768px;
	margin: 0 auto 64px auto;
	text-align: center;
}

.about-lead-text {
	font-size: 16px;
	color: var(--color-forest-text);
	line-height: 2;
}

@media (min-width: 640px) {
	.about-lead-text {
		font-size: 18px;
	}
}

.about-text-highlight {
	font-weight: 500;
	background: linear-gradient(to right, rgba(66, 154, 66, 0.2), rgba(66, 154, 66, 0.2)) no-repeat bottom;
	background-size: 100% 8px;
}

.about-message-card {
	background: linear-gradient(to bottom right, #ECFDF5, #FFFFFF);
	border-radius: 16px;
	padding: 32px;
	text-align: center;
	border: 1px solid rgba(66, 154, 66, 0.2);
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	position: relative;
	overflow: hidden;
	margin-bottom: 50px;
}

@media (min-width: 640px) {
	.about-message-card {
		padding: 48px;
	}
}

.about-card-bg-icon {
	position: absolute;
	top: 24px;
	right: 32px;
	width: 70px;
	z-index: 0;
}

.about-message-text-1 {
	font-family: var(--font-title);
	font-size: 18px;
	color: var(--color-forest-text);
	line-height: 2;
	margin-bottom: 24px;
}

@media (min-width: 640px) {
	.about-message-text-1 {
		font-size: 24px;
	}
}

.about-message-text-2 {
	color: var(--color-forest-sub);
	font-weight: 700;
	font-size: 20px;
	letter-spacing: 0.1em;
	font-family: var(--font-title);
}

@media (min-width: 640px) {
	.about-message-text-2 {
		font-size: 30px;
	}
}

.about-cards-grid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 24px;
	margin-bottom: 48px;
}

@media (min-width: 768px) {
	.about-cards-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.about-cards-grid {
		gap: 32px;
	}
}

.about-card-item {
	background-color: var(--color-forest-light);
	border-radius: 16px;
	padding: 32px;
	border: 1px solid rgba(66, 154, 66, 0.1);
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	position: relative;
	overflow: hidden;
	transition: all 150ms ease;
}

.about-card-item:hover {
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	transform: translateY(-4px);
}

.about-card-item::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 96px;
	height: 96px;
	background-color: rgba(255, 255, 255, 0.6);
	border-bottom-left-radius: 9999px;
	z-index: 0;
	transition: transform 150ms ease;
	pointer-events: none;
}

.about-card-item:hover::before {
	transform: scale(1.1);
}

.about-card-icon-box {
	width: 56px;
	height: 56px;
	background-color: #FFFFFF;
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-forest-sub);
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	margin-bottom: 24px;
	font-size: 30px;
	position: relative;
	z-index: 1;
}

.about-card-title {
	font-family: var(--font-title);
	font-size: 20px;
	font-weight: 700;
	color: var(--color-forest-text);
	margin-bottom: 16px;
	line-height: 1.625;
	position: relative;
	z-index: 1;
}

.about-card-title::after {
	content: "";
	display: block;
	width: 32px;
	height: 4px;
	background-color: rgba(66, 154, 66, 0.3);
	margin-top: 16px;
	border-radius: 9999px;
}

@media (min-width: 640px) {
	.about-card-title {
		font-size: 24px;
	}
}

.about-card-desc {
	font-size: 16px;
	color: var(--color-forest-muted);
	line-height: 1.625;
	position: relative;
	z-index: 1;
}

.about-comparison-card {
	background-color: #FFFFFF;
	border-radius: 16px;
	border: 1px solid rgba(66, 154, 66, 0.2);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	margin-bottom: 64px;
	overflow: hidden;
	position: relative;
}

/* 「なぜ海ではなく森なのか」比較カード内部スタイル */
.about-comp-bg-icon {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 125px;
	opacity: 0.2;
	transform: translate(32px, 32px);
	pointer-events: none;
}

.about-comp-header {
	text-align: center;
	padding-top: 32px;
	padding-bottom: 16px;
	padding-left: 24px;
	padding-right: 24px;
	position: relative;
	z-index: 10;
}

.about-comp-title {
	font-family: var(--font-title);
	font-size: 24px;
	font-weight: 700;
	color: var(--color-forest-text);
}

@media (min-width: 640px) {
	.about-comp-title {
		font-size: 30px;
	}
}

.about-comp-grid {
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 10;
	border-top: 1px solid rgba(241, 245, 249, 0.5);
}

@media (min-width: 768px) {
	.about-comp-grid {
		flex-direction: row;
		align-items: stretch;
	}
}

.about-comp-col-sea {
	flex: 1;
	padding: 32px 24px;
	background-color: rgba(239, 246, 255, 0.4);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-bottom: 1px solid #F1F5F9;
}

@media (min-width: 640px) {
	.about-comp-col-sea {
		padding: 40px;
	}
}

@media (min-width: 768px) {
	.about-comp-col-sea {
		border-bottom: none;
		border-right: 1px solid #F1F5F9;
	}
}

.about-comp-col-forest {
	flex: 1;
	padding: 32px 24px;
	background-color: rgba(66, 154, 66, 0.05);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

@media (min-width: 640px) {
	.about-comp-col-forest {
		padding: 40px;
	}
}

.about-comp-icon-sea {
	width: 64px;
	height: 64px;
	background-color: #DBEAFE;
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #3B82F6;
	margin-bottom: 16px;
	font-size: 30px;
	box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
	border: 1px solid #BFDBFE;
}

.about-comp-icon-forest {
	width: 64px;
	height: 64px;
	background-color: #FFFFFF;
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-forest-sub);
	margin-bottom: 16px;
	font-size: 30px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(66, 154, 66, 0.1);
}

.about-comp-col-title-sea {
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 20px;
	color: #334155;
	margin-bottom: 8px;
}

.about-comp-col-title-forest {
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 20px;
	color: var(--color-forest-text);
	margin-bottom: 8px;
}

.about-comp-col-desc-sea {
	font-size: 16px;
	color: #64748B;
	line-height: 1.625;
	font-weight: 500;
}

.about-comp-col-desc-forest {
	font-size: 16px;
	color: var(--color-forest-sub);
	line-height: 1.625;
	font-weight: 700;
}

.about-comp-footer {
	background-color: rgba(66, 154, 66, 0.05);
	padding: 24px 24px;
	text-align: center;
	border-top: 1px solid rgba(66, 154, 66, 0.1);
	position: relative;
	z-index: 10;
}

@media (min-width: 640px) {
	.about-comp-footer {
		padding: 32px;
	}
}

.about-comp-footer-text {
	font-size: 16px;
	color: var(--color-forest-text);
	line-height: 1.625;
	max-width: 768px;
	margin: 0 auto;
}

.about-comp-footer-highlight {
	font-weight: 700;
	color: var(--color-forest-sub);
	font-size: 16px;
	border-bottom: 2px solid rgba(66, 154, 66, 0.3);
	padding-bottom: 2px;
}

@media (min-width: 640px) {
	.about-comp-footer-highlight {
		font-size: 18px;
	}
}

/* ==================== 3. FEATURES SECTION (特徴・選ばれる理由) ==================== */

.features-section {
	padding-top: 80px;
	padding-bottom: 80px;
	background-color: var(--color-sand);
	position: relative;
	border-top: 1px solid #F4EFE6;
}

@media (min-width: 640px) {
	.features-section {
		padding-top: 112px;
		padding-bottom: 112px;
	}
}

.features-container {
	max-width: 1152px;
	margin: 0 auto;
	padding-left: 16px;
	padding-right: 16px;
}

@media (min-width: 640px) {
	.features-container {
		padding-left: 24px;
		padding-right: 24px;
	}
}

@media (min-width: 1024px) {
	.features-container {
		padding-left: 32px;
		padding-right: 32px;
	}
}

.features-lead-desc {
	font-size: 16px;
	color: var(--color-forest-muted);
	line-height: 1.625;
	max-width: 672px;
	margin: 16px auto 0 auto;
}

@media (min-width: 640px) {
	.features-lead-desc {
		font-size: 18px;
	}
}

.reasons-list {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

@media (min-width: 640px) {
	.reasons-list {
		gap: 48px;
	}
}

.reason-card-box {
	background-color: #FFFFFF;
	border-radius: 16px;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(66, 154, 66, 0.1);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

@media (min-width: 1024px) {
	.reason-card-box {
		flex-direction: row;
	}
}

.reason-card-box.reverse {
	flex-direction: column;
}

@media (min-width: 1024px) {
	.reason-card-box.reverse {
		flex-direction: row-reverse;
	}
}

.reason-card-left {
	padding: 32px;
	background: linear-gradient(to bottom right, #FFFFFF, rgba(236, 253, 245, 0.5));
	border-bottom: 1px solid rgba(66, 154, 66, 0.1);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@media (min-width: 640px) {
	.reason-card-left {
		padding: 30px;
	}
}

@media (min-width: 1024px) {
	.reason-card-left {
		width: 33.333333%;
		border-bottom: none;
		border-right: 1px solid rgba(66, 154, 66, 0.1);
	}

	.reason-card-left.reverse {
		border-right: none;
		border-left: 1px solid rgba(66, 154, 66, 0.1);
	}
}

.reason-card-icon {
	width: 56px;
	height: 56px;
	background-color: #D1FAE5;
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-forest-sub);
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	margin-bottom: 24px;
	font-size: 30px;
}

.reason-tag {
	color: var(--color-forest-sub);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.1em;
	margin-bottom: 8px;
	display: block;
}

.reason-title {
	font-family: var(--font-title);
	font-size: 24px;
	font-weight: 700;
	color: var(--color-forest-text);
	margin-bottom: 16px;
	line-height: 1.625;
}

@media (min-width: 640px) {
	.reason-title {
		font-size: 30px;
	}
}

.reason-desc {
	font-size: 16px;
	color: var(--color-forest-muted);
	line-height: 1.625;
}

.reason-card-right {
	padding: 32px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@media (min-width: 640px) {
	.reason-card-right {
		padding: 40px;
	}
}

@media (min-width: 1024px) {
	.reason-card-right {
		width: 66.666667%;
	}
}

/* 料金比較テーブル */
.price-table-wrapper {
	width: 100%;
}

/* ===== スマホ：カード形式（積み上げ表示） ===== */
.price-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 16px;
}

/* スマホ時はヘッダー行を非表示にする */
.price-table thead {
	display: none;
}

/* 各行をカードブロックとして表示 */
.price-table tbody tr {
	display: block;
	margin-bottom: 16px;
	border: 1px solid #E2E8F0;
	border-radius: 12px;
	overflow: hidden;
	background-color: #FFFFFF;
}

/* おすすめ行のカード強調 */
.price-table tbody tr.highlight-row {
	background-color: rgba(236, 253, 245, 0.6);
	border: 2px solid var(--color-forest-sub);
}

/* 各セルを縦積み（2行形式）に変換 */
.price-table td {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 12px 16px;
	border-bottom: 1px solid #F1F5F9;
	color: var(--color-forest-text);
	font-size: 16px;
	line-height: 1.6;
}

/* 供養の形式（見出しエリア） */
.price-table td[data-label="供養の形式"] {
	font-size: 17px;
	font-weight: 700;
	background-color: #F8FAFC;
	color: #1E293B;
	padding: 14px 16px;
	border-bottom: 1px solid #E2E8F0;
}

.price-table tbody tr.highlight-row td[data-label="供養の形式"] {
	background-color: rgba(66, 154, 66, 0.12);
	color: var(--color-forest-dark);
	border-bottom: 1px solid rgba(66, 154, 66, 0.2);
}

/* 供養の形式には::before（ラベル）を付けない */
.price-table td[data-label="供養の形式"]::before {
	content: none;
	display: none;
}

/* 最後のセルは罫線なし */
.price-table td:last-child {
	border-bottom: none;
}

/* data-label で列名を1行目のラベルとして表示 */
.price-table td::before {
	content: attr(data-label);
	font-weight: 700;
	font-size: 16px;
	color: #64748B;
	letter-spacing: 0.02em;
	display: block;
}

/* おすすめ行のラベル・テキスト強調 */
.price-table tbody tr.highlight-row td::before {
	color: var(--color-forest-dark);
}

.price-table td.highlight {
	font-weight: 700;
	color: var(--color-forest-sub);
}

.price-table td.text-forest-main {
	color: var(--color-forest-dark);
	font-weight: 700;
}

.price-table td span {
	font-size: 16px;
	color: #64748B;
}

.price-table tbody tr.highlight-row td span {
	color: var(--color-forest-dark);
}

/* ===== タブレット以上：通常テーブル表示に戻す ===== */
@media (min-width: 640px) {
	.price-table {
		text-align: left;
		font-size: 16px;
	}

	/* ヘッダーを表示 */
	.price-table thead {
		display: table-header-group;
	}

	/* 行・セルを通常のテーブル表示に戻す */
	.price-table tbody tr {
		display: table-row;
		margin-bottom: 0;
		border: none;
		border-radius: 0;
		background-color: transparent;
		overflow: visible;
	}

	.price-table tbody tr.highlight-row {
		background-color: rgba(236, 253, 245, 0.5);
		border: none;
	}

	.price-table td {
		display: table-cell;
		padding: 16px;
		border-bottom: 1px solid #F1F5F9;
		font-size: 16px;
	}

	.price-table td[data-label="供養の形式"] {
		font-size: 16px;
		background-color: transparent;
		color: inherit;
		padding: 16px;
		border-bottom: 1px solid #F1F5F9;
	}

	.price-table tbody tr.highlight-row td[data-label="供養の形式"] {
		background-color: transparent;
		border-bottom: 1px solid #F1F5F9;
	}

	/* ラベル疑似要素を非表示 */
	.price-table td::before {
		display: none;
	}

	.price-table th {
		padding: 12px 16px;
		background-color: #F8FAFC;
		font-weight: 700;
		color: #475569;
		border-bottom: 1px solid #E2E8F0;
	}

	.price-table td.highlight {
		border-left: 4px solid var(--color-forest-sub);
	}
}

/* 手配期間比較バーグラフ */
.reason-subtitle {
	font-size: 16px;
	font-weight: 700;
	color: var(--color-forest-text);
	margin-bottom: 24px;
	border-bottom: 1px solid #F1F5F9;
	padding-bottom: 8px;
}

.timeline-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.timeline-item {
	display: flex;
	flex-direction: column;
}

@media (min-width: 640px) {
	.timeline-item {
		flex-direction: row;
		align-items: center;
	}
}

.timeline-label {
	width: 100%;
	font-size: 16px;
	font-weight: 500;
	color: #475569;
	margin-bottom: 4px;
}

@media (min-width: 640px) {
	.timeline-label {
		width: 144px;
		margin-bottom: 0;
	}
}

.timeline-label.highlight {
	font-weight: 700;
	color: var(--color-forest-sub);
}

.timeline-bar-bg {
	flex-grow: 1;
	background-color: #F1F5F9;
	border-radius: 6px;
	height: 40px;
	display: flex;
	align-items: center;
	padding: 0 12px;
	position: relative;
	overflow: hidden;
}

.timeline-bar-bg.highlight {
	background-color: #ECFDF5;
	height: 40px;
	border: 1px solid rgba(66, 154, 66, 0.3);
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.timeline-bar-fill {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	background-color: #CBD5E1;
	opacity: 0.3;
}

.timeline-bar-fill.highlight {
	background-color: var(--color-forest-sub);
	opacity: 0.2;
}

/* 幅ユーティリティ */
.u-w-100 {
	width: 100%;
}

.u-w-50 {
	width: 50%;
}

.u-w-25 {
	width: 25%;
}

.timeline-bar-text {
	font-size: 14px;
	color: #334155;
	position: relative;
	z-index: 10;
	font-weight: 500;
}

.timeline-bar-text.highlight {
	color: var(--color-forest-text);
	font-weight: 700;
}

@media (min-width: 640px) {
	.timeline-bar-text.highlight {
		font-size: 16px;
	}
}

/* 負担比較3カード */
.three-cards-grid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 16px;
}

@media (min-width: 640px) {
	.three-cards-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 24px;
	}
}

.comp-box {
	border: 1px solid #E2E8F0;
	border-radius: 12px;
	padding: 20px;
	text-align: center;
	background-color: #F8FAFC;
	display: flex;
	flex-direction: column;
	align-items: center;
}

@media (min-width: 640px) {
	.comp-box {
		padding: 24px;
	}
}

.comp-box.highlight {
	border: 2px solid var(--color-forest-sub);
	background-color: rgba(236, 253, 245, 0.4);
	position: relative;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.comp-box-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--color-forest-sub);
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 9999px;
	white-space: nowrap;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.comp-box-title {
	font-weight: 700;
	font-size: 18px;
	color: #334155;
	margin-bottom: 16px;
	border-bottom: 1px solid #E2E8F0;
	padding-bottom: 12px;
	width: 100%;
}

.comp-box-title.highlight {
	color: var(--color-forest-sub);
	border-bottom: 1px solid rgba(66, 154, 66, 0.2);
	margin-top: 4px;
}

.comp-check-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
	font-size: 16px;
	color: #475569;
	text-align: left;
}

.comp-check-item {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.comp-check-item.highlight {
	color: var(--color-forest-text);
	font-weight: 700;
}

/* ==================== 4. FLOW SECTION (ご利用の流れ) ==================== */

.flow-section {
	padding-top: 48px;
	padding-bottom: 80px;
	background-color: #FFFFFF;
	position: relative;
	overflow: hidden;
	border-top: 1px solid #F4EFE6;
}

.flow-section::before {
	content: '';
	position: absolute;
	inset: 0;
	opacity: 0.05;
	pointer-events: none;
	background-image: radial-gradient(#2D543C 1px, transparent 1px);
	background-size: 16px 16px;
}

@media (min-width: 768px) {
	.flow-section {
		padding-top: 80px;
		padding-bottom: 80px;
	}
}

.flow-container {
	max-width: 1024px;
	margin: 0 auto;
	padding-left: 16px;
	padding-right: 16px;
	position: relative;
	z-index: 10;
}

@media (min-width: 640px) {
	.flow-container {
		padding-left: 24px;
		padding-right: 24px;
	}
}

.flow-header {
	text-align: center;
	max-width: 768px;
	margin: 0 auto 48px auto;
}

@media (min-width: 640px) {
	.flow-header {
		margin-bottom: 64px;
	}
}

.flow-sub-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: #E1EDE5;
	color: #1C3527;
	padding: 6px 14px;
	border-radius: 9999px;
	font-size: 14px;
	font-family: var(--font-sans);
	font-weight: 500;
	margin-bottom: 16px;
}

@media (min-width: 640px) {
	.flow-sub-badge {
		font-size: 16px;
	}
}

.flow-main-title {
	font-size: 30px;
	font-weight: 700;
	color: #14271D;
	letter-spacing: -0.025em;
	line-height: 1.25;
	margin-bottom: 24px;
}

@media (min-width: 640px) {
	.flow-main-title {
		font-size: 48px;
	}
}

@media (min-width: 768px) {
	.flow-main-title {
		font-size: 60px;
	}
}

.flow-lead-desc {
	color: #4B5563;
	line-height: 1.625;
	font-size: 16px;
	font-family: var(--font-serif);
}

@media (min-width: 640px) {
	.flow-lead-desc {
		font-size: 18px;
	}
}

.flow-legend-wrap {
	margin-top: 32px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	font-size: 14px;
	font-family: var(--font-sans);
	list-style: none;
	padding: 0;
}

@media (min-width: 640px) {
	.flow-legend-wrap {
		gap: 24px;
		font-size: 16px;
	}
}

.flow-legend-item {
	display: flex;
	align-items: center;
	gap: 8px;
	background-color: #FFFFFF;
	padding: 8px 16px;
	border-radius: 9999px;
	border: 1px solid #E6DAC8;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	color: #374151;
	font-weight: 500;
}

.flow-legend-item::before {
	content: '';
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 9999px;
	background-color: #2D543C;
}

.flow-legend-item.staff::before {
	background-color: #8C765C;
}

.flow-legend-item.mypage::before {
	background-color: #F59E0B;
}

/* 垂直タイムライン構造 */
.flow-timeline-wrap {
	position: relative;
	font-family: var(--font-serif);
}

.flow-timeline-wrap::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 32px;
	bottom: 32px;
	width: 2px;
	background-color: #E6DAC8;
	transform: translateX(-50%);
	display: none;
}

@media (min-width: 640px) {
	.flow-timeline-wrap::before {
		display: block;
	}
}

.flow-step-list {
	display: flex;
	flex-direction: column;
	gap: 32px;
	list-style: none;
	padding: 0;
	margin: 0;
}

@media (min-width: 640px) {
	.flow-step-list {
		gap: 48px;
	}
}

.flow-step-row {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

@media (min-width: 640px) {
	.flow-step-row {
		display: block;
	}
}

.flow-step-circle {
	display: none;
	position: absolute;
	left: 50%;
	top: 80px;
	transform: translateX(-50%);
	width: 48px;
	height: 48px;
	border-radius: 9999px;
	background-color: #2D543C;
	color: #FFFFFF;
	font-weight: 700;
	font-size: 20px;
	align-items: center;
	justify-content: center;
	border: 4px solid var(--color-sand);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	z-index: 10;
	font-family: var(--font-sans);
}

@media (min-width: 640px) {
	.flow-step-circle {
		display: flex;
	}
}

.flow-step-circle.staff {
	background-color: #8C765C;
}

.flow-step-circle.mypage {
	background-color: #D97706;
}

.flow-card {
	background-color: #FFFFFF;
	padding: 24px;
	border-radius: 16px;
	border: 1px solid #F4EFE6;
	box-shadow: 0 10px 30px -5px rgba(35, 67, 48, 0.08);
	position: relative;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	width: 100%;
	box-sizing: border-box;
}

@media (min-width: 640px) {
	.flow-card {
		padding: 32px;
		width: 45%;
	}

	.flow-card.flow-col-left {
		margin-right: auto;
		margin-left: 0;
		padding-right: 40px;
	}

	.flow-card.flow-col-right {
		margin-left: auto;
		margin-right: 0;
		padding-left: 40px;
	}
}

@media (min-width: 1024px) {
	.flow-card.flow-col-left {
		padding-right: 48px;
	}

	.flow-card.flow-col-right {
		padding-left: 48px;
	}
}

.flow-card.mypage {
	border: 2px solid rgba(253, 230, 138, 0.6);
}

.flow-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

@media (min-width: 640px) {
	.flow-card.flow-col-left .flow-card-header {
		justify-content: flex-end;
	}
}

.flow-mobile-num {
	width: 32px;
	height: 32px;
	border-radius: 9999px;
	background-color: #2D543C;
	color: #FFFFFF;
	font-weight: 700;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-sans);
}

@media (min-width: 640px) {
	.flow-mobile-num {
		display: none;
	}
}

.flow-mobile-num.staff {
	background-color: #8C765C;
}

.flow-mobile-num.mypage {
	background-color: #D97706;
}

.flow-tag-customer {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-family: var(--font-sans);
	font-weight: 600;
	color: #234330;
	background-color: #F2F7F4;
	padding: 4px 12px;
	border-radius: 9999px;
	border: 1px solid #E1EDE5;
}

.flow-tag-staff {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-family: var(--font-sans);
	font-weight: 600;
	color: #524333;
	background-color: #FBF9F5;
	padding: 4px 12px;
	border-radius: 9999px;
	border: 1px solid #E6DAC8;
}

.flow-tag-mypage {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-family: var(--font-sans);
	font-weight: 600;
	color: #78350F;
	background-color: #FFFBEB;
	padding: 4px 12px;
	border-radius: 9999px;
	border: 1px solid #FDE68A;
}

.flow-card-title {
	font-size: 20px;
	font-weight: 700;
	color: #14271D;
	margin-bottom: 8px;
}

@media (min-width: 640px) {
	.flow-card-title {
		font-size: 24px;
	}
}

.flow-card-desc {
	font-size: 16px;
	color: #4B5563;
	line-height: 1.625;
	margin-bottom: 16px;
	text-align: left;
}

.flow-cycle-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background-color: rgba(236, 253, 245, 0.8);
	color: #14532D;
	font-size: 14px;
	padding: 6px 12px;
	border-radius: 8px;
	border: 1px solid rgba(167, 243, 208, 0.8);
	font-family: var(--font-sans);
	font-weight: 500;
	margin-bottom: 12px;
}

.flow-toggle-btn {
	font-size: 14px;
	font-family: var(--font-sans);
	font-weight: 500;
	color: #2D543C;
	background: transparent;
	border: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	transition: color 0.3s;
}

.flow-toggle-btn i {
	transition: transform 0.3s ease;
}

.flow-toggle-btn:hover {
	color: #1C3527;
}

/* アコーディオン開閉エリア */
.accordion-content {
	display: none;
}

.accordion-content-block {
	margin: 10px 0;
	line-height: 1.5;
}

/* 最下部スケジュールガイドカード */
.flow-schedule-card {
	margin-top: 64px;
	background: linear-gradient(to bottom right, #1C3527, #14271D);
	color: #FFFFFF;
	padding: 24px;
	border-radius: 24px;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
	font-family: var(--font-serif);
}

@media (min-width: 640px) {
	.flow-schedule-card {
		margin-top: 96px;
		padding: 40px;
	}
}

.flow-schedule-bg-icon {
	position: absolute;
	right: -72px;
	bottom: -72px;
	opacity: 0.1;
	pointer-events: none;
}

.flow-schedule-bg-icon img {
	width: 224px;
	height: auto;
}

.flow-schedule-content {
	position: relative;
	z-index: 10;
	max-width: 800px;
}

.flow-schedule-sub {
	font-size: 14px;
	font-family: var(--font-sans);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #C5DCCF;
	font-weight: 600;
}

.flow-schedule-title {
	font-size: 24px;
	font-weight: 700;
	margin-top: 4px;
	margin-bottom: 16px;
}

@media (min-width: 640px) {
	.flow-schedule-title {
		font-size: 30px;
	}
}

.flow-schedule-desc {
	font-size: 16px;
	color: #E1EDE5;
	line-height: 1.625;
	margin-bottom: 24px;
}

.flow-schedule-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	text-align: center;
	font-size: 14px;
	font-family: var(--font-sans);
	list-style: none;
	padding: 0;
	margin: 0;
}

@media (min-width: 640px) {
	.flow-schedule-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.flow-schedule-item {
	background-color: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(4px);
	padding: 12px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.flow-schedule-item.full-mobile {
	grid-column: span 2 / span 2;
}

@media (min-width: 640px) {
	.flow-schedule-item.full-mobile {
		grid-column: span 1 / span 1;
	}
}

/* ==================== 5. LOCATION SECTION (散骨地について) ==================== */

.location-section {
	padding-top: 64px;
	padding-bottom: 64px;
	position: relative;
	overflow: hidden;
	background-color: var(--color-sand);
	font-family: var(--font-serif);
	border-top: 1px solid #E6DAC8;
}

@media (min-width: 768px) {
	.location-section {
		padding-top: 96px;
		padding-bottom: 96px;
	}
}

.location-container {
	max-width: 1024px;
	margin: 0 auto;
	padding-left: 16px;
	padding-right: 16px;
	position: relative;
	z-index: 10;
}

@media (min-width: 640px) {
	.location-container {
		padding-left: 24px;
		padding-right: 24px;
	}
}

.location-header {
	text-align: center;
	max-width: 768px;
	margin: 0 auto 48px auto;
}

@media (min-width: 640px) {
	.location-header {
		margin-bottom: 64px;
	}
}

.location-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: #F4EFE6;
	color: #524333;
	padding: 6px 14px;
	border-radius: 9999px;
	font-size: 14px;
	font-family: var(--font-sans);
	font-weight: 500;
	margin-bottom: 16px;
}

@media (min-width: 640px) {
	.location-badge {
		font-size: 16px;
	}
}

.location-title {
	font-size: 30px;
	font-weight: 700;
	color: #14271D;
	letter-spacing: -0.025em;
	line-height: 1.25;
	margin-bottom: 24px;
}

@media (min-width: 640px) {
	.location-title {
		font-size: 48px;
	}
}

.location-lead-desc {
	color: #4B5563;
	line-height: 1.625;
	font-size: 16px;
}

@media (min-width: 640px) {
	.location-lead-desc {
		font-size: 18px;
	}
}

.location-reasons-grid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 24px;
	margin-bottom: 48px;
	font-family: var(--font-sans);
}

@media (min-width: 640px) {
	.location-reasons-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.location-reason-card {
	background-color: #F2F7F4;
	border-radius: 16px;
	padding: 24px;
	border: 1px solid #E1EDE5;
	text-align: center;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease;
}

.location-reason-card:hover .location-icon-circle {
	transform: scale(1.1);
}

.location-icon-circle {
	width: 48px;
	height: 48px;
	background-color: #FFFFFF;
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #2D543C;
	font-size: 24px;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	margin: 0 auto 16px auto;
	transition: transform 0.3s ease;
}

.location-card-title {
	font-weight: 700;
	color: #14271D;
	margin-bottom: 8px;
	font-size: 18px;
}

.location-card-desc {
	font-size: 16px;
	color: #4B5563;
	line-height: 1.625;
}

.location-body-text {
	font-size: 16px;
	color: #4B5563;
	line-height: 1.625;
	text-align: left;
	max-width: 768px;
	margin: 0 auto 40px auto;
}

@media (min-width: 640px) {
	.location-body-text {
		text-align: center;
	}
}

.location-cert-card {
	background: linear-gradient(to bottom right, #FBF9F5, #FFFFFF);
	padding: 24px;
	border-radius: 24px;
	border: 1px solid #E6DAC8;
	text-align: center;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	max-width: 672px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

@media (min-width: 640px) {
	.location-cert-card {
		padding: 32px;
	}
}

.location-cert-bg-icon {
	position: absolute;
	right: -24px;
	top: -24px;
	font-size: 72px;
	color: #F4EFE6;
	opacity: 0.5;
	pointer-events: none;
}

.location-cert-badge {
	display: inline-block;
	background-color: #8C765C;
	color: #FFFFFF;
	font-size: 16px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 9999px;
	margin-bottom: 16px;
	font-family: var(--font-sans);
}

.location-cert-title {
	font-size: 16px;
	font-weight: 700;
	color: #14271D;
	margin-bottom: 16px;
	line-height: 1.625;
}

@media (min-width: 640px) {
	.location-cert-title {
		font-size: 18px;
	}
}

.btn-cert-modal {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-family: var(--font-sans);
	font-weight: 500;
	color: #234330;
	background-color: #FFFFFF;
	border: 1px solid #C5DCCF;
	padding: 10px 20px;
	border-radius: 9999px;
	transition: all 0.3s;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	position: relative;
	z-index: 10;
	cursor: pointer;
}

@media (min-width: 640px) {
	.btn-cert-modal {
		font-size: 16px;
	}
}

.btn-cert-modal:hover {
	border-color: #429A42;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* ==================== 6. FAQ SECTION (よくある質問) ==================== */

.faq-section {
	padding-top: 64px;
	padding-bottom: 64px;
	background-color: #FFFFFF;
	border-top: 1px solid #F4EFE6;
	position: relative;
}

@media (min-width: 640px) {
	.faq-section {
		padding-top: 80px;
		padding-bottom: 80px;
	}
}

.faq-container {
	max-width: 1024px;
	margin: 0 auto;
	padding-left: 16px;
	padding-right: 16px;
	position: relative;
	z-index: 10;
}

@media (min-width: 640px) {
	.faq-container {
		padding-left: 24px;
		padding-right: 24px;
	}
}

.faq-header {
	text-align: center;
	margin-bottom: 40px;
	font-family: var(--font-serif);
}

.faq-main-title {
	font-size: 24px;
	font-weight: 700;
	color: #14271D;
}

@media (min-width: 640px) {
	.faq-main-title {
		font-size: 30px;
	}
}

.faq-sub-title {
	font-size: 16px;
	color: #6B7280;
	margin-top: 5px;
}

.faq-list-wrap {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 768px;
	margin: 0 auto;
	font-family: var(--font-sans);
}

.faq-card-item {
	background-color: #FFFFFF;
	border-radius: 12px;
	border: 1px solid #E6DAC8;
	overflow: hidden;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.faq-question-btn {
	width: 100%;
	padding: 16px;
	text-align: left;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	color: #14271D;
	transition: background-color 0.2s;
}

@media (min-width: 640px) {
	.faq-question-btn {
		padding: 20px;
		font-size: 18px;
	}
}

.faq-question-btn:focus {
	outline: none;
}

.faq-q-text {
	display: flex;
	align-items: center;
}

.faq-q-prefix {
	font-size: 20px;
	font-weight: 700;
	color: #2D543C;
	margin-right: 12px;
}

.faq-toggle-icon {
	color: #9CA3AF;
	transition: transform 0.3s ease;
}

.faq-answer-box {
	display: none;
	padding: 16px;
	background-color: rgba(247, 245, 240, 0.5);
	border-top: 1px solid #F4EFE6;
	font-size: 16px;
	color: #374151;
	line-height: 1.625;
}

@media (min-width: 640px) {
	.faq-answer-box {
		padding: 20px;
	}
}

.faq-more-wrap {
	margin-top: 32px;
	text-align: center;
}

@media (min-width: 640px) {
	.faq-more-wrap {
		margin-top: 40px;
	}
}

.btn-faq-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 240px;
	padding: 14px 28px;
	background-color: #FFFFFF;
	color: #234330;
	border: 1px solid #C5DCCF;
	border-radius: 9999px;
	font-size: 15px;
	font-weight: 600;
	font-family: var(--font-sans);
	text-decoration: none;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
	transition: var(--transition-default);
}

@media (min-width: 640px) {
	.btn-faq-more {
		min-width: 280px;
		padding: 16px 36px;
		font-size: 16px;
	}
}

.btn-faq-more:hover {
	background-color: #429A42;
	color: #FFFFFF;
	border-color: #429A42;
	box-shadow: 0 4px 12px rgba(66, 154, 66, 0.25);
	transform: translateY(-2px);
}

.btn-faq-more i {
	font-size: 14px;
	transition: transform 0.3s ease;
}

.btn-faq-more:hover i {
	transform: translateX(4px);
}

/* ==================== 7. CTA SECTION (最下部問い合わせ) ==================== */

.cta-section {
	padding-top: 64px;
	padding-bottom: 64px;
	background-color: var(--color-sand);
	border-top: 1px solid #E6DAC8;
}

@media (min-width: 640px) {
	.cta-section {
		padding-top: 80px;
		padding-bottom: 80px;
	}
}

.cta-container {
	max-width: 1024px;
	margin: 0 auto;
	padding-left: 16px;
	padding-right: 16px;
	position: relative;
	z-index: 10;
	text-align: center;
	font-family: var(--font-serif);
}

@media (min-width: 640px) {
	.cta-container {
		padding-left: 24px;
		padding-right: 24px;
	}
}

.cta-card-box {
	background-color: rgba(244, 239, 230, 0.7);
	border: 1px solid #E6DAC8;
	padding: 32px;
	border-radius: 24px;
	max-width: 672px;
	margin: 0 auto;
}

@media (min-width: 640px) {
	.cta-card-box {
		padding: 40px;
	}
}

.cta-title {
	font-size: 20px;
	font-weight: 700;
	color: #14271D;
	margin-bottom: 8px;
}

@media (min-width: 640px) {
	.cta-title {
		font-size: 30px;
	}
}

.cta-desc {
	font-size: 16px;
	color: #4B5563;
	margin-bottom: 24px;
	line-height: 1.625;
}

.cta-buttons-wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 16px;
}

@media (min-width: 640px) {
	.cta-buttons-wrap {
		flex-direction: row;
	}
}

.btn-cta-online {
	background-color: #2D543C;
	color: #FFFFFF;
	font-family: var(--font-sans);
	font-weight: 500;
	padding: 14px 32px;
	border-radius: 9999px;
	font-size: 16px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	border: none;
	cursor: pointer;
	transition: background-color 0.2s, transform 0.1s;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.btn-cta-online:hover {
	background-color: #1C3527;
	color: #FFFFFF;
	text-decoration: none;
}

.btn-cta-online:active {
	transform: scale(0.95);
}

.btn-cta-line {
	background-color: #06C755;
	color: #FFFFFF;
	font-family: var(--font-sans);
	font-weight: 500;
	padding: 14px 32px;
	border-radius: 9999px;
	font-size: 16px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	border: none;
	cursor: pointer;
	transition: background-color 0.2s, transform 0.1s;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.btn-cta-line:hover {
	background-color: #05B24C;
	color: #FFFFFF;
	text-decoration: none;
}

.btn-cta-line:active {
	transform: scale(0.95);
}