/*
Theme Name: FS Tools Garage
Theme URI: https://fs-hobby.jp/
Description: 工具買取サイト「FS Tools Garage」用の Twenty Twelve 子テーマ。買取専門のランディングページを提供します。
Author: フリースタイル工具事業部
Author URI: https://fs-hobby.jp/
Template: twentysixteen
Version: 1.5.0
Text Domain: fs-tools-garage
*/

/* =========================================================
   ベース / リセット
   ========================================================= */
:root {
  --fs-red: #d81f26;
  --fs-red-dark: #b8161d;
  --fs-black: #1a1a1a;
  --fs-line: #06c755;
  --fs-gray: #666;
  --fs-light: #f5f5f5;
  --fs-border: #e2e2e2;
  --fs-container: 1200px;
}

* { box-sizing: border-box; }

/* 本文フォント
   Windows の游ゴシック（Yu Gothic）は Regular が細く読みづらいため、
   Medium を優先して指定し、font-weight も 500 にしています。
   （"Yu Gothic Medium" は Windows、font-weight:500 は Mac / Android 側の保険）
   細くしたい場合は font-weight を 400 に戻してください。 */
body.fs-page {
  margin: 0;
  padding: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", "Yu Gothic Medium", "YuGothic", "Yu Gothic", "Meiryo", sans-serif;
  color: var(--fs-black);
  background: #fff;
  line-height: 1.7;
  font-size: 18px;
  font-weight: 500;
}

.fs-page a { color: var(--fs-red); text-decoration: none; }
.fs-page a:hover { text-decoration: underline; }
.fs-page img { max-width: 100%; height: auto; display: block; }

.fs-container {
  max-width: var(--fs-container);
  margin: 0 auto;
  padding: 0 12px;
}

/* =========================================================
   ヘッダー
   ========================================================= */
.fs-header {
  background: #fff;
  border-bottom: 3px solid var(--fs-red);
}
.fs-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 12px;
  max-width: var(--fs-container);
  margin: 0 auto;
  flex-wrap: wrap;
}
.fs-logo { display: flex; align-items: baseline; gap: 10px; }
.fs-logo .fs-logo-main {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: .5px;
  color: var(--fs-black);
  line-height: 1;
}
.fs-logo .fs-logo-main span { color: var(--fs-red); }
.fs-logo .fs-logo-sub { font-size: 14px; color: var(--fs-gray); }

.fs-header-contact { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.fs-header-phone { text-align: right; line-height: 1.2; }
.fs-header-phone .fs-phone-label { font-size: 13px; color: var(--fs-gray); }
.fs-header-phone .fs-phone-num {
  font-size: 31px;
  font-weight: 800;
  color: var(--fs-black);
  letter-spacing: .5px;
}
.fs-header-phone .fs-phone-num i { color: var(--fs-red); font-size: 24px; }

.fs-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 18px;
  border-radius: 6px;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  line-height: 1;
}
.fs-btn:hover { text-decoration: none; opacity: .92; color: #fff; }
.fs-btn-mail { background: var(--fs-red); }
.fs-btn-line { background: var(--fs-line); }

/* =========================================================
   グローバルナビ
   ========================================================= */
.fs-nav { background: var(--fs-black); }
.fs-nav ul {
  display: flex;
  max-width: var(--fs-container);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.fs-nav li { flex: 1; }
.fs-nav li + li { border-left: 1px solid rgba(255,255,255,.12); }
.fs-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 4px;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  text-align: center;
}
.fs-nav a:hover { background: var(--fs-red); text-decoration: none; }
.fs-nav a i { font-size: 22px; }

/* =========================================================
   レイアウト（本文 + サイドバー）
   ========================================================= */
.fs-main-wrap {
  display: flex;
  gap: 26px;
  max-width: var(--fs-container);
  margin: 28px auto;
  padding: 0 12px;
  align-items: flex-start;
}
.fs-content { flex: 1 1 auto; min-width: 0; }
/* 文字サイズ拡大（120%）に合わせてサイドバーも 260px → 300px */
.fs-sidebar { flex: 0 0 300px; }

/* =========================================================
   ヒーロー
   ========================================================= */
.fs-hero {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 32px;
  line-height: 0; /* 画像下の余白を除去 */
}
.fs-hero-link { display: block; }
.fs-hero-link:hover { opacity: .92; text-decoration: none; }
.fs-hero img { width: 100%; height: auto; }

/* スクリーンリーダー用（見出しはSEO/アクセシビリティのため残す） */
.fs-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* =========================================================
   セクション共通
   ========================================================= */
.fs-section { margin-bottom: 40px; }
.fs-section-title {
  font-size: 29px;
  font-weight: 800;
  margin: 0 0 20px;
  padding-left: 14px;
  border-left: 6px solid var(--fs-red);
  line-height: 1.2;
}

/* 選ばれる理由 */
.fs-reasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  border: 1px solid var(--fs-border);
  border-radius: 8px;
  padding: 20px 26px;
}
.fs-reasons .fs-reason {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--fs-border);
}
.fs-reasons .fs-reason i {
  color: var(--fs-red);
  font-size: 26px;
  width: 34px;
  text-align: center;
  flex: 0 0 34px;
  margin-top: 2px;
}
.fs-reasons .fs-reason span { font-weight: 700; }

/* 強化買取商品 */
.fs-products {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.fs-product {
  border: 1px solid var(--fs-border);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  background: #fff;
}
.fs-product .fs-product-img {
  aspect-ratio: 1 / 1;
  background: var(--fs-light) center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 36px;
}
.fs-product .fs-product-name {
  background: var(--fs-red);
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  padding: 8px 4px;
}

/* 買取ジャンル */
.fs-genres {
  background: var(--fs-light);
  border-radius: 8px;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 20px;
}
.fs-genres div { font-weight: 700; }
.fs-genres i { color: var(--fs-red); margin-right: 8px; font-size: 12px; vertical-align: middle; }

/* 買取の流れ */
.fs-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.fs-flow .fs-step {
  position: relative;
  background: var(--fs-light);
  border-radius: 8px;
  padding: 22px 14px;
  text-align: center;
}
.fs-flow .fs-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -9px;
  width: 0;
  height: 0;
  transform: translateY(-50%);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid var(--fs-red);
  z-index: 2;
}
.fs-flow .fs-step-num {
  width: 30px; height: 30px;
  margin: 0 auto 8px;
  background: var(--fs-red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.fs-flow .fs-step-title { font-weight: 800; font-size: 19px; margin-bottom: 10px; }
.fs-flow .fs-step i { color: var(--fs-red); font-size: 36px; margin-bottom: 10px; }
.fs-flow .fs-step p { font-size: 16px; color: var(--fs-gray); margin: 0; text-align: left; }

/* 他の買取方法 */
.fs-methods {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--fs-light);
  border-radius: 8px;
  padding: 18px 22px;
  flex-wrap: wrap;
}
.fs-methods .fs-methods-lead { font-weight: 700; flex: 0 0 auto; }
.fs-methods .fs-method {
  flex: 1;
  min-width: 150px;
  border: 1px solid var(--fs-border);
  background: #fff;
  border-radius: 8px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.fs-methods .fs-method i { color: var(--fs-red); font-size: 26px; }
.fs-methods .fs-method small { display: block; font-weight: 400; font-size: 13px; color: var(--fs-gray); }

/* =========================================================
   サイドバー
   ========================================================= */
.fs-widget {
  border: 1px solid var(--fs-border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 18px;
}
.fs-widget-head {
  background: var(--fs-black);
  color: #fff;
  font-weight: 700;
  font-size: 19px;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fs-widget-head i { color: var(--fs-red); }
.fs-widget-body { padding: 14px; font-size: 17px; }
.fs-widget-body .fs-widget-more { text-align: right; margin-top: 8px; font-weight: 700; }

/* 会社概要 */
.fs-company dt { font-size: 14px; color: var(--fs-gray); margin-top: 10px; }
.fs-company dt:first-child { margin-top: 0; }
.fs-company dd { margin: 2px 0 0; font-weight: 600; }
.fs-company .fs-company-tel { font-size: 24px; font-weight: 800; }

/* FAQ */
.fs-faq-item { padding: 8px 0; border-bottom: 1px dashed var(--fs-border); }
.fs-faq-item:last-child { border-bottom: none; }
.fs-faq-item .fs-q { font-weight: 700; }
.fs-faq-item .fs-q b { color: var(--fs-red); margin-right: 6px; }
.fs-faq-item .fs-a { color: var(--fs-gray); }
.fs-faq-item .fs-a b { color: var(--fs-black); margin-right: 6px; }

/* お客様の声 */
.fs-voice-item { display: flex; gap: 10px; padding: 10px 0; border-bottom: 1px dashed var(--fs-border); }
.fs-voice-item:last-child { border-bottom: none; }
.fs-voice-item .fs-voice-ico {
  flex: 0 0 40px; width: 40px; height: 40px;
  background: var(--fs-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #aaa;
}
.fs-voice-item .fs-voice-txt strong { color: var(--fs-red); display: block; }
.fs-voice-item .fs-voice-txt small { color: var(--fs-gray); }

/* 買取エリア */
.fs-area-map { text-align: center; color: var(--fs-red); font-size: 72px; margin: 6px 0; }

/* 電話問い合わせウィジェット */
.fs-widget-tel { border-color: var(--fs-red); }
.fs-widget-tel .fs-widget-head { background: var(--fs-red); }
.fs-widget-tel .fs-widget-head i { color: #fff; }
.fs-tel-time { font-size: 14px; color: var(--fs-gray); }
.fs-tel-num { font-size: 36px; font-weight: 800; color: var(--fs-red); text-align: center; letter-spacing: 1px; }
.fs-tel-num i { font-size: 26px; }
.fs-tel-btn {
  display: block;
  background: var(--fs-red);
  color: #fff;
  text-align: center;
  font-weight: 800;
  padding: 12px;
  border-radius: 6px;
  margin-top: 8px;
}
.fs-tel-btn:hover { background: var(--fs-red-dark); color: #fff; text-decoration: none; }

/* SNS */
.fs-sns { display: flex; gap: 18px; align-items: center; }
.fs-sns a { display: flex; align-items: center; gap: 6px; font-weight: 600; color: var(--fs-black); }
.fs-sns a i { font-size: 26px; }
.fs-sns .fs-ig { color: #d6249f; }

/* =========================================================
   フッター
   ========================================================= */
.fs-footer { background: var(--fs-black); color: #ccc; padding: 22px 12px; margin-top: 20px; }
.fs-footer-nav {
  display: flex;
  justify-content: center;
  gap: 8px 22px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}
.fs-footer-nav a { color: #ccc; font-size: 16px; }
.fs-footer-copy { text-align: center; font-size: 14px; color: #888; }

/* =========================================================
   レスポンシブ
   ========================================================= */
@media (max-width: 900px) {
  .fs-main-wrap { flex-direction: column; }
  .fs-sidebar { flex-basis: auto; width: 100%; }
  .fs-products { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .fs-header-inner { justify-content: center; text-align: center; }
  .fs-nav ul { flex-wrap: wrap; }
  .fs-nav li { flex: 1 1 33.333%; border-left: none; border: 1px solid rgba(255,255,255,.12); }
  .fs-reasons { grid-template-columns: 1fr; }
  .fs-products { grid-template-columns: repeat(2, 1fr); }
  .fs-genres { grid-template-columns: 1fr 1fr; }
  .fs-flow { grid-template-columns: 1fr 1fr; }
  .fs-flow .fs-step:not(:last-child)::after { display: none; }
}


/* =========================================================
   スマホ用ハンバーガーメニュー（おしゃれ・スライドイン）
   ボタン/バー/オーバーレイは functions.php の wp_footer で注入
   ========================================================= */

/* ナビバー（メニューラベル＋ハンバーガー）は既定で非表示（PC） */
.fs-nav { position: relative; }
.fs-nav-bar { display: none; }
.fs-nav-overlay { display: none; }

@media (max-width: 782px) {

	/* --- ナビバー --- */
	.fs-nav-bar {
		display: flex;
		align-items: center;
		justify-content: space-between;
		max-width: var(--fs-container);
		margin: 0 auto;
		padding: 0 16px;
		height: 56px;
	}
	.fs-nav-title {
		color: #fff;
		font-weight: 700;
		font-size: 17px;
		letter-spacing: 3px;
	}

	/* --- ハンバーガーボタン --- */
	.fs-nav-toggle {
		width: 46px;
		height: 46px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 6px;
		padding: 0;
		background: transparent;
		border: 0;
		cursor: pointer;
		-webkit-tap-highlight-color: transparent;
	}
	.fs-nav-toggle .fs-bar {
		display: block;
		width: 26px;
		height: 2px;
		background: #fff;
		border-radius: 2px;
		transition: transform .35s cubic-bezier(.65,0,.35,1), opacity .2s ease, background .2s ease;
	}
	.fs-nav-toggle.is-open .fs-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
	.fs-nav-toggle.is-open .fs-bar:nth-child(2) { opacity: 0; transform: scaleX(.2); }
	.fs-nav-toggle.is-open .fs-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

	/* --- スライドインドロワー --- */
	.fs-nav ul {
		position: fixed;
		top: 0;
		right: 0;
		height: 100vh;
		height: 100dvh;
		width: 80%;
		max-width: 330px;
		flex-direction: column;
		flex-wrap: nowrap;
		gap: 0;
		margin: 0;
		padding: 84px 0 40px;
		background: linear-gradient(160deg, #1a1a1a 0%, #262626 100%);
		box-shadow: -14px 0 44px rgba(0,0,0,.5);
		transform: translateX(105%);
		transition: transform .45s cubic-bezier(.76,0,.24,1);
		z-index: 1000;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}
	body.fs-nav-open .fs-nav ul { transform: translateX(0); }

	.fs-nav li {
		flex: none;
		border: 0 !important;
		opacity: 0;
		transform: translateX(28px);
		transition: opacity .4s ease, transform .4s ease;
	}
	body.fs-nav-open .fs-nav li { opacity: 1; transform: translateX(0); }
	body.fs-nav-open .fs-nav li:nth-child(1) { transition-delay: .10s; }
	body.fs-nav-open .fs-nav li:nth-child(2) { transition-delay: .15s; }
	body.fs-nav-open .fs-nav li:nth-child(3) { transition-delay: .20s; }
	body.fs-nav-open .fs-nav li:nth-child(4) { transition-delay: .25s; }
	body.fs-nav-open .fs-nav li:nth-child(5) { transition-delay: .30s; }
	body.fs-nav-open .fs-nav li:nth-child(6) { transition-delay: .35s; }
	body.fs-nav-open .fs-nav li:nth-child(7) { transition-delay: .40s; }

	.fs-nav a {
		flex-direction: row;
		justify-content: flex-start;
		gap: 16px;
		padding: 17px 28px;
		font-size: 19px;
		border-bottom: 1px solid rgba(255,255,255,.07);
	}
	.fs-nav a i {
		font-size: 22px;
		width: 28px;
		text-align: center;
		color: var(--fs-red);
		transition: color .2s ease;
	}
	.fs-nav a:hover, .fs-nav a:active { background: var(--fs-red); }
	.fs-nav a:hover i, .fs-nav a:active i { color: #fff; }

	/* --- オーバーレイ --- */
	.fs-nav-overlay {
		display: block;
		position: fixed;
		inset: 0;
		background: rgba(0,0,0,.5);
		-webkit-backdrop-filter: blur(2px);
		backdrop-filter: blur(2px);
		opacity: 0;
		visibility: hidden;
		transition: opacity .4s ease, visibility .4s ease;
		z-index: 999;
	}
	body.fs-nav-open .fs-nav-overlay { opacity: 1; visibility: visible; }
	body.fs-nav-open { overflow: hidden; }
}

/* モーション軽減設定を尊重 */
@media (prefers-reduced-motion: reduce) {
	.fs-nav ul, .fs-nav li, .fs-nav-toggle .fs-bar, .fs-nav-overlay { transition: none !important; }
}


/* =========================================================
   ヘッダー修正
   - ロゴ左 / 電話・メール・LINE 右（PCのみ）
   - ボタン文字色の赤を白へ（.fs-page a の上書き対策）
   ========================================================= */

/* レイアウト：ロゴ左・連絡先右を明示 */
.fs-header-inner { flex-wrap: nowrap; }
.fs-logo { flex-shrink: 0; }
.fs-header-contact { margin-left: auto; }

/*
 * ボタンの文字が見えない/赤い問題の修正
 * 原因: .fs-page a { color: var(--fs-red) } が .fs-btn より優先されていた
 * 対策: セレクタ特異性を上げて白文字を確実に適用
 */
.fs-page a.fs-btn,
.fs-page a.fs-btn:link,
.fs-page a.fs-btn:visited {
	color: #fff;
}
.fs-page a.fs-btn i { color: #fff; }

/* メールで相談（赤背景・白文字、通常時から視認可能） */
.fs-page a.fs-btn-mail,
.fs-page a.fs-btn-mail:hover {
	color: #fff;
	background: var(--fs-red);
}
.fs-page a.fs-btn-mail:hover { background: var(--fs-red-dark); opacity: 1; }

/* ラインで査定（緑背景・白文字/白アイコン） */
.fs-page a.fs-btn-line,
.fs-page a.fs-btn-line:hover {
	color: #fff;
	background: var(--fs-line);
}
.fs-page a.fs-btn-line i { color: #fff; }
.fs-page a.fs-btn-line:hover { opacity: .92; }

/* 連絡先（電話・メール・LINE）はPCのみ表示、スマホでは非表示 */
@media (max-width: 782px) {
	.fs-header-contact { display: none; }
	.fs-header-inner { justify-content: center; }
}


/* =========================================================
   ヘッダーロゴ：屋号（フリースタイル工具事業部）を
   ショップ名（FS Tools Garage）の上に配置
   ========================================================= */
.fs-logo {
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
}
.fs-logo .fs-logo-sub { order: -1; }

/*
 * 屋号の文字が上で切れる問題の修正
 * 原因: 親テーマ Twenty Sixteen が body::before / body::after で
 *       画面の上下に高さ21px・position:fixed・z-index:99 の帯を出しており、
 *       その上帯がヘッダー最上部（屋号テキスト）に重なって隠していた。
 * 対策: 本テーマは全幅レイアウトで上下の帯を使わないため非表示にする。
 */
body.fs-page::before,
body.fs-page::after {
	display: none;
}


/* =========================================================
   サイドメニュー「今すぐ電話する」ボタンの文字色修正
   原因: .fs-page a { color: var(--fs-red) } が .fs-tel-btn より優先
   対策: 特異性を上げて白文字/白アイコンを確実に適用
   ========================================================= */
.fs-page a.fs-tel-btn,
.fs-page a.fs-tel-btn:link,
.fs-page a.fs-tel-btn:visited,
.fs-page a.fs-tel-btn:hover {
	color: #fff;
}
.fs-page a.fs-tel-btn i { color: #fff; }


/* =========================================================
   下層ページ共通（トップ以外）
   ヘッダー/フッターはトップと共通。ここでは本文まわりを定義。
   ========================================================= */

/* --- レイアウト：フルサイズ（サイドメニューなし） --- */
.fs-main-wrap-full .fs-content { width: 100%; flex: 1 1 100%; }
.fs-main-wrap-full .fs-sidebar { display: none; }

/* --- サイドバー内の小パーツ（旧インラインスタイルを移設） --- */
.fs-company .fs-company-hours { font-size: 14px; font-weight: 400; }
.fs-area-img { margin: 10px auto; max-width: 180px; }

/* --- パンくずリスト --- */
.fs-breadcrumb {
	background: var(--fs-light);
	border-bottom: 1px solid var(--fs-border);
	font-size: 14px;
}
.fs-breadcrumb-inner {
	max-width: var(--fs-container);
	margin: 0 auto;
	padding: 9px 12px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px 6px;
	color: var(--fs-gray);
}
.fs-breadcrumb a { color: var(--fs-gray); }
.fs-breadcrumb a:hover { color: var(--fs-red); }
.fs-breadcrumb a + a::before,
.fs-breadcrumb a + span::before {
	content: "\f105"; /* angle-right */
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	margin-right: 6px;
	color: #bbb;
}
.fs-breadcrumb span { color: var(--fs-black); font-weight: 600; }

/* --- ページタイトル --- */
.fs-page-title {
	font-size: 31px;
	margin-bottom: 18px;
	word-break: break-word;
}

/* --- 投稿メタ情報 --- */
.fs-entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 18px;
	font-size: 16px;
	color: var(--fs-gray);
	margin-bottom: 16px;
}
.fs-entry-meta i { color: var(--fs-red); margin-right: 4px; }
.fs-entry-meta a { color: var(--fs-gray); }
.fs-entry-meta a:hover { color: var(--fs-red); }

/* --- 記事本文 --- */
.fs-article { margin-bottom: 40px; }
.fs-article-thumb { margin-bottom: 22px; }
.fs-article-thumb img { border-radius: 8px; width: 100%; }

/* 親テーマ（Twenty Sixteen）の指定に負けないよう、本文にも太さを明示 */
.fs-entry { font-size: 18px; line-height: 1.9; font-weight: 500; }
.fs-entry > *:first-child { margin-top: 0; }
.fs-entry p { margin: 0 0 1.4em; }
.fs-entry h2 {
	font-size: 26px;
	font-weight: 800;
	line-height: 1.4;
	margin: 2em 0 .8em;
	padding: 10px 14px;
	background: var(--fs-light);
	border-left: 6px solid var(--fs-red);
	border-radius: 0 6px 6px 0;
}
.fs-entry h3 {
	font-size: 22px;
	font-weight: 800;
	margin: 1.8em 0 .7em;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--fs-border);
}
.fs-entry h4 { font-size: 19px; font-weight: 800; margin: 1.6em 0 .6em; }
.fs-entry ul, .fs-entry ol { margin: 0 0 1.4em; padding-left: 1.6em; }
.fs-entry li { margin-bottom: .5em; }
.fs-entry img { border-radius: 6px; }
.fs-entry a { text-decoration: underline; }
.fs-entry blockquote {
	margin: 0 0 1.4em;
	padding: 14px 18px;
	background: var(--fs-light);
	border-left: 4px solid var(--fs-border);
	color: var(--fs-gray);
	border-radius: 0 6px 6px 0;
}
.fs-entry table {
	width: 100%;
	border-collapse: collapse;
	margin: 0 0 1.4em;
	font-size: 17px;
}
.fs-entry th, .fs-entry td {
	border: 1px solid var(--fs-border);
	padding: 10px 12px;
	text-align: left;
	vertical-align: top;
}
.fs-entry th { background: var(--fs-light); font-weight: 700; white-space: nowrap; }
.fs-entry code {
	background: var(--fs-light);
	padding: 2px 6px;
	border-radius: 4px;
	font-size: .92em;
}
.fs-entry pre {
	background: var(--fs-light);
	padding: 14px;
	border-radius: 6px;
	overflow-x: auto;
}
.fs-entry hr { border: 0; border-top: 1px solid var(--fs-border); margin: 2em 0; }

/* WordPress 標準の配置クラス */
.fs-page .alignleft { float: left; margin: 0 1.2em 1em 0; }
.fs-page .alignright { float: right; margin: 0 0 1em 1.2em; }
.fs-page .aligncenter { margin-left: auto; margin-right: auto; }
.fs-page .alignwide, .fs-page .alignfull { max-width: 100%; }
.fs-entry::after { content: ""; display: block; clear: both; }
.fs-page .wp-caption { max-width: 100%; }
.fs-page .wp-caption-text, .fs-page figcaption {
	font-size: 14px;
	color: var(--fs-gray);
	text-align: center;
	margin-top: 6px;
}

/* タグ */
.fs-entry-tags { margin-top: 20px; font-size: 16px; }
.fs-entry-tags i { color: var(--fs-red); margin-right: 4px; }
.fs-entry-tags a {
	display: inline-block;
	background: var(--fs-light);
	border-radius: 4px;
	padding: 3px 10px;
	margin: 0 4px 4px 0;
	color: var(--fs-gray);
	font-weight: 600;
}
.fs-entry-tags a:hover { background: var(--fs-red); color: #fff; text-decoration: none; }

/* --- 記事一覧（カード） --- */
.fs-entry-list { display: grid; gap: 16px; margin-bottom: 30px; }
.fs-entry-card {
	display: flex;
	gap: 16px;
	border: 1px solid var(--fs-border);
	border-radius: 8px;
	padding: 16px;
	background: #fff;
	transition: box-shadow .2s ease, transform .2s ease;
}
.fs-entry-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.08); transform: translateY(-2px); }
.fs-entry-card-thumb {
	flex: 0 0 180px;
	aspect-ratio: 4 / 3;
	border-radius: 6px;
	overflow: hidden;
	background: var(--fs-light);
	display: flex;
	align-items: center;
	justify-content: center;
}
.fs-entry-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.fs-entry-card-noimg { color: #ccc; font-size: 41px; }
.fs-entry-card-body { flex: 1 1 auto; min-width: 0; }
.fs-entry-card-title { font-size: 22px; font-weight: 800; margin: 0 0 8px; line-height: 1.45; }
.fs-entry-card-title a { color: var(--fs-black); }
.fs-entry-card-title a:hover { color: var(--fs-red); text-decoration: none; }
.fs-entry-card-excerpt { font-size: 17px; color: var(--fs-gray); margin: 0; }

.fs-archive-desc, .fs-search-note {
	background: var(--fs-light);
	border-radius: 8px;
	padding: 12px 16px;
	font-size: 17px;
	margin-bottom: 22px;
}

/* --- ページネーション --- */
.fs-pager {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 6px;
	margin: 30px 0;
}
.fs-pager .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid var(--fs-border);
	border-radius: 6px;
	color: var(--fs-black);
	font-weight: 700;
	font-size: 17px;
}
.fs-pager .page-numbers:hover { background: var(--fs-light); text-decoration: none; }
.fs-pager .page-numbers.current { background: var(--fs-red); border-color: var(--fs-red); color: #fff; }
.fs-pager .page-numbers.dots { border-color: transparent; }

/* --- 前後の記事 --- */
.fs-post-nav {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	border-top: 1px solid var(--fs-border);
	padding-top: 18px;
	margin-bottom: 34px;
	font-size: 17px;
	font-weight: 700;
}
.fs-post-nav > div { max-width: 48%; }
.fs-post-nav-next { text-align: right; margin-left: auto; }

/* --- 検索フォーム --- */
.fs-searchform { display: flex; gap: 8px; max-width: 420px; margin: 16px 0; }
.fs-searchform input[type="search"] {
	flex: 1 1 auto;
	min-width: 0;
	border: 1px solid var(--fs-border);
	border-radius: 6px;
	padding: 11px 12px;
	font-size: 17px;
	font-family: inherit;
}
.fs-searchform button {
	flex: 0 0 auto;
	background: var(--fs-red);
	color: #fff;
	border: 0;
	border-radius: 6px;
	padding: 0 18px;
	font-size: 18px;
	cursor: pointer;
}
.fs-searchform button:hover { background: var(--fs-red-dark); }

/* --- 該当なし / 404 --- */
.fs-empty {
	border: 1px solid var(--fs-border);
	border-radius: 8px;
	padding: 26px;
	margin-bottom: 34px;
}
.fs-empty p { margin-top: 0; }
.fs-empty-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 0; }

/* --- コメント（親テーマ comments.php 用の最低限の調整） --- */
.fs-page .comments-area {
	border-top: 1px solid var(--fs-border);
	padding-top: 24px;
	margin-bottom: 34px;
	font-size: 17px;
}
.fs-page .comments-title, .fs-page .comment-reply-title {
	font-size: 22px;
	font-weight: 800;
	margin: 0 0 16px;
	padding-left: 12px;
	border-left: 5px solid var(--fs-red);
}
.fs-page .comment-list { list-style: none; margin: 0 0 24px; padding: 0; }
.fs-page .comment-list li { border-bottom: 1px dashed var(--fs-border); padding: 12px 0; }
.fs-page .comment-form input[type="text"],
.fs-page .comment-form input[type="email"],
.fs-page .comment-form input[type="url"],
.fs-page .comment-form textarea {
	width: 100%;
	border: 1px solid var(--fs-border);
	border-radius: 6px;
	padding: 10px 12px;
	font-family: inherit;
	font-size: 17px;
}
.fs-page .comment-form .submit {
	background: var(--fs-red);
	color: #fff;
	border: 0;
	border-radius: 6px;
	padding: 12px 24px;
	font-weight: 700;
	cursor: pointer;
}
.fs-page .comment-form .submit:hover { background: var(--fs-red-dark); }

/* --- 下層ページのレスポンシブ --- */
@media (max-width: 640px) {
	.fs-page-title { font-size: 25px; }
	.fs-entry h2 { font-size: 23px; }
	.fs-entry h3 { font-size: 20px; }
	.fs-entry-card { flex-direction: column; gap: 12px; }
	.fs-entry-card-thumb { flex-basis: auto; width: 100%; aspect-ratio: 16 / 9; }
	.fs-post-nav { flex-direction: column; }
	.fs-post-nav > div { max-width: 100%; text-align: left; margin-left: 0; }
}


/* =========================================================
   宅配買取について（固定ページ貼り付け用）
   ---------------------------------------------------------
   takuhai-kaitori.html の中身を固定ページの「カスタムHTML」に
   貼り付けて使用します。
   本文は .fs-entry の中に入るため、h2/table などの既定スタイルより
   優先させる必要があります。セレクタは必ず .fs-tk と組み合わせて
   （＝クラス2つ以上で）記述してください。
   ========================================================= */
.fs-tk { margin-bottom: 8px; }

/* --- 冒頭リード（赤帯タイトル＋制限バッジ） --- */
.fs-tk .fs-tk-lead {
	border: 2px solid var(--fs-red);
	border-radius: 8px;
	overflow: hidden;
	margin: 0 0 28px;
}
.fs-tk .fs-tk-lead-title {
	margin: 0;
	padding: 14px 18px;
	background: var(--fs-red);
	border: 0;
	border-radius: 0;
	color: #fff;
	font-size: 26px;
	font-weight: 800;
	line-height: 1.35;
}
.fs-tk .fs-tk-lead-title small {
	display: block;
	margin-top: 5px;
	font-size: 16px;
	font-weight: 700;
	opacity: .92;
}
.fs-tk .fs-tk-lead-body { padding: 16px 18px; }

/* 重量・サイズ制限のタイル */
.fs-tk .fs-tk-limits {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.fs-tk .fs-tk-limit {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	background: var(--fs-light);
	border: 1px solid var(--fs-border);
	border-radius: 8px;
}
.fs-tk .fs-tk-limit i {
	flex: 0 0 38px;
	color: var(--fs-red);
	font-size: 29px;
	text-align: center;
}
.fs-tk .fs-tk-limit-label { display: block; font-size: 14px; color: var(--fs-gray); }
.fs-tk .fs-tk-limit-value { display: block; font-size: 24px; font-weight: 800; line-height: 1.2; }

/* --- ステップ（1 かんたん査定／2 発送／3 振込） --- */
.fs-tk .fs-tk-step {
	border: 1px solid var(--fs-border);
	border-radius: 8px;
	overflow: hidden;
	margin: 0 0 20px;
}
.fs-tk .fs-tk-step-head {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	background: var(--fs-light);
	border-bottom: 1px solid var(--fs-border);
}
.fs-tk .fs-tk-num {
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--fs-red);
	border-radius: 50%;
	color: #fff;
	font-weight: 800;
}
.fs-tk .fs-tk-step-title {
	margin: 0;
	padding: 0;
	background: none;
	border: 0;
	border-radius: 0;
	font-size: 23px;
	font-weight: 800;
	line-height: 1.3;
}
.fs-tk .fs-tk-step-title small {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--fs-gray);
}
.fs-tk .fs-tk-step-body { padding: 16px; }
.fs-tk .fs-tk-step-body > *:first-child { margin-top: 0; }
.fs-tk .fs-tk-step-body > *:last-child { margin-bottom: 0; }
.fs-tk .fs-tk-step-body p { margin: 0 0 1em; }

/* 見出し内の「リンク」ボタン */
.fs-page a.fs-tk-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-left: auto;
	padding: 7px 14px;
	background: var(--fs-red);
	border-radius: 999px;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
	text-decoration: none;
}
.fs-page a.fs-tk-link:hover { background: var(--fs-red-dark); color: #fff; text-decoration: none; }

/* --- 注記（※） --- */
.fs-tk .fs-tk-note {
	margin: 0 0 .6em;
	font-size: 16px;
	color: var(--fs-gray);
}
.fs-tk .fs-tk-note-red { color: var(--fs-red); font-weight: 700; }

/* --- 小見出し --- */
.fs-tk .fs-tk-h {
	margin: 26px 0 12px;
	padding: 0 0 7px;
	background: none;
	border: 0;
	border-bottom: 2px solid var(--fs-border);
	font-size: 19px;
	font-weight: 800;
	line-height: 1.3;
}
.fs-tk .fs-tk-h i { color: var(--fs-red); margin-right: 7px; }

/* --- 目安重さ --- */
.fs-tk .fs-tk-weights {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.fs-tk .fs-tk-weights li {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 10px;
	margin: 0;
	padding: 10px 2px;
	border-bottom: 1px dashed var(--fs-border);
	font-size: 17px;
}
.fs-tk .fs-tk-w-name { font-weight: 700; }
.fs-tk .fs-tk-w-val { color: var(--fs-red); font-weight: 800; white-space: nowrap; }

/* --- ダンボールサイズ --- */
.fs-tk .fs-tk-boxes {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.fs-tk .fs-tk-box {
	margin: 0;
	padding: 16px 12px;
	background: #fff;
	border: 1px solid var(--fs-border);
	border-radius: 8px;
	text-align: center;
}
.fs-tk .fs-tk-box i { display: block; margin-bottom: 8px; color: var(--fs-red); font-size: 31px; }
.fs-tk .fs-tk-box-s i { font-size: 22px; }
.fs-tk .fs-tk-box-m i { font-size: 29px; }
.fs-tk .fs-tk-box-name { font-size: 18px; font-weight: 800; }
.fs-tk .fs-tk-box-size { margin-top: 4px; font-size: 14px; color: var(--fs-gray); }
.fs-tk .fs-tk-badge {
	display: inline-block;
	margin-top: 9px;
	padding: 3px 11px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 700;
}
.fs-tk .fs-tk-badge-ok { background: #eaf6ee; color: #1c7a3d; }
.fs-tk .fs-tk-badge-ng { background: #fdeaea; color: var(--fs-red); }
.fs-tk .fs-tk-box-ng { background: var(--fs-light); border-style: dashed; }
.fs-tk .fs-tk-box-ng i, .fs-tk .fs-tk-box-ng .fs-tk-box-name { color: #999; }

/* 巻き型 */
.fs-tk .fs-tk-maki {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 12px;
	padding: 14px 16px;
	background: var(--fs-light);
	border-radius: 8px;
}
.fs-tk .fs-tk-maki i { flex: 0 0 34px; color: var(--fs-red); font-size: 31px; text-align: center; }
.fs-tk .fs-tk-maki b { display: block; }
.fs-tk .fs-tk-maki small { color: var(--fs-gray); font-size: 16px; }

/* --- 宅配キットの内容 --- */
.fs-tk .fs-tk-kit {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.fs-tk .fs-tk-kit li {
	position: relative;
	margin: 0;
	padding: 18px 10px;
	background: #fff;
	border: 1px solid var(--fs-border);
	border-radius: 8px;
	text-align: center;
}
.fs-tk .fs-tk-kit li:not(:last-child)::after {
	content: "＋";
	position: absolute;
	top: 50%;
	right: -13px;
	transform: translateY(-50%);
	color: var(--fs-red);
	font-size: 18px;
	font-weight: 800;
	line-height: 1;
	z-index: 2;
}
.fs-tk .fs-tk-kit i { display: block; margin-bottom: 9px; color: var(--fs-red); font-size: 34px; }
.fs-tk .fs-tk-kit-no { display: block; font-size: 13px; color: var(--fs-gray); }
.fs-tk .fs-tk-kit-name { font-size: 16px; font-weight: 700; }

/* --- お問い合わせボタン（電話・LINE・メール） --- */
.fs-tk .fs-tk-contact {
	margin-top: 18px;
	padding: 18px 16px;
	background: var(--fs-light);
	border-radius: 8px;
	text-align: center;
}
.fs-tk .fs-tk-contact-lead { margin: 0 0 14px; font-size: 16px; color: var(--fs-gray); }
.fs-tk .fs-tk-contact-btns {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
}
.fs-tk .fs-tk-contact-btns .fs-btn { padding: 15px 26px; font-size: 19px; }
.fs-page a.fs-tk-btn-tel {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 15px 26px;
	background: var(--fs-black);
	border-radius: 6px;
	color: #fff;
	font-size: 19px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
}
.fs-page a.fs-tk-btn-tel:hover { background: #000; color: #fff; text-decoration: none; }
.fs-page a.fs-tk-btn-tel i { color: #fff; }

/* --- 申込みCTA --- */
.fs-tk .fs-tk-cta {
	margin-top: 26px;
	padding: 24px 20px;
	background: var(--fs-light);
	border-radius: 8px;
	text-align: center;
}
.fs-tk .fs-tk-cta-title { margin: 0 0 6px; font-size: 22px; font-weight: 800; }
.fs-tk .fs-tk-cta-lead { margin: 0 0 14px; font-size: 16px; color: var(--fs-gray); }
.fs-page a.fs-tk-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 15px 32px;
	background: var(--fs-red);
	border-radius: 8px;
	color: #fff;
	font-size: 19px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
}
.fs-page a.fs-tk-btn:hover { background: var(--fs-red-dark); color: #fff; text-decoration: none; }
.fs-page a.fs-tk-btn i { color: #fff; }

/* =========================================================
   宅配買取ページ：写真・イラスト枠
   ---------------------------------------------------------
   サンプル画像は images/takuhai/ にあります。
   本番写真に差し替えるときは HTML の <img src="…"> を
   メディアライブラリの URL に変更するだけでOKです。
   ========================================================= */

/* メインイメージ */
.fs-tk .fs-tk-figure { margin: 0 0 26px; }
.fs-tk .fs-tk-figure img {
	width: 100%;
	border: 1px solid var(--fs-border);
	border-radius: 8px;
}
.fs-tk .fs-tk-figure figcaption {
	margin-top: 7px;
	font-size: 14px;
	color: var(--fs-gray);
	text-align: center;
}

/* ステップ本文：テキスト左・写真右の2カラム */
.fs-tk .fs-tk-cols {
	display: flex;
	align-items: flex-start;
	gap: 18px;
}
.fs-tk .fs-tk-cols-text { flex: 1 1 auto; min-width: 0; }
.fs-tk .fs-tk-cols-text > *:first-child { margin-top: 0; }
.fs-tk .fs-tk-cols-text > *:last-child { margin-bottom: 0; }
.fs-tk .fs-tk-cols-img { flex: 0 0 290px; margin: 0; }
.fs-tk .fs-tk-cols-img img {
	width: 100%;
	border: 1px solid var(--fs-border);
	border-radius: 8px;
}

/* ダンボールカードのサムネイル */
.fs-tk .fs-tk-box-img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	margin-bottom: 10px;
	object-fit: cover;
	border: 1px solid var(--fs-border);
	border-radius: 6px;
	background: var(--fs-light);
}
.fs-tk .fs-tk-box-ng .fs-tk-box-img { opacity: .45; }

/* 巻き型 */
.fs-tk .fs-tk-maki-img {
	flex: 0 0 145px;
	width: 145px;
	border: 1px solid var(--fs-border);
	border-radius: 6px;
}

/* 宅配キットのサムネイル */
.fs-tk .fs-tk-kit-img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	margin-bottom: 9px;
	object-fit: cover;
	border: 1px solid var(--fs-border);
	border-radius: 6px;
	background: var(--fs-light);
}

/* --- 宅配買取ページのレスポンシブ --- */
@media (max-width: 782px) {
	.fs-tk .fs-tk-cols { flex-direction: column; }
	.fs-tk .fs-tk-cols-img { flex-basis: auto; width: 100%; max-width: 360px; }
}
@media (max-width: 640px) {
	.fs-tk .fs-tk-lead-title { font-size: 22px; padding: 12px 14px; }
	.fs-tk .fs-tk-limits { grid-template-columns: 1fr; }
	.fs-tk .fs-tk-step-head { flex-wrap: wrap; }
	.fs-tk .fs-tk-step-title { font-size: 20px; }
	.fs-page a.fs-tk-link { margin-left: 0; width: 100%; justify-content: center; }
	.fs-tk .fs-tk-contact-btns { flex-direction: column; }
	.fs-tk .fs-tk-contact-btns .fs-btn,
	.fs-page a.fs-tk-btn-tel { width: 100%; justify-content: center; }
	.fs-tk .fs-tk-weights { grid-template-columns: 1fr; gap: 0; }
	.fs-tk .fs-tk-boxes { grid-template-columns: 1fr 1fr; }
	.fs-tk .fs-tk-kit { grid-template-columns: 1fr 1fr; }
	.fs-tk .fs-tk-kit li:not(:last-child)::after { display: none; }
	.fs-page a.fs-tk-btn { width: 100%; }
	.fs-tk .fs-tk-maki { flex-wrap: wrap; }
	.fs-tk .fs-tk-maki-img { flex-basis: 96px; width: 96px; }
}


/* =========================================================
   出張買取について（固定ページ貼り付け用）
   ---------------------------------------------------------
   syuttyou-kaitori.html の中身を固定ページの「カスタムHTML」に
   貼り付けて使用します。
   宅配買取ページ（.fs-tk）とは独立させてあるので、
   片方だけデザインを変更しても、もう片方に影響しません。
   本文は .fs-entry の中に入るため、既定スタイルより優先させる目的で
   セレクタは必ず .fs-sk と組み合わせて記述してください。
   ========================================================= */
.fs-sk { margin-bottom: 8px; }

/* --- 冒頭リード（赤帯タイトル＋3つの特長） --- */
.fs-sk .fs-sk-lead {
	border: 2px solid var(--fs-red);
	border-radius: 8px;
	overflow: hidden;
	margin: 0 0 26px;
}
.fs-sk .fs-sk-lead-title {
	margin: 0;
	padding: 14px 18px;
	background: var(--fs-red);
	border: 0;
	border-radius: 0;
	color: #fff;
	font-size: 26px;
	font-weight: 800;
	line-height: 1.35;
}
.fs-sk .fs-sk-lead-title small {
	display: block;
	margin-top: 5px;
	font-size: 16px;
	font-weight: 700;
	opacity: .92;
}
.fs-sk .fs-sk-lead-body { padding: 16px 18px; }
.fs-sk .fs-sk-points {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.fs-sk .fs-sk-points li {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	padding: 12px 14px;
	background: var(--fs-light);
	border: 1px solid var(--fs-border);
	border-radius: 8px;
	font-weight: 800;
}
.fs-sk .fs-sk-points i {
	flex: 0 0 34px;
	color: var(--fs-red);
	font-size: 26px;
	text-align: center;
}

/* --- 見出し --- */
.fs-sk .fs-sk-h2 {
	margin: 34px 0 14px;
	padding: 0 0 0 14px;
	background: none;
	border: 0;
	border-left: 6px solid var(--fs-red);
	border-radius: 0;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.3;
}
.fs-sk .fs-sk-h3 {
	margin: 24px 0 12px;
	padding: 0 0 7px;
	background: none;
	border: 0;
	border-bottom: 2px solid var(--fs-border);
	font-size: 19px;
	font-weight: 800;
	line-height: 1.3;
}
.fs-sk .fs-sk-h3 i { color: var(--fs-red); margin-right: 7px; }

/* --- 注記 --- */
.fs-sk .fs-sk-note { margin: 0 0 .6em; font-size: 16px; color: var(--fs-gray); }
.fs-sk .fs-sk-note-red { color: var(--fs-red); font-weight: 700; }

/* --- メイン画像 --- */
.fs-sk .fs-sk-figure { margin: 0 0 26px; }
.fs-sk .fs-sk-figure img { width: 100%; border: 1px solid var(--fs-border); border-radius: 8px; }
.fs-sk .fs-sk-figure figcaption {
	margin-top: 7px;
	font-size: 14px;
	color: var(--fs-gray);
	text-align: center;
}

/* --- 買取エリア --- */
.fs-sk .fs-sk-area-wrap {
	display: flex;
	align-items: flex-start;
	gap: 22px;
}
.fs-sk .fs-sk-area-map { flex: 0 0 300px; margin: 0; }
.fs-sk .fs-sk-area-map img { width: 100%; border: 1px solid var(--fs-border); border-radius: 8px; }
.fs-sk .fs-sk-area-body { flex: 1 1 auto; min-width: 0; }
.fs-sk .fs-sk-area-body > *:first-child { margin-top: 0; }
.fs-sk .fs-sk-areas {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin: 0 0 14px;
	padding: 0;
	list-style: none;
}
.fs-sk .fs-sk-area {
	margin: 0;
	padding: 14px 10px;
	background: #fff;
	border: 2px solid var(--fs-red);
	border-radius: 8px;
	text-align: center;
}
.fs-sk .fs-sk-area-name { font-size: 20px; font-weight: 800; }
.fs-sk .fs-sk-area-sub { margin-top: 3px; font-size: 14px; color: var(--fs-gray); }
.fs-sk .fs-sk-area-out {
	padding: 14px 16px;
	background: var(--fs-light);
	border-radius: 8px;
	font-size: 16px;
}
.fs-sk .fs-sk-area-out b { color: var(--fs-red); }

/* --- 予約カレンダー --- */
.fs-sk .fs-sk-cal {
	border: 1px solid var(--fs-border);
	border-radius: 8px;
	padding: 18px;
}
.fs-sk .fs-sk-cal-slot {
	margin: 0 0 14px;
	padding: 0;
	border: 2px dashed var(--fs-border);
	border-radius: 8px;
	overflow: hidden;
	background: var(--fs-light);
}
.fs-sk .fs-sk-cal-slot img { width: 100%; }
/* --- 電話番号ボックス（流れ1「まずはお電話ください」） --- */
.fs-page a.fs-sk-telbox,
.fs-page a.fs-sk-telbox:link,
.fs-page a.fs-sk-telbox:visited {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	margin: 0 0 16px;
	padding: 14px 18px;
	background: #fff;
	border: 3px solid var(--fs-red);
	border-radius: 10px;
	color: var(--fs-black);
	text-align: center;
	text-decoration: none;
}
.fs-page a.fs-sk-telbox:hover { background: #fff8f8; text-decoration: none; }
.fs-sk .fs-sk-telbox-label { font-size: 14px; font-weight: 700; color: var(--fs-gray); }
.fs-sk .fs-sk-telbox-num {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 32px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: .5px;
}
.fs-sk .fs-sk-telbox-num i { color: var(--fs-red); font-size: 26px; }
.fs-sk .fs-sk-telbox-hours { font-size: 14px; color: var(--fs-gray); }

.fs-sk .fs-sk-cautions { margin: 0; padding: 0; list-style: none; }
.fs-sk .fs-sk-cautions li {
	position: relative;
	margin: 0;
	padding: 7px 0 7px 24px;
	border-bottom: 1px dashed var(--fs-border);
	font-size: 16px;
	color: var(--fs-gray);
}
.fs-sk .fs-sk-cautions li:last-child { border-bottom: 0; }
.fs-sk .fs-sk-cautions li::before {
	content: "\f0da"; /* caret-right */
	position: absolute;
	left: 4px;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: var(--fs-red);
}

/* --- 出張買取事例 --- */
.fs-sk .fs-sk-cases {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.fs-sk .fs-sk-case {
	display: flex;
	gap: 14px;
	margin: 0;
	padding: 14px;
	background: #fff;
	border: 1px solid var(--fs-border);
	border-radius: 8px;
}
.fs-sk .fs-sk-case-img {
	flex: 0 0 130px;
	width: 130px;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	background: var(--fs-light);
	border: 1px solid var(--fs-border);
	border-radius: 6px;
}
.fs-sk .fs-sk-case-body { flex: 1 1 auto; min-width: 0; }
.fs-sk .fs-sk-case-area {
	display: inline-block;
	margin-bottom: 6px;
	padding: 3px 11px;
	background: var(--fs-red);
	border-radius: 999px;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
}
.fs-sk .fs-sk-case-name { font-size: 17px; font-weight: 800; line-height: 1.4; }
.fs-sk .fs-sk-case-count { font-size: 14px; color: var(--fs-gray); }
.fs-sk .fs-sk-case-price {
	margin-top: 5px;
	color: var(--fs-red);
	font-size: 24px;
	font-weight: 800;
	line-height: 1.2;
}
.fs-sk .fs-sk-case-price small { font-size: 14px; font-weight: 700; }

/* --- 出張買取の流れ --- */
.fs-sk .fs-sk-steps { margin: 0; padding: 0; list-style: none; }
.fs-sk .fs-sk-step {
	position: relative;
	margin: 0 0 34px;
	padding: 0;
	border: 1px solid var(--fs-border);
	border-radius: 8px;
	overflow: hidden;
}
/* ステップ間の矢印 */
.fs-sk .fs-sk-step:not(:last-child)::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -25px;
	transform: translateX(-50%);
	border-left: 15px solid transparent;
	border-right: 15px solid transparent;
	border-top: 15px solid var(--fs-red);
}
.fs-sk .fs-sk-step-head {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	background: var(--fs-light);
	border-bottom: 1px solid var(--fs-border);
}
.fs-sk .fs-sk-num {
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--fs-red);
	border-radius: 50%;
	color: #fff;
	font-weight: 800;
}
.fs-sk .fs-sk-step-title {
	margin: 0;
	padding: 0;
	background: none;
	border: 0;
	border-radius: 0;
	font-size: 23px;
	font-weight: 800;
	line-height: 1.3;
}
.fs-sk .fs-sk-step-body { padding: 16px; }
.fs-sk .fs-sk-cols { display: flex; align-items: flex-start; gap: 18px; }
.fs-sk .fs-sk-cols-text { flex: 1 1 auto; min-width: 0; }
.fs-sk .fs-sk-cols-text > *:first-child { margin-top: 0; }
.fs-sk .fs-sk-cols-text > *:last-child { margin-bottom: 0; }
.fs-sk .fs-sk-cols-img { flex: 0 0 250px; margin: 0; }
.fs-sk .fs-sk-cols-img img { width: 100%; border: 1px solid var(--fs-border); border-radius: 8px; }
.fs-sk .fs-sk-step-body p { margin: 0 0 1em; }

/* --- お問い合わせCTA --- */
.fs-sk .fs-sk-cta {
	margin-top: 30px;
	padding: 24px 20px;
	background: var(--fs-light);
	border-radius: 8px;
	text-align: center;
}
.fs-sk .fs-sk-cta-title { margin: 0 0 6px; font-size: 22px; font-weight: 800; }
.fs-sk .fs-sk-cta-lead { margin: 0 0 16px; font-size: 16px; color: var(--fs-gray); }
.fs-sk .fs-sk-cta-btns {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
}
.fs-sk .fs-sk-cta-btns .fs-btn { padding: 15px 26px; font-size: 19px; }
.fs-page a.fs-sk-btn-tel {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 15px 26px;
	background: var(--fs-black);
	border-radius: 6px;
	color: #fff;
	font-size: 19px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
}
.fs-page a.fs-sk-btn-tel:hover { background: #000; color: #fff; text-decoration: none; }
.fs-page a.fs-sk-btn-tel i { color: #fff; }

/* --- 出張買取ページのレスポンシブ --- */
@media (max-width: 782px) {
	.fs-sk .fs-sk-area-wrap { flex-direction: column; }
	.fs-sk .fs-sk-area-map { flex-basis: auto; width: 100%; max-width: 360px; margin: 0 auto; }
	.fs-sk .fs-sk-cols { flex-direction: column; }
	.fs-sk .fs-sk-cols-img { flex-basis: auto; width: 100%; max-width: 360px; }
	.fs-sk .fs-sk-cases { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
	.fs-sk .fs-sk-lead-title { font-size: 22px; padding: 12px 14px; }
	.fs-sk .fs-sk-points { grid-template-columns: 1fr; }
	.fs-sk .fs-sk-h2 { font-size: 21px; }
	.fs-sk .fs-sk-step-title { font-size: 20px; }
	.fs-sk .fs-sk-areas { grid-template-columns: 1fr; }
	.fs-sk .fs-sk-case { flex-direction: column; }
	.fs-sk .fs-sk-case-img { flex-basis: auto; width: 100%; }
	.fs-sk .fs-sk-telbox-num { font-size: 29px; }
	.fs-sk .fs-sk-telbox-num i { font-size: 22px; }
	.fs-sk .fs-sk-cta-btns { flex-direction: column; }
	.fs-sk .fs-sk-cta-btns .fs-btn,
	.fs-page a.fs-sk-btn-tel { width: 100%; justify-content: center; }
}


/* =========================================================
   店頭買取について（固定ページ貼り付け用）
   ---------------------------------------------------------
   tentou-kaitori.html の中身を固定ページの「カスタムHTML」に
   貼り付けて使用します。
   宅配買取（.fs-tk）・出張買取（.fs-sk）とは独立させてあるので、
   1つだけデザインを変更しても他のページに影響しません。
   本文は .fs-entry の中に入るため、既定スタイルより優先させる目的で
   セレクタは必ず .fs-tt と組み合わせて記述してください。
   ========================================================= */
.fs-tt { margin-bottom: 8px; }

/* --- 冒頭リード（赤帯タイトル＋3つの特長） --- */
.fs-tt .fs-tt-lead {
	border: 2px solid var(--fs-red);
	border-radius: 8px;
	overflow: hidden;
	margin: 0 0 20px;
}
.fs-tt .fs-tt-lead-title {
	margin: 0;
	padding: 14px 18px;
	background: var(--fs-red);
	border: 0;
	border-radius: 0;
	color: #fff;
	font-size: 26px;
	font-weight: 800;
	line-height: 1.35;
}
.fs-tt .fs-tt-lead-title small {
	display: block;
	margin-top: 5px;
	font-size: 16px;
	font-weight: 700;
	opacity: .92;
}
.fs-tt .fs-tt-lead-body { padding: 16px 18px; }
.fs-tt .fs-tt-points {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.fs-tt .fs-tt-points li {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	padding: 12px 14px;
	background: var(--fs-light);
	border: 1px solid var(--fs-border);
	border-radius: 8px;
	font-weight: 800;
}
.fs-tt .fs-tt-points i {
	flex: 0 0 34px;
	color: var(--fs-red);
	font-size: 26px;
	text-align: center;
}

/* --- お知らせ（臨時休業など） --- */
.fs-tt .fs-tt-info {
	margin: 0 0 20px;
	padding: 12px 16px;
	background: #fff6f6;
	border: 1px solid var(--fs-red);
	border-radius: 8px;
	color: var(--fs-red);
	font-weight: 700;
}
.fs-tt .fs-tt-info i { margin-right: 7px; }

/* --- 見出し --- */
.fs-tt .fs-tt-h2 {
	margin: 34px 0 14px;
	padding: 0 0 0 14px;
	background: none;
	border: 0;
	border-left: 6px solid var(--fs-red);
	border-radius: 0;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.3;
}

/* --- 注記 --- */
.fs-tt .fs-tt-note { margin: 0 0 .6em; font-size: 16px; color: var(--fs-gray); }
.fs-tt .fs-tt-note-red { color: var(--fs-red); font-weight: 700; }

/* --- 注意書きリスト --- */
.fs-tt .fs-tt-cautions { margin: 0; padding: 0; list-style: none; }
.fs-tt .fs-tt-cautions li {
	position: relative;
	margin: 0;
	padding: 7px 0 7px 24px;
	border-bottom: 1px dashed var(--fs-border);
	font-size: 16px;
	color: var(--fs-gray);
}
.fs-tt .fs-tt-cautions li:last-child { border-bottom: 0; }
.fs-tt .fs-tt-cautions li::before {
	content: "\f0da"; /* caret-right */
	position: absolute;
	left: 4px;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: var(--fs-red);
}

/* --- メイン画像 --- */
.fs-tt .fs-tt-figure { margin: 0 0 26px; }
.fs-tt .fs-tt-figure img { width: 100%; border: 1px solid var(--fs-border); border-radius: 8px; }
.fs-tt .fs-tt-figure figcaption {
	margin-top: 7px;
	font-size: 14px;
	color: var(--fs-gray);
	text-align: center;
}

/* --- 3つの強み --- */
.fs-tt .fs-tt-merits {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin: 20px 0 0;
}
.fs-tt .fs-tt-merit {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 16px 14px;
	background: var(--fs-light);
	border: 1px solid var(--fs-border);
	border-radius: 8px;
}
.fs-tt .fs-tt-merit i { flex: 0 0 34px; color: var(--fs-red); font-size: 28px; text-align: center; }
.fs-tt .fs-tt-merit b { display: block; margin-bottom: 4px; font-size: 17px; }
.fs-tt .fs-tt-merit small { display: block; font-size: 15px; color: var(--fs-gray); line-height: 1.6; }

/* --- 店頭買取の流れ --- */
.fs-tt .fs-tt-steps { margin: 0; padding: 0; list-style: none; }
.fs-tt .fs-tt-step {
	position: relative;
	margin: 0 0 34px;
	padding: 0;
	border: 1px solid var(--fs-border);
	border-radius: 8px;
	overflow: hidden;
}
/* ステップ間の矢印 */
.fs-tt .fs-tt-step:not(:last-child)::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -25px;
	transform: translateX(-50%);
	border-left: 13px solid transparent;
	border-right: 13px solid transparent;
	border-top: 15px solid var(--fs-red);
}
.fs-tt .fs-tt-step-head {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	background: var(--fs-light);
	border-bottom: 1px solid var(--fs-border);
}
.fs-tt .fs-tt-num {
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--fs-red);
	border-radius: 50%;
	color: #fff;
	font-weight: 800;
}
.fs-tt .fs-tt-step-title {
	margin: 0;
	padding: 0;
	background: none;
	border: 0;
	border-radius: 0;
	font-size: 23px;
	font-weight: 800;
	line-height: 1.3;
}
.fs-tt .fs-tt-step-title small {
	margin-left: 10px;
	font-size: 15px;
	font-weight: 700;
	color: var(--fs-gray);
}
.fs-tt .fs-tt-step-body { padding: 16px; }
.fs-tt .fs-tt-step-body p { margin: 0 0 1em; }
.fs-tt .fs-tt-cols { display: flex; align-items: flex-start; gap: 18px; }
.fs-tt .fs-tt-cols-text { flex: 1 1 auto; min-width: 0; }
.fs-tt .fs-tt-cols-text > *:first-child { margin-top: 0; }
.fs-tt .fs-tt-cols-text > *:last-child { margin-bottom: 0; }
.fs-tt .fs-tt-cols-img { flex: 0 0 250px; margin: 0; }
.fs-tt .fs-tt-cols-img img { width: 100%; border: 1px solid var(--fs-border); border-radius: 8px; }

/* --- お支払い方法 --- */
.fs-tt .fs-tt-pays {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.fs-tt .fs-tt-pay {
	margin: 0;
	padding: 18px 16px;
	background: #fff;
	border: 2px solid var(--fs-border);
	border-radius: 8px;
	text-align: center;
}
.fs-tt .fs-tt-pay i { display: block; margin-bottom: 9px; color: var(--fs-red); font-size: 34px; }
.fs-tt .fs-tt-pay-name { margin-bottom: 6px; font-size: 19px; font-weight: 800; }
.fs-tt .fs-tt-pay-text { margin: 0; font-size: 16px; color: var(--fs-gray); text-align: left; }

/* --- 本人確認書類 --- */
.fs-tt .fs-tt-ids {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin: 0 0 16px;
	padding: 0;
	list-style: none;
}
.fs-tt .fs-tt-ids li {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	padding: 13px 16px;
	background: var(--fs-light);
	border: 1px solid var(--fs-border);
	border-radius: 8px;
	font-weight: 700;
}
.fs-tt .fs-tt-ids i { flex: 0 0 28px; color: var(--fs-red); font-size: 22px; text-align: center; }

/* --- 店舗情報 --- */
.fs-tt .fs-tt-shop { display: flex; align-items: flex-start; gap: 22px; }
.fs-tt .fs-tt-shop-info { flex: 1 1 auto; min-width: 0; }
.fs-tt .fs-tt-shop-map { flex: 0 0 45%; }
.fs-tt .fs-tt-shop-map iframe {
	display: block;
	width: 100%;
	border: 1px solid var(--fs-border);
	border-radius: 8px;
}
.fs-tt .fs-tt-shop-dl {
	display: grid;
	grid-template-columns: 8em 1fr;
	margin: 0 0 12px;
	border-top: 1px solid var(--fs-border);
}
.fs-tt .fs-tt-shop-dl dt,
.fs-tt .fs-tt-shop-dl dd {
	margin: 0;
	padding: 11px 12px;
	border-bottom: 1px solid var(--fs-border);
	font-size: 16px;
}
.fs-tt .fs-tt-shop-dl dt {
	background: var(--fs-light);
	color: var(--fs-gray);
	font-weight: 700;
}

/* --- 電話番号ボックス --- */
.fs-page a.fs-tt-telbox,
.fs-page a.fs-tt-telbox:link,
.fs-page a.fs-tt-telbox:visited {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	margin: 16px 0 0;
	padding: 14px 18px;
	background: #fff;
	border: 3px solid var(--fs-red);
	border-radius: 10px;
	color: var(--fs-black);
	text-align: center;
	text-decoration: none;
}
.fs-page a.fs-tt-telbox:hover { background: #fff8f8; text-decoration: none; }
.fs-tt .fs-tt-telbox-label { font-size: 14px; font-weight: 700; color: var(--fs-gray); }
.fs-tt .fs-tt-telbox-num {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 32px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: .5px;
}
.fs-tt .fs-tt-telbox-num i { color: var(--fs-red); font-size: 26px; }
.fs-tt .fs-tt-telbox-hours { font-size: 14px; color: var(--fs-gray); }

/* --- 出張買取・宅配買取への導線 --- */
.fs-tt .fs-tt-others {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.fs-tt .fs-tt-others li { margin: 0; }
.fs-page .fs-tt-others a {
	display: block;
	height: 100%;
	padding: 18px 16px;
	background: #fff;
	border: 2px solid var(--fs-border);
	border-radius: 8px;
	color: var(--fs-black);
	text-decoration: none;
}
.fs-page .fs-tt-others a:hover {
	border-color: var(--fs-red);
	background: #fff8f8;
	text-decoration: none;
}
.fs-tt .fs-tt-others i { display: block; margin-bottom: 9px; color: var(--fs-red); font-size: 30px; }
.fs-tt .fs-tt-others b { display: block; margin-bottom: 5px; font-size: 19px; font-weight: 800; }
.fs-tt .fs-tt-others small { display: block; font-size: 15px; color: var(--fs-gray); line-height: 1.6; }

/* --- お問い合わせCTA --- */
.fs-tt .fs-tt-cta {
	margin-top: 30px;
	padding: 24px 20px;
	background: var(--fs-light);
	border-radius: 8px;
	text-align: center;
}
.fs-tt .fs-tt-cta-title { margin: 0 0 6px; font-size: 22px; font-weight: 800; }
.fs-tt .fs-tt-cta-lead { margin: 0 0 16px; font-size: 16px; color: var(--fs-gray); }
.fs-tt .fs-tt-cta-btns {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
}
.fs-tt .fs-tt-cta-btns .fs-btn { padding: 15px 26px; font-size: 19px; }
.fs-page a.fs-tt-btn-tel {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 15px 26px;
	background: var(--fs-black);
	border-radius: 6px;
	color: #fff;
	font-size: 19px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
}
.fs-page a.fs-tt-btn-tel:hover { background: #000; color: #fff; text-decoration: none; }
.fs-page a.fs-tt-btn-tel i { color: #fff; }

/* --- 店頭買取ページのレスポンシブ --- */
@media (max-width: 782px) {
	.fs-tt .fs-tt-merits { grid-template-columns: 1fr; }
	.fs-tt .fs-tt-cols { flex-direction: column; }
	.fs-tt .fs-tt-cols-img { flex-basis: auto; width: 100%; max-width: 360px; }
	.fs-tt .fs-tt-shop { flex-direction: column; }
	.fs-tt .fs-tt-shop-map { flex-basis: auto; width: 100%; }
}
@media (max-width: 640px) {
	.fs-tt .fs-tt-lead-title { font-size: 22px; padding: 12px 14px; }
	.fs-tt .fs-tt-points { grid-template-columns: 1fr; }
	.fs-tt .fs-tt-h2 { font-size: 21px; }
	.fs-tt .fs-tt-step-head { flex-wrap: wrap; }
	.fs-tt .fs-tt-step-title { font-size: 20px; }
	.fs-tt .fs-tt-step-title small { display: block; margin-left: 0; }
	.fs-tt .fs-tt-pays { grid-template-columns: 1fr; }
	.fs-tt .fs-tt-ids { grid-template-columns: 1fr; }
	.fs-tt .fs-tt-others { grid-template-columns: 1fr; }
	.fs-tt .fs-tt-shop-dl { grid-template-columns: 6.5em 1fr; }
	.fs-tt .fs-tt-shop-dl dt,
	.fs-tt .fs-tt-shop-dl dd { padding: 10px; font-size: 15px; }
	.fs-tt .fs-tt-telbox-num { font-size: 29px; }
	.fs-tt .fs-tt-telbox-num i { font-size: 22px; }
	.fs-tt .fs-tt-cta-btns { flex-direction: column; }
	.fs-tt .fs-tt-cta-btns .fs-btn,
	.fs-page a.fs-tt-btn-tel { width: 100%; justify-content: center; }
}


/* =========================================================
   メールフォーム（Contact Form 7）
   ---------------------------------------------------------
   対象: mailform-cf7.html
     【1】CF7「フォーム」タブのコード … .fs-mf
     【2】固定ページ側の電話/LINE CTA … .fs-mf-cta
   CF7 は入力欄を <span class="wpcf7-form-control-wrap"> で包み、
   さらに wpautop で <p> が挿入されるため、
   子セレクタではなく子孫セレクタで指定しています。
   ========================================================= */

/* --- 全体の枠 --- */
.fs-mf {
	margin: 0 0 30px;
	padding: 26px 28px 30px;
	background: #fff;
	border: 2px solid var(--fs-border);
	border-radius: 10px;
	font-size: 17px;
	line-height: 1.7;
}
.fs-mf p { margin: 0 0 .8em; }
.fs-mf p:empty { display: none; margin: 0; }
.fs-mf > *:last-child { margin-bottom: 0; }

/* --- フォーム冒頭 --- */
.fs-mf .fs-mf-head {
	margin-bottom: 26px;
	padding-bottom: 4px;
}
.fs-mf .fs-mf-badge {
	display: inline-block;
	margin: 0 0 10px;
	padding: 4px 15px;
	background: var(--fs-red);
	border-radius: 999px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
}
.fs-mf .fs-mf-title {
	margin: 0 0 10px;
	padding: 0;
	background: none;
	border: 0;
	border-radius: 0;
	color: var(--fs-black);
	font-size: 26px;
	font-weight: 800;
	line-height: 1.3;
}
.fs-mf .fs-mf-lead { margin: 0 0 14px; }
.fs-mf .fs-mf-notes {
	margin: 0;
	padding: 14px 18px 14px 36px;
	background: #fff5f5;
	border: 1px solid #f0c4c6;
	border-radius: 8px;
	color: var(--fs-red-dark);
	font-size: 15px;
	font-weight: 700;
}
.fs-mf .fs-mf-notes li { margin: 0 0 3px; }
.fs-mf .fs-mf-notes li:last-child { margin-bottom: 0; }

/* --- 各項目 ---
   項目ごとに点線で区切り、上下の余白を広めに取って
   見出しと入力欄のまとまりが分かるようにしています。 */
.fs-mf .fs-mf-row {
	margin: 0;
	padding: 26px 0;
	border-top: 1px dashed var(--fs-border);
}
.fs-mf .fs-mf-row p { margin: 0; }

/* 見出し（薄いグレー帯＋赤の縦ライン） */
.fs-mf .fs-mf-label {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 14px;
	padding: 9px 15px;
	background: var(--fs-light);
	border-left: 5px solid var(--fs-red);
	border-radius: 0 4px 4px 0;
	font-size: 19px;
	font-weight: 800;
	line-height: 1.4;
}
.fs-mf .fs-mf-req,
.fs-mf .fs-mf-any {
	flex: 0 0 auto;
	padding: 3px 11px;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.5;
}
.fs-mf .fs-mf-req { background: var(--fs-red); color: #fff; }
.fs-mf .fs-mf-any {
	background: #fff;
	border: 1px solid var(--fs-border);
	color: var(--fs-gray);
}

/* --- 補足テキスト --- */
.fs-mf .fs-mf-help {
	margin: 9px 0 0;
	color: var(--fs-gray);
	font-size: 15px;
	line-height: 1.6;
}
.fs-mf .fs-mf-alert {
	margin: 9px 0 0;
	color: var(--fs-red-dark);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.6;
}
.fs-mf .fs-mf-alert i { margin-right: 4px; }

/* --- 記入例ボックス --- */
.fs-mf .fs-mf-example {
	margin: 0 0 12px;
	padding: 14px 18px;
	background: #f3f8f3;
	border: 1px solid #cfe3cf;
	border-radius: 8px;
	font-size: 15px;
}
.fs-mf .fs-mf-example-title {
	margin: 0 0 6px;
	color: #2e7d32;
	font-weight: 800;
}
.fs-mf .fs-mf-example-title i { margin-right: 5px; }
.fs-mf .fs-mf-example ol { margin: 0; padding-left: 1.5em; }
.fs-mf .fs-mf-example li { margin: 0 0 2px; }

/* --- 入力欄（共通） --- */
.fs-mf .wpcf7-form-control-wrap { display: block; }
.fs-mf .fs-mf-input,
.fs-mf .fs-mf-textarea,
.fs-mf .fs-mf-select {
	display: block;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 13px 15px;
	background: #fff;
	border: 2px solid var(--fs-border);
	border-radius: 6px;
	color: var(--fs-black);
	font-family: inherit;
	font-size: 17px; /* 16px 未満だと iOS で拡大されるため */
	line-height: 1.5;
	-webkit-appearance: none;
	appearance: none;
}
.fs-mf .fs-mf-input::placeholder,
.fs-mf .fs-mf-textarea::placeholder { color: #aaa; }
.fs-mf .fs-mf-input:focus,
.fs-mf .fs-mf-textarea:focus,
.fs-mf .fs-mf-select:focus,
.fs-mf .fs-mf-file:focus {
	border-color: var(--fs-red);
	outline: none;
	box-shadow: 0 0 0 3px rgba(216, 31, 38, .15);
}
.fs-mf .fs-mf-textarea { min-height: 200px; resize: vertical; }

/* プルダウン（矢印を自作） */
.fs-mf .fs-mf-select {
	padding-right: 42px;
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23d81f26' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 12px 8px;
	cursor: pointer;
}
.fs-mf .fs-mf-select::-ms-expand { display: none; }

/* --- 添付ファイル --- */
.fs-mf .fs-mf-files {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-top: 12px;
}
.fs-mf .fs-mf-file-item { min-width: 0; }
.fs-mf .fs-mf-file {
	display: block;
	width: 100%;
	max-width: 100%;
	padding: 13px 14px;
	background: var(--fs-light);
	border: 2px dashed var(--fs-border);
	border-radius: 6px;
	font-family: inherit;
	font-size: 15px;
	cursor: pointer;
}
.fs-mf .fs-mf-file::file-selector-button {
	margin-right: 12px;
	padding: 7px 14px;
	background: #fff;
	border: 1px solid var(--fs-border);
	border-radius: 4px;
	color: var(--fs-black);
	font-family: inherit;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
}
.fs-mf .fs-mf-file:hover { border-color: var(--fs-red); }

/* --- チェックボックス（メルマガ） --- */
.fs-mf .fs-mf-check { display: block; margin-top: 12px; }
.fs-mf .fs-mf-check .wpcf7-list-item { display: block; margin: 0; }
.fs-mf .fs-mf-check label {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	padding: 12px 20px;
	background: var(--fs-light);
	border: 2px solid var(--fs-border);
	border-radius: 6px;
	font-weight: 700;
	cursor: pointer;
}
.fs-mf .fs-mf-check label:hover { border-color: var(--fs-red); }
.fs-mf .fs-mf-check input[type="checkbox"] {
	width: 20px;
	height: 20px;
	margin: 0;
	accent-color: var(--fs-red);
}

/* --- ラジオボタン（宅配キット：ダンボールサイズ） --- */
.fs-mf .fs-mf-radio { display: block; margin-top: 12px; }
.fs-mf .fs-mf-radio .wpcf7-list-item { display: block; margin: 0 0 10px; }
.fs-mf .fs-mf-radio .wpcf7-list-item:last-child { margin-bottom: 0; }
.fs-mf .fs-mf-radio label {
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 13px 18px;
	background: var(--fs-light);
	border: 2px solid var(--fs-border);
	border-radius: 6px;
	font-weight: 700;
	cursor: pointer;
}
.fs-mf .fs-mf-radio label:hover { border-color: var(--fs-red); }
.fs-mf .fs-mf-radio input[type="radio"] {
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	margin: 0;
	accent-color: var(--fs-red);
}

/* --- 横並びの入力（個数・日付・時間帯） --- */
.fs-mf .fs-mf-inline {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 14px;
}
.fs-mf .fs-mf-inline .wpcf7-form-control-wrap { display: inline-block; width: auto; }
.fs-mf .fs-mf-sub {
	flex: 0 0 auto;
	min-width: 5.5em;
	font-size: 16px;
	font-weight: 700;
}
.fs-mf .fs-mf-unit { font-size: 16px; font-weight: 700; }
.fs-mf .fs-mf-num,
.fs-mf .fs-mf-date,
.fs-mf .fs-mf-zip { display: inline-block; width: auto; }
.fs-mf .fs-mf-num { width: 100px; text-align: center; }
.fs-mf .fs-mf-date { min-width: 200px; }
.fs-mf .fs-mf-zip { width: 180px; }
.fs-mf .fs-mf-time { width: auto; min-width: 200px; }
.fs-mf .fs-mf-textarea-s { min-height: 130px; }

/* --- 送信ボタン --- */
.fs-mf .fs-mf-submit-wrap {
	margin: 0;
	padding: 30px 0 6px;
	border-top: 1px dashed var(--fs-border);
	text-align: center;
}
.fs-mf .fs-mf-submit {
	display: inline-block;
	width: 100%;
	max-width: 540px;
	padding: 20px 24px;
	background: var(--fs-red);
	border: 0;
	border-bottom: 4px solid var(--fs-red-dark);
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(216, 31, 38, .25);
	color: #fff;
	font-family: inherit;
	font-size: 22px;
	font-weight: 800;
	letter-spacing: .04em;
	line-height: 1.4;
	cursor: pointer;
	transition: transform .1s ease, box-shadow .1s ease;
}
.fs-mf .fs-mf-submit:hover { background: #e33740; }
.fs-mf .fs-mf-submit:active {
	transform: translateY(2px);
	border-bottom-width: 2px;
	box-shadow: none;
}
.fs-mf .fs-mf-privacy {
	margin: 14px 0 0;
	color: var(--fs-gray);
	font-size: 14px;
}

/* --- 送信できないとき用のメールリンク --- */
.fs-mf .fs-mf-mailto {
	margin: 22px 0 0;
	padding-top: 18px;
	border-top: 1px solid var(--fs-border);
	font-size: 15px;
	text-align: center;
}
.fs-mf .fs-mf-mailto i { margin-right: 5px; }

/* --- CF7 のメッセージ / エラー表示 --- */
.fs-mf .wpcf7-spinner { display: none; margin: 14px auto 0; }
.wpcf7 form.submitting .fs-mf .wpcf7-spinner { display: block; visibility: visible; }
.fs-mf .wpcf7-not-valid-tip {
	display: block;
	margin-top: 7px;
	color: var(--fs-red);
	font-size: 15px;
	font-weight: 700;
}
.fs-mf .wpcf7-not-valid {
	border-color: var(--fs-red);
	background-color: #fff6f6;
}
/* 送信前は非表示（CF7 の標準CSSを外していても崩れないように） */
.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output { display: none; }
.fs-mf .wpcf7-response-output,
.wpcf7 form .wpcf7-response-output {
	margin: 18px 0;
	padding: 14px 18px;
	border-width: 2px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.6;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: var(--fs-red);
	background: #fff5f5;
	color: var(--fs-red-dark);
}
.wpcf7 form.sent .wpcf7-response-output {
	border-color: #2e7d32;
	background: #f3f8f3;
	color: #2e7d32;
}

/* --- 固定ページ側の CTA（電話 / LINE） --- */
.fs-mf-cta {
	margin: 0 0 26px;
	padding: 24px 26px;
	background: var(--fs-light);
	border-radius: 10px;
	text-align: center;
}
.fs-mf-cta .fs-mf-cta-title {
	margin: 0 0 16px;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.4;
}
.fs-mf-cta .fs-mf-cta-title span { color: var(--fs-red); }
.fs-mf-cta .fs-mf-cta-btns {
	display: flex;
	justify-content: center;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 14px;
}
.fs-mf-cta .fs-mf-cta-note {
	margin: 14px 0 0;
	color: var(--fs-gray);
	font-size: 15px;
}

.fs-page a.fs-mf-tel {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	min-width: 320px;
	padding: 12px 26px;
	background: #fff;
	border: 3px solid var(--fs-red);
	border-radius: 10px;
	color: var(--fs-black);
	text-decoration: none;
}
.fs-page a.fs-mf-tel:hover { background: #fff8f8; text-decoration: none; }
.fs-mf-cta .fs-mf-tel-label { font-size: 14px; font-weight: 700; color: var(--fs-gray); }
.fs-mf-cta .fs-mf-tel-num {
	font-size: 34px;
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: .02em;
}
.fs-mf-cta .fs-mf-tel-num i { color: var(--fs-red); font-size: 26px; }
.fs-mf-cta .fs-mf-tel-hours { font-size: 14px; color: var(--fs-gray); }

.fs-page a.fs-mf-line {
	min-width: 320px;
	justify-content: center;
	padding: 18px 26px;
	border-radius: 10px;
	font-size: 20px;
	text-align: center;
}
.fs-page a.fs-mf-line i { font-size: 24px; }

/* 宅配買取ページへ誘導するボタン（黒背景・白文字） */
.fs-page a.fs-mf-flow,
.fs-page a.fs-mf-flow:link,
.fs-page a.fs-mf-flow:visited,
.fs-page a.fs-mf-flow:hover {
	min-width: 320px;
	justify-content: center;
	padding: 18px 26px;
	background: var(--fs-black);
	border-radius: 10px;
	color: #fff;
	font-size: 20px;
	text-align: center;
	text-decoration: none;
}
.fs-page a.fs-mf-flow i { color: #fff; font-size: 24px; }
.fs-page a.fs-mf-flow:hover { opacity: .92; }

/* --- メールフォームのレスポンシブ --- */
@media (max-width: 782px) {
	.fs-mf { padding: 20px 16px 24px; }
	.fs-mf .fs-mf-title { font-size: 22px; }
	.fs-mf .fs-mf-files { grid-template-columns: 1fr; }
	.fs-mf-cta .fs-mf-cta-btns { flex-direction: column; }
	.fs-page a.fs-mf-tel,
	.fs-page a.fs-mf-line,
	.fs-page a.fs-mf-flow { min-width: 0; width: 100%; }
}
@media (max-width: 640px) {
	.fs-mf { font-size: 16px; }
	.fs-mf .fs-mf-label { font-size: 17px; }
	.fs-mf .fs-mf-submit { padding: 18px 14px; font-size: 19px; }
	.fs-mf .fs-mf-radio label { padding: 12px 14px; font-size: 15px; }
	.fs-mf .fs-mf-sub { flex-basis: 100%; min-width: 0; }
	.fs-mf .fs-mf-date,
	.fs-mf .fs-mf-time { flex: 1 1 100%; width: 100%; min-width: 0; }
	.fs-mf .fs-mf-inline .wpcf7-form-control-wrap { display: block; width: 100%; }
	.fs-mf .fs-mf-inline-num .wpcf7-form-control-wrap { display: inline-block; width: auto; }
	.fs-mf .fs-mf-inline-num .fs-mf-sub { flex-basis: auto; }
	.fs-mf-cta { padding: 18px 14px; }
	.fs-mf-cta .fs-mf-cta-title { font-size: 19px; }
	.fs-mf-cta .fs-mf-tel-num { font-size: 29px; }
	.fs-mf-cta .fs-mf-tel-num i { font-size: 22px; }
}



/* =========================================================
   買取品目ページ（インパクトドライバー / コンプレッサー など）
   ---------------------------------------------------------
   対象: kaitori-pages/*.html（固定ページ貼り付け用）
   ページタイトル（h1）は page.php が出力するので、
   貼り付けるHTML側の見出しは h2 から始めています。
   ========================================================= */
.fs-cat { margin: 0; }
.fs-cat > *:last-child { margin-bottom: 0; }

/* --- リード --- */
.fs-cat .fs-cat-lead {
	margin: 0 0 30px;
	padding: 22px 24px;
	background: var(--fs-light);
	border-radius: 10px;
}
.fs-cat .fs-cat-lead-title {
	margin: 0 0 12px;
	padding: 0;
	background: none;
	border: 0;
	border-radius: 0;
	color: var(--fs-black);
	font-size: 25px;
	font-weight: 800;
	line-height: 1.4;
}
.fs-cat .fs-cat-lead-title b { color: var(--fs-red); }
.fs-cat .fs-cat-lead p { margin: 0 0 .8em; }
.fs-cat .fs-cat-lead p:last-child { margin-bottom: 0; }

/* --- 3つの強み --- */
.fs-cat .fs-cat-points {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}
.fs-cat .fs-cat-point {
	margin: 0;
	padding: 16px 12px;
	background: #fff;
	border: 2px solid var(--fs-red);
	border-radius: 8px;
	text-align: center;
}
.fs-cat .fs-cat-point i {
	display: block;
	margin-bottom: 7px;
	color: var(--fs-red);
	font-size: 28px;
}
.fs-cat .fs-cat-point b { display: block; font-size: 18px; font-weight: 800; line-height: 1.35; }
.fs-cat .fs-cat-point span { display: block; margin-top: 4px; font-size: 14px; color: var(--fs-gray); }

/* --- 見出し --- */
.fs-cat .fs-cat-h2 {
	margin: 40px 0 16px;
	padding: 0 0 0 14px;
	background: none;
	border: 0;
	border-left: 6px solid var(--fs-red);
	border-radius: 0;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.35;
}
.fs-cat .fs-cat-h3 {
	margin: 26px 0 12px;
	padding: 0 0 7px;
	background: none;
	border: 0;
	border-bottom: 2px solid var(--fs-border);
	font-size: 19px;
	font-weight: 800;
	line-height: 1.35;
}
.fs-cat .fs-cat-h3 i { color: var(--fs-red); margin-right: 7px; }
.fs-cat .fs-cat-note { margin: 10px 0 0; color: var(--fs-gray); font-size: 15px; }

/* --- 対応メーカー --- */
.fs-cat .fs-cat-makers {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.fs-cat .fs-cat-makers li {
	margin: 0;
	padding: 9px 18px;
	background: #fff;
	border: 2px solid var(--fs-border);
	border-radius: 999px;
	font-size: 17px;
	font-weight: 700;
}
.fs-cat .fs-cat-makers li.is-other {
	background: var(--fs-light);
	border-style: dashed;
	color: var(--fs-gray);
}

/* --- 買取対応の種類 --- */
.fs-cat .fs-cat-types {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.fs-cat .fs-cat-types li {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	padding: 14px 16px;
	background: #fff;
	border: 1px solid var(--fs-border);
	border-left: 5px solid var(--fs-red);
	border-radius: 0 8px 8px 0;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.4;
}
.fs-cat .fs-cat-types li i { flex: 0 0 auto; color: var(--fs-red); }

/* --- こんな状態でもOK --- */
.fs-cat .fs-cat-conds {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.fs-cat .fs-cat-conds li {
	position: relative;
	margin: 0;
	padding: 9px 0 9px 32px;
	border-bottom: 1px dashed var(--fs-border);
	font-size: 17px;
}
.fs-cat .fs-cat-conds li::before {
	content: "\f058"; /* circle-check */
	position: absolute;
	left: 2px;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: var(--fs-red);
}

/* --- 高く売るコツ --- */
.fs-cat .fs-cat-tips { margin: 0; padding: 0; list-style: none; counter-reset: fscat; }
.fs-cat .fs-cat-tips li {
	position: relative;
	margin: 0 0 14px;
	padding: 16px 18px 16px 62px;
	background: var(--fs-light);
	border-radius: 8px;
}
.fs-cat .fs-cat-tips li::before {
	counter-increment: fscat;
	content: counter(fscat);
	position: absolute;
	top: 16px;
	left: 16px;
	width: 32px;
	height: 32px;
	background: var(--fs-red);
	border-radius: 50%;
	color: #fff;
	font-size: 18px;
	font-weight: 800;
	line-height: 32px;
	text-align: center;
}
.fs-cat .fs-cat-tips b { display: block; margin-bottom: 4px; font-size: 18px; }

/* --- 買取方法 --- */
.fs-cat .fs-cat-methods {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}
.fs-page a.fs-cat-method {
	display: block;
	padding: 20px 16px;
	background: #fff;
	border: 2px solid var(--fs-border);
	border-radius: 10px;
	color: var(--fs-black);
	text-align: center;
	text-decoration: none;
}
.fs-page a.fs-cat-method:hover { border-color: var(--fs-red); background: #fff8f8; text-decoration: none; }
.fs-cat .fs-cat-method i { display: block; margin-bottom: 8px; color: var(--fs-red); font-size: 30px; }
.fs-cat .fs-cat-method b { display: block; font-size: 19px; font-weight: 800; }
.fs-cat .fs-cat-method span { display: block; margin-top: 5px; font-size: 15px; color: var(--fs-gray); }

/* --- よくある質問 --- */
.fs-cat .fs-cat-faq { margin: 0; }
.fs-cat .fs-cat-faq dt {
	position: relative;
	margin: 0;
	padding: 14px 0 8px 38px;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.5;
}
.fs-cat .fs-cat-faq dd {
	position: relative;
	margin: 0;
	padding: 0 0 16px 38px;
	border-bottom: 1px dashed var(--fs-border);
	line-height: 1.75;
}
.fs-cat .fs-cat-faq dt::before,
.fs-cat .fs-cat-faq dd::before {
	position: absolute;
	left: 0;
	width: 27px;
	height: 27px;
	border-radius: 50%;
	font-size: 15px;
	font-weight: 800;
	line-height: 27px;
	text-align: center;
}
.fs-cat .fs-cat-faq dt::before { content: "Q"; top: 15px; background: var(--fs-red); color: #fff; }
.fs-cat .fs-cat-faq dd::before { content: "A"; top: 0; background: var(--fs-light); color: var(--fs-red); }

/* --- 他の買取品目 --- */
.fs-cat .fs-cat-others {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.fs-cat .fs-cat-others li { margin: 0; }
.fs-page a.fs-cat-other {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 14px;
	background: #fff;
	border: 1px solid var(--fs-border);
	border-radius: 8px;
	color: var(--fs-black);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
	text-decoration: none;
}
.fs-page a.fs-cat-other:hover { border-color: var(--fs-red); color: var(--fs-red); text-decoration: none; }
.fs-cat .fs-cat-other i { flex: 0 0 auto; color: var(--fs-red); }

/* --- 買取品目ページのレスポンシブ --- */
@media (max-width: 782px) {
	.fs-cat .fs-cat-types { grid-template-columns: repeat(2, 1fr); }
	.fs-cat .fs-cat-others { grid-template-columns: repeat(2, 1fr); }
	.fs-cat .fs-cat-methods { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
	.fs-cat .fs-cat-lead { padding: 18px 16px; }
	.fs-cat .fs-cat-lead-title { font-size: 21px; }
	.fs-cat .fs-cat-points { grid-template-columns: 1fr; }
	.fs-cat .fs-cat-h2 { font-size: 21px; }
	.fs-cat .fs-cat-types { grid-template-columns: 1fr; }
	.fs-cat .fs-cat-conds { grid-template-columns: 1fr; }
	.fs-cat .fs-cat-makers li { font-size: 16px; padding: 8px 15px; }
}


/* =========================================================
   初めての方へ（固定ページ貼り付け用）
   ---------------------------------------------------------
   beginner.html の中身を固定ページの「カスタムHTML」に
   貼り付けて使用します。
   宅配買取（.fs-tk）・出張買取（.fs-sk）・店頭買取（.fs-tt）・
   買取品目（.fs-cat）とは独立させてあるので、
   1つだけデザインを変更しても他のページに影響しません。
   本文は .fs-entry の中に入るため、既定スタイルより優先させる目的で
   セレクタは必ず .fs-hj と組み合わせて記述してください。
   ========================================================= */
.fs-hj { margin-bottom: 8px; }
.fs-hj > *:last-child { margin-bottom: 0; }

/* --- 冒頭リード（赤枠タイトル＋3つの無料） --- */
.fs-hj .fs-hj-lead {
	border: 2px solid var(--fs-red);
	border-radius: 8px;
	overflow: hidden;
	margin: 0 0 26px;
}
.fs-hj .fs-hj-lead-title {
	margin: 0;
	padding: 14px 18px;
	background: var(--fs-red);
	border: 0;
	border-radius: 0;
	color: #fff;
	font-size: 26px;
	font-weight: 800;
	line-height: 1.35;
}
.fs-hj .fs-hj-lead-title small {
	display: block;
	margin-top: 5px;
	font-size: 16px;
	font-weight: 700;
	opacity: .92;
}
.fs-hj .fs-hj-lead-body { padding: 16px 18px; }
.fs-hj .fs-hj-lead-body p { margin: 0 0 .9em; }
.fs-hj .fs-hj-points {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}
.fs-hj .fs-hj-points li {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	padding: 12px 14px;
	background: var(--fs-light);
	border: 1px solid var(--fs-border);
	border-radius: 8px;
	font-weight: 800;
}
.fs-hj .fs-hj-points i {
	flex: 0 0 32px;
	color: var(--fs-red);
	font-size: 25px;
	text-align: center;
}

/* --- 見出し・注記 --- */
.fs-hj .fs-hj-h2 {
	margin: 38px 0 14px;
	padding: 0 0 0 14px;
	background: none;
	border: 0;
	border-left: 6px solid var(--fs-red);
	border-radius: 0;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.3;
}
.fs-hj .fs-hj-note { margin: 0 0 16px; font-size: 16px; color: var(--fs-gray); }

/* --- 注意書きリスト --- */
.fs-hj .fs-hj-cautions { margin: 0; padding: 0; list-style: none; }
.fs-hj .fs-hj-cautions li {
	position: relative;
	margin: 0;
	padding: 7px 0 7px 24px;
	border-bottom: 1px dashed var(--fs-border);
	font-size: 16px;
	color: var(--fs-gray);
}
.fs-hj .fs-hj-cautions li:last-child { border-bottom: 0; }
.fs-hj .fs-hj-cautions li::before {
	content: "\f0da"; /* caret-right */
	position: absolute;
	left: 4px;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: var(--fs-red);
}

/* --- メイン画像 --- */
.fs-hj .fs-hj-figure { margin: 0 0 26px; }
.fs-hj .fs-hj-figure img { width: 100%; border: 1px solid var(--fs-border); border-radius: 8px; }
.fs-hj .fs-hj-figure figcaption {
	margin-top: 7px;
	font-size: 14px;
	color: var(--fs-gray);
	text-align: center;
}

/* --- 選べる買取方法 --- */
.fs-hj .fs-hj-methods {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.fs-hj .fs-hj-method { margin: 0; }
.fs-page .fs-hj-methods a {
	position: relative;
	display: block;
	height: 100%;
	padding: 20px 16px 18px;
	background: #fff;
	border: 2px solid var(--fs-border);
	border-radius: 8px;
	color: var(--fs-black);
	text-decoration: none;
}
.fs-page .fs-hj-methods a:hover {
	border-color: var(--fs-red);
	background: #fff8f8;
	text-decoration: none;
}
.fs-hj .fs-hj-methods i { display: block; margin-bottom: 10px; color: var(--fs-red); font-size: 32px; }
.fs-hj .fs-hj-methods b { display: block; margin-bottom: 6px; font-size: 20px; font-weight: 800; }
.fs-hj .fs-hj-methods small { display: block; font-size: 15px; color: var(--fs-gray); line-height: 1.65; }
.fs-hj .fs-hj-badge {
	position: absolute;
	top: -12px;
	left: 12px;
	padding: 4px 12px;
	background: var(--fs-red);
	border-radius: 999px;
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.4;
}

/* --- かんたん3ステップ --- */
.fs-hj .fs-hj-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 34px;
	margin: 0 0 14px;
	padding: 0;
	list-style: none;
}
.fs-hj .fs-hj-step {
	position: relative;
	margin: 0;
	padding: 26px 16px 18px;
	background: #fff;
	border: 1px solid var(--fs-border);
	border-radius: 8px;
}
/* ステップ間の矢印（PCは右向き） */
.fs-hj .fs-hj-step:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -26px;
	transform: translateY(-50%);
	border-top: 13px solid transparent;
	border-bottom: 13px solid transparent;
	border-left: 15px solid var(--fs-red);
}
.fs-hj .fs-hj-num {
	position: absolute;
	top: -18px;
	left: 50%;
	transform: translateX(-50%);
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--fs-red);
	border: 3px solid #fff;
	border-radius: 50%;
	color: #fff;
	font-size: 20px;
	font-weight: 800;
}
.fs-hj .fs-hj-step-img { margin: 0 0 12px; }
.fs-hj .fs-hj-step-img img {
	width: 100%;
	border: 1px solid var(--fs-border);
	border-radius: 8px;
}
.fs-hj .fs-hj-step-title {
	margin: 0 0 8px;
	padding: 0;
	background: none;
	border: 0;
	border-radius: 0;
	font-size: 19px;
	font-weight: 800;
	line-height: 1.35;
	text-align: center;
}
.fs-hj .fs-hj-step p { margin: 0; font-size: 16px; line-height: 1.7; }

/* --- サービスのいいところ --- */
.fs-hj .fs-hj-merits { margin: 0; padding: 0; list-style: none; }
.fs-hj .fs-hj-merit {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin: 0 0 14px;
	padding: 18px 18px;
	background: var(--fs-light);
	border: 1px solid var(--fs-border);
	border-radius: 8px;
}
.fs-hj .fs-hj-merit:last-child { margin-bottom: 0; }
.fs-hj .fs-hj-merit > i {
	flex: 0 0 46px;
	margin-top: 3px;
	color: var(--fs-red);
	font-size: 36px;
	text-align: center;
}
.fs-hj .fs-hj-merit b { display: block; margin-bottom: 6px; font-size: 20px; font-weight: 800; line-height: 1.4; }
.fs-hj .fs-hj-merit p { margin: 0; font-size: 16px; color: var(--fs-gray); line-height: 1.75; }

/* --- 買取対象アイテム --- */
.fs-hj .fs-hj-items {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin: 0 0 14px;
	padding: 0;
	list-style: none;
}
.fs-hj .fs-hj-items li { margin: 0; }
.fs-page .fs-hj-items a {
	display: flex;
	align-items: center;
	gap: 10px;
	height: 100%;
	padding: 13px 14px;
	background: #fff;
	border: 1px solid var(--fs-border);
	border-radius: 8px;
	color: var(--fs-black);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
	text-decoration: none;
}
.fs-page .fs-hj-items a:hover {
	border-color: var(--fs-red);
	color: var(--fs-red);
	text-decoration: none;
}
.fs-hj .fs-hj-items i { flex: 0 0 auto; color: var(--fs-red); }

/* --- 本人確認書類 --- */
.fs-hj .fs-hj-ids {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin: 0 0 16px;
	padding: 0;
	list-style: none;
}
.fs-hj .fs-hj-ids li {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	padding: 13px 16px;
	background: var(--fs-light);
	border: 1px solid var(--fs-border);
	border-radius: 8px;
	font-weight: 700;
}
.fs-hj .fs-hj-ids i { flex: 0 0 28px; color: var(--fs-red); font-size: 22px; text-align: center; }

/* --- よくあるご質問 --- */
.fs-hj .fs-hj-faq { margin: 0; }
.fs-hj .fs-hj-faq dt,
.fs-hj .fs-hj-faq dd {
	position: relative;
	margin: 0;
	padding: 14px 16px 14px 52px;
	border: 1px solid var(--fs-border);
	font-size: 16px;
	line-height: 1.75;
}
.fs-hj .fs-hj-faq dt {
	margin-top: 14px;
	background: var(--fs-light);
	border-radius: 8px 8px 0 0;
	font-size: 18px;
	font-weight: 800;
}
.fs-hj .fs-hj-faq dt:first-child { margin-top: 0; }
.fs-hj .fs-hj-faq dd {
	background: #fff;
	border-top: 0;
	border-radius: 0 0 8px 8px;
	color: var(--fs-gray);
}
.fs-hj .fs-hj-faq dt::before,
.fs-hj .fs-hj-faq dd::before {
	position: absolute;
	top: 12px;
	left: 14px;
	width: 26px;
	height: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
}
.fs-hj .fs-hj-faq dt::before {
	content: "Q";
	background: var(--fs-red);
	color: #fff;
}
.fs-hj .fs-hj-faq dd::before {
	content: "A";
	background: var(--fs-black);
	color: #fff;
}

/* --- お問い合わせCTA --- */
.fs-hj .fs-hj-cta {
	margin-top: 34px;
	padding: 24px 20px;
	background: var(--fs-light);
	border-radius: 8px;
	text-align: center;
}
.fs-hj .fs-hj-cta-title { margin: 0 0 6px; font-size: 22px; font-weight: 800; }
.fs-hj .fs-hj-cta-lead { margin: 0 0 16px; font-size: 16px; color: var(--fs-gray); }
.fs-hj .fs-hj-cta-btns {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
}
.fs-hj .fs-hj-cta-btns .fs-btn { padding: 15px 26px; font-size: 19px; }
.fs-page a.fs-hj-btn-tel {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 15px 26px;
	background: var(--fs-black);
	border-radius: 6px;
	color: #fff;
	font-size: 19px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
}
.fs-page a.fs-hj-btn-tel:hover { background: #000; color: #fff; text-decoration: none; }
.fs-page a.fs-hj-btn-tel i { color: #fff; }

/* --- 初めての方へページのレスポンシブ --- */
@media (max-width: 900px) {
	.fs-hj .fs-hj-methods { grid-template-columns: repeat(2, 1fr); }
	.fs-hj .fs-hj-items { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 782px) {
	.fs-hj .fs-hj-steps { grid-template-columns: 1fr; gap: 40px; }
	/* スマホでは矢印を下向きに */
	.fs-hj .fs-hj-step:not(:last-child)::after {
		top: auto;
		right: auto;
		bottom: -28px;
		left: 50%;
		transform: translateX(-50%);
		border-left: 13px solid transparent;
		border-right: 13px solid transparent;
		border-top: 15px solid var(--fs-red);
		border-bottom: 0;
	}
	.fs-hj .fs-hj-step-img img { max-width: 420px; margin: 0 auto; }
	.fs-hj .fs-hj-merit { flex-direction: column; gap: 10px; }
	.fs-hj .fs-hj-merit > i { flex-basis: auto; text-align: left; }
}
@media (max-width: 640px) {
	.fs-hj .fs-hj-lead-title { font-size: 22px; padding: 12px 14px; }
	.fs-hj .fs-hj-points { grid-template-columns: 1fr; }
	.fs-hj .fs-hj-h2 { font-size: 21px; }
	.fs-hj .fs-hj-methods { grid-template-columns: 1fr; }
	.fs-hj .fs-hj-items { grid-template-columns: 1fr 1fr; }
	.fs-hj .fs-hj-ids { grid-template-columns: 1fr; }
	.fs-hj .fs-hj-faq dt { font-size: 17px; }
	.fs-hj .fs-hj-faq dt,
	.fs-hj .fs-hj-faq dd { padding: 13px 14px 13px 48px; }
	.fs-hj .fs-hj-cta-btns { flex-direction: column; }
	.fs-hj .fs-hj-cta-btns .fs-btn,
	.fs-page a.fs-hj-btn-tel { width: 100%; justify-content: center; }
}

