/* ==========================================================================
   Front Page — Tech Modern (full-bleed sections + gradient mesh)
   ==========================================================================
   - 各セクションは 100vw でブレイクアウトし、内側の inner で max-width を維持
   - SWELL の .l-container 内に置かれてもフル幅背景を作るため
   ========================================================================== */

:root {
	--swch-front-content-w: 1000px;
	--swch-tech-navy: #0b1020;
	--swch-tech-navy-2: #111a3a;
	--swch-tech-indigo: #1e1b4b;
	--swch-tech-violet: #4338ca;
	--swch-tech-fuchsia: #db2777;
	--swch-tech-cyan: #22d3ee;
	--swch-grid-color: rgba(148, 163, 184, 0.08);
}

/* SWELL の content 上下余白をホーム時のみリセットしてフル幅セクションを成立させる */
.home .l-content {
	padding-top: 0;
	margin-bottom: 0;
}

.swch-front {
	color: var(--swch-text);
}

.swch-front section {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	padding: 96px 24px;
	overflow: hidden;
}

.swch-front section > [class$="-inner"] {
	max-width: var(--swch-front-content-w);
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.swch-section-title {
	font-size: 1.625rem;
	font-weight: 700;
	color: var(--swch-text);
	margin: 0 0 40px;
	text-align: center;
	letter-spacing: -0.02em;
}

.swch-section-eyebrow {
	display: inline-block;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--swch-tech-violet);
	background: var(--swch-accent-light);
	padding: 6px 12px;
	border-radius: 999px;
	margin-bottom: 16px;
}

.swch-section-header {
	text-align: center;
	margin-bottom: 48px;
}

.swch-section-header .swch-section-title {
	margin: 0;
}

.swch-section-footer {
	margin-top: 40px;
	text-align: center;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.swch-btn {
	display: inline-block;
	padding: 14px 28px;
	border-radius: var(--swch-radius-sm);
	font-size: 0.9375rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	border: 1px solid transparent;
	transition: transform var(--swch-transition), background var(--swch-transition), color var(--swch-transition), border-color var(--swch-transition), box-shadow var(--swch-transition);
	line-height: 1.5;
	letter-spacing: 0.01em;
}

.swch-btn-primary {
	background: linear-gradient(135deg, var(--swch-tech-violet) 0%, var(--swch-tech-fuchsia) 100%);
	/* .swch-btn の 1px 透明ボーダー帯にグラデ端が見えるのを防ぐため
	   border-box まで塗りを伸ばす（product.css と同じ対策）。 */
	background-origin: border-box;
	background-clip: border-box;
	color: var(--swch-white);
	box-shadow: 0 8px 24px -8px rgba(79, 70, 229, 0.6);
}

.swch-btn-primary:hover {
	color: var(--swch-white);
	transform: translateY(-1px);
	box-shadow: 0 12px 28px -8px rgba(79, 70, 229, 0.7);
}

.swch-btn-secondary {
	background: rgba(255, 255, 255, 0.08);
	color: var(--swch-white);
	border-color: rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(8px);
}

.swch-btn-secondary:hover {
	background: rgba(255, 255, 255, 0.16);
	color: var(--swch-white);
	border-color: rgba(255, 255, 255, 0.5);
}

.swch-btn-outline {
	background: transparent;
	color: var(--swch-tech-violet);
	border-color: var(--swch-tech-violet);
}

.swch-btn-outline:hover {
	background: var(--swch-tech-violet);
	color: var(--swch-white);
}

/* ==========================================================================
   Hero — dark tech mesh gradient
   ========================================================================== */

.swch-hero {
	background:
		radial-gradient(ellipse 80% 50% at 20% 0%, rgba(79, 70, 229, 0.35), transparent 60%),
		radial-gradient(ellipse 60% 50% at 80% 20%, rgba(236, 72, 153, 0.22), transparent 60%),
		radial-gradient(ellipse 50% 60% at 50% 100%, rgba(34, 211, 238, 0.18), transparent 60%),
		linear-gradient(180deg, var(--swch-tech-navy) 0%, var(--swch-tech-indigo) 100%);
	color: var(--swch-white);
	padding: 128px 24px 112px;
	text-align: center;
}

/* グリッドメッシュオーバーレイ */
.swch-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(var(--swch-grid-color) 1px, transparent 1px),
		linear-gradient(90deg, var(--swch-grid-color) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 50%, transparent 100%);
	pointer-events: none;
	z-index: 0;
}

.swch-hero-inner {
	max-width: 800px;
	position: relative;
	z-index: 1;
}

.swch-hero-eyebrow {
	display: inline-block;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.75);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.18);
	padding: 7px 14px;
	border-radius: 999px;
	margin-bottom: 24px;
	backdrop-filter: blur(8px);
}

.swch-hero-title {
	font-size: 2.75rem;
	font-weight: 800;
	color: var(--swch-white);
	margin: 0 0 20px;
	letter-spacing: -0.03em;
	line-height: 1.25;
}

.swch-hero-title .swch-grad-text {
	background: linear-gradient(90deg, #a5b4fc 0%, #f0abfc 50%, #67e8f9 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.swch-hero-tagline {
	font-size: 1.0625rem;
	color: rgba(255, 255, 255, 0.78);
	margin: 0 0 36px;
	line-height: 1.8;
}

.swch-hero-ctas {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ==========================================================================
   Features — 明るい背景にグラデーションのアクセント
   ========================================================================== */

.swch-features {
	background: var(--swch-bg);
}

.swch-features::before {
	content: "";
	position: absolute;
	top: -1px;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--swch-tech-violet), var(--swch-tech-fuchsia), transparent);
	opacity: 0.4;
	z-index: 1;
}

.swch-features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.swch-feature-card {
	position: relative;
	background: var(--swch-white);
	border: 1px solid var(--swch-border);
	border-radius: var(--swch-radius);
	padding: 32px 24px;
	text-align: center;
	box-shadow: var(--swch-shadow);
	transition: box-shadow var(--swch-transition), border-color var(--swch-transition), transform var(--swch-transition);
	overflow: hidden;
}

.swch-feature-card::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--swch-tech-violet), var(--swch-tech-fuchsia));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.swch-feature-card:hover {
	border-color: transparent;
	box-shadow: 0 12px 32px -10px rgba(79, 70, 229, 0.18);
	transform: translateY(-2px);
}

.swch-feature-card:hover::after {
	transform: scaleX(1);
}

.swch-feature-icon {
	width: 52px;
	height: 52px;
	margin: 0 auto 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--swch-tech-violet) 0%, var(--swch-tech-fuchsia) 100%);
	color: var(--swch-white);
	border-radius: 14px;
	font-size: 1.25rem;
	font-weight: 700;
	box-shadow: 0 8px 20px -6px rgba(79, 70, 229, 0.4);
}

.swch-feature-card h3 {
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--swch-text);
	margin: 0 0 10px;
	line-height: 1.5;
	letter-spacing: -0.01em;
}

.swch-feature-card p {
	font-size: 0.875rem;
	color: var(--swch-text-secondary);
	margin: 0;
	line-height: 1.8;
}

/* ==========================================================================
   Featured Plugins — 全幅スポットライト（カードではなく価値を1画面で）
   ========================================================================== */

.swch-featured-plugins {
	background: var(--swch-white);
}

/* 注目セクションだけは横幅を広げ、左右並びでも情報密度を保つ。
   `.swch-front section > [class$="-inner"]` の (0,2,1) を上回るよう指定。 */
.swch-front .swch-featured-plugins > .swch-featured-plugins-inner {
	max-width: 1400px;
}

.swch-section-sub {
	margin: 12px auto 0;
	max-width: 620px;
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--swch-text-secondary);
}

.swch-featured-empty {
	text-align: center;
	color: var(--swch-text-muted);
	font-size: 0.9375rem;
	padding: 32px 0;
}

.swch-spotlight {
	display: flex;
	flex-direction: column;
	gap: 72px;
}

.swch-spotlight-item {
	display: grid;
	grid-template-columns: minmax(0, 600px) minmax(0, 1fr);
	align-items: center;
	gap: 48px;
}

/* 偶数番目は画像と本文を入れ替えて縦のリズムを作る */
.swch-spotlight-item:nth-child(even) .swch-spotlight-media {
	order: 2;
}

.swch-spotlight-media {
	min-width: 0;
}

/* 画像（figure）全体を商品ページへのリンクとしてラップ。色変化やテキスト
   装飾は持ち込まず、ホバー時のみ軽く浮かせて被リンク性を示す。 */
.swch-spotlight-figlink {
	display: block;
	color: inherit;
	text-decoration: none;
	transition: transform var(--swch-transition), box-shadow var(--swch-transition);
}

.swch-spotlight-figlink:hover,
.swch-spotlight-figlink:focus-visible {
	transform: translateY(-2px);
}

.swch-spotlight-figlink:focus-visible {
	outline: 2px solid var(--swch-tech-violet);
	outline-offset: 4px;
	border-radius: calc(var(--swch-radius) + 2px);
}

.swch-spotlight-fig {
	margin: 0;
	background: var(--swch-white);
	border: 1px solid var(--swch-border);
	border-radius: var(--swch-radius);
	overflow: hidden;
	box-shadow: 0 22px 48px -24px rgba(15, 23, 42, 0.32);
	transition: box-shadow var(--swch-transition), border-color var(--swch-transition);
}

.swch-spotlight-figlink:hover .swch-spotlight-fig,
.swch-spotlight-figlink:focus-visible .swch-spotlight-fig {
	box-shadow: 0 26px 56px -22px rgba(15, 23, 42, 0.4);
	border-color: var(--swch-tech-violet);
}

.swch-spotlight-fig img,
.swch-spotlight-fig video {
	display: block;
	width: 100%;
	height: auto;
}

.swch-spotlight-fig figcaption {
	padding: 10px 14px;
	font-size: 0.78rem;
	line-height: 1.5;
	color: var(--swch-text-secondary);
	background: var(--swch-bg);
	border-top: 1px solid var(--swch-border-light);
}

.swch-spotlight-fig.is-placeholder {
	aspect-ratio: 16 / 10;
	border: 0;
	background:
		radial-gradient(ellipse 70% 80% at 20% 20%, rgba(236, 72, 153, 0.4), transparent 60%),
		linear-gradient(135deg, var(--swch-tech-indigo) 0%, var(--swch-tech-violet) 100%);
}

.swch-spotlight-thumbs {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 14px;
	margin-top: 14px;
}

.swch-spotlight-thumbs .swch-spotlight-fig img,
.swch-spotlight-thumbs .swch-spotlight-fig video {
	aspect-ratio: 16 / 10;
	object-fit: cover;
	object-position: top center;
}

.swch-spotlight-content {
	min-width: 0;
}

.swch-spotlight-eyebrow {
	display: inline-block;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--swch-tech-violet);
	background: var(--swch-accent-light);
	padding: 6px 12px;
	border-radius: 999px;
	margin-bottom: 16px;
}

.swch-spotlight-title {
	font-size: 1.625rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.3;
	margin: 0 0 12px;
}

.swch-spotlight-title a {
	color: var(--swch-text);
	text-decoration: none;
	background-image: linear-gradient(90deg, var(--swch-tech-violet), var(--swch-tech-fuchsia));
	background-size: 0% 2px;
	background-repeat: no-repeat;
	background-position: 0 100%;
	transition: background-size var(--swch-transition), color var(--swch-transition);
}

.swch-spotlight-title a:hover {
	color: var(--swch-tech-violet);
	background-size: 100% 2px;
}

.swch-spotlight-catch {
	display: flex;
	align-items: baseline;
	gap: 12px;
	font-size: 1.0625rem;
	font-weight: 700;
	line-height: 1.6;
	color: var(--swch-text);
	margin: 0 0 14px;
}

.swch-spotlight-catch::before {
	content: "";
	flex-shrink: 0;
	width: 22px;
	height: 3px;
	border-radius: 2px;
	transform: translateY(-4px);
	background: linear-gradient(90deg, var(--swch-tech-violet), var(--swch-tech-fuchsia));
}

/* 2段式の説明: summary が「何であるか（概要）」、lead が「何ができるか（価値）」。
   見出しを増やさずに視覚的な階層を付けるため、summary は本文色・lead はサブ色＋
   ブランド色の左罫線で軽く引用ブロック風に見せる。 */
.swch-spotlight-summary {
	font-size: 0.95rem;
	line-height: 1.9;
	color: var(--swch-text);
	margin: 0 0 14px;
}

.swch-spotlight-lead {
	font-size: 0.9rem;
	line-height: 1.9;
	color: var(--swch-text-secondary);
	margin: 0 0 22px;
	padding-left: 14px;
	border-left: 2px solid var(--swch-accent-light);
}

.swch-spotlight-points {
	list-style: none;
	margin: 0 0 26px;
	padding: 0;
	display: grid;
	gap: 10px;
}

/* 塗りつぶしのチェック丸はくどいので、ブランド色のチェック線だけを残す軽い装飾に。
   ::before の薄色グロウだけ残し、視線誘導は文字側で持たせる。 */
.swch-spotlight-points li {
	position: relative;
	padding-left: 22px;
	font-size: 0.9rem;
	line-height: 1.75;
	color: var(--swch-text-secondary);
}

/* 機能名は本文色＋太字で立てる。続く em-dash 区切りで説明文へ繋ぐ。 */
.swch-spotlight-points li strong {
	color: var(--swch-text);
	font-weight: 700;
	margin-right: 2px;
}

.swch-spotlight-points li::before {
	content: "";
	position: absolute;
	left: 2px;
	top: 8px;
	width: 5px;
	height: 9px;
	border: solid var(--swch-tech-violet);
	border-width: 0 1.5px 1.5px 0;
	transform: rotate(45deg);
	opacity: 0.85;
}

/* 想定ユースケース。タグ風の控えめなチップで補足し、本文の重さを増やさない。 */
.swch-spotlight-usecase {
	margin: 0 0 24px;
	padding: 10px 14px;
	border-radius: 8px;
	background: var(--swch-bg);
	font-size: 0.8125rem;
	line-height: 1.7;
	color: var(--swch-text-secondary);
}

.swch-spotlight-foot {
	display: flex;
	align-items: center;
	gap: 22px;
	flex-wrap: wrap;
}

/* ==========================================================================
   How It Works — ダークセクション
   ========================================================================== */

.swch-how-it-works {
	background:
		radial-gradient(ellipse 60% 50% at 80% 0%, rgba(79, 70, 229, 0.18), transparent 60%),
		radial-gradient(ellipse 50% 60% at 10% 100%, rgba(34, 211, 238, 0.12), transparent 60%),
		linear-gradient(180deg, var(--swch-tech-navy) 0%, var(--swch-tech-navy-2) 100%);
	color: var(--swch-white);
}

.swch-how-it-works::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 40%, transparent 100%);
	pointer-events: none;
}

.swch-how-it-works .swch-section-title {
	color: var(--swch-white);
}

.swch-steps {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	counter-reset: swch-step;
}

.swch-step {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--swch-radius);
	padding: 32px 24px;
	text-align: center;
	backdrop-filter: blur(8px);
	transition: border-color var(--swch-transition), background var(--swch-transition);
}

.swch-step:hover {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(165, 180, 252, 0.4);
}

.swch-step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--swch-tech-violet) 0%, var(--swch-tech-fuchsia) 100%);
	color: var(--swch-white);
	font-size: 1.0625rem;
	font-weight: 800;
	margin-bottom: 18px;
	box-shadow: 0 8px 20px -6px rgba(79, 70, 229, 0.5);
}

.swch-step h3 {
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--swch-white);
	margin: 0 0 10px;
	letter-spacing: -0.01em;
}

.swch-step p {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.72);
	margin: 0;
	line-height: 1.8;
}

/* ==========================================================================
   FAQ — 明るいセクション + テックアクセント
   ========================================================================== */

.swch-faq {
	background: var(--swch-bg);
}

.swch-faq::before {
	content: "";
	position: absolute;
	top: -1px;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--swch-tech-violet), var(--swch-tech-fuchsia), transparent);
	opacity: 0.4;
	z-index: 1;
}

.swch-faq-inner {
	max-width: 820px;
}

.swch-faq-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.swch-faq-item {
	position: relative;
	background: var(--swch-white);
	border: 1px solid var(--swch-border);
	border-radius: var(--swch-radius);
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
	overflow: hidden;
	transition: border-color var(--swch-transition), box-shadow var(--swch-transition), transform var(--swch-transition);
}

.swch-faq-item[open] {
	border-color: transparent;
	box-shadow: 0 10px 28px -12px rgba(79, 70, 229, 0.18), 0 2px 6px -2px rgba(15, 23, 42, 0.05);
	transform: translateY(-1px);
}

.swch-faq-item[open]::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--swch-tech-violet), var(--swch-tech-fuchsia));
	z-index: 1;
}

.swch-faq-q {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 20px 56px 20px 24px;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--swch-text);
	line-height: 1.55;
	list-style: none;
	cursor: pointer;
	position: relative;
	transition: color var(--swch-transition);
}

.swch-faq-q::-webkit-details-marker {
	display: none;
}

.swch-faq-q::before {
	content: "Q";
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 8px;
	background: linear-gradient(135deg, var(--swch-tech-navy) 0%, var(--swch-tech-indigo) 100%);
	color: var(--swch-white);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	box-shadow: 0 4px 12px -4px rgba(15, 23, 42, 0.35);
}

.swch-faq-q::after {
	content: "";
	position: absolute;
	right: 24px;
	top: 50%;
	width: 10px;
	height: 10px;
	border-right: 2px solid var(--swch-text-muted);
	border-bottom: 2px solid var(--swch-text-muted);
	transform: translateY(-75%) rotate(45deg);
	transition: transform var(--swch-transition), border-color var(--swch-transition);
}

.swch-faq-item[open] .swch-faq-q::after {
	transform: translateY(-25%) rotate(-135deg);
	border-color: var(--swch-tech-violet);
}

.swch-faq-a {
	padding: 0 24px 20px 66px;
	font-size: 0.9rem;
	line-height: 1.9;
	color: var(--swch-text-secondary);
}

.swch-faq-a p {
	margin: 0;
}

@media (max-width: 600px) {
	.swch-faq-q {
		padding: 16px 44px 16px 16px;
		gap: 10px;
		font-size: 0.9rem;
	}

	.swch-faq-q::before {
		width: 24px;
		height: 24px;
	}

	.swch-faq-q::after {
		right: 16px;
	}

	.swch-faq-a {
		padding: 0 16px 16px 50px;
	}
}

/* ==========================================================================
   Final CTA — グラデーション背景
   ========================================================================== */

.swch-cta {
	background:
		radial-gradient(ellipse 70% 80% at 20% 50%, rgba(236, 72, 153, 0.4), transparent 60%),
		radial-gradient(ellipse 70% 80% at 80% 50%, rgba(34, 211, 238, 0.3), transparent 60%),
		linear-gradient(135deg, var(--swch-tech-violet) 0%, var(--swch-tech-indigo) 100%);
	color: var(--swch-white);
	text-align: center;
	padding: 96px 24px;
}

.swch-cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 40%, transparent 100%);
	pointer-events: none;
}

.swch-cta-inner {
	max-width: 720px;
	position: relative;
	z-index: 1;
}

.swch-cta h2 {
	color: var(--swch-white);
	font-size: 1.875rem;
	font-weight: 800;
	margin: 0 0 14px;
	letter-spacing: -0.02em;
}

.swch-cta p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1rem;
	margin: 0 0 32px;
	line-height: 1.8;
}

.swch-cta-buttons {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.swch-cta .swch-btn-primary {
	background: var(--swch-white);
	color: var(--swch-tech-violet);
	box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.3);
}

.swch-cta .swch-btn-primary:hover {
	color: var(--swch-tech-violet);
	background: #f5f3ff;
	box-shadow: 0 16px 36px -8px rgba(0, 0, 0, 0.4);
}

/* ヒーローを header にめり込ませる（fix header 時はそのまま重なる） */
.home .l-content {
	margin-top: 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
	.swch-front section {
		padding: 72px 20px;
	}

	.swch-hero {
		padding: 96px 20px 80px;
	}

	.swch-hero-title {
		font-size: 2rem;
	}

	.swch-hero-tagline {
		font-size: 0.9375rem;
	}

	.swch-features-grid,
	.swch-steps {
		grid-template-columns: 1fr;
	}

	.swch-spotlight {
		gap: 56px;
	}

	.swch-spotlight-item {
		grid-template-columns: minmax(0, 600px);
		justify-content: center;
		gap: 28px;
	}

	/* 縦積み時は常に画像→本文の順に揃える */
	.swch-spotlight-item:nth-child(even) .swch-spotlight-media {
		order: 0;
	}

	.swch-spotlight-title {
		font-size: 1.375rem;
	}

	.swch-section-title {
		font-size: 1.375rem;
		margin-bottom: 32px;
	}

	.swch-cta {
		padding: 72px 20px;
	}

	.swch-cta h2 {
		font-size: 1.5rem;
	}
}

@media (max-width: 480px) {
	.swch-front section {
		padding: 56px 16px;
	}

	.swch-hero {
		padding: 72px 16px 64px;
	}

	.swch-hero-title {
		font-size: 1.625rem;
	}

	.swch-hero-ctas,
	.swch-cta-buttons {
		flex-direction: column;
		align-items: stretch;
	}

	.swch-btn {
		width: 100%;
	}

	.swch-cta {
		padding: 56px 16px;
	}
}
