/* ============================================================
   LP 浦安市マンション売却相談 – style.css
   Mobile-first / Responsive
   ============================================================ */

/* ---------- Reset & Custom Properties ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--navy: #1C3557;
	--navy-dark: #142845;
	--gold: #C8902A;
	--gold-light: #E5A830;
	--bg: #F7F5F2;
	--bg-dark: #EDE9E4;
	--text: #2A2A2A;
	--text-light: #5A5A5A;
	--white: #FFFFFF;
	--akemi: #1C3557;
	--takasu: #2E7D52;
	--hinode: #8B4513;
	--border: #D8D4CF;
	--shadow: 0 4px 20px rgba(28, 53, 87, 0.10);
	--shadow-lg: 0 8px 40px rgba(28, 53, 87, 0.15);

	--font-serif: 'Noto Serif JP', Georgia, serif;
	--font-sans: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
	--font-num: 'Oswald', 'Arial Narrow', sans-serif;

	--radius: 8px;
	--radius-lg: 16px;
	--container: 1100px;
	--section-py: 80px;
	--header-h: 64px;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
	font-family: var(--font-sans);
	font-size: 18px;
	line-height: 1.8;
	color: var(--text);
	background: var(--bg);
	-webkit-text-size-adjust: 100%;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

/* ---------- Utility ---------- */
.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 20px;
}

.section {
	padding: var(--section-py) 0;
}

.sp-only {
	display: inline;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 14px 28px;
	border-radius: var(--radius);
	font-family: var(--font-sans);
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	border: none;
	transition: all 0.2s ease;
	min-height: 52px;
	text-align: center;
	line-height: 1.3;
	letter-spacing: 0.02em;
}

.btn-lg {
	padding: 18px 36px;
	font-size: 17px;
	min-height: 58px;
}

.btn-sm {
	padding: 10px 20px;
	font-size: 14px;
	min-height: 44px;
}

.btn-full {
	width: 100%;
}

.btn-gold {
	background: var(--gold);
	color: var(--white);
}

.btn-gold:hover {
	background: var(--gold-light);
	transform: translateY(-1px);
	box-shadow: var(--shadow);
}

/* CTAボタン：シマー＋パルスグロー */
@keyframes shimmer {
	0% {
		left: -80%;
	}

	60%,
	100% {
		left: 120%;
	}
}

@keyframes btn-pulse {

	0%,
	100% {
		box-shadow: 0 4px 16px rgba(200, 144, 42, 0.45), 0 0 0 0 rgba(200, 144, 42, 0.35);
	}

	55% {
		box-shadow: 0 6px 22px rgba(200, 144, 42, 0.6), 0 0 0 12px rgba(200, 144, 42, 0);
	}
}

.btn-cta {
	position: relative;
	overflow: hidden;
	font-size: 18px;
	padding: 18px 32px;
	letter-spacing: 0.04em;
	animation: btn-pulse 2.4s ease-in-out infinite;
}

.btn-cta::after {
	content: '';
	position: absolute;
	top: 0;
	left: -80%;
	width: 50%;
	height: 100%;
	background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
	animation: shimmer 3.2s ease-in-out infinite;
	pointer-events: none;
}

.btn-cta:hover {
	animation: none;
	box-shadow: 0 6px 24px rgba(200, 144, 42, 0.7);
}

.cta-microcopy {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.95);
	margin-top: 8px;
	letter-spacing: 0.03em;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.cta-microcopy--center {
	text-align: center;
}

/* 白背景カード内ではグレーに戻す */
.checker-card .cta-microcopy,
.form-card .cta-microcopy {
	color: var(--text-light);
	text-shadow: none;
}

.btn-navy {
	background: var(--navy);
	color: var(--white);
}

.btn-navy:hover {
	background: var(--navy-dark);
	transform: translateY(-1px);
	box-shadow: var(--shadow);
}

.btn-outline {
	background: transparent;
	color: var(--white);
	border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: var(--white);
}

.accent {
	color: var(--gold);
}

/* ---------- Section Header ---------- */
.section-header {
	text-align: center;
	margin-bottom: 48px;
}

.section-eyebrow {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.section-eyebrow::before,
.section-eyebrow::after {
	content: '';
	display: block;
	width: 32px;
	height: 1px;
	background: var(--gold);
}

.section-title {
	font-family: var(--font-serif);
	font-size: clamp(24px, 5vw, 36px);
	font-weight: 700;
	line-height: 1.4;
	color: var(--navy);
	margin-bottom: 16px;
}

.section-header--light .section-title {
	color: var(--white);
}

.section-header--light .section-desc {
	color: rgba(255, 255, 255, 0.85);
}

.section-desc {
	font-size: 17px;
	color: var(--text-light);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.8;
}

/* Photo Break */
.photo-break {
	width: 100%;
	height: 260px;
	overflow: hidden;
	line-height: 0;
}

.photo-break img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 60%;
	display: block;
}

@media (min-width: 768px) {
	.photo-break {
		height: 400px;
	}
}

/* ============================================================
   0. Fixed Header
   ============================================================ */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: var(--header-h);
	background: var(--navy);
	z-index: 1000;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.header-inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 20px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.header-logo {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.logo-area {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--gold);
}

.logo-company {
	font-family: var(--font-serif);
	font-size: 17px;
	font-weight: 700;
	color: var(--white);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.header-tel {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--white);
	font-size: 13px;
	white-space: nowrap;
}

.tel-number {
	font-family: var(--font-num);
	font-size: 16px;
	letter-spacing: 0.04em;
}

/* ============================================================
   1. Hero
   ============================================================ */
.hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: center;
	padding: calc(var(--header-h) + 60px) 0 80px;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to bottom,
			rgba(20, 40, 69, 0.72) 0%,
			rgba(28, 53, 87, 0.58) 50%,
			rgba(14, 32, 58, 0.80) 100%),
		url('images/header.jpg') center top / cover no-repeat;
}

.hero .container {
	position: relative;
	z-index: 1;
}

.hero-content {
	max-width: 680px;
}

.hero-eyebrow {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--gold);
	margin-bottom: 20px;
	padding: 6px 14px;
	border: 1px solid rgba(200, 144, 42, 0.5);
	border-radius: 4px;
	display: inline-block;
	background: rgba(200, 144, 42, 0.08);
}

.hero-headline {
	font-family: var(--font-serif);
	font-size: clamp(28px, 5.5vw, 44px);
	font-weight: 700;
	line-height: 1.35;
	color: var(--white);
	margin-bottom: 24px;
}

.hero-sub {
	font-size: 18px;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.88);
	margin-bottom: 40px;
}

/* Stats bar */
.hero-stats {
	display: flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius);
	padding: 20px 24px;
	margin-bottom: 40px;
	backdrop-filter: blur(4px);
	flex-wrap: wrap;
	gap: 16px;
}

.stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
	min-width: 80px;
}

.stat-num {
	font-family: var(--font-num);
	font-size: 36px;
	font-weight: 700;
	color: var(--gold);
	line-height: 1;
}

.stat-num small {
	font-size: 18px;
}

.stat-label {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	margin-top: 4px;
	text-align: center;
	line-height: 1.5;
}

.stat-label small {
	display: block;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.55);
	margin-top: 3px;
	line-height: 1.4;
}

.stat-divider {
	width: 1px;
	height: 48px;
	background: rgba(255, 255, 255, 0.2);
	flex-shrink: 0;
}

.hero-cta {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

/* ============================================================
   2. Area Strength
   ============================================================ */
.area-strength {
	background: var(--bg);
}

.area-cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

.area-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 28px 24px;
	box-shadow: var(--shadow);
	border-top: 4px solid var(--border);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.area-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.area-card:nth-child(1) {
	border-top-color: var(--akemi);
}

.area-card:nth-child(2) {
	border-top-color: var(--takasu);
}

.area-card:nth-child(3) {
	border-top-color: var(--hinode);
}

.area-badge {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 100px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--white);
	margin-bottom: 12px;
}

.area-badge--akemi {
	background: var(--akemi);
}

.area-badge--takasu {
	background: var(--takasu);
}

.area-badge--hinode {
	background: var(--hinode);
}

.area-card-name {
	font-family: var(--font-serif);
	font-size: 20px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 6px;
}

.area-card-price {
	font-size: 16px;
	color: var(--text-light);
	margin-bottom: 14px;
}

.area-card-price strong {
	font-family: var(--font-num);
	font-size: 22px;
	font-weight: 700;
	color: var(--navy);
}

.area-card-desc {
	font-size: 16px;
	line-height: 1.8;
	color: var(--text-light);
	margin-bottom: 16px;
}

.area-card-features {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.area-card-features li {
	font-size: 15px;
	color: var(--text);
	padding-left: 18px;
	position: relative;
}

.area-card-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--gold);
	font-weight: 700;
}

/* ============================================================
   3. Price Checker
   ============================================================ */
.price-checker-section {
	background: var(--navy);
}

.price-checker-section .section-title {
	color: var(--white);
}

.price-checker-section .section-desc {
	color: rgba(255, 255, 255, 0.8);
}

.price-checker-section .section-eyebrow {
	color: var(--gold);
}

.checker-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 32px 24px;
	max-width: 720px;
	margin: 0 auto;
	box-shadow: var(--shadow-lg);
}

.checker-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* Form elements */
.form-label {
	display: block;
	font-size: 16px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 8px;
}

.required-mark {
	color: #D03030;
}

.form-input,
.form-select,
.form-textarea {
	width: 100%;
	padding: 14px 16px;
	border: 2px solid var(--border);
	border-radius: var(--radius);
	font-family: var(--font-sans);
	font-size: 16px;
	color: var(--text);
	background: #f0f0f0;
	/* 未入力時グレー */
	transition: border-color 0.2s, background-color 0.2s;
	min-height: 52px;
	appearance: none;
	-webkit-appearance: none;
}

.form-input.has-value,
.form-select.has-value,
.form-textarea.has-value,
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
	background: var(--white);
}

.form-select {
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A5A5A' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 44px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
	outline: none;
	border-color: var(--navy);
	box-shadow: 0 0 0 3px rgba(28, 53, 87, 0.12);
}

.form-input.error,
.form-select.error {
	border-color: #D03030;
}

.form-select:disabled {
	background-color: var(--bg-dark);
	color: var(--text-light);
	cursor: not-allowed;
	opacity: 0.65;
}

.form-error {
	font-size: 14px;
	color: #D03030;
	margin-top: 4px;
	min-height: 18px;
}

.form-textarea {
	min-height: 120px;
	resize: vertical;
	line-height: 1.7;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.zip-row {
	display: flex;
	align-items: center;
	gap: 10px;
}

.zip-input {
	max-width: 160px;
}

.zip-status {
	font-size: 13px;
	color: var(--text-light);
	white-space: nowrap;
}

.zip-status--ok {
	color: #2a9d5c;
	font-weight: 700;
}

.zip-status--err {
	color: #c0392b;
}

.radio-group {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 16px;
	padding-top: 6px;
}

.radio-label {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 16px;
	color: var(--text);
	cursor: pointer;
	min-height: 32px;
}

.radio-label input[type="radio"] {
	width: 18px;
	height: 18px;
	accent-color: var(--navy);
	cursor: pointer;
	flex-shrink: 0;
}

.form-privacy {
	margin-top: 12px;
}

.privacy-link-wrap {
	margin-bottom: 24px;
	text-align: center;
}

.privacy-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--navy);
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
	transition: opacity 0.2s ease;
}

.privacy-link:hover {
	opacity: 0.7;
}

.privacy-link::after {
	content: '→';
	font-size: 14px;
	text-decoration: none;
	transition: transform 0.2s ease;
}

.privacy-link:hover::after {
	transform: translateX(4px);
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	margin-top: 2px;
	accent-color: var(--navy);
	cursor: pointer;
}

.checkbox-text {
	font-size: 16px;
	line-height: 1.6;
}

.link {
	color: var(--navy);
	text-decoration: underline;
}

/* Checker result */
.checker-result {
	margin-top: 28px;
	padding-top: 28px;
	border-top: 2px solid var(--border);
	text-align: center;
	animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(8px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.result-label {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--text-light);
	margin-bottom: 8px;
}

.result-price {
	font-family: var(--font-num);
	font-size: clamp(28px, 8vw, 44px);
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 12px;
	line-height: 1.2;
}

.result-note {
	font-size: 14px;
	color: var(--text-light);
	margin-bottom: 20px;
}

.result-upsell {
	background: linear-gradient(135deg, #fffbf2 0%, #fff8e8 100%);
	border-left: 4px solid var(--gold);
	border-radius: 0 var(--radius) var(--radius) 0;
	padding: 16px 20px;
	margin-bottom: 24px;
	text-align: left;
}

.result-upsell-title {
	font-family: var(--font-serif);
	font-size: 17px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 8px;
}

.result-upsell-body {
	font-size: 15px;
	color: var(--text);
	line-height: 1.7;
	margin: 0;
}

.result-cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.result-cta-text {
	font-size: 16px;
	color: var(--text-light);
}

.checker-disclaimer {
	text-align: center;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
	margin-top: 20px;
}

/* ============================================================
   4. Market Data
   ============================================================ */
.market-data {
	background: linear-gradient(135deg, #142845 0%, var(--navy) 100%);
}

.chart-wrapper {
	background: rgba(255, 255, 255, 0.05);
	border-radius: var(--radius-lg);
	padding: 24px 16px;
	margin-bottom: 36px;
	position: relative;
	height: 300px;
}

.chart-wrapper canvas {
	width: 100% !important;
}

.data-highlights {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	margin-bottom: 40px;
}

.highlight-item {
	background: rgba(255, 255, 255, 0.08);
	border-radius: var(--radius);
	padding: 16px 20px;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-badge {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	padding: 4px 10px;
	border-radius: 100px;
	color: var(--white);
	flex-shrink: 0;
}

.highlight-badge--akemi {
	background: rgba(28, 53, 87, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.highlight-badge--takasu {
	background: var(--takasu);
}

.highlight-badge--hinode {
	background: var(--hinode);
}

.highlight-text {
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.9);
}

.market-cta {
	text-align: center;
	color: rgba(255, 255, 255, 0.8);
	font-size: 17px;
}

.market-cta p {
	margin-bottom: 20px;
}

/* ============================================================
   5. Cases
   ============================================================ */
.cases {
	background: var(--bg-dark);
}

.cases-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.case-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 20px;
	box-shadow: var(--shadow);
	display: flex;
	align-items: center;
	gap: 16px;
	transition: transform 0.2s ease;
}

.case-card:hover {
	transform: translateY(-2px);
}

.case-card--highlight {
	border: 2px solid var(--gold);
	background: linear-gradient(135deg, rgba(200, 144, 42, 0.04) 0%, #fff 100%);
}

.case-card .area-badge {
	flex-shrink: 0;
}

.case-price {
	font-family: var(--font-num);
	font-size: 22px;
	font-weight: 700;
	color: var(--navy);
	white-space: nowrap;
}

.case-price span {
	font-size: 14px;
	font-family: var(--font-sans);
}

.case-details {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	flex: 1;
}

.case-details span {
	font-size: 12px;
	color: var(--text-light);
	background: var(--bg);
	padding: 3px 8px;
	border-radius: 4px;
}

.case-days {
	font-size: 13px;
	color: var(--text-light);
	white-space: nowrap;
	text-align: right;
	flex-shrink: 0;
}

.days-num {
	font-family: var(--font-num);
	font-size: 20px;
	font-weight: 700;
	color: var(--navy);
}

.case-days--fast .days-num {
	color: var(--gold);
}

/* ============================================================
   6. Achievement
   ============================================================ */
.achievement {
	background: linear-gradient(135deg, #142845 0%, var(--navy) 100%);
}

.achievement-stats {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	margin-bottom: 40px;
}

@media (min-width: 640px) {
	.achievement-stats {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
		margin-bottom: 56px;
	}
}

.ach-stat {
	background: rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-lg);
	padding: 24px 16px;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.ach-num {
	font-family: var(--font-num);
	font-size: 48px;
	font-weight: 700;
	color: var(--gold);
	line-height: 1;
}

.ach-unit {
	font-family: var(--font-num);
	font-size: 22px;
	font-weight: 500;
	color: var(--gold);
}

.ach-label {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.8);
	margin-top: 8px;
	line-height: 1.5;
}

.ach-label small {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.55);
}

/* Comparison table */

.comparison-title {
	font-family: var(--font-serif);
	font-size: 20px;
	font-weight: 700;
	color: var(--white);
	text-align: center;
	margin-bottom: 24px;
}

.comparison-table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border-radius: var(--radius-lg);
}

.comparison-table {
	width: 100%;
	min-width: 520px;
	border-collapse: separate;
	border-spacing: 0;
	font-size: 15px;
}

.comparison-table thead {
	background: rgba(255, 255, 255, 0.08);
}

.comparison-table th {
	padding: 14px 16px;
	text-align: center;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 700;
	font-size: 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th:first-child {
	text-align: left;
}

.comparison-table th.our-col {
	background: rgba(200, 144, 42, 0.2);
	color: var(--gold);
}

.comparison-table td {
	padding: 14px 16px;
	text-align: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	line-height: 1.5;
	background: rgba(255, 255, 255, 0.03);
}

.comparison-table td:first-child {
	text-align: left;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.9);
}

.comparison-table td.our-col {
	background: rgba(200, 144, 42, 0.12);
}

.check-mark {
	font-size: 18px;
	color: var(--gold);
	font-weight: 700;
}

.circle-mark {
	font-size: 18px;
	color: #7EC8A0;
}

.triangle-mark {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.5);
}

.cross-mark {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.35);
}

/* ============================================================
   7. Testimonials
   ============================================================ */
.testimonials {
	background: var(--bg);
}

.testimonial-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

.testimonial-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 28px 24px;
	box-shadow: var(--shadow);
	position: relative;
}

.testimonial-card::before {
	content: '"';
	position: absolute;
	top: 16px;
	right: 24px;
	font-size: 80px;
	line-height: 1;
	color: rgba(28, 53, 87, 0.06);
	font-family: Georgia, serif;
	font-weight: 700;
}

.testimonial-stars {
	font-size: 18px;
	color: var(--gold);
	margin-bottom: 14px;
	letter-spacing: 2px;
}

.testimonial-text {
	font-size: 17px;
	line-height: 1.9;
	color: var(--text);
	margin-bottom: 20px;
	font-style: normal;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-top: 16px;
	border-top: 1px solid var(--border);
}

.author-detail {
	font-size: 14px;
	color: var(--text-light);
}

/* ============================================================
   8. Flow
   ============================================================ */
.flow {
	background: linear-gradient(135deg, var(--navy) 0%, #2A4F7A 100%);
}

.flow-steps {
	display: flex;
	flex-direction: column;
	gap: 0;
	position: relative;
}

.flow-step {
	background: rgba(255, 255, 255, 0.07);
	border-radius: var(--radius-lg);
	padding: 28px 24px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	position: relative;
}

.flow-arrow {
	text-align: center;
	font-size: 24px;
	color: var(--gold);
	padding: 8px 0;
	transform: rotate(90deg);
}

.step-number {
	font-family: var(--font-num);
	font-size: 48px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.12);
	line-height: 1;
	margin-bottom: 8px;
}

.step-icon {
	font-size: 32px;
	margin-bottom: 12px;
}

.step-title {
	font-family: var(--font-serif);
	font-size: 20px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 10px;
}

.step-desc {
	font-size: 16px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 10px;
}

.step-time {
	font-size: 14px;
	color: var(--gold);
	font-weight: 600;
}

.flow-cta {
	text-align: center;
	margin-top: 48px;
}

/* ============================================================
   9a. Options Section
   ============================================================ */
.options-section {
	background: var(--bg);
}

.options-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

.option-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 28px 24px;
}

.option-icon {
	display: inline-block;
	background: var(--navy);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 4px;
	margin-bottom: 12px;
	letter-spacing: 0.05em;
}

.option-title {
	font-family: var(--font-serif);
	font-size: 20px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 10px;
}

.option-desc {
	font-size: 17px;
	line-height: 1.8;
	color: var(--text);
	margin-bottom: 0;
}

.option-card--wide .option-desc {
	margin-bottom: 20px;
}

.option-features {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 12px;
}

.option-features li {
	display: grid;
	grid-template-columns: 96px 1fr;
	gap: 12px;
	align-items: start;
	background: var(--bg);
	border-radius: var(--radius);
	padding: 14px 16px;
}

.option-feature-label {
	font-size: 14px;
	font-weight: 700;
	color: var(--navy);
	background: rgba(28, 53, 87, 0.08);
	border-radius: 4px;
	padding: 3px 8px;
	text-align: center;
	white-space: nowrap;
	align-self: start;
}

.option-feature-text {
	font-size: 16px;
	line-height: 1.7;
	color: var(--text);
}

@media (min-width: 768px) {
	.options-grid {
		grid-template-columns: 1fr 1fr;
	}

	.option-card--wide {
		grid-column: 1 / -1;
	}
}

/* ============================================================
   9b. Team Section
   ============================================================ */
.team-section {
	background: var(--bg-warm);
}

/* About grid */
.about-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	margin-bottom: 48px;
}

@media (min-width: 768px) {
	.about-grid {
		grid-template-columns: 220px 1fr;
		gap: 48px;
		align-items: start;
	}
}

.about-facts {
	display: flex;
	flex-direction: row;
	gap: 24px;
}

@media (min-width: 768px) {
	.about-facts {
		flex-direction: column;
		gap: 32px;
	}
}

.about-fact-item {
	text-align: center;
	background: #fff;
	border-radius: var(--radius-md);
	padding: 20px 16px;
	flex: 1;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.about-fact-num {
	font-family: 'Oswald', sans-serif;
	font-size: clamp(2.4rem, 6vw, 3.2rem);
	font-weight: 700;
	color: var(--navy);
	line-height: 1;
}

.about-fact-unit {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--navy);
}

.about-fact-label {
	font-size: 0.78rem;
	color: var(--text-muted);
	margin-top: 6px;
	line-height: 1.4;
}

.about-text p {
	font-size: 0.95rem;
	line-height: 1.85;
	color: var(--text-body);
	margin-bottom: 16px;
}

.about-text p:last-child {
	margin-bottom: 0;
}

.about-license {
	font-size: 0.78rem !important;
	color: var(--text-muted) !important;
	margin-top: 20px !important;
}

.team-img {
	display: block;
	width: 100%;
	max-width: 800px;
	height: auto;
	margin: 0 auto;
	margin-top: 8px;
	border-radius: var(--radius-lg);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* ============================================================
   9. FAQ Section
   ============================================================ */
.faq-section {
	background: var(--bg);
}

.faq-list {
	max-width: 680px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.faq-item {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	overflow: hidden;
}

.faq-q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 18px 20px;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: var(--font-sans);
	font-size: 15px;
	font-weight: 700;
	color: var(--navy);
	line-height: 1.5;
	transition: background 0.15s;
}

.faq-q:hover {
	background: rgba(31, 73, 125, 0.04);
}

.faq-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--navy);
	position: relative;
	transition: transform 0.3s ease, background 0.2s;
}

.faq-icon::before,
.faq-icon::after {
	content: '';
	position: absolute;
	background: #fff;
	border-radius: 2px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.faq-icon::before {
	width: 10px;
	height: 2px;
}

.faq-icon::after {
	width: 2px;
	height: 10px;
	transition: transform 0.3s ease, opacity 0.3s;
}

.faq-q[aria-expanded="true"] .faq-icon {
	background: var(--gold);
}

.faq-q[aria-expanded="true"] .faq-icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
	opacity: 0;
}

.faq-a {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.3s ease;
}

.faq-a>p {
	overflow: hidden;
	padding: 0 20px;
	font-size: 14px;
	color: var(--text-light);
	line-height: 1.75;
}

.faq-item.open .faq-a {
	grid-template-rows: 1fr;
}

.faq-item.open .faq-a>p {
	padding: 0 20px 18px;
}

/* ============================================================
   10. Contact Form Section
   ============================================================ */
.contact-section {
	background: var(--bg-dark);
}

.form-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 32px 24px;
	box-shadow: var(--shadow-lg);
	max-width: 800px;
	margin: 0 auto 48px;
}

#contact-form-el {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-thanks {
	text-align: center;
	padding: 48px 24px;
}

.thanks-icon {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: var(--navy);
	color: var(--white);
	font-size: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.thanks-title {
	font-family: var(--font-serif);
	font-size: 22px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 14px;
}

.thanks-text {
	font-size: 17px;
	line-height: 1.9;
	color: var(--text-light);
}

.thanks-text a {
	color: var(--navy);
	text-decoration: underline;
}

.tel-cta {
	text-align: center;
	padding: 40px 24px;
	background: var(--white);
	border-radius: var(--radius-lg);
	max-width: 480px;
	margin: 0 auto;
	box-shadow: var(--shadow);
}

.tel-cta-text {
	font-size: 16px;
	color: var(--text-light);
	margin-bottom: 14px;
}

.tel-cta-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-num);
	font-size: 32px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 8px;
}

.tel-hours {
	font-size: 14px;
	color: var(--text-light);
}

/* ============================================================
   10. Footer
   ============================================================ */
.site-footer {
	background: var(--navy-dark);
	color: rgba(255, 255, 255, 0.75);
	padding: 48px 0 100px;
}

.footer-inner {
	display: flex;
	flex-direction: column;
	gap: 28px;
	margin-bottom: 28px;
	padding-bottom: 28px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
	margin-bottom: 14px;
}

.footer-address {
	font-size: 14px;
	line-height: 1.9;
	font-style: normal;
	color: rgba(255, 255, 255, 0.65);
}

.footer-address a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: underline;
}

.footer-license {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.55);
	margin-bottom: 16px;
}

.footer-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
}

.footer-nav a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.65);
	text-decoration: underline;
}

.footer-nav a:hover {
	color: rgba(255, 255, 255, 0.9);
}

.footer-disclaimer {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.4);
	line-height: 1.8;
	margin-bottom: 20px;
}

.footer-copy {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   Sticky CTA (スマホ固定バー)
   ============================================================ */
.sticky-cta {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	z-index: 900;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.sticky-cta.visible {
	transform: translateY(0);
}

.sticky-cta-tel {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 12px 20px;
	background: var(--navy);
	color: var(--white);
	font-size: 13px;
	font-weight: 700;
	border-right: 1px solid rgba(255, 255, 255, 0.15);
	min-width: 80px;
}

.sticky-cta-tel svg {
	flex-shrink: 0;
}

.sticky-cta-form {
	flex: 1;
	border-radius: 0;
	min-height: 58px;
	font-size: 15px;
}

/* ============================================================
   RESPONSIVE – Tablet (640px+)
   ============================================================ */
@media (min-width: 640px) {
	.hero-cta {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.area-cards {
		grid-template-columns: 1fr;
	}

	.cases-grid {
		grid-template-columns: 1fr 1fr;
	}

	.testimonial-grid {
		grid-template-columns: 1fr;
	}

	.data-highlights {
		grid-template-columns: repeat(3, 1fr);
	}

	.form-row {
		grid-template-columns: 1fr 1fr;
	}

	.footer-inner {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
	}
}

/* ============================================================
   RESPONSIVE – Desktop (900px+)
   ============================================================ */
@media (min-width: 900px) {
	:root {
		--section-py: 100px;
		--header-h: 72px;
	}

	.sp-only {
		display: none;
	}

	.hero {
		min-height: 90vh;
		padding: calc(var(--header-h) + 80px) 0 100px;
	}

	.hero-stats {
		flex-wrap: nowrap;
		max-width: 560px;
	}

	.hero-cta {
		flex-direction: row;
	}

	.area-cards {
		grid-template-columns: repeat(3, 1fr);
	}

	.cases-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.chart-wrapper {
		height: 380px;
	}

	.flow-steps {
		flex-direction: row;
		align-items: stretch;
		gap: 0;
	}

	.flow-step {
		flex: 1;
	}

	.flow-arrow {
		align-self: center;
		padding: 0 8px;
		transform: rotate(0deg);
		font-size: 28px;
	}

	.testimonial-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.achievement-stats {
		grid-template-columns: repeat(3, 1fr);
	}

	.sticky-cta {
		display: none;
	}

	.header-tel {
		display: flex;
	}

	.site-footer {
		padding-bottom: 60px;
	}
}

/* ============================================================
   Accessibility
   ============================================================ */
:focus-visible {
	outline: 3px solid var(--gold);
	outline-offset: 2px;
	border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}

	html {
		scroll-behavior: auto;
	}
}

/* ============================================================
   Exit Intent Popup
   ============================================================ */
.exit-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2000;
	padding: 20px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.exit-overlay.is-visible {
	opacity: 1;
	pointer-events: auto;
}

.exit-popup {
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 40px 32px 36px;
	max-width: 460px;
	width: 100%;
	position: relative;
	text-align: center;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
	transform: translateY(16px);
	transition: transform 0.3s ease;
}

.exit-overlay.is-visible .exit-popup {
	transform: translateY(0);
}

.exit-close {
	position: absolute;
	top: 14px;
	right: 16px;
	background: none;
	border: none;
	font-size: 18px;
	color: var(--text-light);
	cursor: pointer;
	padding: 4px 8px;
	line-height: 1;
}

.exit-eyebrow {
	font-size: 12px;
	color: var(--gold);
	font-weight: 700;
	letter-spacing: 0.08em;
	margin-bottom: 12px;
}

.exit-title {
	font-family: var(--font-serif);
	font-size: 20px;
	font-weight: 700;
	color: var(--navy);
	line-height: 1.6;
	margin-bottom: 14px;
}

.exit-body {
	font-size: 14px;
	color: var(--text);
	line-height: 1.8;
	margin-bottom: 24px;
}

.exit-btn {
	width: 100%;
}