/**
 * フェリスパワー特設LP 専用スタイル
 * page-feliz-power.php でのみ読み込む（enqueue.php で is_page('feliz-power') 条件）。
 * 既存トークン（common.css）とユーティリティ（.b/.note-small/.faq-list 等）を流用する。
 *
 * デザイン方針「水を、実感させる」：
 *   - シグネチャー ＝ 水素の気泡（ヒーロー）と pHスペクトル（3種の水）。
 *   - 青でまとめ、ピンク/ゴールドはキャンペーンだけに集中投下して訴求の強弱を作る。
 *   - モーションは prefers-reduced-motion で必ず無効化する。
 */

.page-feliz {
	--feliz-pink: #e3006e;
	--feliz-pink-dark: #c00060;
	--feliz-gold: #d4af37;
	--feliz-acid: #ef9a6b;   /* 酸性側（暖色） */
	--feliz-alka: #2e9bd6;   /* アルカリ側（水色） */
}

.page-feliz .sp-only { display: none; }
@media (max-width: 600px) {
	.page-feliz .sp-only { display: inline; }
}

/* ==========================================================================
   スクロール・イン演出（JSが .is-reveal-ready を付けたときだけ隠す＝JS無効でも表示）
   ========================================================================== */
.page-feliz.is-reveal-ready [data-reveal] {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s ease, transform 0.7s ease;
	will-change: opacity, transform;
}
.page-feliz.is-reveal-ready [data-reveal].is-in {
	opacity: 1;
	transform: none;
}
@media (prefers-reduced-motion: reduce) {
	.page-feliz.is-reveal-ready [data-reveal] {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
}

/* ==========================================================================
   ヒーロー
   ========================================================================== */
.feliz-hero {
	position: relative;
	background:
		radial-gradient( ellipse at 72% 18%, rgba(46, 155, 214, 0.16), transparent 58% ),
		linear-gradient( 165deg, var(--color-primary-pale) 0%, #ffffff 72% );
	overflow: hidden;
}
.feliz-hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: clamp(16px, 4vw, 48px);
	align-items: center;
	padding-block: clamp(36px, 6vw, 72px) clamp(56px, 8vw, 96px);
}
.feliz-hero__eyebrow {
	display: inline-block;
	background: var(--color-secondary-dark);
	color: #fff;
	font-size: 0.85rem;
	font-weight: 700;
	line-height: 1.6;
	padding: 0.5em 1.1em;
	/* 2行に折り返しても窮屈にならないよう、角丸を控えめにする（999pxのピルは1行前提） */
	border-radius: var(--radius-md);
	text-wrap: balance;
	margin-bottom: 1rem;
}
.feliz-hero__title {
	font-family: var(--font-display);
	font-size: clamp(2.1rem, 6.2vw, 3.4rem);
	font-weight: 700;
	line-height: 1.32;
	letter-spacing: 0.02em;
	color: var(--color-primary);
	margin: 0 0 1rem;
	text-wrap: balance;
}
.feliz-hero__accent {
	position: relative;
	color: var(--color-secondary);
}
.feliz-hero__product {
	font-size: clamp(1rem, 2.5vw, 1.25rem);
	font-weight: 700;
	margin: 0 0 1.5rem;
}
.feliz-hero__badge {
	display: inline-flex;
	flex-direction: column;
	gap: 0.2em;
	text-decoration: none;
	background: linear-gradient( 135deg, var(--feliz-pink) 0%, var(--feliz-pink-dark) 100% );
	color: #fff;
	padding: 0.8em 1.4em;
	border-radius: var(--radius-lg);
	box-shadow: 0 8px 20px rgba(227, 0, 110, 0.25);
	margin-bottom: 1.75rem;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feliz-hero__badge:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 26px rgba(227, 0, 110, 0.32);
}
.feliz-hero__badge-off {
	font-size: 1.4rem;
	font-weight: 800;
	line-height: 1.1;
}
.feliz-hero__badge-sub {
	font-size: 0.8rem;
	font-weight: 600;
	opacity: 0.95;
}
.feliz-hero__cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem 1.5rem;
}
.feliz-hero__buttons .btn {
	white-space: nowrap;
}
/* デスクトップ：電話ブロックも左寄せにし、見出しと同じ左端の軸に揃える
   （既定の .phone-cta は中央寄せのため、ヒーロー内だけ上書き） */
.feliz-hero .phone-cta {
	align-items: flex-start;
	text-align: left;
}
.feliz-hero__media {
	position: relative;
	text-align: center;
}
.feliz-hero__media img {
	width: 100%;
	max-width: 460px;
	height: auto;
	margin-inline: auto; /* img は display:block リセット済みのため auto マージンで中央寄せ */
	border-radius: var(--radius-xl);
	box-shadow: 0 20px 40px rgba(14, 58, 95, 0.18);
}

/* 水素の気泡（アンビエント） */
.feliz-hero__bubbles {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
}
.feliz-hero__bubbles span {
	position: absolute;
	bottom: -40px;
	border-radius: 50%;
	background: radial-gradient( circle at 32% 28%, rgba(255, 255, 255, 0.9), rgba(46, 155, 214, 0.28) 60%, rgba(46, 155, 214, 0.05) 100% );
	border: 1px solid rgba(46, 155, 214, 0.22);
	opacity: 0;
	animation: feliz-rise linear infinite;
}
.feliz-hero__bubbles span:nth-child(1)  { left: 6%;  width: 14px; height: 14px; animation-duration: 13s; animation-delay: 0s;   }
.feliz-hero__bubbles span:nth-child(2)  { left: 18%; width: 9px;  height: 9px;  animation-duration: 16s; animation-delay: 3s;   }
.feliz-hero__bubbles span:nth-child(3)  { left: 27%; width: 20px; height: 20px; animation-duration: 18s; animation-delay: 6s;   }
.feliz-hero__bubbles span:nth-child(4)  { left: 39%; width: 11px; height: 11px; animation-duration: 14s; animation-delay: 1.5s; }
.feliz-hero__bubbles span:nth-child(5)  { left: 48%; width: 16px; height: 16px; animation-duration: 20s; animation-delay: 8s;   }
.feliz-hero__bubbles span:nth-child(6)  { left: 58%; width: 8px;  height: 8px;  animation-duration: 15s; animation-delay: 4s;   }
.feliz-hero__bubbles span:nth-child(7)  { left: 67%; width: 22px; height: 22px; animation-duration: 19s; animation-delay: 2s;   }
.feliz-hero__bubbles span:nth-child(8)  { left: 78%; width: 12px; height: 12px; animation-duration: 17s; animation-delay: 7s;   }
.feliz-hero__bubbles span:nth-child(9)  { left: 87%; width: 10px; height: 10px; animation-duration: 13s; animation-delay: 5s;   }
.feliz-hero__bubbles span:nth-child(10) { left: 94%; width: 15px; height: 15px; animation-duration: 21s; animation-delay: 9s;   }
.feliz-hero__bubbles span:nth-child(11) { left: 3%;  width: 10px; height: 10px; animation-duration: 15s; animation-delay: 10s;  }
.feliz-hero__bubbles span:nth-child(12) { left: 12%; width: 17px; height: 17px; animation-duration: 19s; animation-delay: 5.5s; }
.feliz-hero__bubbles span:nth-child(13) { left: 22%; width: 8px;  height: 8px;  animation-duration: 14s; animation-delay: 8.5s; }
.feliz-hero__bubbles span:nth-child(14) { left: 33%; width: 13px; height: 13px; animation-duration: 18s; animation-delay: 3.5s; }
.feliz-hero__bubbles span:nth-child(15) { left: 44%; width: 19px; height: 19px; animation-duration: 22s; animation-delay: 11s;  }
.feliz-hero__bubbles span:nth-child(16) { left: 53%; width: 10px; height: 10px; animation-duration: 16s; animation-delay: 6.5s; }
.feliz-hero__bubbles span:nth-child(17) { left: 63%; width: 14px; height: 14px; animation-duration: 17s; animation-delay: 9.5s; }
.feliz-hero__bubbles span:nth-child(18) { left: 73%; width: 9px;  height: 9px;  animation-duration: 15s; animation-delay: 2.5s; }
.feliz-hero__bubbles span:nth-child(19) { left: 83%; width: 18px; height: 18px; animation-duration: 20s; animation-delay: 12s;  }
.feliz-hero__bubbles span:nth-child(20) { left: 90%; width: 11px; height: 11px; animation-duration: 16s; animation-delay: 4.5s; }
.feliz-hero__bubbles span:nth-child(21) { left: 9%;  width: 12px; height: 12px; animation-duration: 17s; animation-delay: 1s;    }
.feliz-hero__bubbles span:nth-child(22) { left: 16%; width: 7px;  height: 7px;  animation-duration: 13s; animation-delay: 7.5s;  }
.feliz-hero__bubbles span:nth-child(23) { left: 30%; width: 15px; height: 15px; animation-duration: 20s; animation-delay: 3s;    }
.feliz-hero__bubbles span:nth-child(24) { left: 37%; width: 9px;  height: 9px;  animation-duration: 15s; animation-delay: 10.5s; }
.feliz-hero__bubbles span:nth-child(25) { left: 51%; width: 13px; height: 13px; animation-duration: 18s; animation-delay: 0.5s;  }
.feliz-hero__bubbles span:nth-child(26) { left: 61%; width: 8px;  height: 8px;  animation-duration: 14s; animation-delay: 5s;    }
.feliz-hero__bubbles span:nth-child(27) { left: 70%; width: 17px; height: 17px; animation-duration: 21s; animation-delay: 8s;    }
.feliz-hero__bubbles span:nth-child(28) { left: 80%; width: 10px; height: 10px; animation-duration: 16s; animation-delay: 2s;    }
.feliz-hero__bubbles span:nth-child(29) { left: 88%; width: 14px; height: 14px; animation-duration: 19s; animation-delay: 11.5s; }
.feliz-hero__bubbles span:nth-child(30) { left: 97%; width: 9px;  height: 9px;  animation-duration: 14s; animation-delay: 6s;    }
@keyframes feliz-rise {
	0%   { transform: translateY(0) scale(0.6);   opacity: 0; }
	12%  { opacity: 0.7; }
	80%  { opacity: 0.55; }
	100% { transform: translateY(-96vh) scale(1); opacity: 0; }
}

/* 水面の波形ディバイダ */
.feliz-wave {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	z-index: 2;
	line-height: 0;
}
.feliz-wave svg {
	display: block;
	width: 100%;
	height: clamp(40px, 6vw, 72px);
}
.feliz-wave path {
	fill: #ffffff;
}

@media (max-width: 768px) {
	.feliz-hero__inner {
		grid-template-columns: 1fr;
	}
	.feliz-hero__media {
		order: -1;
	}
	.feliz-hero__media img {
		max-width: 280px;
	}
	/* スマホ（縦並び）：ヒーローの文字・要素をすべて中央寄せで統一 */
	.feliz-hero__body {
		text-align: center;
	}
	.feliz-hero__cta {
		justify-content: center;
	}
	.feliz-hero .phone-cta {
		align-items: center;
		text-align: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	.feliz-hero__bubbles { display: none; }
}

/* ==========================================================================
   信頼バー
   ========================================================================== */
.feliz-trust {
	background: #fff;
	border-bottom: 1px solid var(--color-border-light);
}
.feliz-trust__list {
	list-style: none;
	margin: 0;
	padding: clamp(20px, 3vw, 32px) 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(8px, 2vw, 24px);
}
.feliz-trust__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.4rem;
	text-align: center;
	padding-inline: 0.4rem;
	position: relative;
	min-width: 0; /* 長い認証番号でグリッド列が膨らみ横スクロールが出るのを防ぐ */
}
.feliz-trust__item + .feliz-trust__item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 12%;
	height: 76%;
	border-left: 1px solid var(--color-border);
}
.feliz-trust__num {
	font-family: var(--font-display);
	font-size: clamp(2rem, 5vw, 2.9rem);
	font-weight: 700;
	line-height: 1;
	color: var(--color-primary);
	letter-spacing: 0.01em;
}
.feliz-trust__num--sm {
	font-size: clamp(1.1rem, 2.6vw, 1.4rem);
	line-height: 1.2;
}
.feliz-trust__unit {
	font-size: 0.5em;
	margin-left: 0.1em;
	color: var(--color-secondary-dark);
}
.feliz-trust__label {
	font-size: clamp(0.72rem, 1.8vw, 0.85rem);
	font-weight: 600;
	line-height: 1.5;
	color: var(--color-text-mid);
	/* 認証番号など長い連続文字列がセル幅を超えて見切れないように折り返す */
	overflow-wrap: anywhere;
}

@media (max-width: 600px) {
	.feliz-trust__list {
		grid-template-columns: repeat(2, 1fr);
		gap: 18px 8px;
	}
	.feliz-trust__item:nth-child(odd)::before { display: none; }
	.feliz-trust__item:nth-child(3)::before,
	.feliz-trust__item:nth-child(4) { position: relative; }
	.feliz-trust__item:nth-child(3)::before { display: none; }
}

/* ==========================================================================
   共感（お悩み）
   ========================================================================== */
.feliz-worries {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(12px, 2vw, 18px);
}
.feliz-worry {
	display: flex;
	align-items: flex-start;
	gap: 0.9rem;
	background: var(--color-bg-soft);
	border: 1px solid var(--color-border-light);
	border-radius: var(--radius-lg);
	padding: 1.15rem 1.3rem;
}
.feliz-worry__icon {
	flex: 0 0 auto;
	font-size: 1.6rem;
	line-height: 1.4;
}
.feliz-worry p {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.75;
	color: var(--color-text);
}
.feliz-worries__bridge {
	margin: clamp(20px, 3vw, 30px) 0 0;
	text-align: center;
	font-family: var(--font-display);
	font-size: clamp(1.1rem, 3vw, 1.5rem);
	font-weight: 700;
	line-height: 1.7;
	color: var(--color-primary);
}

/* 標準的なデスクトップ幅では Check 見出しを1行に保つ（「か？」だけの折返しを防ぐ） */
@media (min-width: 900px) {
	.page-feliz .section-title--nowrap-lg {
		white-space: nowrap;
		max-width: none;
	}
}

@media (max-width: 600px) {
	.feliz-worries {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   浄水器 vs 整水器 テーブル
   ========================================================================== */
.page-feliz .feliz-diff-table {
	width: 100%;
	min-width: 640px;
	table-layout: fixed;
	border-collapse: collapse;
}
.page-feliz .feliz-diff-table th:first-child {
	width: 8.5em;
}
.page-feliz .feliz-diff-table th,
.page-feliz .feliz-diff-table td {
	border: 1px solid var(--color-border);
	padding: 0.9em 1em;
	text-align: left;
	vertical-align: top;
	font-size: 0.95rem;
	white-space: normal;
	word-break: break-word;
	background: #fff;
}
.page-feliz .feliz-diff-table thead th {
	background: var(--color-primary);
	color: #fff;
	text-align: center;
	font-weight: 700;
}
.page-feliz .feliz-diff-table thead th:last-child {
	background: var(--color-secondary-dark);
}
.page-feliz .feliz-diff-table tbody th {
	background: var(--color-bg-mid);
	white-space: nowrap;
	font-weight: 700;
	color: var(--color-primary);
}
.page-feliz .feliz-diff-table thead th:first-child {
	background: transparent;
}
/* 整水器列をさりげなく強調 */
.page-feliz .feliz-diff-table tbody td:last-child {
	background: var(--color-primary-pale);
}

/* ==========================================================================
   3種類の水（pHスペクトル）＝シグネチャー
   ========================================================================== */
.feliz-ph__scale {
	position: relative;
	margin: 0 auto clamp(28px, 4vw, 44px);
	max-width: 900px;
	padding-top: 1.6rem;
}
.feliz-ph__bar {
	display: block;
	height: 16px;
	border-radius: 999px;
	background: linear-gradient( 90deg,
		var(--feliz-acid) 0%,
		#f4d7bf 26%,
		var(--color-bg-mid) 50%,
		#a9d8f0 74%,
		var(--feliz-alka) 100% );
	box-shadow: inset 0 1px 3px rgba(14, 58, 95, 0.12);
}
.feliz-ph__tick {
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--color-text-mid);
	white-space: nowrap;
}
.feliz-ph__tick--acid    { left: 6%;  color: #c26a35; }
.feliz-ph__tick--neutral { left: 50%; }
.feliz-ph__tick--alka    { left: 94%; color: var(--color-secondary-dark); }

.feliz-ph__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(12px, 2vw, 20px);
	align-items: stretch;
}
.feliz-ph__card {
	position: relative;
	background: #fff;
	border: 1px solid var(--color-border);
	border-top: 4px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 1.5rem 1.3rem 1.4rem;
	box-shadow: 0 4px 14px rgba(14, 58, 95, 0.05);
}
.feliz-ph__card--acid    { border-top-color: var(--feliz-acid); }
.feliz-ph__card--neutral { border-top-color: #9fb4c2; }
.feliz-ph__card--alka    { border-top-color: var(--feliz-alka); }
.feliz-ph__card--hero {
	background: var(--color-primary-pale);
	border-color: var(--color-secondary);
	box-shadow: 0 10px 26px rgba(46, 155, 214, 0.18);
}
.feliz-ph__badge {
	display: inline-block;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--color-text-mid);
	background: var(--color-bg-mid);
	border-radius: 999px;
	padding: 0.28em 1em;
	margin-bottom: 0.7rem;
}
.feliz-ph__card--acid .feliz-ph__badge    { background: #fbe6d6; color: #b45f2c; }
.feliz-ph__badge--main {
	background: var(--color-secondary);
	color: #fff;
}
.feliz-ph__name {
	font-size: 1.08rem;
	font-weight: 700;
	color: var(--color-primary);
	margin: 0 0 0.55rem;
	line-height: 1.5;
}
.feliz-ph__desc {
	font-size: 0.92rem;
	line-height: 1.8;
	color: var(--color-text-mid);
	margin: 0;
}

@media (max-width: 768px) {
	.feliz-ph__cards {
		grid-template-columns: 1fr;
	}
	.feliz-ph__card--hero { order: -1; }
}

/* ==========================================================================
   6つの特徴
   ========================================================================== */
.feliz-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(12px, 2vw, 20px);
}
.feliz-feature {
	position: relative;
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 2.4rem 1.4rem 1.4rem;
	box-shadow: 0 4px 14px rgba(14, 58, 95, 0.05);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feliz-feature:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 26px rgba(14, 58, 95, 0.12);
}
/* 番号バッジ：水滴（しずく）形。インラインSVGを背景にし、数字を丸い部分へ重ねる */
.feliz-feature__no {
	position: absolute;
	top: -20px;
	left: 1.1rem;
	width: 42px;
	height: 50px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 9px; /* 数字を水滴のふくらみ側へ寄せる */
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 42 50'%3E%3Cpath fill='%232e9bd6' d='M21,2C21,2,6,19,6,31A15,15,0,1,0,36,31C36,19,21,2,21,2Z'/%3E%3C/svg%3E") no-repeat center / contain;
	color: #fff;
	font-weight: 800;
	font-size: 1.1rem;
	line-height: 1;
	filter: drop-shadow(0 4px 8px rgba(46, 155, 214, 0.35));
}
.feliz-feature__title {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--color-primary);
	margin: 0 0 0.6rem;
}
.feliz-feature__desc {
	font-size: 0.92rem;
	line-height: 1.8;
	color: var(--color-text-mid);
	margin: 0;
}
.feliz-feature__note {
	display: inline-block;
	margin-top: 0.4rem;
	font-size: 0.8rem;
	color: var(--color-text-muted);
}

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

/* フィルター構造 */
.feliz-filter {
	margin-top: clamp(24px, 4vw, 40px);
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: clamp(20px, 3vw, 32px);
}
.feliz-filter__title {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--color-primary);
	margin: 0 0 1rem;
	text-align: center;
}
.feliz-filter__list {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: filter;
}
.feliz-filter__list li {
	position: relative;
	padding: 0.9em 0 0.9em 2.4em;
	border-bottom: 1px dashed var(--color-border);
	font-size: 1.02rem;
	line-height: 1.75;
	color: var(--color-text-mid);
}
.feliz-filter__list li:last-child {
	border-bottom: 0;
}
.feliz-filter__list li::before {
	counter-increment: filter;
	content: counter(filter);
	position: absolute;
	left: 0;
	top: 0.9em;
	width: 1.7em;
	height: 1.7em;
	display: grid;
	place-items: center;
	background: var(--color-primary-pale);
	color: var(--color-secondary-dark);
	font-weight: 700;
	font-size: 0.88rem;
	border-radius: 50%;
}
.feliz-filter__name {
	display: block;
	font-weight: 700;
	color: var(--color-primary);
	font-size: 1.1rem;
}

/* ==========================================================================
   お客様の声
   ========================================================================== */
.feliz-voices {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: clamp(12px, 2vw, 20px);
}
.feliz-voice {
	margin: 0;
	background: var(--color-bg-soft);
	border-radius: var(--radius-lg);
	padding: 1.5rem;
	border-left: 4px solid var(--color-secondary);
}
.feliz-voice blockquote {
	margin: 0 0 0.8rem;
	font-size: 0.95rem;
	line-height: 1.85;
	color: var(--color-text);
}
.feliz-voice blockquote::before {
	content: "“";
	color: var(--color-secondary);
	font-size: 1.8rem;
	font-weight: 800;
	line-height: 0;
	margin-right: 0.1em;
	vertical-align: -0.35em;
}
.feliz-voice figcaption {
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--color-text-muted);
	text-align: right;
}

/* ==========================================================================
   中間CTA（濃紺の帯）
   ========================================================================== */
.feliz-midcta {
	background: linear-gradient( 160deg, var(--color-primary) 0%, var(--color-primary-dark) 100% );
	position: relative;
	overflow: hidden;
}
.feliz-midcta::after {
	content: '';
	position: absolute;
	right: -80px;
	top: -80px;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background: radial-gradient( circle, rgba(46, 155, 214, 0.35), transparent 70% );
	pointer-events: none;
}
.feliz-midcta__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: clamp(16px, 4vw, 48px);
	padding-block: clamp(32px, 5vw, 52px);
	text-align: center;
}
.feliz-midcta__lead {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(1.15rem, 3vw, 1.55rem);
	font-weight: 700;
	line-height: 1.7;
	color: #fff;
}
.feliz-midcta__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}
/* 濃紺帯の上で電話CTAを白基調にする */
.feliz-midcta .phone-cta__label { color: rgba(255, 255, 255, 0.9); }
.feliz-midcta .phone-cta__number { color: #fff; }
.feliz-midcta .phone-cta__icon { color: #7fd0f5; }
.feliz-midcta .phone-cta__hours { color: rgba(255, 255, 255, 0.75); }
/* 資料ボタンは既定（白背景×オレンジ文字＝濃紺帯で映える）をそのまま使う */

/* ==========================================================================
   製品情報
   ========================================================================== */
.feliz-spec {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: clamp(20px, 4vw, 40px);
	align-items: center;
}
.feliz-spec__media {
	text-align: center;
}
.feliz-spec__media img {
	width: 100%;
	max-width: 320px;
	height: auto;
	margin-inline: auto; /* img は display:block リセット済みのため auto マージンで中央寄せ */
}
.page-feliz .feliz-spec__table table {
	width: 100%;
	min-width: 0; /* single.css の min-width:600px を打ち消す（モバイルで見切れ防止） */
	border-collapse: collapse;
}
.page-feliz .feliz-spec__table th,
.page-feliz .feliz-spec__table td {
	border: 1px solid var(--color-border);
	padding: 0.75em 1em;
	font-size: 0.92rem;
	text-align: left;
	vertical-align: top;
	white-space: normal; /* single.css の nowrap を打ち消して折り返す */
	word-break: break-word;
	background: #fff;
}
.page-feliz .feliz-spec__table th {
	background: var(--color-bg-mid);
	font-weight: 700;
	color: var(--color-primary);
	width: 8.5em;
}
.feliz-spec__link {
	margin-top: 1.2rem;
	text-align: right;
	font-size: 0.95rem;
}
.feliz-spec__link a {
	color: var(--color-secondary-dark);
	font-weight: 700;
	text-decoration: none;
}
.feliz-spec__link a:hover {
	text-decoration: underline;
}

@media (max-width: 768px) {
	.feliz-spec {
		grid-template-columns: 1fr;
	}
	.feliz-spec__media img {
		max-width: 220px;
	}
}

/* ==========================================================================
   サポート
   ========================================================================== */
.feliz-support {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(20px, 4vw, 40px);
	align-items: center;
}
.feliz-support__media img {
	width: 100%;
	height: auto;
	border-radius: var(--radius-lg);
}
.feliz-support__list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.feliz-support__list li {
	position: relative;
	padding: 0.9em 0 0.9em 2em;
	border-bottom: 1px solid var(--color-border);
	font-size: 1rem;
	line-height: 1.7;
}
.feliz-support__list li:last-child {
	border-bottom: 0;
}
.feliz-support__list li::before {
	content: "";
	position: absolute;
	left: 0.2em;
	top: 1.15em;
	width: 0.7em;
	height: 0.4em;
	border-left: 3px solid var(--color-accent);
	border-bottom: 3px solid var(--color-accent);
	transform: rotate(-45deg);
}

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

/* ==========================================================================
   キャンペーン（濃紺セクション＋特典カード＋クロージングCTA）
   ========================================================================== */
.feliz-campaign-sec {
	background:
		radial-gradient( ellipse at 20% 0%, rgba(46, 155, 214, 0.22), transparent 55% ),
		linear-gradient( 165deg, var(--color-primary) 0%, var(--color-primary-dark) 100% );
	color: #fff;
}
.feliz-campaign__tag {
	display: inline-block;
	background: linear-gradient( 135deg, var(--feliz-pink) 0%, var(--feliz-pink-dark) 100% );
	color: #fff;
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	padding: 0.4em 1.4em;
	border-radius: 999px;
	margin-bottom: 1rem;
	box-shadow: 0 6px 16px rgba(227, 0, 110, 0.35);
}
.feliz-campaign {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(12px, 2vw, 20px);
}
.feliz-benefit {
	position: relative;
	background: #fff;
	border: 2px solid var(--feliz-gold);
	border-radius: var(--radius-lg);
	padding: 2.6rem 1.4rem 1.5rem;
	text-align: center;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
	color: var(--color-text);
}
.feliz-benefit--price {
	grid-column: 1 / -1;
	background: linear-gradient( 180deg, #fffdf5 0%, #fff 100% );
}
.feliz-benefit__no {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	background: linear-gradient( 135deg, #e6c65a, var(--feliz-gold) );
	color: #5a4708;
	font-weight: 800;
	font-size: 0.9rem;
	padding: 0.3em 1.2em;
	border-radius: 999px;
}
.feliz-benefit__pricelead {
	margin: 0 0 0.3rem;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--color-primary);
}
.feliz-benefit__price {
	margin: 0 0 0.4rem;
	font-size: 1rem;
	color: var(--color-text-mid);
}
.feliz-benefit__old {
	text-decoration: line-through;
	color: var(--color-text-muted);
}
.feliz-benefit__arrow {
	color: var(--feliz-pink);
}
.feliz-benefit__new {
	font-family: var(--font-display);
	font-size: 1.9rem;
	font-weight: 800;
	color: var(--feliz-pink);
	letter-spacing: 0.01em;
}
.feliz-benefit__tax {
	font-size: 0.8rem;
	color: var(--color-text-muted);
}
.feliz-benefit__save {
	display: inline-block;
	margin: 0.2rem 0 0;
	font-size: 0.9rem;
	font-weight: 800;
	color: #fff;
	background: var(--feliz-pink);
	border-radius: 999px;
	padding: 0.25em 1.1em;
}
.feliz-benefit__lead {
	margin: 0;
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.5;
	color: var(--color-primary);
}
.feliz-benefit__small {
	display: inline-block;
	margin-left: 0.4em;
	font-size: 0.85rem;
	font-weight: 700;
	color: #fff;
	background: var(--feliz-pink);
	border-radius: 999px;
	padding: 0.15em 0.8em;
	vertical-align: middle;
}
.feliz-campaign__cta {
	margin-top: clamp(24px, 4vw, 40px);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius-lg);
	padding: clamp(20px, 3vw, 32px);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.2rem;
}
.feliz-campaign__cta .phone-cta__label { color: rgba(255, 255, 255, 0.9); }
.feliz-campaign__cta .phone-cta__number { color: #fff; }
.feliz-campaign__cta .phone-cta__icon { color: #7fd0f5; }
.feliz-campaign__cta .phone-cta__hours { color: rgba(255, 255, 255, 0.75); }
.feliz-campaign__note {
	color: rgba(255, 255, 255, 0.72);
	text-align: center;
}

@media (max-width: 600px) {
	.feliz-campaign {
		grid-template-columns: 1fr;
	}
}
