@charset "utf-8";
/* ぷくリンク公式サイト 共通スタイル
   ブランドカラーはプラグインアイコン由来の #156bb4。
   商品カードの見た目は pukulink-front.css（プラグイン本体からコピー）が担当する。 */

:root {
	--brand: #156bb4;
	--brand-dark: #0f5490;
	--brand-light: #e8f2fb;
	--brand-accent: #f5a623;
	--ink: #23303d;
	--ink-soft: #56646f;
	--ink-mute: #7b8894;
	--line: #e2e8ef;
	--bg: #ffffff;
	--bg-soft: #f5f8fb;
	--bg-deep: #0f2437;
	--radius: 12px;
	--wrap: 1080px;
	--shadow-sm: 0 1px 3px rgba(15, 36, 55, .06);
	--shadow: 0 6px 24px rgba(15, 36, 55, .08);
	--amazon: #ff9900;
	--rakuten: #bf0000;
	--yahoo: #ff0033;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 76px; }

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Yu Gothic UI", "Meiryo", sans-serif;
	font-size: 16px;
	line-height: 1.85;
	-webkit-text-size-adjust: 100%;
	text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; }
a { color: var(--brand); }
a:hover { color: var(--brand-dark); }

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
.wrap--narrow { width: min(100% - 40px, 760px); margin-inline: auto; }

.visually-hidden {
	position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- ヘッダー ---------- */
.site-header {
	position: sticky; top: 0; z-index: 50;
	background: rgba(255, 255, 255, .94);
	backdrop-filter: saturate(160%) blur(8px);
	border-bottom: 1px solid var(--line);
}
.site-header__inner {
	display: flex; align-items: center; gap: 20px;
	min-height: 64px;
}
.site-logo {
	display: inline-flex; align-items: center; gap: 9px;
	font-weight: 700; font-size: 19px; color: var(--ink); text-decoration: none;
	white-space: nowrap;
}
.site-logo img { width: 32px; height: 32px; }
.site-logo span small { display: block; font-size: 10px; font-weight: 500; color: var(--ink-mute); letter-spacing: .12em; line-height: 1; }

.site-nav { margin-left: auto; }
.site-nav ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.site-nav a {
	display: block; padding: 8px 13px; border-radius: 8px;
	font-size: 14px; font-weight: 600; color: var(--ink-soft); text-decoration: none;
}
.site-nav a:hover { background: var(--brand-light); color: var(--brand-dark); }
.site-nav a[aria-current="page"] { color: var(--brand); background: var(--brand-light); }
.site-nav .btn { color: #fff; }
.site-nav .btn:hover { color: #fff; }

.nav-toggle { display: none; }

/* ---------- ボタン ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 13px 26px; border-radius: 999px; border: 1.5px solid transparent;
	background: var(--brand); color: #fff;
	font-size: 15px; font-weight: 700; text-decoration: none; line-height: 1.4;
	box-shadow: 0 2px 10px rgba(21, 107, 180, .22);
	transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
	cursor: pointer;
}
.btn:hover { background: var(--brand-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(21, 107, 180, .28); }
.btn--ghost { background: #fff; color: var(--brand); border-color: #cfe0f0; box-shadow: none; }
.btn--ghost:hover { background: var(--brand-light); color: var(--brand-dark); border-color: var(--brand); }
.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--lg { padding: 16px 34px; font-size: 17px; }

/* ---------- セクション共通 ---------- */
.section { padding: 76px 0; }
.section--soft { background: var(--bg-soft); }
.section--tight { padding: 52px 0; }

.section-head { text-align: center; margin-bottom: 44px; }
.section-head .eyebrow {
	display: inline-block; margin: 0 0 10px;
	font-size: 12px; font-weight: 700; letter-spacing: .16em; color: var(--brand);
	text-transform: uppercase;
}
.section-head h2 { margin: 0; font-size: clamp(23px, 3.4vw, 31px); line-height: 1.45; letter-spacing: .01em; }
.section-head p { margin: 14px auto 0; max-width: 40em; color: var(--ink-soft); font-size: 15.5px; }

h2, h3, h4 { line-height: 1.5; letter-spacing: .01em; }

/* ---------- ヒーロー ---------- */
.hero {
	position: relative; overflow: hidden;
	padding: 72px 0 84px;
	background:
		radial-gradient(1000px 420px at 12% -8%, #dcecfa 0%, rgba(220, 236, 250, 0) 62%),
		radial-gradient(760px 380px at 92% 8%, #fdf0dc 0%, rgba(253, 240, 220, 0) 60%),
		var(--bg);
}
.hero__grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 52px; align-items: center; }
.hero__badge {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 6px 14px; margin-bottom: 20px; border-radius: 999px;
	background: #fff; border: 1px solid #cfe0f0;
	font-size: 12.5px; font-weight: 700; color: var(--brand-dark);
	box-shadow: var(--shadow-sm);
}
.hero h1 { margin: 0; font-size: clamp(27px, 4.6vw, 42px); line-height: 1.42; letter-spacing: .005em; }
.hero h1 .mark {
	background: linear-gradient(transparent 62%, #ffe08a 62%);
	padding: 0 2px;
}
.hero__lead { margin: 20px 0 0; font-size: 16.5px; color: var(--ink-soft); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__meta { margin: 18px 0 0; font-size: 13px; color: var(--ink-mute); }
.hero__meta code { background: #fff; border: 1px solid var(--line); border-radius: 4px; padding: 1px 6px; font-size: 12px; }

.hero__grid > .shot { margin: 0; align-self: start; }

/* ---------- 疑似スクリーンショット（ブラウザ枠） ---------- */
.frame {
	background: #fff; border: 1px solid var(--line); border-radius: 14px;
	box-shadow: var(--shadow); overflow: hidden;
}
.frame__bar {
	display: flex; align-items: center; gap: 7px;
	padding: 10px 14px; background: #f2f5f8; border-bottom: 1px solid var(--line);
}
.frame__dot { width: 10px; height: 10px; border-radius: 50%; background: #d6dde5; }
.frame__title {
	margin-left: 8px; font-size: 11.5px; color: var(--ink-mute);
	overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.frame__body { padding: 20px; background: #fff; }
.frame__caption {
	padding: 10px 16px; border-top: 1px solid var(--line);
	background: var(--bg-soft); font-size: 12.5px; color: var(--ink-mute);
}

/* 実際のカードCSSを読み込んでいるので、枠内のマージンだけ調整する */
.frame__body .pukulink { margin: 0; }
.demo-stack { display: grid; gap: 18px; }
.demo-stack .pukulink { margin: 0; }

/* WP管理画面っぽいUI片 */
.ui { font-size: 13px; color: var(--ink); }
.ui__toolbar {
	display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
	padding: 8px 10px; border: 1px solid #dfe3e8; border-radius: 6px 6px 0 0; background: #f6f7f7;
}
.ui__btn {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 5px 11px; border: 1px solid #c3c9cf; border-radius: 4px;
	background: #fff; font-size: 12.5px; font-weight: 600; color: #2c3338;
}
.ui__btn--primary { background: var(--brand); border-color: var(--brand); color: #fff; }
.ui__btn img { width: 17px; height: 17px; }
.ui__tabs { display: flex; gap: 6px; margin-bottom: 14px; flex-wrap: wrap; }
.ui__tab {
	padding: 7px 15px; border: 1px solid #dfe3e8; border-bottom-color: transparent;
	border-radius: 6px 6px 0 0; background: #f6f7f7; font-size: 13px; font-weight: 600; color: var(--ink-soft);
}
.ui__tab--on { background: #fff; color: var(--brand); border-color: #dfe3e8; box-shadow: inset 0 3px 0 var(--brand); }
.ui__field {
	display: flex; gap: 8px; margin-bottom: 14px;
}
.ui__input {
	flex: 1; padding: 8px 12px; border: 1px solid #c3c9cf; border-radius: 4px;
	background: #fff; color: var(--ink-soft); font-size: 13.5px;
}
.ui__results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.ui__result { border: 1px solid var(--line); border-radius: 8px; padding: 10px; text-align: center; font-size: 11.5px; line-height: 1.5; }
.ui__result--on { border-color: var(--brand); box-shadow: 0 0 0 2px var(--brand-light); }
.ui__thumb {
	height: 62px; border-radius: 6px; margin-bottom: 8px;
	background: repeating-linear-gradient(135deg, #eef2f6 0 8px, #e6ecf2 8px 16px);
}
.ui__note { margin-top: 12px; font-size: 12px; color: var(--ink-mute); }

/* 紐づけ状況テーブル */
.link-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.link-table th, .link-table td { padding: 9px 11px; border-bottom: 1px solid var(--line); text-align: left; }
.link-table th { background: var(--bg-soft); font-weight: 700; font-size: 12px; color: var(--ink-soft); }
.link-table td:last-child, .link-table th:last-child { text-align: right; }
.pill {
	display: inline-block; padding: 2px 10px; border-radius: 999px;
	font-size: 11.5px; font-weight: 700;
}
.pill--ok { background: #e4f6ea; color: #1b7a41; }
.pill--none { background: #f0f3f6; color: var(--ink-mute); }
.pill--main { background: var(--brand-light); color: var(--brand-dark); }
.pill--amazon { background: rgba(255, 153, 0, .14); color: #96601a; }
.pill--rakuten { background: rgba(191, 0, 0, .1); color: #8f1414; }
.pill--yahoo { background: rgba(255, 0, 51, .1); color: #99122c; }

/* ---------- 悩みリスト ---------- */
.pains { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.pain {
	display: flex; gap: 14px; align-items: flex-start;
	padding: 20px 22px; background: #fff; border: 1px solid var(--line);
	border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.pain__icon {
	flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%;
	display: grid; place-items: center;
	background: #fff2f2; color: #c74848; font-size: 15px; font-weight: 700;
}
.pain p { margin: 0; font-size: 15px; }

/* ---------- 3つの特徴 ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar {
	padding: 30px 26px; background: #fff; border: 1px solid var(--line);
	border-radius: var(--radius); box-shadow: var(--shadow-sm);
	display: flex; flex-direction: column;
}
.pillar__num {
	display: inline-grid; place-items: center; width: 36px; height: 36px; margin-bottom: 16px;
	border-radius: 10px; background: var(--brand-light); color: var(--brand);
	font-size: 15px; font-weight: 800;
}
.pillar h3 { margin: 0 0 10px; font-size: 18.5px; }
.pillar p { margin: 0; font-size: 14.5px; color: var(--ink-soft); }
.pillar__more { margin-top: auto; padding-top: 16px; font-size: 13.5px; font-weight: 700; }

/* ---------- 機能ハイライト ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature {
	padding: 22px 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
}
.feature__icon { font-size: 22px; line-height: 1; margin-bottom: 12px; display: block; }
.feature h3 { margin: 0 0 6px; font-size: 15.5px; }
.feature p { margin: 0; font-size: 13.5px; color: var(--ink-soft); line-height: 1.7; }

/* ---------- 安心設計 ---------- */
.trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.trust__item {
	padding: 26px 24px; border-radius: var(--radius);
	background: #fff; border: 1px solid var(--line);
}
.trust__item h3 { margin: 0 0 10px; font-size: 16.5px; display: flex; align-items: center; gap: 8px; }
.trust__item h3::before { content: "✓"; color: #1b7a41; font-weight: 800; }
.trust__item p { margin: 0; font-size: 14px; color: var(--ink-soft); }

/* ---------- ステップ ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step {
	position: relative; padding: 28px 24px 24px;
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
}
.step::before {
	counter-increment: step; content: "STEP " counter(step);
	display: inline-block; margin-bottom: 12px;
	font-size: 11.5px; font-weight: 800; letter-spacing: .1em; color: var(--brand);
}
.step h3 { margin: 0 0 8px; font-size: 16.5px; }
.step p { margin: 0; font-size: 14px; color: var(--ink-soft); }

/* ---------- CTA帯 ---------- */
.cta-band {
	padding: 66px 0; text-align: center; color: #fff;
	background: linear-gradient(135deg, #156bb4 0%, #0d3f6e 100%);
}
.cta-band h2 { margin: 0 0 14px; font-size: clamp(22px, 3.2vw, 30px); }
.cta-band p { margin: 0 auto 28px; max-width: 38em; font-size: 15.5px; color: #d6e6f5; }
.cta-band .btn { background: #fff; color: var(--brand-dark); box-shadow: 0 4px 18px rgba(0, 0, 0, .2); }
.cta-band .btn:hover { background: #f0f6fc; color: var(--brand-dark); }
.cta-band .btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .5); }
.cta-band .btn--ghost:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.cta-band__note { margin: 22px 0 0; font-size: 12.5px; color: #a9c6e0; }
.cta-band__btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- ページヘッダー（下層） ---------- */
.page-head {
	padding: 52px 0 44px; border-bottom: 1px solid var(--line);
	background: linear-gradient(180deg, #f2f7fc 0%, #fff 100%);
}
.page-head h1 { margin: 8px 0 0; font-size: clamp(25px, 3.8vw, 34px); }
.page-head p { margin: 14px 0 0; max-width: 44em; color: var(--ink-soft); font-size: 15.5px; }

.breadcrumb { margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 6px; font-size: 12.5px; color: var(--ink-mute); }
.breadcrumb li + li::before { content: "›"; margin-right: 6px; color: #b6c1cc; }
.breadcrumb a { color: var(--ink-mute); text-decoration: none; }
.breadcrumb a:hover { color: var(--brand); text-decoration: underline; }

/* ---------- 記事本文 ---------- */
.prose { font-size: 15.5px; }
.prose h2 {
	margin: 56px 0 18px; padding-bottom: 10px; font-size: 24px;
	border-bottom: 2px solid var(--brand-light);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 36px 0 12px; font-size: 18.5px; }
.prose h4 { margin: 26px 0 8px; font-size: 16px; }
.prose p { margin: 0 0 1.2em; }
.prose ul, .prose ol { margin: 0 0 1.4em; padding-left: 1.5em; }
.prose li { margin-bottom: .5em; }
.prose code {
	background: #f2f5f8; border: 1px solid var(--line); border-radius: 4px;
	padding: 1px 6px; font-size: 13px;
	font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}
.prose pre {
	margin: 0 0 1.4em; padding: 16px 18px; overflow-x: auto;
	background: #16232f; color: #e6edf3; border-radius: 10px;
	font-size: 13px; line-height: 1.7;
}
.prose pre code { background: none; border: 0; padding: 0; color: inherit; font-size: inherit; }
.prose img { border-radius: 10px; border: 1px solid var(--line); }
.prose table { width: 100%; border-collapse: collapse; margin: 0 0 1.6em; font-size: 14px; }
.prose th, .prose td { padding: 11px 13px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.prose th { background: var(--bg-soft); font-weight: 700; }

.steps-ol { counter-reset: n; list-style: none; padding: 0; margin: 0 0 1.6em; }
.steps-ol > li {
	counter-increment: n; position: relative; padding-left: 44px; margin-bottom: 22px;
}
.steps-ol > li::before {
	content: counter(n); position: absolute; left: 0; top: 1px;
	width: 28px; height: 28px; border-radius: 50%;
	display: grid; place-items: center;
	background: var(--brand); color: #fff; font-size: 13px; font-weight: 800;
}

/* ---------- 注意ボックス ---------- */
.note {
	margin: 0 0 1.6em; padding: 18px 22px; border-radius: 10px;
	border: 1px solid var(--line); border-left: 4px solid var(--brand);
	background: var(--brand-light); font-size: 14.5px;
}
.note > :first-child { margin-top: 0; }
.note > :last-child { margin-bottom: 0; }
.note__title { display: block; font-weight: 700; margin-bottom: 6px; }
.note--warn { background: #fff6e8; border-color: #f2dfc0; border-left-color: var(--brand-accent); }
.note--danger { background: #fdeeee; border-color: #f3d5d5; border-left-color: #d14343; }
.note--ok { background: #edf8f1; border-color: #cfe9d9; border-left-color: #1b7a41; }

/* ---------- 目次カード ---------- */
.card-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 0 0 1.6em; padding: 0; list-style: none; }
.card-link {
	display: block; padding: 22px 24px; text-decoration: none; color: inherit;
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
	box-shadow: var(--shadow-sm); transition: border-color .12s, transform .12s, box-shadow .12s;
}
.card-link:hover { border-color: var(--brand); transform: translateY(-2px); box-shadow: var(--shadow); color: inherit; }
.card-link strong { display: block; font-size: 16.5px; margin-bottom: 6px; color: var(--brand-dark); }
.card-link span { font-size: 13.5px; color: var(--ink-soft); }

/* ---------- テンプレートギャラリー ---------- */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.gallery__item {
	display: flex; flex-direction: column;
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
	box-shadow: var(--shadow-sm);
}
.gallery__head { padding: 16px 20px 0; }
.gallery__head h3 { margin: 0 0 4px; font-size: 17px; }
.gallery__head p { margin: 0; font-size: 13.5px; color: var(--ink-soft); }
.gallery__stage {
	flex: 1; display: flex; align-items: center; justify-content: center;
	padding: 22px 20px; margin-top: 14px; background: var(--bg-soft); border-top: 1px solid var(--line);
}
.gallery__stage .pukulink { margin: 0; width: 100%; }
.gallery__stage .pukulink--text, .gallery__stage .pukulink--buttons { width: auto; }

/* ステージにスクリーンショットを置いた場合 */
.gallery__stage .shot { margin: 0; width: 100%; }
.gallery__stage .shot img { box-shadow: none; }
.gallery__stage .shot--todo .shot__todo { min-height: 150px; padding: 20px 14px; }

/* 2枚を並べて見せるステージ（比較表用ボタンの 横一列／縦積み） */
.gallery__stage--pair { gap: 20px; align-items: flex-start; flex-wrap: wrap; }
.gallery__stage--pair .shot { width: calc(50% - 10px); min-width: 240px; flex: 1 1 240px; }

/* 幅の狭いステージでもモダンの横並びを見せる */
.gallery__item--wide { grid-column: 1 / -1; }

/* ---------- FAQ ---------- */
.faq { margin: 0 0 1.6em; }
.faq details {
	border: 1px solid var(--line); border-radius: 10px; background: #fff;
	margin-bottom: 12px; box-shadow: var(--shadow-sm);
}
.faq summary {
	padding: 16px 46px 16px 20px; position: relative; cursor: pointer;
	font-weight: 700; font-size: 15.5px; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
	content: "＋"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
	color: var(--brand); font-weight: 700;
}
.faq details[open] summary::after { content: "−"; }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq__body { padding: 16px 20px 4px; font-size: 14.5px; color: var(--ink-soft); }
.faq__body > :last-child { margin-bottom: 16px; }

/* ---------- 比較（向き / 不向き） ---------- */
.fit { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.fit__box { padding: 26px 26px 22px; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; }
.fit__box h3 { margin: 0 0 14px; font-size: 17px; }
.fit__box ul { margin: 0; padding-left: 1.3em; font-size: 14.5px; color: var(--ink-soft); }
.fit__box li { margin-bottom: .6em; }
.fit__box--yes { background: #f3faf5; border-color: #cfe9d9; }
.fit__box--yes h3::before { content: "◎ "; color: #1b7a41; }
.fit__box--no { background: var(--bg-soft); }
.fit__box--no h3::before { content: "△ "; color: var(--ink-mute); }

/* ---------- ダウンロードボックス ---------- */
.dl-box {
	display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center;
	padding: 28px 30px; border-radius: var(--radius);
	background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
	margin: 0 0 1.8em;
}
.dl-box img { width: 60px; height: 60px; }
.dl-box h3 { margin: 0 0 4px; font-size: 19px; }
.dl-box p { margin: 0; font-size: 13.5px; color: var(--ink-mute); }

.spec-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.spec-table th, .spec-table td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; }
.spec-table th { width: 34%; background: var(--bg-soft); font-weight: 700; }

/* ---------- フッター ---------- */
.site-footer {
	margin-top: 0; padding: 54px 0 30px;
	background: var(--bg-deep); color: #b9c9d8; font-size: 14px;
}
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.site-footer h3 { margin: 0 0 12px; font-size: 13px; letter-spacing: .1em; color: #fff; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: #b9c9d8; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer__brand { display: inline-flex; align-items: center; gap: 9px; color: #fff; font-weight: 700; font-size: 17px; text-decoration: none; }
.site-footer__brand img { width: 30px; height: 30px; }
.site-footer__about { margin: 14px 0 0; font-size: 13px; line-height: 1.8; color: #92a6b8; }
.site-footer__bottom {
	margin-top: 38px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .12);
	display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
	font-size: 12.5px; color: #7f94a7;
}

/* ---------- 言語切り替え ---------- */
.site-nav { display: flex; align-items: center; gap: 14px; }
.lang-switch {
	display: inline-flex; align-items: center;
	border: 1px solid var(--line); border-radius: 999px;
	overflow: hidden; background: #fff; flex: 0 0 auto;
}
.lang-switch > * {
	display: block; padding: 5px 12px;
	font-size: 12.5px; font-weight: 700; line-height: 1.6;
	text-decoration: none; white-space: nowrap;
}
.lang-switch__cur { background: var(--brand); color: #fff; }
.lang-switch a { color: var(--ink-soft); }
.lang-switch a:hover { background: var(--brand-light); color: var(--brand-dark); }

/* ---------- 言語のおすすめバー ---------- */
.lang-suggest {
	background: var(--brand-light);
	border-bottom: 1px solid rgba(21, 107, 180, .2);
	font-size: 14px;
}
.lang-suggest__inner {
	display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
	padding: 10px 0;
}
.lang-suggest__inner > span { color: var(--brand-dark); font-weight: 600; }
.lang-suggest__close {
	margin-left: auto; padding: 5px 10px;
	border: 1px solid rgba(21, 107, 180, .3); border-radius: 8px;
	background: transparent; color: var(--ink-soft);
	font-size: 12.5px; font-weight: 600; cursor: pointer;
}
.lang-suggest__close:hover { background: #fff; }

/* ---------- スクリーンショット ---------- */
.shot { margin: 1.8em 0; }
.shot img {
	display: block; width: 100%; height: auto;
	border: 1px solid var(--line); border-radius: var(--radius);
	box-shadow: var(--shadow);
	background: var(--bg-soft);
}
.shot figcaption {
	margin-top: 10px; font-size: 13px; color: var(--ink-mute); text-align: center;
	line-height: 1.7;
}
.shot--todo .shot__todo {
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	gap: 8px; min-height: 190px; padding: 26px 20px;
	border: 2px dashed #c3d3e2; border-radius: var(--radius);
	background: repeating-linear-gradient(45deg, #fafcfe, #fafcfe 12px, #f2f7fb 12px, #f2f7fb 24px);
	text-align: center;
}
.shot--todo strong { font-size: 13px; color: var(--brand-dark); letter-spacing: .04em; }
.shot--todo code { font-size: 12.5px; color: var(--ink-soft); background: #fff; padding: 3px 8px; border-radius: 6px; border: 1px solid var(--line); }
.shot--todo span { font-size: 13px; color: var(--ink-mute); max-width: 46em; line-height: 1.7; }

/* ---------- レスポンシブ ---------- */
@media (max-width: 900px) {
	.hero__grid { grid-template-columns: 1fr; gap: 36px; }
	.pillars, .trust, .steps, .features { grid-template-columns: repeat(2, 1fr); }
	.site-footer__grid { grid-template-columns: repeat(2, 1fr); }
	.gallery { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
	body { font-size: 15.5px; }
	.section { padding: 56px 0; }
	.pains, .pillars, .trust, .steps, .features, .fit, .card-links { grid-template-columns: 1fr; }
	.ui__results { grid-template-columns: repeat(2, 1fr); }
	.dl-box { grid-template-columns: 1fr; text-align: center; justify-items: center; }

	/* ハンバーガー（CSSのみ） */
	.nav-toggle {
		display: block; margin-left: auto; padding: 8px 12px;
		border: 1px solid var(--line); border-radius: 8px; background: #fff;
		font-size: 13px; font-weight: 700; color: var(--ink-soft); cursor: pointer;
	}
	.site-nav {
		display: none; position: absolute; left: 0; right: 0; top: 100%;
		background: #fff; border-bottom: 1px solid var(--line);
		box-shadow: var(--shadow); padding: 12px 20px 18px;
	}
	.site-header__inner { position: relative; }
	.site-header.is-open .site-nav { display: flex; }
	.site-nav { flex-direction: column; align-items: stretch; gap: 10px; }
	.site-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
	.site-nav a { padding: 12px 10px; font-size: 15px; }
	.site-nav .btn { margin-top: 8px; justify-content: center; }
	.lang-switch { align-self: flex-start; }
	.lang-switch a { padding: 8px 14px; }
	.lang-switch__cur { padding: 8px 14px; }
	.lang-suggest__inner { padding: 12px 0; }
	.lang-suggest__close { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	* { transition: none !important; }
}
