@charset "UTF-8";
/* ==========================================================================
   AucMax サイト共通スタイル
   - ヘッダー / フッターは全ページ共通の実レスポンシブ実装
   - デザイン素材（絶対配置・固定幅）は .fitbox で画面幅にフィットさせる
   - 768px 以下はスマホ専用マークアップに切り替える
   ========================================================================== */

:root {
  /* フォント方針
     見出し   : Noto Sans JP 700〜900
     本文     : Noto Sans JP 400〜500
     数字・欧文: Inter（Inter に日本語グリフが無いので、和文は自動的に Noto Sans JP に落ちる）*/
  --font-sans: "Inter", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  --blue: #1f6fe0;
  --blue-dark: #14549f;
  --blue-light: #3b8ef0;
  --green: #29a039;
  --green-dark: #1d8e29;
  --ink: #14181f;
  --muted: #5c6675;
  --line: #e4e8ee;
  --bg: #fdfdfe;
  --header-h: 80px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
}

/* デザイン素材はインライン style で font-family を指定しているため、
   ここで一括して上書きする（インライン指定に勝つには !important が要る）。 */
[style*="font-family"] { font-family: var(--font-sans) !important; }

/* 見出しは Bold〜Black。素材にはインラインで font-weight: 500 のものがあるため上書きする。 */
h1, h2, h3, h4 { font-weight: 800 !important; line-height: 1.35; }

/* 数字は等幅にして桁が揃うようにする */
.price-m__now b, .tool-card__price, .tool-detail [style*="font-weight: 800"] {
  font-feature-settings: "tnum";
}

img { max-width: 100%; }

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }

/* ヒーロー見出しの明朝体（デザイン素材の元フォント）。
   現在はフォント方針により Noto Sans JP に統一しているため未使用。
   明朝に戻したい場合は、この @font-face を残したまま index.html のヒーロー見出しに
   font-family: 'Shippori Mincho B1', serif; を再指定する。
   未使用の @font-face はブラウザがダウンロードしないので、置いていても通信量は増えない。 */
@font-face {
  font-family: 'Shippori Mincho B1';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("hero-f1a149de.woff2") format('woff2');
  unicode-range: U+3001, U+3042, U+3044, U+3051-3052, U+306e, U+308b-308c, U+3092,
    U+3099-309a, U+30b5-30b6, U+30c4-30c5, U+30c8-30c9, U+30db-30dd, U+30eb, U+30fc,
    U+4e0b, U+4ed5, U+5165, U+529b, U+52b9, U+591a, U+5f37, U+6570, U+672d, U+696d,
    U+7387, U+7fa4, U+898b, U+8ca9;
}

/* --- 画面読み上げ用に残すが視覚的には隠す ------------------------------- */
.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: 100;
  height: var(--header-h);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

/* デザイン素材の横幅(1672px)に合わせると、ロゴと下のヒーロー見出しの左端が揃う */
.site-header__inner {
  max-width: 1672px; height: 100%; margin: 0 auto;
  padding: 0 40px;
  display: flex; align-items: center; gap: 16px;
}

@media (max-width: 900px) {
  .site-header__inner { padding: 0 20px; }
}

.site-logo { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.site-logo:hover { color: var(--ink); }
.site-logo img { width: 46px; height: 42px; display: block; }
.site-logo span { font-size: 26px; font-weight: 700; letter-spacing: 0.045em; }

.site-nav { margin-left: auto; }
.site-nav ul { display: flex; align-items: center; gap: 40px; margin: 0; padding: 0; list-style: none; }
/* :not(.btn-line) で除外しないと、この指定が .btn-line の白文字を上書きしてしまう
   （.site-nav a のほうが詳細度が高いため） */
.site-nav a:not(.btn-line) { font-size: 17px; font-weight: 500; color: #2f3742; }
.site-nav a:not(.btn-line):hover { color: var(--blue); }

.btn-line {
  display: inline-flex; align-items: center; justify-content: center;
  height: 48px; padding: 0 28px; border-radius: 24px;
  background: #2eae46; color: #ffffff; font-size: 16px; font-weight: 700;
  letter-spacing: 0.02em; white-space: nowrap;
  /* 緑地の白文字は環境によって薄く見えるので、アンチエイリアスを詰めて純白を保つ */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.btn-line:hover { background: var(--green-dark); color: #ffffff; }

.nav-toggle {
  display: none; margin-left: auto;
  width: 44px; height: 44px; padding: 10px;
  background: none; border: 0; cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2px; margin: 5px 0; border-radius: 1px;
  background: #2f3742; transition: transform .2s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  :root { --header-h: 64px; }
  .site-logo img { width: 36px; height: 33px; }
  .site-logo span { font-size: 21px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; left: 0; right: 0; top: var(--header-h);
    margin: 0; padding: 0 24px;
    background: #fff; border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
  }
  .site-nav[data-open="true"] { max-height: 340px; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 8px 0 20px; }
  .site-nav li { border-bottom: 1px solid var(--line); }
  .site-nav li:last-child { border-bottom: 0; padding-top: 16px; }
  .site-nav a { display: block; padding: 16px 4px; font-size: 16px; }
  .site-nav .btn-line { display: flex; width: 100%; }
}

/* ==========================================================================
   固定幅デザインを画面幅にフィットさせる箱
   .fitbox[data-design-width="1672"] > .fitbox__inner を等倍縮小する。
   JS が --fit-scale を書き込む。JS 無効時は横スクロールで閲覧可能。
   ========================================================================== */
.fitbox { width: 100%; overflow-x: auto; overflow-y: hidden; }
/* 拡大上限に達して画面より狭くなったときは左右中央に置く */
.fitbox__inner { width: var(--design-width, 1672px); margin-left: auto; margin-right: auto; }

/* JS がフィットに成功したら、もう横スクロールする必要はない */
html.fit-ready .fitbox { overflow-x: hidden; }

/* zoom が使える環境（Chrome / Safari / Firefox 126+）：
   レイアウトごと縮むので、はみ出す領域も、高さのズレも原理的に発生しない。 */
html.fit-zoom .fitbox__inner { zoom: var(--fit-scale, 1); }

/* zoom が無い環境のフォールバック：
   transform は見た目だけを縮めるため、元の幅ぶんのスクロール領域が残る。
   高さは JS が計算して詰め、横スクロールは上の overflow-x: hidden で封じる。 */
html.fit-transform .fitbox__inner {
  transform-origin: top left;
  transform: scale(var(--fit-scale, 1));
}

/* スマホでは素材ブロックを隠し、専用マークアップを出す */
.desktop-only { display: block; }
.mobile-only { display: none; }

@media (max-width: 767px) {
  .desktop-only { display: none; }
  .mobile-only { display: block; }
}

/* ==========================================================================
   セクション共通（スマホ版・および流用セクション）
   ========================================================================== */
.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 20px; }

.section { padding: 72px 0; }
.section-eyebrow {
  text-align: center; font-size: 13px; font-weight: 700;
  letter-spacing: 0.22em; color: #2f6fd8; margin: 0 0 12px;
}
.section-title {
  margin: 0 0 12px; text-align: center;
  font-size: clamp(24px, 5.5vw, 40px); font-weight: 800; line-height: 1.45;
}
.section-subtitle {
  margin: 0 auto 40px; max-width: 720px; text-align: center;
  font-size: clamp(14px, 3.6vw, 18px); font-weight: 500; color: var(--muted); line-height: 1.8;
}

/* ==========================================================================
   ツールカード（トップの3カテゴリ／一覧ページ共通）
   ========================================================================== */
.cat-cards { display: grid; gap: 20px; grid-template-columns: 1fr; }

.cat-card {
  position: relative; overflow: hidden;
  padding: 26px 24px 22px; border-radius: 14px;
  background: linear-gradient(200deg, #fff 55%, #f4f8fe 100%);
  box-shadow: 0 2px 18px rgba(30, 60, 110, .07);
}
.cat-card--bid { background: linear-gradient(200deg, #fff 55%, #f3f9f4 100%); }
.cat-card--buy { background: linear-gradient(200deg, #fff 55%, #fdf5ec 100%); }

.cat-card__icon {
  width: 56px; height: 56px; border-radius: 28px; background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
}
.cat-card--bid .cat-card__icon { background: #63a06a; }
.cat-card--buy .cat-card__icon { background: #fb9440; }

.cat-card__title { margin: 18px 0 0; font-size: 22px; font-weight: 800; line-height: 1.45; }
.cat-card__title em { font-style: normal; color: var(--blue); }
.cat-card--bid .cat-card__title em { color: #2f8a4a; }
.cat-card--buy .cat-card__title em { color: #f47a20; }

.cat-card__rule { width: 48px; height: 3px; margin: 14px 0; border-radius: 2px; background: var(--blue-light); }
.cat-card--bid .cat-card__rule { background: #63a06a; }
.cat-card--buy .cat-card__rule { background: #fb9440; }

.cat-card__voice { margin: 0; font-size: 15px; font-weight: 500; color: #1e2733; line-height: 1.8; }
.cat-card__lead {
  margin: 16px 0 0; padding-top: 16px; border-top: 1px solid var(--line);
  font-size: 14px; font-weight: 500; color: #6b7484; line-height: 1.75;
}
.cat-card__more {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 18px; font-size: 16px; font-weight: 700; color: var(--blue);
}
.cat-card--bid .cat-card__more { color: #2f8a4a; }
.cat-card--buy .cat-card__more { color: #f47a20; }

/* ツールトップ末尾の「全てのツールを見てみる」ボタン。
   緑は公式LINEへの導線に使っているので、サイト内回遊はブルーで区別する。 */
.btn-all-tools {
  display: inline-flex; align-items: center; justify-content: center; gap: 16px;
  padding: 20px 48px; border-radius: 44px;
  background: var(--blue); color: #ffffff;
  font-size: 22px; font-weight: 700; letter-spacing: .02em;
  box-shadow: 0 8px 24px rgba(31, 111, 224, .26);
  -webkit-font-smoothing: antialiased;
  transition: background .15s, box-shadow .15s, transform .15s;
}
.btn-all-tools:hover {
  background: #1558bb; color: #ffffff;
  transform: translateY(-2px); box-shadow: 0 12px 28px rgba(31, 111, 224, .32);
}

.tooltop-m-cta { margin-top: 32px; text-align: center; }

@media (max-width: 767px) {
  .btn-all-tools {
    width: 100%; max-width: 340px; gap: 12px;
    padding: 17px 24px; font-size: 17px;
  }
}

/* ==========================================================================
   ツール一覧ページ
   ========================================================================== */
.tools-hero {
  padding: 56px 0 40px;
  background:
    radial-gradient(760px 620px at 6% 22%, #eef4fd 0%, rgba(238, 244, 253, 0) 62%),
    radial-gradient(820px 560px at 60% 96%, #eef7ee 0%, rgba(238, 247, 238, 0) 58%),
    radial-gradient(620px 620px at 99% 78%, #fdf2e6 0%, rgba(253, 242, 230, 0) 60%),
    var(--bg);
}

.filter-bar {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin: 0 0 36px; padding: 0;
}
.filter-btn {
  padding: 10px 22px; border: 1px solid #d5dde8; border-radius: 999px;
  background: #fff; color: #46505f;
  font: inherit; font-size: 15px; font-weight: 700; cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.filter-btn:hover { border-color: var(--blue-light); color: var(--blue); }
.filter-btn[aria-pressed="true"] { background: var(--blue); border-color: var(--blue); color: #fff; }
.filter-btn[data-cat="bid"][aria-pressed="true"] { background: #2f8a4a; border-color: #2f8a4a; }
.filter-btn[data-cat="buy"][aria-pressed="true"] { background: #f47a20; border-color: #f47a20; }

/* グリッドだと最終行に空きマスが残る（8枚÷3列＝3+3+2）。
   絞り込みで枚数が 2 や 4 に変わっても破綻しないよう、
   折り返し＋中央寄せのフレックスにして、半端な行を中央に置く。 */
.tool-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 22px;
  margin: 0; padding: 0; list-style: none;
}
.tool-grid > li { flex: 1 1 300px; max-width: 340px; display: flex; }
.tool-grid > li[hidden] { display: none; }

.tool-card {
  display: flex; flex-direction: column; width: 100%;
  padding: 26px 24px 24px; border-radius: 14px;
  background: #fff; box-shadow: 0 2px 18px rgba(30, 60, 110, .07);
  color: inherit;
  transition: transform .18s, box-shadow .18s;
}
.tool-card:hover {
  color: inherit; transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(30, 60, 110, .13);
}
.tool-card[hidden] { display: none; }

.tool-card__badge {
  align-self: flex-start; padding: 5px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: .04em;
  background: #eaf2fe; color: #1e59b8;
}
.tool-card--bid .tool-card__badge { background: #e9f4ec; color: #2f8a4a; }
.tool-card--buy .tool-card__badge { background: #fdefe1; color: #d4680f; }

.tool-card__name {
  display: flex; align-items: center; gap: 12px;
  margin: 16px 0 0; font-size: 21px; font-weight: 800; line-height: 1.4;
}
/* 各ツールの拡張機能アイコン。背景が白いものと透過のものが混在するので、
   角丸の枠を付けて見た目の粒を揃える。 */
.tool-card__icon {
  flex: none; width: 40px; height: 40px;
  border-radius: 9px; background: #fff;
  box-shadow: 0 0 0 1px #e7ecf2;
  object-fit: contain;
}
.tool-card__catch { margin: 8px 0 0; font-size: 15px; font-weight: 700; color: var(--blue); line-height: 1.6; }
.tool-card--bid .tool-card__catch { color: #2f8a4a; }
.tool-card--buy .tool-card__catch { color: #d4680f; }
.tool-card__desc { margin: 14px 0 0; font-size: 14px; color: var(--muted); line-height: 1.8; }

.tool-card__meta {
  margin: 18px 0 0; padding: 14px 0 0; border-top: 1px solid var(--line);
  font-size: 13px; color: #6b7484; line-height: 1.8;
}
.tool-card__meta dt { float: left; margin-right: 8px; font-weight: 700; color: #46505f; }
.tool-card__meta dd { margin: 0 0 4px; overflow: hidden; }

.tool-card__foot {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  margin-top: auto; padding-top: 18px;
}
.tool-card__price { font-size: 15px; font-weight: 700; color: var(--ink); }
.tool-card__price small { font-size: 12px; font-weight: 500; color: var(--muted); }
.tool-card__more { font-size: 15px; font-weight: 700; color: var(--blue); }
.tool-card--bid .tool-card__more { color: #2f8a4a; }
.tool-card--buy .tool-card__more { color: #d4680f; }

.tools-empty { margin: 40px 0; text-align: center; color: var(--muted); }

/* ==========================================================================
   契約者向けダウンロードページ（link.html）
   ========================================================================== */
.dl-hero {
  padding: 56px 0 72px;
  background:
    radial-gradient(760px 620px at 6% 22%, #eef4fd 0%, rgba(238, 244, 253, 0) 62%),
    radial-gradient(820px 560px at 60% 96%, #eef7ee 0%, rgba(238, 247, 238, 0) 58%),
    var(--bg);
}

.dl-notice {
  max-width: 760px; margin: 0 auto 40px; padding: 24px 28px;
  border: 1px solid #d9e4f3; border-radius: 14px; background: #f6f9fe;
}
.dl-notice__title {
  margin: 0 0 12px; font-size: 16px; font-weight: 800; color: #1b3a6b;
}
.dl-notice__steps { margin: 0; padding-left: 22px; }
.dl-notice__steps li { margin-bottom: 8px; font-size: 15px; color: #2f3742; line-height: 1.8; }
.dl-notice__bookmark {
  margin: 16px 0 0; padding-top: 14px; border-top: 1px solid #dce6f5;
  font-size: 14px; color: var(--muted); line-height: 1.8;
}
.dl-notice__bookmark strong { color: #c2410c; font-weight: 700; }

.dl-list {
  display: grid; gap: 16px; grid-template-columns: 1fr;
  max-width: 860px; margin: 0 auto; padding: 0; list-style: none;
}

.dl-card {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 18px;
  padding: 22px 26px; border-radius: 14px;
  background: #fff; box-shadow: 0 2px 18px rgba(30, 60, 110, .07);
}
.dl-card__head { display: flex; align-items: center; gap: 16px; min-width: 0; }
.dl-card__no {
  flex: none; width: 26px; height: 26px; border-radius: 13px;
  background: #eaf2fe; color: #1e59b8;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
}
.dl-card__icon {
  flex: none; width: 48px; height: 48px;
  border-radius: 11px; background: #fff;
  box-shadow: 0 0 0 1px #e7ecf2; object-fit: contain;
}
.dl-card__title { min-width: 0; }
.dl-card__name { margin: 0; font-size: 19px; font-weight: 800; line-height: 1.4; }
.dl-card__summary { margin: 4px 0 0; font-size: 14px; color: var(--muted); line-height: 1.6; }

.dl-card__actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.dl-card__dl,
.dl-card__manual {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 46px; padding: 0 20px; border-radius: 23px;
  font-size: 15px; font-weight: 700; white-space: nowrap;
}
.dl-card__dl { background: var(--blue); color: #fff; -webkit-font-smoothing: antialiased; }
.dl-card__dl:hover { background: #1558bb; color: #fff; }
.dl-card__manual { border: 1px solid #cfdbe9; color: #2f3742; background: #fff; }
.dl-card__manual:hover { border-color: var(--blue-light); color: var(--blue); }
.dl-card__manual.is-pending {
  border-style: dashed; color: #9aa4b2; background: #fafbfc; cursor: default;
}

@media (max-width: 720px) {
  .dl-card { flex-direction: column; align-items: stretch; padding: 20px; }
  .dl-card__actions { width: 100%; }
  .dl-card__dl, .dl-card__manual { flex: 1 1 0; min-width: 150px; padding: 0 12px; }
  .dl-notice { padding: 20px; }
}

/* ==========================================================================
   個別ツール詳細ページ（section/*.html 由来）
   固定幅がインライン style にあるため、属性セレクタ + !important で解除する
   ========================================================================== */
.breadcrumb {
  max-width: 941px; margin: 0 auto; padding: 18px 20px 0;
  font-size: 13px; color: var(--muted);
}
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.breadcrumb li::after { content: "›"; margin-left: 8px; color: #b9c2ce; }
.breadcrumb li:last-child::after { content: ""; }

.tool-detail { padding-bottom: 8px; }
.tool-detail > div[style*="941px"] { width: 100% !important; max-width: 941px !important; }

.tool-cta {
  padding: 56px 20px 72px;
  text-align: center;
  background: linear-gradient(180deg, #f4f7fc 0%, #eef4fd 100%);
}
.tool-cta__title { margin: 0 0 10px; font-size: clamp(20px, 4.6vw, 28px); font-weight: 800; }
.tool-cta__text { margin: 0 0 26px; font-size: 15px; color: var(--muted); line-height: 1.9; }
.tool-cta .btn-line { height: 56px; padding: 0 36px; font-size: 17px; }
.tool-cta__back { display: block; margin-top: 22px; font-size: 15px; }

@media (max-width: 900px) {
  /* 本文カラム＋スクショの 2 カラムを縦積みに */
  .tool-detail [style*="grid-template-columns: 268px 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  /* スペック枠の固定幅を解除 */
  .tool-detail [style*="width: 560px"] { width: 100% !important; max-width: 560px !important; }
  /* 装飾用の背景ブロブが横スクロールを生むのを防ぐ */
  .tool-detail { overflow-x: hidden; }
}

@media (max-width: 600px) {
  /* 素材のツール名は 74px 固定。スマホでは画面を埋め尽くすので詰める */
  .tool-detail h1 { font-size: clamp(34px, 9.5vw, 52px) !important; line-height: 1.25 !important; }
  .tool-detail [style*="padding: 0 28px"] { padding-left: 14px !important; padding-right: 14px !important; }
  .tool-detail [style*="padding: 26px 26px 26px 30px"] { padding: 20px 16px !important; }
  .tool-detail [style*="margin: 34px 28px 0"] { margin-left: 14px !important; margin-right: 14px !important; }
}

/* ==========================================================================
   スマホ専用セクション（デザイン素材の内容を縦一列で組み直したもの）
   ========================================================================== */
.hero-m {
  padding: 56px 20px 64px;
  background: url("hero-bed0fee3.jpg") center / cover no-repeat;
}
.hero-m__title {
  margin: 0 0 20px;
  font-weight: 800; font-size: clamp(28px, 8vw, 40px); line-height: 1.45;
  letter-spacing: .01em; color: #10304e;
}
.hero-m__lead {
  margin: 0 0 28px;
  font-weight: 500; font-size: clamp(17px, 4.6vw, 22px); line-height: 1.6; color: #12314d;
}
.hero-m__cta {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 28px; border-radius: 40px;
  background: var(--green); color: #fff; font-size: 17px; font-weight: 700;
}
.hero-m__cta:hover { background: #23902f; color: #fff; }

/* CTA ボタンと対応サイトカードが密着しないよう間隔を取る */
.hero-m .hero-sites { margin-top: 34px; }

/* ==========================================================================
   ヒーローの「対応サイト」カード
   PC はヒーロー素材（絶対配置）の中に置き、スマホはヒーロー下に縦積みで出す。
   ========================================================================== */
.hero-sites {
  padding: 34px 38px 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .93);
  box-shadow: 0 14px 48px rgba(16, 48, 78, .16);
  font-family: var(--font-sans);
}
.hero-sites__title {
  margin: 0 0 14px; text-align: center;
  font-size: 29px; font-weight: 800; letter-spacing: .10em; color: #10304e;
}
.hero-sites__list { margin: 0; padding: 0; list-style: none; }
.hero-sites__list li {
  display: flex; align-items: center; gap: 16px;
  padding: 17px 2px; border-top: 1px solid #e7ecf2;
  font-size: 21px; font-weight: 500; color: #2f3742; line-height: 1.4;
}
.hero-sites__list li svg { flex: none; }
.hero-sites__list li.is-primary { font-size: 23px; font-weight: 800; color: #14181f; }
.hero-sites__note {
  margin: 0; padding-top: 20px; border-top: 1px solid #e7ecf2;
  font-size: 19px; font-weight: 500; color: #46505f;
}

@media (max-width: 767px) {
  .hero-sites { padding: 22px 20px 20px; border-radius: 14px; }
  .hero-sites__title { font-size: 19px; }
  .hero-sites__list li { gap: 10px; padding: 11px 2px; font-size: 15px; }
  .hero-sites__list li.is-primary { font-size: 16px; }
  .hero-sites__list li svg { width: 20px; height: 20px; }
  .hero-sites__note { font-size: 14px; padding-top: 14px; }
}

.price-m { padding: 56px 0 64px; background: url("price-650a0460.jpg") center / cover no-repeat; }
.price-m__card {
  max-width: 520px; margin: 0 auto; padding: 28px 22px 30px;
  border-radius: 18px; background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 30px rgba(30, 60, 110, .12);
}
.price-m__was { text-align: center; font-size: 14px; color: #6b7484; }
.price-m__was s { color: #d9333f; text-decoration-thickness: 2px; }
.price-m__plan { margin: 14px 0 4px; text-align: center; font-size: 17px; font-weight: 700; color: #1e59b8; }
.price-m__now { text-align: center; line-height: 1.1; }
.price-m__now b { font-size: 54px; font-weight: 800; color: var(--ink); }
.price-m__now span { font-size: 15px; color: var(--muted); }
.price-m__badge {
  display: block; width: fit-content; margin: 14px auto 0;
  padding: 7px 18px; border-radius: 999px;
  background: #fff7e8; color: #c8801a; font-size: 14px; font-weight: 700;
}
.price-m__subhead {
  margin: 24px 0 4px; padding-top: 20px; border-top: 1px solid var(--line);
  text-align: center; font-size: 16px; font-weight: 800; letter-spacing: .10em; color: #1b3a6b;
}
.price-m__list { margin: 0; padding: 0; list-style: none; }
.price-m__list li {
  position: relative; padding: 10px 0 10px 26px;
  font-size: 15px; font-weight: 700; color: #1b3a6b; line-height: 1.6;
}
.price-m__list li::before {
  content: ""; position: absolute; left: 3px; top: 16px;
  width: 9px; height: 9px; border-radius: 5px; background: #2eae46;
}
.price-m__cta { display: flex; justify-content: center; margin-top: 24px; }

/* ==========================================================================
   流用セクション（導入の流れ・よくある質問・CTA）
   旧 style.css の見た目をそのまま持ち込んだもの。色も従来のまま。
   ========================================================================== */
.legacy { --l-primary: #0066ff; --l-accent: #ff9900; --l-navy: #0a1128; --l-radius: 12px; }

.flow { background-color: #f8f9fa; }
.flow-list { max-width: 800px; margin: 0 auto; }
.flow-item {
  display: flex; align-items: flex-start; gap: 20px;
  background: #fff; padding: 30px; border-radius: var(--l-radius);
  margin-bottom: 16px; box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}
.flow-item.flow-highlight { background: #fff9e6; border: 2px solid var(--l-accent); }
.flow-number {
  width: 50px; height: 50px; flex-shrink: 0; border-radius: 50%;
  background: var(--l-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 700;
}
.flow-number.highlight { background: var(--l-accent); }
.flow-content h3 { margin: 0 0 8px; font-size: 1.25rem; color: var(--l-navy); line-height: 1.4; }
.flow-content p { margin: 0; color: #666; line-height: 1.7; }
.flow-content .keyword {
  background: var(--l-accent); color: #fff;
  padding: 2px 10px; border-radius: 4px; font-weight: 700;
}
.flow-note { color: #e53935 !important; font-weight: 500; margin-top: 8px !important; }
.flow-footer {
  max-width: 800px; margin: 40px auto 0;
  color: #666; line-height: 1.8;
}
.flow-footer .keyword { color: var(--l-accent); font-weight: 700; }

.faq { background: #fff; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: #f8f9fa; border-radius: var(--l-radius);
  padding: 30px; margin-bottom: 20px; box-shadow: 0 5px 15px rgba(0, 0, 0, .03);
}
.faq-question { margin: 0 0 15px; font-size: 1.2rem; color: var(--l-navy); line-height: 1.5; }
.faq-answer { margin: 0; color: #666; padding-left: 20px; line-height: 1.8; }

/* ページ末尾の締めCTA。ヒーローと同じ写真を白で伏せて敷き、冒頭と呼応させる。
   写真をそのまま出すと文字が読めないので、白のスクリムを重ねてコントラストを確保する。 */
.cta-final {
  position: relative;
  padding: 88px 20px 96px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .80) 0%, rgba(255, 255, 255, .90) 100%),
    url("hero-bed0fee3.jpg") center / cover no-repeat;
}
.cta-final__eyebrow {
  margin: 0 0 16px;
  font-size: 13px; font-weight: 700; letter-spacing: .22em; color: #2f6fd8;
}
.cta-final__title {
  margin: 0 0 18px;
  font-size: clamp(24px, 5vw, 40px); line-height: 1.5; color: #10304e;
}
.cta-final__lead {
  margin: 0 0 36px;
  font-size: clamp(14px, 3.4vw, 18px); font-weight: 500; color: #46505f; line-height: 1.9;
}
.cta-final__lead .keyword {
  padding: 2px 10px; border-radius: 4px;
  background: #fff3d9; color: #a56a12; font-weight: 700;
}
.cta-final .btn-line {
  height: 62px; padding: 0 44px; font-size: 18px; font-weight: 700;
  box-shadow: 0 8px 22px rgba(41, 160, 57, .28);
}
.cta-final .btn-line:hover { box-shadow: 0 10px 26px rgba(41, 160, 57, .34); }

@media (max-width: 768px) {
  .cta-final { padding: 64px 20px 72px; }
  .cta-final .btn-line { width: 100%; max-width: 340px; padding: 0 20px; font-size: 16px; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .flow-item { padding: 20px; gap: 14px; }
  .flow-number { width: 40px; height: 40px; font-size: 1.2rem; }
  .flow-content h3 { font-size: 1.1rem; }
  .faq-item { padding: 22px 20px; }
  .faq-answer { padding-left: 0; }
}

/* ==========================================================================
   フッター
   ========================================================================== */
.site-footer {
  padding: 48px 0 36px;
  background: #14181f; color: #cfd6e0;
}
.site-footer a { color: #cfd6e0; }
.site-footer a:hover { color: #fff; }
.site-footer__inner {
  max-width: 1120px; margin: 0 auto; padding: 0 20px;
  display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center;
}
.site-footer__logo { font-size: 24px; font-weight: 700; letter-spacing: .045em; color: #fff; }
.site-footer__links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 24px;
  margin: 0; padding: 0; list-style: none; font-size: 14px;
}
.site-footer__copy { margin: 0; font-size: 12px; color: #8e99a8; }
