/**
 * SOA Theme — 運用・改善レポートページ専用 CSS
 * v1.9.207
 *
 * コンセプト：「経営者の毎月 5 分を、最も価値ある 5 分にする」
 * デザイン：実物のレポートが「めくれる」体験
 * トンマナ：既存サイト統一（明朝体・朱・金茶・ネイビー・クリーム）
 */

/* ===========================================
 * カラー変数（v1.9.213 紺 × 金のブランド統一）
 * SOA 設定からの動的上書きに対応
 * =========================================== */
.rep-page {
	--rep-bg: #fdfaf3;
	--rep-bg-soft: #f5efe2;
	--rep-bg-dark: #0a1628;
	--rep-text: #1a2332;
	--rep-text-2: #4a5568;
	--rep-text-3: #8c8f93;
	--rep-text-light: #c7c9cc;
	--rep-gold: #b89968;
	--rep-gold-deep: #957a4f;
	--rep-gold-light: #d4c4a0;
	--rep-navy: #0a1628;
	--rep-navy-light: #1a2640;
	--rep-accent: var(--rep-gold);
	--rep-accent-deep: var(--rep-gold-deep);
	--rep-line: rgba(184, 153, 104, 0.22);
	--rep-line-strong: rgba(184, 153, 104, 0.5);

	background: var(--rep-bg);
	color: var(--rep-text);
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	letter-spacing: 0.02em;
	overflow-x: hidden;
}

/* 旧朱色変数を金色にエイリアス（後方互換性） */
.rep-page {
	--rep-vermilion: var(--rep-gold);
	--rep-vermilion-deep: var(--rep-gold-deep);
}

.rep-container {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 32px;
}

@media (max-width: 768px) {
	.rep-container { padding: 0 20px; }
}

/* ===========================================
 * スクロール進捗バー
 * =========================================== */
.rep-scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	z-index: 9999;
	background: rgba(168, 149, 114, 0.1);
	pointer-events: none;
}
.rep-scroll-progress__bar {
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, var(--rep-vermilion), var(--rep-gold));
	transition: width 0.1s linear;
	box-shadow: 0 0 8px rgba(184, 153, 104, 0.4);
}

/* ===========================================
 * セクション共通
 * =========================================== */
.rep-section {
	padding: 140px 0;
	position: relative;
}

@media (max-width: 768px) {
	.rep-section { padding: 80px 0; }
}

.rep-section__eyebrow {
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 11px;
	letter-spacing: 0.3em;
	color: var(--rep-vermilion);
	font-weight: 500;
	text-transform: uppercase;
	margin: 0 0 24px;
}

.rep-section__title {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 400;
	line-height: 1.5;
	color: var(--rep-text);
	margin: 0 0 24px;
	letter-spacing: 0.02em;
}

.rep-section__lead {
	font-size: 16px;
	line-height: 2;
	color: var(--rep-text-2);
	max-width: 720px;
	margin: 0 0 80px;
}

/* スクロール reveal */
[data-rep-reveal] {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-rep-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ===========================================
 * 1. HERO — 動くレポートビジュアル
 * =========================================== */
.rep-hero {
	position: relative;
	min-height: 90vh;
	display: flex;
	align-items: center;
	background: var(--rep-bg-dark);
	color: #fff;
	padding: 120px 0 100px;
	overflow: hidden;
}

.rep-hero__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(168, 149, 114, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(168, 149, 114, 0.06) 1px, transparent 1px);
	background-size: 80px 80px;
	pointer-events: none;
	mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
	-webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
}

.rep-hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 80px;
	align-items: center;
}

@media (max-width: 900px) {
	.rep-hero__inner {
		grid-template-columns: 1fr;
		gap: 60px;
	}
}

/* HERO 左：テキスト */
.rep-hero__eyebrow {
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 11px;
	letter-spacing: 0.35em;
	color: var(--rep-gold);
	font-weight: 500;
	text-transform: uppercase;
	margin: 0 0 40px;
	opacity: 0;
	animation: rep-fade-in 1s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.rep-hero__title {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: clamp(34px, 5vw, 58px);
	font-weight: 400;
	line-height: 1.45;
	margin: 0 0 40px;
	letter-spacing: 0.03em;
}

.rep-hero__title-line {
	display: block;
	color: #fff;
	opacity: 0;
	transform: translateY(24px);
	animation: rep-fade-in 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.rep-hero__title-line:nth-child(1) { animation-delay: 0.3s; }
.rep-hero__title-line:nth-child(2) { animation-delay: 0.55s; }
.rep-hero__title-line--accent { color: var(--rep-gold); }

.rep-hero__lead {
	font-size: 18px;
	line-height: 2;
	color: var(--rep-text-light);
	max-width: 540px;
	margin: 0;
	font-weight: 300;
	opacity: 0;
	animation: rep-fade-in 1s cubic-bezier(0.22, 1, 0.36, 1) 0.85s forwards;
}

@keyframes rep-fade-in {
	to { opacity: 1; transform: translateY(0); }
}

/* HERO 右：動くレポートビジュアル */
.rep-hero__visual {
	position: relative;
	height: 420px;
	perspective: 1200px;
	opacity: 0;
	transform: translateY(24px);
	animation: rep-fade-in 1.2s cubic-bezier(0.22, 1, 0.36, 1) 1.1s forwards;
}

@media (max-width: 900px) {
	.rep-hero__visual { height: 360px; }
}

.rep-hero__paper {
	position: absolute;
	background: #fdfaf3;
	color: var(--rep-text);
	padding: 28px 32px;
	box-shadow:
		0 30px 60px rgba(0, 0, 0, 0.4),
		0 0 0 1px rgba(168, 149, 114, 0.4);
	width: 88%;
	height: 86%;
	top: 7%;
	left: 6%;
	transform: rotateX(8deg) rotateY(-6deg);
	transform-origin: center center;
	display: flex;
	flex-direction: column;
	border-top: 3px solid var(--rep-vermilion);
}

/* 後ろの紙 */
.rep-hero__paper--back {
	background: #f0e9d8;
	transform: rotateX(8deg) rotateY(-6deg) translateZ(-30px) translate(15px, 18px);
	z-index: -1;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	padding: 0;
	border-top-color: rgba(168, 149, 114, 0.4);
}

.rep-hero__paper--back2 {
	background: #e6dcc4;
	transform: rotateX(8deg) rotateY(-6deg) translateZ(-60px) translate(30px, 36px);
	z-index: -2;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
	padding: 0;
	border-top-color: rgba(168, 149, 114, 0.3);
	opacity: 0.7;
}

.rep-hero__paper-header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--rep-line);
	margin-bottom: 24px;
}

.rep-hero__paper-label {
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 10px;
	letter-spacing: 0.3em;
	color: var(--rep-vermilion);
	font-weight: 500;
}

.rep-hero__paper-date {
	font-family: 'Inter', -apple-system, monospace;
	font-size: 11px;
	color: var(--rep-text-3);
	letter-spacing: 0.1em;
}

.rep-hero__paper-stat {
	display: flex;
	flex-direction: column;
	margin-bottom: 28px;
}

.rep-hero__paper-stat-label {
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 10px;
	letter-spacing: 0.25em;
	color: var(--rep-text-3);
	text-transform: uppercase;
	margin-bottom: 6px;
}

.rep-hero__paper-stat-value {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: clamp(34px, 4vw, 48px);
	color: var(--rep-vermilion);
	line-height: 1;
	font-weight: 400;
	letter-spacing: 0.02em;
}

.rep-hero__paper-stat-unit {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: 14px;
	color: var(--rep-text-2);
	margin-top: 4px;
}

.rep-hero__paper-chart {
	display: flex;
	gap: 8px;
	align-items: flex-end;
	height: 80px;
	margin-bottom: 20px;
}

.rep-hero__paper-bar {
	flex: 1;
	height: var(--bar-height, 30%);
	background: var(--rep-gold);
	opacity: 0.6;
	transition: height 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.rep-hero__paper-bar--accent {
	background: var(--rep-vermilion);
	opacity: 1;
}

.rep-hero__paper-lines {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-top: auto;
}

.rep-hero__paper-line {
	height: 4px;
	background: var(--rep-line);
	width: 100%;
}
.rep-hero__paper-line--short {
	width: 60%;
}

/* ===========================================
 * 2. PROBLEM — 経営者の本音
 * =========================================== */
.rep-problem {
	background: var(--rep-bg);
}

.rep-problem__quotes {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin-top: 40px;
}

@media (max-width: 900px) {
	.rep-problem__quotes { grid-template-columns: 1fr; gap: 24px; }
}

.rep-problem__quote {
	padding: 40px 32px;
	background: #fff;
	border: 1px solid var(--rep-line);
	position: relative;
	transition: border-color 0.3s ease, transform 0.3s ease;
}

.rep-problem__quote:hover {
	border-color: var(--rep-gold);
	transform: translateY(-4px);
}

.rep-problem__quote-mark {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: 56px;
	color: var(--rep-gold);
	margin: 0 0 8px;
	line-height: 0.5;
	opacity: 0.5;
}

.rep-problem__quote-text {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: 17px;
	line-height: 1.85;
	color: var(--rep-text);
	margin: 0 0 24px;
	letter-spacing: 0.03em;
}

.rep-problem__quote-who {
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 11px;
	color: var(--rep-text-3);
	letter-spacing: 0.15em;
	margin: 0;
	padding-top: 16px;
	border-top: 1px solid var(--rep-line);
}

/* ===========================================
 * 3. SOLUTION — 我々は翻訳する
 * =========================================== */
.rep-solution {
	background: var(--rep-bg-soft);
}

.rep-principles {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-top: 40px;
}

@media (max-width: 900px) {
	.rep-principles { grid-template-columns: 1fr; gap: 32px; }
}

.rep-principle {
	padding: 48px 36px;
	background: #fff;
	border-top: 2px solid var(--rep-gold);
}

.rep-principle__no {
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 11px;
	color: var(--rep-vermilion);
	letter-spacing: 0.2em;
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--rep-line);
	font-weight: 500;
}

.rep-principle__title {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: 22px;
	font-weight: 400;
	color: var(--rep-text);
	margin: 0 0 16px;
	letter-spacing: 0.03em;
}

.rep-principle__desc {
	font-size: 14px;
	line-height: 2;
	color: var(--rep-text-2);
	margin: 0;
}

/* ===========================================
 * 4. ★ SAMPLE — 実物のレポートをめくる演出
 * =========================================== */
.rep-sample {
	background: var(--rep-bg);
}

.rep-sample__stage {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 48px;
	margin-top: 40px;
	align-items: start;
}

@media (max-width: 900px) {
	.rep-sample__stage {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

/* レポートページのスタック */
.rep-sample__pages {
	position: relative;
	background: #fff;
	border: 1px solid var(--rep-line);
	box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.15);
	min-height: 560px;
	overflow: hidden;
}

.rep-sample__page {
	position: absolute;
	inset: 0;
	padding: 48px 56px;
	display: flex;
	flex-direction: column;
	background: #fff;
	border-top: 3px solid var(--rep-vermilion);
	opacity: 0;
	transform: translateX(40px);
	transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
	pointer-events: none;
}

.rep-sample__page.is-active {
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
	z-index: 2;
}

@media (max-width: 600px) {
	.rep-sample__page { padding: 32px 24px; }
	.rep-sample__pages { min-height: 480px; }
}

.rep-sample__page-header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--rep-line);
	margin-bottom: 28px;
}

.rep-sample__page-num {
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 11px;
	letter-spacing: 0.3em;
	color: var(--rep-vermilion);
	font-weight: 500;
}

.rep-sample__page-date {
	font-family: 'Inter', -apple-system, monospace;
	font-size: 11px;
	color: var(--rep-text-3);
	letter-spacing: 0.1em;
}

.rep-sample__page-h {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: clamp(22px, 2.6vw, 28px);
	font-weight: 400;
	color: var(--rep-text);
	margin: 0 0 32px;
	letter-spacing: 0.03em;
}

.rep-sample__page-body {
	flex: 1;
}

/* PAGE 01: サマリー */
.rep-sample__page-key {
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 11px;
	letter-spacing: 0.25em;
	color: var(--rep-text-3);
	text-transform: uppercase;
	margin: 0 0 20px;
	font-weight: 500;
}

.rep-sample__page-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.rep-sample__page-list li {
	padding: 16px 0;
	border-bottom: 1px solid var(--rep-line);
	font-size: 15px;
	line-height: 1.8;
	color: var(--rep-text);
	position: relative;
	padding-left: 28px;
}

.rep-sample__page-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 26px;
	width: 16px;
	height: 1px;
	background: var(--rep-vermilion);
}

/* PAGE 02: 財務インパクト */
.rep-sample__page-impact {
	display: flex;
	flex-direction: column;
}

.rep-sample__page-impact-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 20px 0;
	border-bottom: 1px solid var(--rep-line);
}

.rep-sample__page-impact-label {
	font-size: 14px;
	color: var(--rep-text-2);
	letter-spacing: 0.03em;
}

.rep-sample__page-impact-value {
	font-family: 'Inter', -apple-system, monospace;
	font-size: 22px;
	color: var(--rep-text);
	font-weight: 500;
	letter-spacing: 0.02em;
}

.rep-sample__page-impact-row--positive .rep-sample__page-impact-value {
	color: var(--rep-vermilion);
}

.rep-sample__page-impact-row--total {
	border-top: 2px solid var(--rep-text);
	border-bottom: 0;
	padding-top: 28px;
	margin-top: 12px;
}

.rep-sample__page-impact-row--total .rep-sample__page-impact-label {
	font-weight: 500;
	color: var(--rep-text);
}

.rep-sample__page-impact-row--total .rep-sample__page-impact-value {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: 32px;
	color: var(--rep-vermilion);
}

/* PAGE 03: 媒体別チャート */
.rep-sample__page-chart {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.rep-sample__page-chart-row {
	display: grid;
	grid-template-columns: 80px 1fr 60px;
	align-items: center;
	gap: 16px;
}

.rep-sample__page-chart-label {
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 12px;
	color: var(--rep-text-2);
	letter-spacing: 0.1em;
	font-weight: 500;
}

.rep-sample__page-chart-bar {
	height: 10px;
	background: rgba(168, 149, 114, 0.1);
	overflow: hidden;
}

.rep-sample__page-chart-bar span {
	display: block;
	height: 100%;
	background: linear-gradient(90deg, var(--rep-gold), var(--rep-vermilion));
	transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.rep-sample__page-chart-val {
	font-family: 'Inter', -apple-system, monospace;
	font-size: 13px;
	color: var(--rep-text);
	text-align: right;
	font-weight: 500;
}

/* PAGE 04: アクション */
.rep-sample__page-actions {
	list-style: none;
	padding: 0;
	margin: 0;
}

.rep-sample__page-actions li {
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 20px;
	align-items: center;
	padding: 18px 0;
	border-bottom: 1px solid var(--rep-line);
}

.rep-sample__page-action-pri {
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 10px;
	letter-spacing: 0.15em;
	padding: 6px 10px;
	background: var(--rep-bg-soft);
	color: var(--rep-text-2);
	text-align: center;
	font-weight: 500;
}

.rep-sample__page-actions li:nth-child(1) .rep-sample__page-action-pri {
	background: rgba(184, 153, 104, 0.12);
	color: var(--rep-vermilion);
}
.rep-sample__page-actions li:nth-child(2) .rep-sample__page-action-pri {
	background: rgba(168, 149, 114, 0.15);
	color: var(--rep-gold-deep);
}

.rep-sample__page-action-text {
	font-size: 15px;
	color: var(--rep-text);
	line-height: 1.7;
}

/* PAGE 05: 詳細データ */
.rep-sample__page-detail {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.rep-sample__page-detail-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 0;
	border-top: 1px solid var(--rep-line);
	border-left: 1px solid var(--rep-line);
}

.rep-sample__page-detail-grid > span {
	padding: 14px 12px;
	border-right: 1px solid var(--rep-line);
	border-bottom: 1px solid var(--rep-line);
	font-size: 13px;
}

.rep-sample__page-detail-grid > span:nth-child(odd) {
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 11px;
	letter-spacing: 0.1em;
	color: var(--rep-text-3);
	font-weight: 500;
	background: var(--rep-bg-soft);
}

.rep-sample__page-detail-grid > span:nth-child(even) {
	font-family: 'Inter', -apple-system, monospace;
	color: var(--rep-text);
	font-weight: 500;
}

.rep-sample__page-detail-note {
	font-size: 11px;
	color: var(--rep-text-3);
	font-style: italic;
	margin: 0;
	text-align: right;
}

@media (max-width: 600px) {
	.rep-sample__page-detail-grid {
		grid-template-columns: 1fr 1fr;
	}
}

/* ページ切替ナビ */
.rep-sample__nav {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

@media (max-width: 900px) {
	.rep-sample__nav {
		flex-direction: row;
		overflow-x: auto;
		gap: 8px;
		padding-bottom: 8px;
	}
}

.rep-sample__nav-btn {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 20px;
	background: #fff;
	border: 1px solid var(--rep-line);
	cursor: pointer;
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	text-align: left;
	transition: border-color 0.25s ease, background 0.25s ease;
	width: 100%;
	flex-shrink: 0;
}

@media (max-width: 900px) {
	.rep-sample__nav-btn { min-width: 200px; }
}

.rep-sample__nav-btn:hover {
	border-color: var(--rep-gold);
}

.rep-sample__nav-btn.is-active {
	background: var(--rep-text);
	border-color: var(--rep-text);
}

.rep-sample__nav-btn.is-active .rep-sample__nav-num {
	color: var(--rep-gold);
}

.rep-sample__nav-btn.is-active .rep-sample__nav-label {
	color: #fff;
}

.rep-sample__nav-num {
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 11px;
	letter-spacing: 0.2em;
	color: var(--rep-vermilion);
	font-weight: 500;
	flex-shrink: 0;
	transition: color 0.25s ease;
}

.rep-sample__nav-label {
	font-size: 13px;
	color: var(--rep-text);
	letter-spacing: 0.04em;
	transition: color 0.25s ease;
}

/* ===========================================
 * 5. DELIVERY — 月初に届く 1 通
 * =========================================== */
.rep-delivery {
	background: var(--rep-bg-soft);
}

.rep-delivery__channels {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin-top: 40px;
}

@media (max-width: 900px) {
	.rep-delivery__channels { grid-template-columns: 1fr; gap: 24px; }
}

.rep-delivery__channel {
	padding: 40px 32px;
	background: #fff;
	border: 1px solid var(--rep-line);
	text-align: left;
	transition: border-color 0.3s ease, transform 0.3s ease;
}

.rep-delivery__channel:hover {
	border-color: var(--rep-gold);
	transform: translateY(-4px);
}

.rep-delivery__channel-icon {
	width: 48px;
	height: 48px;
	color: var(--rep-vermilion);
	margin-bottom: 24px;
}

.rep-delivery__channel-icon svg {
	width: 100%;
	height: 100%;
}

.rep-delivery__channel-title {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: 20px;
	font-weight: 400;
	color: var(--rep-text);
	margin: 0 0 12px;
	letter-spacing: 0.04em;
}

.rep-delivery__channel-desc {
	font-size: 14px;
	line-height: 1.95;
	color: var(--rep-text-2);
	margin: 0;
}

/* ===========================================
 * 6. SCOPE — データソース
 * =========================================== */
.rep-scope {
	background: var(--rep-bg);
}

.rep-scope__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px;
	margin-top: 40px;
}

@media (max-width: 900px) {
	.rep-scope__grid { grid-template-columns: 1fr; gap: 32px; }
}

.rep-scope__category {
	padding: 32px;
	background: var(--rep-bg-soft);
	border-left: 2px solid var(--rep-gold);
}

.rep-scope__category-label {
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 11px;
	letter-spacing: 0.25em;
	color: var(--rep-vermilion);
	text-transform: uppercase;
	margin: 0 0 20px;
	font-weight: 500;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--rep-line);
}

.rep-scope__list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.rep-scope__list li {
	padding: 10px 0;
	font-size: 14px;
	color: var(--rep-text);
	border-bottom: 1px solid rgba(168, 149, 114, 0.15);
}
.rep-scope__list li:last-child {
	border-bottom: 0;
}

/* ===========================================
 * 7. PROCESS — 初月の流れ
 * =========================================== */
.rep-process {
	background: var(--rep-bg-dark);
	color: #fff;
}

.rep-process .rep-section__eyebrow { color: var(--rep-gold); }
.rep-process .rep-section__title { color: #fff; }

.rep-process__timeline {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 60px;
	position: relative;
}

.rep-process__timeline::before {
	content: '';
	position: absolute;
	top: 14px;
	left: 12px;
	right: 12px;
	height: 1px;
	background: rgba(168, 149, 114, 0.3);
	z-index: 0;
}

@media (max-width: 768px) {
	.rep-process__timeline {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.rep-process__timeline::before {
		top: 12px;
		bottom: 12px;
		left: 14px;
		right: auto;
		width: 1px;
		height: auto;
	}
}

.rep-process__step {
	padding-top: 32px;
	position: relative;
	z-index: 1;
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.rep-process__step::before {
	content: '';
	position: absolute;
	top: 8px;
	left: 0;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: var(--rep-bg-dark);
	border: 2px solid var(--rep-gold);
	transition: background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

@media (max-width: 768px) {
	.rep-process__step {
		padding-top: 0;
		padding-left: 40px;
	}
	.rep-process__step::before {
		top: 6px;
		left: 8px;
	}
}

.rep-process__step.is-active::before {
	background: var(--rep-vermilion);
	transform: scale(1.2);
	box-shadow: 0 0 0 4px rgba(168, 149, 114, 0.2);
}

.rep-process__step-week {
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 11px;
	letter-spacing: 0.25em;
	color: var(--rep-vermilion);
	font-weight: 500;
	margin-bottom: 12px;
}

.rep-process__step-title {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: 20px;
	font-weight: 400;
	color: #fff;
	margin: 0 0 12px;
	letter-spacing: 0.04em;
}

.rep-process__step-desc {
	font-size: 14px;
	line-height: 1.9;
	color: var(--rep-text-light);
	margin: 0;
}

/* ===========================================
 * 8. CTA — 最初の 1 通を、無料で
 * =========================================== */
.rep-cta {
	background: var(--rep-bg);
	text-align: center;
	padding: 160px 0;
}

@media (max-width: 768px) {
	.rep-cta { padding: 100px 0; }
}

.rep-cta__eyebrow {
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 11px;
	letter-spacing: 0.35em;
	color: var(--rep-vermilion);
	font-weight: 500;
	text-transform: uppercase;
	margin: 0 0 32px;
}

.rep-cta__title {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: clamp(28px, 4.5vw, 48px);
	font-weight: 400;
	line-height: 1.5;
	color: var(--rep-text);
	margin: 0 0 32px;
	letter-spacing: 0.03em;
}

.rep-cta__lead {
	font-size: 16px;
	line-height: 2;
	color: var(--rep-text-2);
	max-width: 560px;
	margin: 0 auto 56px;
}

.rep-cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	padding: 20px 56px;
	background: var(--rep-text);
	color: #fff;
	text-decoration: none;
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: 16px;
	letter-spacing: 0.15em;
	transition: background 0.25s ease, transform 0.12s ease, border-color 0.25s ease;
	border: 1px solid var(--rep-text);
	position: relative;
	overflow: hidden;
}

.rep-cta__btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(184, 153, 104, 0.3), transparent);
	transition: left 0.6s ease;
}

.rep-cta__btn:hover {
	background: var(--rep-vermilion);
	border-color: var(--rep-vermilion);
}
.rep-cta__btn:hover::before {
	left: 100%;
}
.rep-cta__btn:active {
	transform: scale(0.98);
}

.rep-cta__btn-arrow {
	font-family: 'Inter', -apple-system, sans-serif;
	font-weight: 200;
	transition: transform 0.25s ease;
}
.rep-cta__btn:hover .rep-cta__btn-arrow {
	transform: translateX(4px);
}

/* ===========================================
 * アクセシビリティ
 * =========================================== */
@media (prefers-reduced-motion: reduce) {
	.rep-hero__eyebrow,
	.rep-hero__title-line,
	.rep-hero__lead,
	.rep-hero__visual,
	[data-rep-reveal] {
		opacity: 1 !important;
		transform: none !important;
		animation: none !important;
	}
}


/* ===========================================
 * ★ 伴走の 3 セクション（v1.9.207）
 * =========================================== */

/* narrow container（思想セクション用）*/
.rep-container--narrow {
	max-width: 760px;
}

/* ============================
 * 1. COMPANION — 伴走の現場
 * ============================ */
.rep-companion {
	background: var(--rep-bg-soft);
	position: relative;
}

.rep-companion__story {
	max-width: 820px;
	margin: 40px auto 0;
	padding: 64px 56px;
	background: #fff;
	position: relative;
	border-left: 3px solid var(--rep-vermilion);
	box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
	.rep-companion__story { padding: 40px 28px; }
}

.rep-companion__story-meta {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding-bottom: 24px;
	margin-bottom: 32px;
	border-bottom: 1px solid var(--rep-line);
	flex-wrap: wrap;
	gap: 8px;
}

.rep-companion__story-time {
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 11px;
	letter-spacing: 0.25em;
	color: var(--rep-vermilion);
	font-weight: 500;
	text-transform: uppercase;
}

.rep-companion__story-tag {
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 11px;
	color: var(--rep-text-3);
	letter-spacing: 0.1em;
}

.rep-companion__story-opener {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: 16px;
	color: var(--rep-text-2);
	margin: 0 0 24px;
	line-height: 1.9;
	letter-spacing: 0.04em;
}

.rep-companion__story-quote,
.rep-companion__story-closer {
	margin: 0 0 32px;
	padding: 24px 28px;
	background: var(--rep-bg-soft);
	border-left: 2px solid var(--rep-gold);
	border-right: 0;
	border-top: 0;
	border-bottom: 0;
}

.rep-companion__story-quote p,
.rep-companion__story-closer p {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: clamp(17px, 2.2vw, 22px);
	line-height: 1.85;
	color: var(--rep-text);
	margin: 0;
	letter-spacing: 0.03em;
}

.rep-companion__story-closer {
	border-left-color: var(--rep-vermilion);
	background: rgba(184, 153, 104, 0.04);
}

.rep-companion__story-closer cite {
	display: block;
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 12px;
	color: var(--rep-text-3);
	letter-spacing: 0.1em;
	margin-top: 16px;
	font-style: normal;
}

.rep-companion__story-narrative {
	margin: 0 0 32px;
}

.rep-companion__story-narrative p {
	font-size: 15px;
	line-height: 2.1;
	color: var(--rep-text-2);
	margin: 0 0 20px;
	letter-spacing: 0.04em;
}

.rep-companion__story-narrative p:last-child { margin-bottom: 0; }

/* 伴走の数字 */
.rep-companion__metrics {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	max-width: 820px;
	margin: 80px auto 0;
	padding-top: 64px;
	border-top: 1px solid var(--rep-line);
}

@media (max-width: 768px) {
	.rep-companion__metrics {
		grid-template-columns: 1fr;
		gap: 32px;
		padding-top: 48px;
	}
}

.rep-companion__metric {
	text-align: center;
}

.rep-companion__metric-value {
	display: block;
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: clamp(34px, 4.5vw, 52px);
	color: var(--rep-vermilion);
	font-weight: 400;
	line-height: 1;
	margin-bottom: 14px;
	letter-spacing: 0.02em;
}

.rep-companion__metric-label {
	display: block;
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 11px;
	letter-spacing: 0.2em;
	color: var(--rep-text-2);
	font-weight: 500;
	text-transform: uppercase;
}

/* ============================
 * 2. BACKSTAGE — 舞台裏の 1 週間
 * ============================ */
.rep-backstage {
	background: var(--rep-bg);
}

.rep-backstage__days {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-top: 40px;
	position: relative;
}

.rep-backstage__day {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 48px;
	padding: 40px 0;
	border-bottom: 1px solid var(--rep-line);
	align-items: start;
	transition: padding 0.3s ease;
}

.rep-backstage__day:first-child { padding-top: 0; }
.rep-backstage__day:last-child { border-bottom: 0; }

@media (max-width: 768px) {
	.rep-backstage__day {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 32px 0;
	}
}

.rep-backstage__day-head {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding-top: 4px;
}

.rep-backstage__day-label {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: 24px;
	color: var(--rep-vermilion);
	font-weight: 400;
	letter-spacing: 0.04em;
}

.rep-backstage__day-time {
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 11px;
	letter-spacing: 0.15em;
	color: var(--rep-text-3);
	font-weight: 500;
}

.rep-backstage__day-title {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: 22px;
	font-weight: 400;
	color: var(--rep-text);
	margin: 0 0 16px;
	letter-spacing: 0.04em;
}

.rep-backstage__day-desc {
	font-size: 15px;
	line-height: 2;
	color: var(--rep-text-2);
	margin: 0;
	max-width: 640px;
}

.rep-backstage__footer {
	margin: 64px auto 0;
	padding: 28px 36px;
	background: var(--rep-bg-soft);
	border-left: 3px solid var(--rep-gold);
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: 17px;
	line-height: 1.9;
	color: var(--rep-text);
	letter-spacing: 0.03em;
	max-width: 720px;
	text-align: left;
}

/* ============================
 * 3. PHILOSOPHY — 私たちが大切にしていること
 * ============================ */
.rep-philosophy {
	background: var(--rep-bg-dark);
	color: #fff;
}

.rep-philosophy .rep-section__eyebrow { color: var(--rep-gold); }
.rep-philosophy .rep-section__title {
	color: #fff;
	text-align: center;
	margin-bottom: 56px;
}
.rep-philosophy .rep-container--narrow {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.rep-philosophy .rep-section__eyebrow {
	text-align: center;
	width: 100%;
}

.rep-philosophy__essay {
	max-width: 680px;
	margin: 0;
}

.rep-philosophy__essay p {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: clamp(16px, 2vw, 18px);
	line-height: 2.2;
	color: var(--rep-text-light);
	margin: 0 0 32px;
	letter-spacing: 0.06em;
}

.rep-philosophy__essay-conclusion {
	font-size: clamp(18px, 2.4vw, 22px) !important;
	color: var(--rep-gold) !important;
	font-weight: 400;
	padding-top: 24px;
	margin-top: 16px !important;
	border-top: 1px solid rgba(168, 149, 114, 0.3);
	letter-spacing: 0.08em !important;
	line-height: 1.9 !important;
}

.rep-philosophy__signature {
	margin-top: 64px;
	padding-top: 40px;
	border-top: 1px solid rgba(168, 149, 114, 0.2);
	width: 100%;
	max-width: 680px;
	text-align: right;
}

.rep-philosophy__signature-name {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: 20px;
	color: #fff;
	margin: 0 0 6px;
	letter-spacing: 0.1em;
	font-weight: 400;
}

.rep-philosophy__signature-role {
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 11px;
	color: var(--rep-text-3);
	letter-spacing: 0.15em;
	margin: 0;
	font-weight: 500;
}


/* ===========================================
 * ★ ORIGIN — 1000 社の経営者と向き合った先に
 * v1.9.208: 歴史的な深みを表現するセクション
 * =========================================== */
.rep-origin {
	background: var(--rep-bg-soft);
	position: relative;
}

/* スケール統計（数字で見る蓄積） */
.rep-origin__scale {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	max-width: 920px;
	margin: 40px auto 96px;
	padding: 64px 56px;
	background: #fff;
	border-top: 3px solid var(--rep-vermilion);
	box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
	.rep-origin__scale {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 48px 32px;
		margin: 32px 0 64px;
	}
}

.rep-origin__scale-item {
	text-align: center;
	padding: 0 12px;
	border-right: 1px solid var(--rep-line);
}
.rep-origin__scale-item:last-child {
	border-right: 0;
}

@media (max-width: 768px) {
	.rep-origin__scale-item {
		border-right: 0;
		border-bottom: 1px solid var(--rep-line);
		padding: 0 0 32px;
	}
	.rep-origin__scale-item:last-child {
		border-bottom: 0;
		padding-bottom: 0;
	}
}

.rep-origin__scale-num {
	display: block;
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: clamp(40px, 5.5vw, 64px);
	color: var(--rep-vermilion);
	font-weight: 400;
	line-height: 1;
	margin-bottom: 16px;
	letter-spacing: 0.02em;
}

.rep-origin__scale-label {
	display: block;
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 11px;
	letter-spacing: 0.25em;
	color: var(--rep-text-2);
	font-weight: 500;
	text-transform: uppercase;
	padding-top: 16px;
	border-top: 1px solid var(--rep-line);
}

/* 物語（4 つの章） */
.rep-origin__story {
	max-width: 820px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.rep-origin__chapter {
	padding: 48px 0;
	border-bottom: 1px solid var(--rep-line);
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 32px;
	align-items: start;
}

.rep-origin__chapter:first-child { padding-top: 0; }
.rep-origin__chapter:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

@media (max-width: 768px) {
	.rep-origin__chapter {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 40px 0;
	}
}

.rep-origin__chapter-num {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: 36px;
	color: var(--rep-gold);
	font-weight: 400;
	margin: 0;
	line-height: 1;
	letter-spacing: 0.04em;
	opacity: 0.85;
}

.rep-origin__chapter-title {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: clamp(20px, 2.4vw, 26px);
	font-weight: 400;
	color: var(--rep-text);
	margin: 0 0 20px;
	line-height: 1.65;
	letter-spacing: 0.04em;
}

.rep-origin__chapter-text {
	font-size: 16px;
	line-height: 2.1;
	color: var(--rep-text-2);
	margin: 0;
	letter-spacing: 0.04em;
}

/* 最後の章は朱色のアクセント */
.rep-origin__chapter--final .rep-origin__chapter-num {
	color: var(--rep-vermilion);
	opacity: 1;
}

.rep-origin__chapter--final .rep-origin__chapter-title {
	color: var(--rep-vermilion-deep);
}

/* 締めの一文 */
.rep-origin__signature {
	max-width: 820px;
	margin: 80px auto 0;
	padding-top: 48px;
	border-top: 2px solid var(--rep-text);
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: clamp(17px, 2.2vw, 22px);
	color: var(--rep-text);
	text-align: center;
	letter-spacing: 0.08em;
	line-height: 1.8;
	font-weight: 400;
}


/* ===========================================
 * ★ v1.9.209: 茶室の静寂・墓参りの厳かさ
 * 削ぎ落とし & 光のセクション
 * =========================================== */

/* --- HERO 静寂化（v1.9.209）--- */
.rep-hero {
	background: var(--rep-bg-dark);
	color: #fff;
	min-height: 80vh;
	padding: 160px 0 140px;
	display: flex;
	align-items: center;
	overflow: hidden;
	position: relative;
}

/* v1.9.213: 深いネイビーに金の光のグラデーション */
.rep-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 70% 30%, rgba(184, 153, 104, 0.12) 0%, transparent 50%),
		radial-gradient(ellipse at 20% 80%, rgba(184, 153, 104, 0.06) 0%, transparent 50%);
	pointer-events: none;
}

.rep-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(184, 153, 104, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(184, 153, 104, 0.04) 1px, transparent 1px);
	background-size: 100px 100px;
	mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
	pointer-events: none;
}

.rep-hero__inner {
	position: relative;
	z-index: 2;
	display: block;
	text-align: left;
	max-width: 880px;
}

.rep-hero__eyebrow {
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 11px;
	letter-spacing: 0.4em;
	color: var(--rep-gold);
	font-weight: 400;
	text-transform: uppercase;
	margin: 0 0 64px;
	opacity: 0;
	animation: rep-light-in 2.5s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.rep-hero__title {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: clamp(34px, 5vw, 56px);
	font-weight: 400;
	line-height: 1.55;
	margin: 0 0 56px;
	letter-spacing: 0.06em;
}

.rep-hero__title-line {
	display: block;
	color: #fff;
	opacity: 0;
	animation: rep-light-in 2.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.rep-hero__title-line:nth-child(1) { animation-delay: 0.8s; }
.rep-hero__title-line:nth-child(2) { animation-delay: 1.4s; }
.rep-hero__title-line--accent { color: var(--rep-gold); }

.rep-hero__lead {
	font-size: 16px;
	line-height: 2.2;
	color: var(--rep-text-light);
	max-width: 540px;
	margin: 0;
	font-weight: 300;
	letter-spacing: 0.06em;
	opacity: 0;
	animation: rep-light-in 2.5s cubic-bezier(0.22, 1, 0.36, 1) 2s forwards;
}

@keyframes rep-light-in {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: translateY(0); }
}

/* --- ORIGIN 茶室化（v1.9.209）--- */
.rep-origin {
	background: var(--rep-bg);
	padding: 200px 0;
}

@media (max-width: 768px) {
	.rep-origin { padding: 140px 0; }
}

.rep-origin .rep-container--narrow {
	max-width: 640px;
	text-align: center;
}

.rep-origin .rep-section__eyebrow {
	margin-bottom: 96px;
	opacity: 0.6;
	letter-spacing: 0.5em;
}

.rep-origin__essay {
	display: flex;
	flex-direction: column;
	gap: 56px;
}

@media (max-width: 768px) {
	.rep-origin__essay { gap: 40px; }
}

.rep-origin__verse {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: clamp(22px, 3.4vw, 34px);
	color: var(--rep-text);
	margin: 0;
	letter-spacing: 0.12em;
	font-weight: 400;
	line-height: 1.8;
}

.rep-origin__paragraph {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: clamp(15px, 2vw, 18px);
	color: var(--rep-text-2);
	margin: 0;
	letter-spacing: 0.1em;
	line-height: 2.2;
}

.rep-origin__paragraph--final {
	color: var(--rep-vermilion);
	font-size: clamp(17px, 2.4vw, 22px) !important;
	margin-top: 24px !important;
	letter-spacing: 0.14em !important;
}

/* --- 旧 ORIGIN スタイルを上書き --- */
.rep-origin__scale,
.rep-origin__story,
.rep-origin__chapter,
.rep-origin__signature {
	display: none;
}

/* --- ★ LIGHT セクション（v1.9.209 NEW）--- */
.rep-light {
	background: var(--rep-bg-dark);
	color: #fff;
	padding: 200px 0;
	position: relative;
	overflow: hidden;
}

@media (max-width: 768px) {
	.rep-light { padding: 140px 0; }
}

/* 微細な光の粒（静かなアクセント）*/
.rep-light::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(168, 149, 114, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

.rep-light .rep-container--narrow {
	max-width: 620px;
	text-align: center;
	position: relative;
	z-index: 1;
}

.rep-light__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}

.rep-light__verse {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: clamp(20px, 2.8vw, 28px);
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
	letter-spacing: 0.16em;
	line-height: 2;
	font-weight: 300;
}

.rep-light__verse--accent {
	color: var(--rep-gold);
	margin-top: 16px !important;
}

.rep-light__signature {
	margin-top: 88px;
	padding-top: 56px;
	border-top: 1px solid rgba(168, 149, 114, 0.25);
	width: 100px;
}

.rep-light__signature-name {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
	letter-spacing: 0.2em;
	font-weight: 400;
}

/* --- 既存セクションも静寂化 --- */
.rep-philosophy {
	background: var(--rep-bg-soft);
	color: var(--rep-text);
	padding: 180px 0;
}

@media (max-width: 768px) {
	.rep-philosophy { padding: 120px 0; }
}

.rep-philosophy .rep-section__eyebrow {
	color: var(--rep-text-3);
}

.rep-philosophy .rep-section__title {
	color: var(--rep-text);
	font-size: clamp(24px, 3.6vw, 36px) !important;
}

.rep-philosophy__essay p {
	color: var(--rep-text-2);
	font-size: clamp(15px, 2vw, 17px);
	line-height: 2.4;
}

.rep-philosophy__essay-conclusion {
	color: var(--rep-vermilion) !important;
	border-top-color: rgba(184, 153, 104, 0.3) !important;
}

.rep-philosophy__signature {
	border-top-color: rgba(168, 149, 114, 0.3);
}

.rep-philosophy__signature-name {
	color: var(--rep-text);
}

.rep-philosophy__signature-role {
	color: var(--rep-text-3);
}

/* --- CTA 静寂化 --- */
.rep-cta {
	background: var(--rep-bg);
	padding: 180px 0;
}

.rep-cta__title {
	font-size: clamp(24px, 3.4vw, 34px) !important;
	letter-spacing: 0.06em !important;
}

.rep-cta__btn {
	background: transparent;
	color: var(--rep-text);
	border: 1px solid var(--rep-text);
	padding: 18px 48px;
	font-size: 14px;
	letter-spacing: 0.2em;
}

.rep-cta__btn:hover {
	background: var(--rep-text);
	color: #fff;
	border-color: var(--rep-text);
}
.rep-cta__btn:hover::before {
	display: none;
}

/* --- 余白を全体的に増やす --- */
.rep-section {
	padding: 180px 0;
}

@media (max-width: 768px) {
	.rep-section { padding: 100px 0; }
}

/* --- COMPANION も静寂化（数字統計を削除済み）--- */
.rep-companion {
	background: var(--rep-bg);
	padding: 200px 0;
}

@media (max-width: 768px) {
	.rep-companion { padding: 140px 0; }
}

/* アニメーションをすべて「呼吸のような」リズムに */
[data-rep-reveal] {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 2s cubic-bezier(0.22, 1, 0.36, 1), transform 2s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-rep-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}


/* ===========================================
 * ★ v1.9.210: ポエム削除 → 事実の佇まい
 * 老舗料亭の品格、数字で語る、装飾なし
 * =========================================== */

/* --- ORIGIN を「事実の佇まい」に --- */
.rep-origin {
	background: var(--rep-bg);
	padding: 160px 0;
}

@media (max-width: 768px) {
	.rep-origin { padding: 100px 0; }
}

.rep-origin .rep-container {
	max-width: 1100px;
}

.rep-origin .rep-section__eyebrow,
.rep-origin .rep-section__title,
.rep-origin .rep-section__lead {
	text-align: center;
}

.rep-origin .rep-section__lead {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}

/* 旧 ORIGIN essay スタイルを上書き */
.rep-origin__essay,
.rep-origin__verse,
.rep-origin__paragraph,
.rep-origin__scale,
.rep-origin__story,
.rep-origin__chapter,
.rep-origin__signature {
	display: none !important;
}

/* 3 つの事実 */
.rep-origin__facts {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	margin: 80px 0;
	border-top: 1px solid var(--rep-line);
	border-bottom: 1px solid var(--rep-line);
}

@media (max-width: 768px) {
	.rep-origin__facts {
		grid-template-columns: 1fr;
	}
}

.rep-origin__fact {
	padding: 56px 32px;
	text-align: center;
	border-right: 1px solid var(--rep-line);
}

.rep-origin__fact:last-child {
	border-right: 0;
}

@media (max-width: 768px) {
	.rep-origin__fact {
		border-right: 0;
		border-bottom: 1px solid var(--rep-line);
		padding: 48px 24px;
	}
	.rep-origin__fact:last-child {
		border-bottom: 0;
	}
}

.rep-origin__fact-num {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: clamp(40px, 5.5vw, 64px);
	color: var(--rep-vermilion);
	font-weight: 400;
	line-height: 1;
	margin: 0 0 20px;
	letter-spacing: 0.02em;
}

.rep-origin__fact-label {
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 12px;
	letter-spacing: 0.2em;
	color: var(--rep-text-2);
	font-weight: 500;
	text-transform: uppercase;
	margin: 0;
}

/* 締めの文（ポエムではない、淡々と） */
.rep-origin__statement {
	max-width: 720px;
	margin: 0 auto;
	padding: 0 24px;
}

.rep-origin__statement p {
	font-size: 16px;
	line-height: 2.1;
	color: var(--rep-text-2);
	margin: 0;
	letter-spacing: 0.04em;
	text-align: center;
}

/* --- COMPANION を「お客様の声」グリッドに --- */
.rep-companion {
	background: var(--rep-bg-soft);
	padding: 160px 0;
}

@media (max-width: 768px) {
	.rep-companion { padding: 100px 0; }
}

/* 旧 COMPANION スタイルを上書き */
.rep-companion__story,
.rep-companion__story-meta,
.rep-companion__story-body,
.rep-companion__story-opener,
.rep-companion__story-quote,
.rep-companion__story-narrative,
.rep-companion__story-closer,
.rep-companion__metrics {
	display: none !important;
}

/* 4 つのお客様の声 */
.rep-companion__voices {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
	margin-top: 40px;
}

@media (max-width: 768px) {
	.rep-companion__voices { grid-template-columns: 1fr; }
}

.rep-companion__voice {
	padding: 40px 36px;
	background: #fff;
	border-left: 2px solid var(--rep-gold);
}

.rep-companion__voice-quote p {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: clamp(16px, 2vw, 19px);
	line-height: 1.95;
	color: var(--rep-text);
	margin: 0 0 24px;
	letter-spacing: 0.04em;
}

.rep-companion__voice-quote {
	border: 0;
	padding: 0;
	margin: 0 0 24px;
	background: none;
}

.rep-companion__voice-who {
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 11px;
	letter-spacing: 0.2em;
	color: var(--rep-text-3);
	margin: 0;
	padding-top: 20px;
	border-top: 1px solid var(--rep-line);
	font-weight: 500;
	text-transform: uppercase;
}

/* --- PHILOSOPHY を「業務原則」3 グリッドに --- */
.rep-philosophy {
	background: var(--rep-bg);
	color: var(--rep-text);
	padding: 160px 0;
}

@media (max-width: 768px) {
	.rep-philosophy { padding: 100px 0; }
}

.rep-philosophy .rep-section__eyebrow {
	color: var(--rep-vermilion);
}

.rep-philosophy .rep-section__title {
	color: var(--rep-text);
}

/* 旧 PHILOSOPHY essay スタイルを上書き */
.rep-philosophy__essay,
.rep-philosophy__essay-conclusion,
.rep-philosophy__signature {
	display: none !important;
}

/* 3 原則 */
.rep-philosophy__principles {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin-top: 40px;
}

@media (max-width: 900px) {
	.rep-philosophy__principles { grid-template-columns: 1fr; gap: 32px; }
}

.rep-philosophy__principle {
	padding: 48px 36px;
	background: #fff;
	border-top: 2px solid var(--rep-gold);
}

.rep-philosophy__principle-no {
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 11px;
	letter-spacing: 0.2em;
	color: var(--rep-vermilion);
	font-weight: 500;
	margin: 0 0 24px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--rep-line);
}

.rep-philosophy__principle-title {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: clamp(17px, 2vw, 20px);
	font-weight: 400;
	color: var(--rep-text);
	margin: 0 0 16px;
	letter-spacing: 0.04em;
	line-height: 1.7;
}

.rep-philosophy__principle-desc {
	font-size: 14px;
	line-height: 2;
	color: var(--rep-text-2);
	margin: 0;
}

/* --- LIGHT セクションを完全消去（CSS で念のため） --- */
.rep-light {
	display: none !important;
}


/* ===========================================
 * ★ v1.9.211: 泥臭さ主役、数字は裏付け
 * 老舗が「うちはこう生きてきた」と語る構造
 * =========================================== */

/* --- WHY セクション全体（旧 ORIGIN を上書き）--- */
.rep-origin {
	background: var(--rep-bg);
	padding: 180px 0;
}

@media (max-width: 768px) {
	.rep-origin { padding: 120px 0; }
}

.rep-origin .rep-container {
	max-width: 900px;
}

.rep-origin .rep-section__eyebrow,
.rep-origin .rep-section__title {
	text-align: center;
}

.rep-origin .rep-section__title {
	margin-bottom: 96px;
}

/* 旧スタイルの上書き */
.rep-origin .rep-section__lead {
	display: none;
}

/* 主役：泥臭さを語る */
.rep-origin__why {
	max-width: 680px;
	margin: 0 auto 64px;
	text-align: center;
}

.rep-origin__why-text {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: clamp(17px, 2.2vw, 22px);
	color: var(--rep-text-2);
	margin: 0 0 16px;
	line-height: 2;
	letter-spacing: 0.06em;
}

.rep-origin__why-statement {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: clamp(24px, 3.4vw, 36px);
	color: var(--rep-vermilion);
	margin: 40px 0 0;
	line-height: 1.6;
	letter-spacing: 0.1em;
	font-weight: 400;
}

/* 具体的な「尽くし方」（泥臭さの詳細） */
.rep-origin__detail {
	max-width: 720px;
	margin: 0 auto 96px;
	padding: 48px 56px;
	background: var(--rep-bg-soft);
	border-left: 3px solid var(--rep-gold);
}

@media (max-width: 768px) {
	.rep-origin__detail {
		padding: 32px 28px;
	}
}

.rep-origin__detail p {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: clamp(15px, 1.9vw, 17px);
	color: var(--rep-text);
	margin: 0 0 18px;
	line-height: 2.1;
	letter-spacing: 0.05em;
}

.rep-origin__detail p:last-child {
	margin-bottom: 0;
	padding-top: 24px;
	margin-top: 8px;
	border-top: 1px solid var(--rep-line);
	color: var(--rep-text-2);
}

/* 裏付け：数字（主役を支える、控えめに） */
.rep-origin__evidence {
	max-width: 900px;
	margin: 0 auto;
}

.rep-origin__evidence-label {
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 12px;
	letter-spacing: 0.2em;
	color: var(--rep-text-3);
	text-align: center;
	margin: 0 0 40px;
	font-weight: 500;
	text-transform: none;
	line-height: 1.8;
}

/* --- 旧 ORIGIN essay の残骸を完全に隠す --- */
.rep-origin__essay,
.rep-origin__verse,
.rep-origin__paragraph,
.rep-origin__scale,
.rep-origin__story,
.rep-origin__chapter,
.rep-origin__signature,
.rep-origin__statement {
	display: none !important;
}

/* ★ CLOSING セクション（最強の余韻）*/
.rep-closing {
	background: var(--rep-bg-dark);
	color: #fff;
	padding: 200px 0;
	position: relative;
	overflow: hidden;
}

@media (max-width: 768px) {
	.rep-closing { padding: 140px 0; }
}

/* 微細な光（中央に集まる） */
.rep-closing::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 800px;
	height: 800px;
	background: radial-gradient(circle, rgba(184, 153, 104, 0.08) 0%, transparent 60%);
	pointer-events: none;
}

.rep-closing .rep-container--narrow {
	max-width: 720px;
	position: relative;
	z-index: 1;
}

.rep-closing__inner {
	text-align: center;
}

.rep-closing__lead {
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 11px;
	letter-spacing: 0.4em;
	color: var(--rep-gold);
	text-transform: uppercase;
	margin: 0 0 64px;
	font-weight: 500;
}

.rep-closing__statement {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: clamp(20px, 3.2vw, 30px);
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 16px;
	line-height: 1.9;
	letter-spacing: 0.1em;
	font-weight: 400;
}

.rep-closing__statement--accent {
	color: var(--rep-vermilion);
	margin-top: 40px !important;
	font-size: clamp(24px, 3.8vw, 36px) !important;
	letter-spacing: 0.12em !important;
}


/* ===========================================
 * ★ v1.9.212: ACTION セクション
 * 行動できる形 — 経営者の「で？」に即答
 * =========================================== */

.rep-action {
	background: var(--rep-bg-soft);
	padding: 160px 0;
}

@media (max-width: 768px) {
	.rep-action { padding: 100px 0; }
}

.rep-action .rep-section__eyebrow,
.rep-action .rep-section__title,
.rep-action .rep-section__lead {
	text-align: center;
}

.rep-action .rep-section__lead {
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

/* 3 ステップ */
.rep-action__steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin: 64px 0 80px;
	position: relative;
}

/* ステップを繋ぐ矢印（デスクトップのみ） */
.rep-action__steps::before {
	content: '';
	position: absolute;
	top: 60px;
	left: 33%;
	right: 33%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--rep-gold), transparent);
	opacity: 0.4;
	z-index: 0;
	pointer-events: none;
}

@media (max-width: 768px) {
	.rep-action__steps {
		grid-template-columns: 1fr;
		gap: 24px;
		margin: 48px 0 64px;
	}
	.rep-action__steps::before {
		display: none;
	}
}

.rep-action__step {
	background: #fff;
	padding: 40px 32px;
	border-top: 2px solid var(--rep-vermilion);
	position: relative;
	z-index: 1;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rep-action__step:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.12);
}

.rep-action__step-head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--rep-line);
}

.rep-action__step-no {
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: clamp(28px, 3.5vw, 36px);
	color: var(--rep-vermilion);
	font-weight: 300;
	line-height: 1;
	letter-spacing: 0.02em;
}

.rep-action__step-time {
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 11px;
	letter-spacing: 0.2em;
	color: var(--rep-gold-deep);
	font-weight: 500;
	text-transform: uppercase;
	padding: 6px 12px;
	background: rgba(168, 149, 114, 0.1);
}

.rep-action__step-title {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: clamp(18px, 2.2vw, 22px);
	font-weight: 400;
	color: var(--rep-text);
	margin: 0 0 16px;
	letter-spacing: 0.04em;
	line-height: 1.6;
}

.rep-action__step-desc {
	font-size: 14px;
	line-height: 2;
	color: var(--rep-text-2);
	margin: 0;
}

/* 対象企業の明確化（自分ごと化） */
.rep-action__target {
	max-width: 720px;
	margin: 0 auto;
	padding: 48px 56px;
	background: #fff;
	border-left: 3px solid var(--rep-gold);
}

@media (max-width: 768px) {
	.rep-action__target {
		padding: 36px 28px;
	}
}

.rep-action__target-label {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: clamp(17px, 2.2vw, 20px);
	color: var(--rep-text);
	margin: 0 0 28px;
	letter-spacing: 0.06em;
	font-weight: 400;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--rep-line);
}

.rep-action__target-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.rep-action__target-list li {
	padding: 14px 0 14px 32px;
	position: relative;
	font-size: 15px;
	line-height: 1.7;
	color: var(--rep-text);
	border-bottom: 1px solid rgba(168, 149, 114, 0.15);
}

.rep-action__target-list li:last-child {
	border-bottom: 0;
}

.rep-action__target-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 14px;
	color: var(--rep-vermilion);
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 14px;
	font-weight: 500;
}

/* ===========================================
 * ★ v1.9.212: CTA 強化
 * 緊急性 + 希少性 + 安心要素
 * =========================================== */

.rep-cta {
	background: var(--rep-bg);
	padding: 140px 0;
}

@media (max-width: 768px) {
	.rep-cta { padding: 100px 0; }
}

.rep-cta__container {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

/* 緊急性バッジ — 紺金スタイル（v1.9.213） */
.rep-cta__urgency {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 20px;
	background: rgba(184, 153, 104, 0.08);
	border: 1px solid rgba(184, 153, 104, 0.35);
	margin: 0 0 32px;
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 12px;
	letter-spacing: 0.15em;
	color: var(--rep-gold-deep);
	font-weight: 500;
}

.rep-cta__urgency-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--rep-gold);
	animation: rep-pulse 2s ease-in-out infinite;
	flex-shrink: 0;
}

@keyframes rep-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.4; transform: scale(0.8); }
}

/* 安心要素 5 つ */
.rep-cta__assurance {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0;
	margin-top: 48px;
	padding-top: 40px;
	border-top: 1px solid var(--rep-line);
}

.rep-cta__assurance-item {
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 12px;
	color: var(--rep-text-2);
	letter-spacing: 0.06em;
	padding: 8px 20px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	position: relative;
}

.rep-cta__assurance-item::before {
	content: '✓';
	color: var(--rep-vermilion);
	font-weight: 500;
	font-size: 13px;
}

.rep-cta__assurance-item:not(:last-child)::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 12px;
	background: var(--rep-line);
}

@media (max-width: 768px) {
	.rep-cta__assurance {
		flex-direction: column;
		gap: 16px;
	}
	.rep-cta__assurance-item:not(:last-child)::after {
		display: none;
	}
}

/* リスク払拭文 */
.rep-cta__risk-note {
	margin-top: 32px;
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: 14px;
	color: var(--rep-text-3);
	line-height: 1.9;
	font-style: italic;
	letter-spacing: 0.04em;
}

/* CTA ボタン — 金（背景）→ 紺ホバー（v1.9.213 ブランド統一） */
.rep-cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	padding: 22px 56px;
	background: var(--rep-gold);
	color: #fff;
	text-decoration: none;
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: 16px;
	letter-spacing: 0.12em;
	border: 1px solid var(--rep-gold);
	transition: background 0.3s ease, transform 0.12s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	margin: 16px 0 0;
	box-shadow: 0 12px 32px -8px rgba(184, 153, 104, 0.35);
	position: relative;
	overflow: hidden;
}

.rep-cta__btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.7s ease;
}

.rep-cta__btn:hover {
	background: var(--rep-navy);
	border-color: var(--rep-navy);
	color: #fff;
	box-shadow: 0 16px 40px -8px rgba(10, 22, 40, 0.5);
	transform: translateY(-2px);
}

.rep-cta__btn:hover::before {
	left: 100%;
}

.rep-cta__btn:active {
	transform: scale(0.98);
}

.rep-cta__btn-arrow {
	transition: transform 0.25s ease;
	position: relative;
	z-index: 1;
}
.rep-cta__btn:hover .rep-cta__btn-arrow {
	transform: translateX(6px);
}
