@charset "UTF-8";
/* ==========================================================================
   officejapan.tv 共通スタイルシート（デザインV2 / 信頼×先進リニューアル）
   モバイルファースト / ブレークポイント 768px（タブレット）・1024px（PC）
   コンテンツ最大幅 1080px 中央寄せ
   配色: ネイビー(#16224D)×プライマリブルー(#1D4ED8)×ホワイト基調
         アクセント = シアン(#0EA5E9)。旧オレンジは全廃。
   フォント: Noto Sans JP（400/500/700）+ システムフォントフォールバック
   余白広め（セクション上下: モバイル64px / PC 96px）。カードは影で浮かす。
   --------------------------------------------------------------------------
   ◆ 後続ページ実装者向け 主要クラス一覧（スタイルガイド）
   --------------------------------------------------------------------------
   【レイアウト】
     .container            … 最大1080px・中央寄せの内側ラッパー
     .section              … 上下paddingを持つセクション（モバイル64/PC96）
     .section--gray        … 背景 --c-bg-section（青みがかった白）のセクション
     .lead                 … h1直下のリード文（結論先行・太字寄り）
   【見出し】
     .page-title           … 各ページの h1（ページタイトル）
     .section-title        … セクション見出し（h2 想定。左に色帯）
     .section-title--center… 中央寄せ版（下にアクセント線）
     .subsection-title     … 小見出し（h3 想定）
   【ボタン / CTA】
     .btn                  … プライマリ塗りボタン（高さ48px以上）
     .btn-cta              … アクセントグラデ＋影のCTAボタン（お問い合わせ等）
     .btn-outline          … ネイビー枠アウトラインボタン
     .btn-lg               … 大サイズ
     .cta-band             … ページ末尾の問い合わせ誘導バンド（ネイビーグラデ）
   【カテゴリ識別バッジ】
     .cat-badge            … カテゴリバッジ（カード上部に表示）
     .cat-badge--in/--out/--ivr/--biz … 受信/発信/IVR/業務支援のカラー
   【カード】
     .card-grid            … カードを並べるグリッド（自動で1→2→3列）
     .card-grid--2/--3/--4 … 2/3/4列固定寄せ
     .card                 … カード本体（.card__img/.card__body/.card__title/.card__text）
     .service-card         … サービス分類カード（index等）
   【信頼バッジ帯（index）】
     .trust-band           … ヒーロー直下の信頼バッジ帯
     .trust-card           … 1バッジ（.trust-card__num/.trust-card__label）
   【モバイル固定CTAバー】
     .mobile-cta-bar       … <768pxで画面下固定（電話/メール）
   【テーブル】
     .table / .price-table … 汎用データ表（ヘッダ行ネイビー×白）
     .form-confirm-table   … 確認画面の入力内容表
   【FAQアコーディオン】
     .faq-list / .faq-item / .faq-item__q / .faq-item__a / .is-open
   【フォーム】
     .form-contact / .form-group / .form-label / .form-field(--inline)
     .form-input(--wide/--zip1/--zip2) / .form-select / .form-textarea
     .form-check(__text/__sub) / .form-radio / .form-question
     .form-required(-mark) / .form-error / .form-submit / .form-zip-sep
     .type01〜.type06     … 入力欄の種別マーカー（互換維持用）
     .result / .red       … 確認画面の入力値表示 / エラー文言
     .send-result(--success/--error) … 送信完了/失敗メッセージ
   【パンくず】 .breadcrumb（header.php が出力）
   【関連サービス】 .related-services / .related-card
   【その他】
     .notice-list … お知らせ(dl) / .point-list … 選ばれる理由3点
     .hero / .hero-slider … トップのヒーロー（スライダー）
     .jump-nav / .jump-nav__list … ページ内ジャンプリンク
     .content-list … 箇条書きリスト / .map-figure / .branch-map … 地図画像
     .contact-address / .contact-provision / .privacy-contact / .privacy-meta
     .service_img … 本文中の説明画像
     .text-center / .mt-* / .mb-*  … 補助ユーティリティ
   ========================================================================== */

/* ---------- CSS変数 ---------- */
:root {
  /* カラー */
  --c-navy:        #16224D;
  --c-navy-deep:   #0E1733;
  --c-primary:     #1D4ED8;
  --c-primary-light: #3B82F6;
  --c-accent:      #0EA5E9;
  --c-accent-dark: #0284C7;
  --c-accent-pale: #E0F2FE;
  --c-slate:       #475569;
  --c-link:        #1D4ED8;
  --c-text:        #1E293B;
  --c-text-sub:    #64748B;
  --c-bg:          #FFFFFF;
  --c-bg-section:  #F4F7FB;
  --c-border:      #E2E8F0;
  --c-error:       #DC2626;

  /* 互換エイリアス（既存コードが参照しても破綻しないよう保持） */
  --c-bg-gray:     #F4F7FB;

  /* 余白（8pxスケール・広め） */
  --sp-1: 8px;  --sp-2: 16px; --sp-3: 24px; --sp-4: 32px;
  --sp-6: 48px; --sp-8: 64px; --sp-12: 96px;

  --maxw: 1080px;

  /* グラデ */
  --grad-cta:   linear-gradient(135deg, #0EA5E9, #1D4ED8);
  --grad-navy:  linear-gradient(135deg, #16224D 0%, #1D4ED8 100%);

  --font-base: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', "ヒラギノ角ゴ ProN W3", "Meiryo", "メイリオ", sans-serif;

  /* 角丸・影 */
  --radius:    12px;
  --radius-lg: 16px;
  --radius-btn: 8px;
  --shadow-card:  0 2px 8px rgba(22,34,77,.06), 0 8px 24px rgba(22,34,77,.08);
  --shadow-hover: 0 4px 12px rgba(22,34,77,.10), 0 16px 32px rgba(22,34,77,.12);
  --shadow: var(--shadow-card);
}

/* ---------- リセット ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.9;
  color: var(--c-text);
  background: var(--c-bg);
  /* モバイル固定CTAバー分の余白（PCでは下のメディアクエリで解除） */
  padding-bottom: 64px;
}
img { max-width: 100%; height: auto; vertical-align: bottom; border: 0; }
a { color: var(--c-link); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { margin: 0; padding: 0; }
h1, h2, h3, h4, h5, p { margin: 0; }

/* ---------- レイアウト ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 16px; }
.site-main { display: block; }
.section { padding: var(--sp-8) 0; }
.section--gray { background: var(--c-bg-section); }

/* ============================================================
   ヘッダー
   ============================================================ */
.site-header { background: var(--c-bg); box-shadow: 0 1px 0 var(--c-border), 0 2px 12px rgba(22,34,77,.06); position: relative; }
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.site-logo { margin: 0; line-height: 0; flex: 0 0 auto; }
.site-logo img { width: 200px; height: auto; }
.header-tools { display: none; }
.header-catch { font-size: 11px; color: var(--c-text-sub); text-align: right; }
.header-cta { display: flex; align-items: center; gap: 16px; margin-top: 4px; }
.header-tel { display: flex; flex-direction: column; line-height: 1.15; text-align: right; color: var(--c-navy); }
.header-tel:hover { text-decoration: none; }
.header-tel-label { font-size: 11px; color: var(--c-text-sub); letter-spacing: .04em; }
.header-tel-num { font-size: 26px; font-weight: 700; letter-spacing: .5px; color: var(--c-navy); }

/* ハンバーガー */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0;
  background: none; border: 0; cursor: pointer;
  flex: 0 0 auto;
}
.nav-toggle-bar { display: block; width: 26px; height: 3px; margin: 0 auto; background: var(--c-navy); border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-toggle.is-active .nav-toggle-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-active .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-active .nav-toggle-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* グローバルナビ（モバイル：アコーディオン） */
.global-nav {
  display: none;
  background: var(--c-navy);
}
.global-nav.is-open { display: block; }
.gnav { list-style: none; }
.gnav > li { border-bottom: 1px solid rgba(255,255,255,0.12); position: relative; }
.gnav > li > a {
  display: block;
  padding: 14px 16px;
  color: #fff;
  font-size: 15px;
}
.gnav > li > a:hover { text-decoration: none; background: rgba(255,255,255,0.08); }
.has-dropdown { display: flex; flex-wrap: wrap; align-items: center; }
.has-dropdown > a { flex: 1 1 auto; }
.dropdown-toggle {
  flex: 0 0 auto;
  width: 50px; height: 50px;
  background: none; border: 0; cursor: pointer;
  position: relative;
}
.dropdown-toggle::before, .dropdown-toggle::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 12px; height: 2px; background: #fff; transform: translate(-50%,-50%);
}
.dropdown-toggle::after { transform: translate(-50%,-50%) rotate(90deg); transition: opacity .2s; }
.has-dropdown.is-open .dropdown-toggle::after { opacity: 0; }
.dropdown {
  list-style: none;
  display: none;
  flex-basis: 100%;
  background: rgba(0,0,0,0.22);
}
.has-dropdown.is-open .dropdown { display: block; }
.dropdown li a { display: block; padding: 12px 16px 12px 32px; color: #fff; font-size: 14px; }
.dropdown li a:hover { text-decoration: none; background: rgba(255,255,255,0.08); }
.gnav-cta { padding: 14px 16px; border-bottom: 0; }
.gnav-cta .btn { width: 100%; }

/* --- メガメニュー（サービス） --- */
.dropdown--mega .dropdown-group { list-style: none; }
.dropdown-group__title {
  display: block;
  padding: 12px 16px 6px 24px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: .04em;
}
.dropdown-group > ul { list-style: none; }
.dropdown--mega .dropdown-group > ul li a {
  display: block;
  padding: 11px 16px 11px 36px;
  color: #fff;
  font-size: 14px;
}
.dropdown--mega .dropdown-group > ul li a:hover {
  text-decoration: none;
  background: rgba(255,255,255,0.08);
}

/* ============================================================
   パンくず
   ============================================================ */
.breadcrumb { background: var(--c-bg-section); border-bottom: 1px solid var(--c-border); font-size: 12px; }
.breadcrumb-inner { max-width: var(--maxw); margin: 0 auto; padding: 10px 16px; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 4px; }
.breadcrumb li { color: var(--c-text-sub); }
.breadcrumb li:not(:last-child)::after { content: "›"; margin-left: 6px; color: var(--c-border); }
.breadcrumb a { color: var(--c-primary); }

/* ============================================================
   見出し
   ============================================================ */
.page-title {
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: .02em;
  color: var(--c-navy);
  padding: 32px 16px 18px;
  max-width: var(--maxw);
  margin: 0 auto;
  border-bottom: 3px solid var(--c-accent);
}
.lead {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px 16px;
  font-size: 16px;
  line-height: 1.9;
}
.lead--compact { padding-bottom: 12px; }
.section--compact-top { padding-top: 12px; }
.quick-call {
  max-width: 360px; margin: 0 auto; text-align: center;
  background: var(--c-bg-section); border-radius: var(--radius-lg); box-shadow: var(--shadow-card);
  padding: 20px 24px; font-size: 13px; color: var(--c-text-sub);
}
.quick-call__text { margin: 0; }
.quick-call__tel {
  display: inline-flex; align-items: center; gap: 8px; margin: 10px 0 4px;
  font-size: 24px; font-weight: 700; color: var(--c-primary) !important; text-decoration: none;
}
.quick-call__tel:hover { text-decoration: none; opacity: .85; }
.quick-call__tel svg { flex: 0 0 auto; }
.quick-call__hours { display: block; font-size: 12px; color: var(--c-text-sub); }
.section-title {
  font-size: 22px;
  letter-spacing: .02em;
  color: var(--c-navy);
  margin-bottom: 24px;
  padding-left: 14px;
  border-left: 5px solid var(--c-accent);
  line-height: 1.4;
}
.section-title--center { text-align: center; border-left: 0; padding-left: 0; }
.section-title--center::after { content: ""; display: block; width: 64px; height: 3px; background: var(--c-accent); margin: 14px auto 0; border-radius: 2px; }
.subsection-title {
  font-size: 18px;
  letter-spacing: .02em;
  color: var(--c-navy);
  margin: 32px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--c-border);
}

/* ============================================================
   ボタン / CTA
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 28px;
  background: var(--c-primary);
  color: #fff !important;
  font-weight: 700;
  border-radius: var(--radius-btn);
  border: 0;
  cursor: pointer;
  text-align: center;
  line-height: 1.3;
  transition: background .2s, box-shadow .2s, transform .1s, filter .2s;
}
.btn:hover { text-decoration: none; background: var(--c-primary-light); }
.btn:active { transform: translateY(1px); }
.btn-cta { background: var(--grad-cta); box-shadow: 0 6px 16px rgba(14,165,233,.32); }
.btn-cta:hover { background: var(--grad-cta); filter: brightness(1.06); box-shadow: 0 8px 22px rgba(14,165,233,.40); }
.btn-outline { background: #fff; color: var(--c-navy) !important; border: 2px solid var(--c-navy); }
.btn-outline:hover { background: var(--c-bg-section); }
.btn-lg { min-height: 56px; padding: 16px 40px; font-size: 18px; }
.header-contact-btn { display: none; }

/* ページ末尾CTAバンド */
.cta-band {
  background: var(--grad-navy);
  color: #fff;
  text-align: center;
  padding: var(--sp-8) 16px;
}
.cta-band__title { font-size: 22px; letter-spacing: .02em; margin-bottom: 8px; }
.cta-band__text { font-size: 15px; opacity: .9; margin-bottom: 24px; }
.cta-band__tel { display: inline-block; font-size: 34px; font-weight: 700; color: #fff; letter-spacing: 1px; margin-bottom: 4px; }
.cta-band__tel:hover { text-decoration: none; }
.cta-band__hours { font-size: 13px; opacity: .85; margin-bottom: 24px; }
.cta-band .btn { background: var(--c-accent); box-shadow: 0 6px 16px rgba(14,165,233,.30); }
.cta-band .btn:hover { background: var(--c-accent-dark); }

/* ============================================================
   カテゴリ視覚識別バッジ
   ============================================================ */
.cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 5px 12px;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.2;
  color: #fff;
  background: var(--c-navy);
  border-radius: 999px;
}
.cat-badge svg { width: 14px; height: 14px; flex: 0 0 auto; }
/* 複数バッジ横並び用ラッパー（IVR: カテゴリ＋AI先進性） */
.cat-badge-row { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-bottom: 12px; }
.cat-badge-row .cat-badge { margin-bottom: 0; margin-left: 0; }
.cat-badge--in  { background: var(--c-navy); }
.cat-badge--out { background: var(--c-primary); }
.cat-badge--ivr { background: var(--c-accent); }
.cat-badge--biz { background: var(--c-slate); }
/* IVR先進性（AI・自動応答）バッジ */
.cat-badge--ai {
  color: var(--c-accent-dark);
  background: var(--c-accent-pale);
  border: 1px solid var(--c-accent);
  margin-left: 6px;
}

/* ============================================================
   カード
   ============================================================ */
.card-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.card {
  background: #fff;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.card__img { line-height: 0; }
.card__img img { width: 100%; object-fit: cover; }
.card__body { padding: 20px; flex: 1 1 auto; display: flex; flex-direction: column; }
.card__title { font-size: 18px; letter-spacing: .02em; color: var(--c-navy); margin-bottom: 8px; }
.card__text { font-size: 14px; color: var(--c-text-sub); line-height: 1.8; flex: 1 1 auto; }
.card__flow-img { display: block; max-width: 100%; height: auto; margin: .75rem auto 0; border: 1px solid var(--c-border); border-radius: 8px; background: #fff; }
.card__link { margin-top: 14px; }

/* サービス分類カード */
.service-card .card__list { list-style: none; margin-top: 14px; font-size: 14px; }
.service-card .card__list li { border-top: 1px dotted var(--c-border); }
.service-card .card__list li a { display: block; padding: 9px 0 9px 18px; position: relative; color: var(--c-primary); }
.service-card .card__list li a::before { content: "›"; position: absolute; left: 2px; color: var(--c-accent); font-weight: 700; }

/* ============================================================
   信頼バッジ帯（index ヒーロー直下）
   ============================================================ */
.trust-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--sp-6) 16px;
}
.trust-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 22px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.trust-card__num {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--c-navy);
  line-height: 1.3;
}
.trust-card__label { font-size: 13px; color: var(--c-text-sub); }
.trust-card svg { width: 30px; height: 30px; color: var(--c-accent); margin-bottom: 2px; }

/* ============================================================
   代表メッセージ（会社概要）
   .greeting / .greeting__photo / .greeting__body
   ============================================================ */
.greeting {
  max-width: 760px;
  margin: 0 auto;
}
.greeting__body { font-size: 15px; line-height: 1.9; color: var(--c-text); }
.greeting__body > p + p { margin-top: 1em; }
.greeting__catch {
  font-size: 20px; font-weight: 700; line-height: 1.6;
  color: var(--c-navy); margin-bottom: .8em;
}
.greeting__sign {
  margin-top: 1.6em; text-align: right; line-height: 1.7;
  font-size: 14px; color: var(--c-text-sub);
}
.greeting__sign-name { font-size: 18px; font-weight: 700; color: var(--c-navy); }

@media (max-width: 768px) {
  .greeting__catch { font-size: 18px; }
}

/* ============================================================
   アクセス（東京本社）
   .access / .access__map / .access__info
   ============================================================ */
.access {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--sp-4);
  align-items: start;
  max-width: 940px;
  margin: 0 auto;
}
.access__map { margin: 0; }
.access__map img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius); box-shadow: var(--shadow-card); border: 1px solid var(--c-border);
}
.access__name {
  font-size: 20px; font-weight: 700; color: var(--c-navy);
  margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--c-primary);
}
.access__list { margin: 0; }
.access__row {
  display: grid; grid-template-columns: 84px 1fr; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--c-border);
}
.access__row:first-child { padding-top: 0; }
.access__row dt { font-weight: 700; color: var(--c-text-sub); font-size: 14px; }
.access__row dd { margin: 0; font-size: 15px; line-height: 1.8; color: var(--c-text); }
.access__row dd a { color: var(--c-link); }
.access__row dd ul { margin: 4px 0 0; padding-left: 1.2em; }
.access__row dd li { margin-bottom: 4px; }
.access__map iframe {
  width: 100%; aspect-ratio: 4 / 3; height: auto; display: block;
  border: 0; border-radius: var(--radius); box-shadow: var(--shadow-card);
}

@media (max-width: 768px) {
  .access { grid-template-columns: 1fr; gap: var(--sp-3); }
  .access__name { font-size: 18px; }
}

/* ============================================================
   全国営業所一覧
   .branch-grid / .branch-card（本社は --head で全幅強調）
   ============================================================ */
.branch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.branch-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius);
  box-shadow: var(--shadow-card); padding: 22px 22px 20px;
  color: var(--c-text); text-decoration: none;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
a.branch-card:hover {
  transform: translateY(-3px); border-color: var(--c-primary); text-decoration: none;
  box-shadow: 0 6px 16px rgba(22,34,77,.12), 0 14px 32px rgba(22,34,77,.12);
}
.branch-card__name { font-size: 18px; font-weight: 700; color: var(--c-navy); margin-bottom: 8px; }
.branch-card__area { font-size: 14px; line-height: 1.7; color: var(--c-text); }
.branch-card__zip { font-size: 13px; color: var(--c-text-sub); margin-top: 2px; }
.branch-card__tel { font-size: 13px; color: var(--c-text-sub); margin-top: 8px; line-height: 1.7; }
.branch-card__link { margin-top: auto; padding-top: 14px; font-size: 14px; font-weight: 700; color: var(--c-primary); }
a.branch-card:hover .branch-card__link { text-decoration: underline; }

.branch-card--head { grid-column: 1 / -1; border-top: 3px solid var(--c-primary); }
.branch-card__badge {
  align-self: flex-start; display: inline-block; background: var(--c-primary); color: #fff;
  font-size: 12px; font-weight: 700; padding: 3px 12px; border-radius: 999px; margin-bottom: 10px;
}

@media (max-width: 900px) { .branch-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .branch-grid { grid-template-columns: 1fr; } }

/* ============================================================
   テーブル（料金・仕様・比較）
   ============================================================ */
.table, .price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
  background: #fff;
}
.table th, .price-table th,
.table td, .price-table td {
  border: 1px solid var(--c-border);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  line-height: 1.8;
}
.table thead th, .price-table thead th { background: var(--c-navy); color: #fff; text-align: center; letter-spacing: .02em; }
.table th[scope="row"], .price-table th[scope="row"] { background: var(--c-bg-section); color: var(--c-navy); white-space: nowrap; }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table td ul, .price-table td ul { list-style-position: inside; padding-left: 2px; }
.table td ul li, .price-table td ul li { margin-bottom: 4px; }
.table td ul li:last-child, .price-table td ul li:last-child { margin-bottom: 0; }

/* リニューアル済みページ共通：テーブルをソフトカード化（.page-renewed 配下のみ） */
.page-renewed .table-wrap { border-radius: var(--radius-lg); overflow-x: auto; overflow-y: hidden; box-shadow: var(--shadow-card); }
.page-renewed .table, .page-renewed .price-table { margin: 0; }
.page-renewed .table th, .page-renewed .price-table th,
.page-renewed .table td, .page-renewed .price-table td { padding: 14px 16px; }
.page-renewed .table tbody tr:nth-child(even) { background: var(--c-bg-section); }

/* out_ms.html / out_fs.html 限定：料金表の「単位」「価格」列を中央揃え */
.page-out_ms .price-table tbody td:nth-child(3),
.page-out_ms .price-table tbody td:nth-child(4),
.page-out_fs .price-table tbody td:nth-child(3),
.page-out_fs .price-table tbody td:nth-child(4) { text-align: center; }

/* in_idp.html 限定：プラン別料金表を中央揃え */
.page-in_idp .price-table th, .page-in_idp .price-table td { text-align: center; vertical-align: middle; }

/* in_act.html 限定：料金表（rowspanあり）の視認性調整 */
.page-in_act .price-table th, .page-in_act .price-table td { text-align: center; vertical-align: middle; }
.page-in_act .price-table tbody tr:nth-child(5) th, .page-in_act .price-table tbody tr:nth-child(5) td,
.page-in_act .price-table tbody tr:nth-child(9) th, .page-in_act .price-table tbody tr:nth-child(9) td,
.page-in_act .price-table tbody tr:nth-child(13) th, .page-in_act .price-table tbody tr:nth-child(13) td { border-top: 2px solid var(--c-navy); }

.table-scroll-hint { display: none; align-items: center; gap: 4px; margin: 0 0 8px; font-size: 12px; color: var(--c-text-sub); }

@media (max-width: 768px) {
  .table-scroll-hint { display: flex; }
  .page-in_act .price-table { min-width: 640px; font-size: 13px; }
  .page-in_act .price-table th, .page-in_act .price-table td { padding: 10px; }
  .page-in_act .price-table thead th { white-space: nowrap; }
}

/* in_act.html 限定：stores.fun/reserve 参考のビジュアル刷新 */
.hero-intro { display: flex; align-items: center; gap: 40px; padding-top: 8px; }
.hero-intro__text { flex: 1 1 auto; }
.hero-intro__text .page-title, .hero-intro__text .lead { max-width: none; padding-left: 0; padding-right: 0; margin: 0; }
.hero-catch {
  font-size: clamp(20px, 2.4vw, 28px); font-weight: 700; line-height: 1.5;
  color: var(--c-navy); letter-spacing: .01em; margin-top: 18px;
}
.hero-catch__line1 { display: inline-block; }
.hero-catch__line2 {
  display: inline-block; margin-top: 4px;
  box-shadow: inset 0 -0.5em 0 var(--c-accent-pale);
}
.hero-catch strong { color: var(--c-primary); font-size: 1.18em; }
.hero-intro__text .lead { margin-top: 14px; }
.hero-intro__img { flex: 0 0 300px; }
.hero-intro__img img { width: 100%; display: block; border-radius: 24px; box-shadow: var(--shadow-card); object-fit: cover; }
.hero-intro__img--sp { display: none; }

.trust-badges { list-style: none; margin: 24px 0 4px; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.trust-badges__item { display: flex; align-items: center; gap: 10px; background: var(--c-bg-section); border-radius: 999px; padding: 10px 16px; }
.trust-badges__icon { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; background: var(--c-primary); color: #fff; display: flex; align-items: center; justify-content: center; }
.trust-badges__text { font-size: 13px; font-weight: 700; color: var(--c-navy); line-height: 1.4; }

.hero-badges { list-style: none; display: flex; gap: 28px; flex-wrap: wrap; margin: 36px 0 0; padding: 0; }
.hero-badges__item { display: flex; flex-direction: column; align-items: center; gap: 12px; width: 120px; text-align: center; }
.hero-badges__circle {
  width: 116px; height: 116px; border-radius: 50%;
  background: linear-gradient(135deg, #FDE68A, #FBBF24 55%, #F59E0B);
  border: 4px solid rgba(255,255,255,.7);
  box-shadow: 0 0 0 6px rgba(251,191,36,.25), 0 16px 32px rgba(0,0,0,.3);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff;
}
.hero-badges__num { font-size: 30px; font-weight: 800; line-height: 1.1; letter-spacing: -.01em; color: var(--c-navy); }
.hero-badges__unit { font-size: 13px; font-weight: 700; color: var(--c-navy); opacity: .85; }
.hero-badges__label { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.92); line-height: 1.3; }

@media (max-width: 600px) {
  .hero-badges { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; justify-items: center; }
  .hero-badges__item { width: auto; }
  .hero-badges__circle { width: 88px; height: 88px; }
  .hero-badges__num { font-size: 22px; }
}

.feature-row { display: flex; align-items: center; gap: 40px; margin-top: 24px; }
.feature-row--reverse { flex-direction: row-reverse; }
.feature-row__img { flex: 0 0 42%; }
.feature-row__img img { width: 100%; border-radius: 20px; box-shadow: var(--shadow-card); display: block; margin: 0 !important; }
.feature-row__body { flex: 1 1 auto; }
.feature-row__body p { font-size: 15px; line-height: 1.9; }
.feature-row__body ul, .check-list { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.feature-row__body ul li, .check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.8; color: var(--c-text); }
.feature-row__body ul li::before, .check-list li::before {
  content: '✓';
  flex: 0 0 auto;
  width: 20px; height: 20px; margin-top: 3px; border-radius: 50%;
  background: var(--c-accent-pale); color: var(--c-accent-dark);
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.note-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.note-list li { position: relative; padding-left: 22px; font-size: 13px; line-height: 1.8; color: var(--c-text-sub); }
.note-list li::before { content: '※'; position: absolute; left: 0; top: 0; color: var(--c-text-sub); }

.section-desc { margin-bottom: 24px; color: var(--c-text-sub); }
.card__round-img {
  width: 156px; height: 156px; border-radius: 50%; overflow: hidden;
  display: block; margin: 24px auto 0; object-fit: cover;
}
.card__round-img--square { border-radius: var(--radius); }
.report-cards .card__title { text-align: center; }

.options-table thead th { background: var(--grad-navy); }
.opt-row { display: flex; align-items: center; gap: 10px; }
.opt-row__icon {
  flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%;
  background: var(--c-accent-pale); color: var(--c-primary);
  display: flex; align-items: center; justify-content: center;
}

.step-flow { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.step-flow__item { display: flex; gap: 16px; align-items: flex-start; background: #fff; border-radius: 16px; box-shadow: var(--shadow-card); padding: 16px 18px; }
.step-flow__num { flex: 0 0 auto; width: 36px; height: 36px; border-radius: 50%; background: var(--c-primary); color: #fff; font-weight: 700; font-size: 15px; display: flex; align-items: center; justify-content: center; }
.step-flow__text { flex: 1 1 auto; font-size: 14px; line-height: 1.8; padding-top: 5px; }

.btn-pill { border-radius: 999px; }

.page-renewed .card { border-radius: 24px; box-shadow: var(--shadow-card); }
.page-renewed .card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.page-renewed .card__icon {
  flex: 0 0 auto; width: 40px; height: 40px;
  border-radius: 12px; background: var(--c-accent-pale); color: var(--c-primary);
  display: flex; align-items: center; justify-content: center;
}
.page-renewed .card__head .card__title { margin-bottom: 0; }
.page-in_act .price-table strong, .page-renewed .price-table strong { display: inline-block; background: var(--c-accent-pale); color: var(--c-accent-dark); padding: 4px 14px; border-radius: 999px; font-size: 16px; }

.compare-table thead th { background: var(--grad-navy); }
.compare-table thead th:nth-child(3) { background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-accent-dark) 100%); }
.compare-table td:nth-child(2) { color: var(--c-text-sub); }
.compare-table td:nth-child(2)::before {
  content: '－'; display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; margin-right: 8px; border-radius: 50%;
  background: #EAEFF5; color: #94A3B8; font-size: 11px; font-weight: 700;
}
.compare-table tbody td:nth-child(3) {
  background: linear-gradient(180deg, #EFF8FF 0%, #E0F2FE 100%);
  color: var(--c-navy); font-weight: 700;
  box-shadow: inset 3px 0 0 var(--c-accent);
}
.compare-table td:nth-child(3)::before {
  content: '○'; display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; margin-right: 8px; border-radius: 50%;
  background: var(--c-accent); color: #fff; font-size: 11px; font-weight: 700;
}

@media (max-width: 768px) {
  .hero-intro { flex-direction: column; gap: 20px; }
  .hero-intro__img--pc { display: none; }
  .hero-intro__img--sp { display: block; width: 70%; max-width: 280px; margin: 16px auto; }
  .feature-row, .feature-row--reverse { flex-direction: column; gap: 18px; }
  .feature-row__img { flex-basis: auto; width: 100%; }
  .trust-badges { grid-template-columns: 1fr; }
}

/* 確認画面の入力内容テーブル */
.form-confirm-table th[scope="row"] { width: 30%; }
.result { margin: 0; }
.result + .result { margin-top: 6px; }

/* ============================================================
   FAQ アコーディオン（カード型）
   ============================================================ */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border: 0; border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; background: #fff; box-shadow: var(--shadow-card); }
.faq-item__q {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  padding: 18px 48px 18px 18px;
  background: #fff;
  border: 0;
  font: inherit;
  font-weight: 700;
  color: var(--c-navy);
  text-align: left;
  cursor: pointer;
  position: relative;
}
.faq-item__q::before { content: "Q"; color: var(--c-accent); font-weight: 700; flex: 0 0 auto; }
.faq-item__q::after {
  content: "＋"; position: absolute; right: 16px; top: 50%;
  transform: translateY(-50%);
  font-size: 20px; line-height: 1;
  color: var(--c-accent); font-weight: 700;
  transition: transform .25s;
}
.faq-item.is-open .faq-item__q::after { content: "−"; }
.faq-item__a { display: none; padding: 18px; border-top: 1px solid var(--c-border); font-size: 14px; line-height: 1.9; }
.faq-item.is-open .faq-item__a { display: block; }
.faq-item__a > *:first-child::before { content: "A"; color: var(--c-primary); font-weight: 700; margin-right: 8px; }

/* カテゴリ内ジャンプリンク（FAQページ等） */
.jump-nav, .jump-nav__list { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 28px; }
.jump-nav a, .jump-nav__list a { display: inline-block; padding: 9px 18px; background: #fff; border: 1px solid var(--c-primary); border-radius: 999px; font-size: 14px; color: var(--c-primary); }
.jump-nav a:hover, .jump-nav__list a:hover { background: var(--c-primary); color: #fff; text-decoration: none; }

/* ============================================================
   関連サービス
   ============================================================ */
.related-services .card-grid { grid-template-columns: 1fr; }
.related-card {
  display: block;
  border: 0;
  border-radius: var(--radius);
  padding: 18px;
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: box-shadow .25s, transform .25s;
}
.related-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); text-decoration: none; }
.related-card__title { display: block; font-size: 15px; color: var(--c-navy); font-weight: 700; margin-bottom: 4px; }
.related-card__text { display: block; font-size: 13px; color: var(--c-text-sub); line-height: 1.6; }

/* ============================================================
   トップ：ヒーロー / 選ばれる理由 / お知らせ
   ============================================================ */
.hero { background: var(--grad-navy); color: #fff; }
.hero-slider { position: relative; max-width: var(--maxw); margin: 0 auto; overflow: hidden; }
.hero-slide { display: none; }
.hero-slide.is-active { display: block; }
.hero-slide img { width: 100%; display: block; }
.hero-dots { display: flex; gap: 8px; justify-content: center; padding: 12px 0; }
.hero-dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; background: rgba(255,255,255,.4); cursor: pointer; padding: 0; }
.hero-dots button.is-active { background: var(--c-accent); }

.hero-copy { text-align: center; padding: 36px 16px 40px; }
.hero-copy__title { font-size: 26px; color: #fff; line-height: 1.4; letter-spacing: .02em; }
.hero-copy__sub { font-size: 15px; color: rgba(255,255,255,.9); margin-top: 14px; line-height: 1.9; }
.hero-copy__actions { display: flex; flex-direction: column; gap: 12px; align-items: center; margin-top: 26px; }
/* ヒーロー内のアウトラインボタンは白基調に */
.hero .btn-outline { background: transparent; color: #fff !important; border-color: rgba(255,255,255,.7); }
.hero .btn-outline:hover { background: rgba(255,255,255,.12); }

/* 選ばれる理由 */
.point-list { list-style: none; display: grid; grid-template-columns: 1fr; gap: 24px; }
.point-list li { background: #fff; border: 0; border-radius: var(--radius); box-shadow: var(--shadow-card); text-align: center; padding: 28px 18px; transition: box-shadow .25s, transform .25s; }
.point-list li:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.point-list .point-num { display: inline-block; font-size: 13px; color: var(--c-accent); font-weight: 700; letter-spacing: 2px; }
.point-list h3 { font-size: 20px; color: var(--c-navy); margin: 10px 0; letter-spacing: .02em; }
.point-list p { font-size: 14px; color: var(--c-text-sub); line-height: 1.8; }

/* お知らせ */
.notice-list { max-width: 820px; margin: 0 auto; }
.notice-list dt { font-size: 13px; color: var(--c-accent); font-weight: 700; padding-top: 16px; }
.notice-list dd { font-size: 14px; padding: 6px 0 16px; margin: 0; border-bottom: 1px dashed var(--c-border); line-height: 1.8; }

/* ============================================================
   フォーム
   ============================================================ */
.form-contact { max-width: 760px; margin: 0 auto; }
.form-group { margin-bottom: 24px; }
fieldset.form-group { border: 0; padding: 0; }
.form-label { display: block; font-weight: 700; color: var(--c-navy); margin-bottom: 8px; }
legend.form-label { width: 100%; padding: 0; }
.form-field { display: block; }
.form-field--inline { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  font: inherit;
  font-size: 16px;
  color: var(--c-text);
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-btn);
  transition: border-color .2s, box-shadow .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: 0;
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(14,165,233,.18);
}
.form-textarea { min-height: 180px; resize: vertical; line-height: 1.8; }
.form-input--wide { width: 100%; }
.form-input--zip1 { width: 90px; }
.form-input--zip2 { width: 110px; }
.form-zip-sep { color: var(--c-text-sub); }
.form-check, .form-radio { display: flex; align-items: flex-start; gap: 8px; padding: 8px 0; cursor: pointer; }
.form-check input, .form-radio input { margin-top: 4px; flex: 0 0 auto; width: 18px; height: 18px; accent-color: var(--c-accent); }
.form-check__text { font-weight: 500; }
.form-check__sub { list-style: none; margin: 0 0 8px 28px; font-size: 13px; color: var(--c-text-sub); }
.form-check__sub li { position: relative; padding-left: 14px; }
.form-check__sub li::before { content: "・"; position: absolute; left: 0; }
.form-question { font-weight: 700; color: var(--c-navy); margin-bottom: 8px; }
.form-required, .form-required-mark { color: var(--c-error); font-weight: 700; margin-right: 4px; }
.form-error { color: var(--c-error); font-size: 13px; font-weight: 700; margin-top: 6px; }
.form-submit { text-align: center; margin-top: 32px; }
.form-submit .btn { min-width: 220px; }
/* 入力欄の種別マーカー（互換維持。基底は .form-input 等で表現） */
.type01, .type02, .type03, .type04, .type05, .type06 { font: inherit; }

.form-check-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 700px) { .form-check-grid { grid-template-columns: repeat(2, 1fr); } }
.form-check-card {
  border: 1.5px solid var(--c-border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card); padding: 4px 18px; margin-bottom: 0;
  transition: border-color .15s, background .15s;
}
.form-check-card:has(input:checked) { border-color: var(--c-primary); background: var(--c-accent-pale); }
.form-check-card .form-check { padding: 14px 0; align-items: center; }
.form-check-card .form-check__sub { margin: 0 0 14px 28px; }
.form-check-card__icon {
  flex: 0 0 auto; width: 36px; height: 36px; border-radius: 10px;
  background: var(--c-accent-pale); color: var(--c-primary);
  display: flex; align-items: center; justify-content: center;
}
.form-check-card:has(input:checked) .form-check-card__icon { background: var(--c-primary); color: #fff; }

/* 入力フォームのステップ表示（入力 → 確認 → 完了） */
.form-steps { display: flex; justify-content: center; max-width: 480px; margin: 0 auto 32px; list-style: none; padding: 0; }
.form-steps__item { position: relative; display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1 1 0; }
.form-steps__item::before {
  content: "";
  position: absolute;
  top: 16px;
  left: -50%;
  width: 100%;
  height: 2px;
  background: var(--c-border);
  z-index: 0;
}
.form-steps__item:first-child::before { display: none; }
.form-steps__num {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--c-border);
  color: var(--c-text-sub);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.form-steps__label { font-size: 12px; color: var(--c-text-sub); }
.form-steps__item.is-active .form-steps__num { background: var(--c-accent); border-color: var(--c-accent); color: #fff; }
.form-steps__item.is-active .form-steps__label { color: var(--c-navy); font-weight: 700; }
.form-steps__item.is-done .form-steps__num { background: var(--c-navy); border-color: var(--c-navy); color: #fff; }
.form-steps__item.is-done::before { background: var(--c-navy); }

/* 送信結果メッセージ */
.send-result { max-width: 760px; margin: 0 auto; padding: 20px 18px; border-radius: var(--radius); font-size: 15px; line-height: 1.9; text-align: center; }
.send-result--success { background: var(--c-accent-pale); border: 1px solid var(--c-accent); color: var(--c-navy); }
.send-result--error { background: #FEF2F2; border: 1px solid var(--c-error); color: var(--c-error); }
.red { color: var(--c-error); font-weight: 700; }

/* ============================================================
   本文補助（リスト・画像・連絡先など）
   ============================================================ */
.content-list { list-style: none; }
.content-list li { position: relative; padding: 6px 0 6px 22px; line-height: 1.8; }
.content-list li::before { content: "›"; position: absolute; left: 4px; color: var(--c-accent); font-weight: 700; }

.service_img { display: block; margin: 24px auto; max-width: 100%; border-radius: var(--radius); }

.map-figure, .branch-map { margin: 0 0 16px; text-align: center; }
.map-figure img, .branch-map img { border-radius: var(--radius); box-shadow: var(--shadow-card); }

.contact-address, .contact-provision, .privacy-contact, .privacy-meta {
  background: var(--c-bg-section);
  border-radius: var(--radius);
  padding: 20px;
  line-height: 1.9;
}
.contact-provision { font-size: 14px; color: var(--c-text-sub); }
.privacy-meta { font-size: 13px; color: var(--c-text-sub); }

/* contact.html 限定：見やすさ改善（.page-renewed配下のみ、他ページの.contact-provision等には影響なし） */
.page-renewed .contact-provision {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-card);
  padding: 28px 32px; margin-bottom: 24px; color: var(--c-text);
}
.page-renewed .content-list { display: flex; flex-direction: column; gap: 2px; }
.page-renewed .content-list li { padding: 14px 0 14px 26px; border-bottom: 1px solid var(--c-border); }
.page-renewed .content-list li:last-child { border-bottom: 0; }
.page-renewed .contact-address {
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card); padding: 24px 28px;
}
.page-renewed .contact-address__title { font-weight: 700; color: var(--c-navy); margin-bottom: 10px; }
.consent-cta {
  margin-top: 32px; padding: 32px; text-align: center;
  background: var(--c-bg-section); border-radius: var(--radius-lg);
}
.consent-cta__text { margin-bottom: 18px; font-size: 15px; color: var(--c-text); }

/* ============================================================
   モバイル固定CTAバー（<768px のみ表示）
   ============================================================ */
.mobile-cta-bar {
  display: flex;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 100;
  box-shadow: 0 -2px 12px rgba(22,34,77,.15);
}
.mobile-cta-bar a {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding: 8px;
  color: #fff !important;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .02em;
}
.mobile-cta-bar a:hover { text-decoration: none; }
.mobile-cta-bar svg { width: 20px; height: 20px; flex: 0 0 auto; }
.mobile-cta-bar__tel  { background: var(--c-accent); }
.mobile-cta-bar__mail { background: var(--c-navy); }

/* ============================================================
   ユーティリティ
   ============================================================ */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; } .mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 40px; }
.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; }

/* ============================================================
   ブレークポイント：768px（タブレット）
   ============================================================ */
@media (min-width: 768px) {
  /* モバイル固定バーは非表示・body余白も解除 */
  body { padding-bottom: 0; }
  .mobile-cta-bar { display: none; }

  .header-tools { display: block; text-align: right; }
  .site-logo img { width: 280px; }
  .section { padding: var(--sp-12) 0; }

  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .point-list { grid-template-columns: repeat(3, 1fr); }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .related-services .card-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-band { grid-template-columns: repeat(4, 1fr); padding: var(--sp-8) 16px; }
  .hero-copy__actions { flex-direction: row; justify-content: center; }

  .page-title { font-size: 28px; }
  .hero-copy__title { font-size: 32px; }
  .form-field--inline .form-input--wide { width: auto; flex: 1 1 auto; }
}

/* ============================================================
   ブレークポイント：1024px（PC）— ナビをドロップダウン化
   ============================================================ */
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .header-contact-btn { display: inline-flex; }

  .global-nav { display: block !important; background: var(--c-bg); border-top: 1px solid var(--c-border); }
  .gnav { max-width: var(--maxw); margin: 0 auto; display: flex; justify-content: center; align-items: stretch; }
  .gnav > li { border-bottom: 0; }
  .gnav > li > a { padding: 16px 18px; color: var(--c-navy); font-size: 15px; font-weight: 700; position: relative; }
  /* ホバーはアクセント下線 */
  .gnav > li > a::before {
    content: ""; position: absolute; left: 18px; right: 18px; bottom: 8px;
    height: 2px; background: var(--c-accent);
    transform: scaleX(0); transform-origin: left; transition: transform .2s;
  }
  .gnav > li > a:hover { background: transparent; color: var(--c-primary); text-decoration: none; }
  .gnav > li > a:hover::before { transform: scaleX(1); }
  .has-dropdown { flex-wrap: nowrap; }
  .dropdown-toggle { display: none; }

  /* PCはホバーでドロップダウン展開（白カード＋影） */
  .has-dropdown > a::after { content: " ▾"; font-size: 11px; color: var(--c-text-sub); }
  .dropdown {
    display: block;
    position: absolute;
    top: 100%; left: 0;
    min-width: 260px;
    background: #fff;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-card);
    opacity: 0; visibility: hidden;
    transform: translateY(6px);
    transition: opacity .2s, transform .2s, visibility .2s;
    z-index: 50;
    overflow: hidden;
  }
  .has-dropdown:hover .dropdown,
  .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
  .has-dropdown.is-open .dropdown { display: block; }
  .dropdown li a { padding: 13px 18px; color: var(--c-navy); }
  .dropdown li a:hover { background: var(--c-bg-section); color: var(--c-primary); }

  /* --- PCメガメニュー: 4カラムパネル --- */
  .global-nav { position: relative; }
  .gnav > li.has-dropdown { position: static; }
  .dropdown--mega {
    display: flex;
    gap: 8px;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 0;
    width: min(960px, calc(100vw - 32px));
    padding: 20px 16px;
    border-radius: var(--radius);
  }
  .has-dropdown:hover .dropdown--mega,
  .has-dropdown:focus-within .dropdown--mega {
    transform: translateX(-50%) translateY(0);
  }
  .has-dropdown.is-open .dropdown--mega { display: flex; }
  .dropdown--mega .dropdown-group { flex: 1 1 0; min-width: 0; }
  .dropdown--mega .dropdown-group__title {
    padding: 0 12px 8px;
    margin-bottom: 4px;
    border-bottom: 2px solid var(--c-accent-pale);
    color: var(--c-navy);
    font-size: 13px;
  }
  .dropdown--mega .dropdown-group > ul li a {
    padding: 9px 12px;
    color: var(--c-text);
    font-size: 13px;
    border-radius: 6px;
  }
  .dropdown--mega .dropdown-group > ul li a:hover {
    background: var(--c-bg-section);
    color: var(--c-primary);
  }

  .gnav-cta { display: flex; align-items: center; padding: 8px 12px; }
  .gnav-cta .btn { width: auto; }

  .footer-cols { grid-template-columns: repeat(4, 1fr); }
  .card-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid--4 { grid-template-columns: repeat(4, 1fr); }
  .related-services .card-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-copy__title { font-size: 38px; }
}

/* ============================================================
   フッター
   ============================================================ */
.site-footer { background: var(--c-navy); color: #cbd5e1; margin-top: 0; font-size: 14px; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: var(--sp-6) 16px; }
.footer-cols { display: grid; grid-template-columns: 1fr; gap: 28px; }
.footer-heading { font-size: 14px; color: #fff; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.18); letter-spacing: .02em; }
.footer-heading a { color: #fff; }
.footer-list { list-style: none; }
.footer-list li { margin-bottom: 8px; }
.footer-list a { color: #cbd5e1; font-size: 13px; }
.footer-list a:hover { color: #fff; }
.footer-company { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.15); }
.footer-company-name { font-weight: 700; color: #fff; margin-bottom: 8px; }
.footer-company-info { font-size: 13px; line-height: 1.9; color: #cbd5e1; }
.footer-company-info a { color: #fff; }
.footer-copyright { margin-top: 24px; padding: 16px; font-size: 12px; color: #94a3b8; text-align: center; background: var(--c-navy-deep); border-radius: var(--radius); }

/* ==========================================================================
   リニューアル（index-f.html デザイン準拠）
   配色：白地 / インク #1A2032 / アクセント #006AE6 / グリーン #1A7A3C
   ========================================================================== */

/* ---- ヘッダー ---- */
.hd {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid #E2E8F0;
}
.hd__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; height: 62px; gap: 24px;
}
.hd__logo { display: flex; align-items: center; flex: 0 0 auto; text-decoration: none; }
.hd__logo img { height: 38px; width: auto; display: block; }
.hd__nav { display: none; flex: 1 1 auto; justify-content: center; gap: 2px; align-items: center; }
.hd__nav > a,
.hd__nav-item > a {
  padding: 8px 11px; border-radius: 6px;
  font-size: 14px; font-weight: 500; color: #3D4A60;
  transition: background .15s, color .15s; text-decoration: none;
  white-space: nowrap;
  display: flex; align-items: center; gap: 4px;
}
.hd__nav > a:hover,
.hd__nav-item > a:hover,
.hd__nav-item--has-drop:hover > a { background: #F5F7FA; color: #1A2032; text-decoration: none; }

/* サービスドロップダウン */
.hd__nav-item { position: relative; display: flex; align-items: center; }
.hd__nav-item--has-drop::after {
  content: ''; position: absolute;
  top: 100%; left: -16px; right: -16px; height: 14px;
}
.hd__nav-arrow { width: 10px; height: 6px; flex: 0 0 auto; transition: transform .2s; }
.hd__nav-item--has-drop:hover .hd__nav-arrow { transform: rotate(180deg); }

.hd__drop {
  position: absolute; top: calc(100% + 6px);
  left: 50%; transform: translateX(-50%) translateY(-6px);
  background: #fff;
  border: 1px solid #E7ECF3;
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(26,32,50,.12);
  width: 700px; overflow: hidden;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s, transform .2s, visibility 0s .2s;
  z-index: 200;
}
.hd__nav-item--has-drop:hover .hd__drop,
.hd__nav-item--has-drop:focus-within .hd__drop {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity .2s, transform .2s;
}
/* カテゴリ別ドロップダウン（受信・発信・IVR・業務支援を個別のナビ項目に） */
.hd__drop--single { width: max-content; padding: 20px; }
.hd__drop--wide { min-width: 480px; }
.hd__drop--narrow { min-width: 260px; }
/* リンクリスト */
.hd__drop-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.hd__drop-list--2col { display: grid; grid-template-columns: repeat(2, max-content); column-gap: 8px; }
.hd__drop-list a {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 10px 6px; border-bottom: 1px solid #EEF1F6;
  font-size: 14px; color: #3D4A60; text-decoration: none; line-height: 1.45;
  transition: background .12s, color .12s;
  white-space: nowrap;
}
.hd__drop-list a::after { content: '›'; color: #006AE6; font-size: 16px; line-height: 1; flex: 0 0 auto; }
.hd__drop-list a:hover { background: #F3F8FF; color: #005ACC; text-decoration: none; }
.hd__right { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.hd__btn {
  padding: 10px 20px; border-radius: 6px;
  background: #006AE6; color: #fff !important;
  font-size: 14px; font-weight: 700; transition: opacity .15s;
  display: none; text-decoration: none; align-items: center;
}
.hd__btn:hover { opacity: .85; text-decoration: none; }
.hd__burger {
  width: 40px; height: 40px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
  background: transparent; border: 0; cursor: pointer; padding: 0; flex: 0 0 auto;
}
.hd__burger span { width: 22px; height: 2px; background: #1A2032; border-radius: 2px; display: block; transition: .22s; }

/* SPドロワー */
.drawer {
  display: none; position: fixed; inset: 62px 0 0; background: #fff;
  z-index: 99; padding: 16px 24px 40px; overflow-y: auto;
  border-top: 1px solid #E2E8F0;
}
.drawer.is-open { display: block; }
.drawer ul { list-style: none; display: flex; flex-direction: column; }
.drawer li a {
  display: block; padding: 14px 0; font-size: 16px; font-weight: 500;
  color: #1A2032; border-bottom: 1px solid #E2E8F0; text-decoration: none;
}
.drawer li a:hover { color: #006AE6; text-decoration: none; }
.drawer__ext { display: flex; align-items: center; gap: 6px; }
.drawer__ext svg { flex: 0 0 auto; color: #6B7890; }

/* SPドロワー：サービス アコーディオン */
.drawer__sub-toggle {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 14px 0; font-size: 16px; font-weight: 500; color: #1A2032;
  background: transparent; border: 0; border-bottom: 1px solid #E2E8F0;
  cursor: pointer; font-family: inherit; text-align: left;
}
.drawer__sub-arrow { width: 12px; height: 8px; transition: transform .22s; flex: 0 0 auto; }
.drawer__sub-toggle[aria-expanded="true"] .drawer__sub-arrow { transform: rotate(180deg); }
.drawer__sub { display: none; padding: 4px 0 8px; }
.drawer__has-sub.is-open .drawer__sub { display: block; }
.drawer__sub-title {
  font-size: 13px; font-weight: 700; color: #006AE6;
  margin: 18px 0 4px; padding: 7px 12px;
  background: #EEF4FC; border-left: 3px solid #006AE6; border-radius: 4px;
}
.drawer__sub-title:first-child { margin-top: 8px; }
.drawer__sub ul { display: block; padding-left: 12px; }
.drawer__sub li a {
  padding: 10px 0; font-size: 15px; font-weight: 400; border-bottom: 1px solid #EEF2F7;
}
.drawer__sub ul li:last-child a { border-bottom: 0; }

.drawer__tel { margin-top: 24px; text-align: center; }
.drawer__tel a { font-size: 30px; font-weight: 700; color: #1A7A3C; text-decoration: none; display: block; }
.drawer__tel small { display: block; font-size: 12px; color: #6B7890; margin-top: 4px; }

@media (min-width: 1140px) {
  .hd__nav { display: flex; }
  .hd__btn { display: flex; }
  .hd__burger { display: none; }
  .drawer { display: none !important; }
}

/* ---- フッター ---- */
.ft { background: #F5F7FA; border-top: 1px solid #E2E8F0; padding: 56px 0 0; }
.ft__inner { max-width: 1040px; margin: 0 auto; padding: 0 24px; }
.ft__grid {
  display: grid; grid-template-columns: 1fr; gap: 28px;
  padding-bottom: 40px; border-bottom: 1px solid #E2E8F0;
}
.ft__col h3 {
  font-size: 12px; font-weight: 700; color: #1A2032; margin-bottom: 12px;
  letter-spacing: .04em; text-transform: uppercase;
}
.ft__col ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.ft__col li a { font-size: 13px; color: #6B7890; transition: color .15s; text-decoration: none; }
.ft__col li a:hover { color: #1A2032; text-decoration: none; }
.ft__company {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding: 24px 0; border-bottom: 1px solid #E2E8F0; font-size: 12.5px; color: #1A2032; line-height: 1.85;
}
.ft__company a { color: #1A2032; }
.ft__company a:hover { color: #006AE6; }
.ft__company-badge { flex: 0 0 auto; display: block; opacity: .9; transition: opacity .15s; }
.ft__company-badge:hover { opacity: 1; }
.ft__company-badge img { display: block; }
@media (max-width: 600px) {
  .ft__company-badge { display: none; }
}
.ft__copy { padding: 16px 0; font-size: 12px; color: #1A2032; text-align: center; }

@media (min-width: 600px) { .ft__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .ft__grid { grid-template-columns: repeat(4, 1fr); } }

/* モバイルCTAバー廃止・body余白解除 */
body { padding-bottom: 0 !important; }
.mobile-cta-bar { display: none !important; }

/* ---- セクション共通 ---- */
.sec { padding: 72px 0; }
.sec--bg { background: #F5F7FA; }
.sec__label {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: #006AE6; margin-bottom: 10px;
}
.sec__label::after { content: ""; flex: 0 0 24px; height: 1px; background: #006AE6; }
.sec__h2 {
  font-size: clamp(22px, 3vw, 32px); font-weight: 700;
  color: #1A2032; letter-spacing: -.01em; margin-bottom: 40px; line-height: 1.3;
}

/* ---- ヒーロー ---- */
.idx-hero {
  position: relative;
  padding: 88px 0 100px;
  min-height: 540px;
  overflow: hidden;
  background: #1A2032;
  display: flex; align-items: center;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
@media (max-width: 699px) {
  .hero__bg img { object-position: 70% center; }
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,20,40,.80) 0%, rgba(15,20,40,.50) 100%);
}
.hero__inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 0; width: 100%;
}
.hero__tag {
  display: inline-block; padding: 5px 14px;
  background: rgba(255,255,255,.15); color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  font-size: 12px; font-weight: 700; border-radius: 6px;
  letter-spacing: .04em; margin-bottom: 20px;
}
.hero__h1 {
  font-size: clamp(32px, 6vw, 58px); font-weight: 700; line-height: 1.22;
  color: #fff; letter-spacing: -.02em;
}
.hero__h1 span { color: #7DD3FC; }
.hero__lead {
  font-size: 16px; color: rgba(255,255,255,.88); line-height: 1.85;
  margin-top: 22px; max-width: 36em; word-break: keep-all; overflow-wrap: anywhere;
}
.hero__actions {
  display: flex; flex-direction: column; gap: 12px; margin-top: 36px;
}
.hero__tel {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 17px 32px; border-radius: 999px;
  background: #1A7A3C; color: #fff !important;
  font-size: 18px; font-weight: 700; letter-spacing: .01em;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
  transition: opacity .15s, box-shadow .15s, transform .15s; text-decoration: none;
}
.hero__tel:hover { opacity: .88; text-decoration: none; box-shadow: 0 10px 24px rgba(0,0,0,.22); transform: translateY(-1px); }
.hero__tel svg { width: 20px; height: 20px; flex: 0 0 auto; }
.hero__contact {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 28px; border-radius: 999px;
  background: rgba(255,255,255,.15); color: #fff !important;
  font-size: 15px; font-weight: 700;
  border: 1.5px solid rgba(255,255,255,.45); transition: background .15s, border-color .15s, transform .15s; text-decoration: none;
}
.hero__contact:hover { background: rgba(255,255,255,.25); border-color: rgba(255,255,255,.7); text-decoration: none; transform: translateY(-1px); }

/* 実績バー */
.hero__stats {
  display: grid; grid-template-columns: 1fr;
  gap: 1px; background: #E2E8F0; border: 1px solid #E2E8F0;
  border-radius: 6px; overflow: hidden;
}
.hero__stat {
  background: #F5F7FA; padding: 20px;
  display: flex; flex-direction: column; gap: 4px;
}
.hero__stat-num {
  font-size: 26px; font-weight: 700; color: #1A2032; line-height: 1; letter-spacing: -.03em;
}
.hero__stat-num b { color: #006AE6; font-style: normal; }
.hero__stat-label { font-size: 13px; font-weight: 700; color: #1A2032; line-height: 1.4; }
.hero__stat-desc { font-size: 12px; color: #6B7890; line-height: 1.65; margin-top: 4px; }

@media (min-width: 700px) {
  .hero__actions { flex-direction: row; flex-wrap: wrap; }
  .hero__stats { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .hero__text { max-width: 620px; }
  .hero__stats { flex: 0 0 300px; grid-template-columns: 1fr; }
  .hero__stat-num { font-size: 22px; }
}

/* ---- サービスグリッド ---- */
.svc-grid {
  list-style: none;
  display: grid; grid-template-columns: 1fr; gap: 22px;
}
.svc-item {
  background: #FFFFFF; padding: 0;
  display: flex; flex-direction: column;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.svc-item:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.svc-item__img { overflow: hidden; height: 160px; flex: 0 0 auto; background: #F0F4F8; }
.svc-item__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-item__body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.svc-item__tag {
  display: inline-block; padding: 3px 10px; border-radius: 999px;
  background: #EBF3FF; color: #006AE6;
  font-size: 11px; font-weight: 700; align-self: flex-start;
}
.svc-item__h3 { font-size: 16px; font-weight: 700; color: #1A2032; }
.svc-item__p { font-size: 13.5px; color: #6B7890; line-height: 1.8; }
.svc-item__links { list-style: none; display: flex; flex-direction: column; gap: 5px; margin-top: 4px; }
.svc-item__links a { font-size: 13px; font-weight: 500; color: #006AE6; text-decoration: none; }
.svc-item__links a::after { content: " →"; opacity: .6; }
.svc-item__links a:hover { text-decoration: underline; }

@media (min-width: 600px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .svc-grid { grid-template-columns: repeat(4, 1fr); } }

/* ---- お客様の声 ---- */
.voice-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.voice-card {
  background: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 6px;
  padding: 24px; display: flex; flex-direction: column; gap: 12px;
}
.voice-card__head { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.voice-card__industry {
  font-size: 12px; font-weight: 700; color: #006AE6;
  background: #EBF3FF; padding: 3px 10px; border-radius: 999px;
}
.voice-card__stars { color: #D97706; font-size: 13px; letter-spacing: 1px; }
.voice-card__q { font-size: 15px; font-weight: 700; color: #1A2032; line-height: 1.5; }
.voice-card__text { font-size: 13.5px; color: #6B7890; line-height: 1.8; }
.voice-card__name { font-size: 12px; color: #6B7890; margin-top: auto; }

@media (max-width: 599px) { .voice-card--hide-sp { display: none; } }
@media (min-width: 600px) { .voice-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .voice-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---- 選ばれる理由 ---- */
.why-list {
  list-style: none;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: #E2E8F0;
  border: 1px solid #E2E8F0; border-radius: 6px; overflow: hidden;
}
.why-item {
  background: #fff; padding: 24px 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.why-item__num {
  font-size: 28px; font-weight: 700; color: #006AE6;
  line-height: 1.1; letter-spacing: -.02em;
}
.why-item__num b { font-style: normal; }
.why-item__num small { font-size: 15px; font-weight: 500; letter-spacing: 0; }
.why-item__h3 { font-size: 14px; font-weight: 700; color: #1A2032; }
.why-item__p { font-size: 12.5px; color: #6B7890; line-height: 1.75; }

@media (min-width: 700px) {
  .why-list { grid-template-columns: repeat(4, 1fr); }
  .why-item { padding: 28px 22px; }
  .why-item__num { font-size: 32px; margin-bottom: 4px; }
  .why-item__h3 { font-size: 14px; }
  .why-item__p { font-size: 13px; }
}

/* ---- 料金概要 ---- */
.price-wrap { max-width: 480px; margin: 0 auto; }
.price-wrap--3col {
  max-width: 1040px; display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 700px) { .price-wrap--3col { grid-template-columns: repeat(3, 1fr); } }
.price-card {
  border: 1.5px solid #006AE6; border-radius: 6px;
  padding: 36px 32px; background: #FFFFFF;
}
.price-wrap--3col .price-card { padding: 28px 24px; text-align: center; }
.price-plan { font-size: 12px; font-weight: 700; color: #6B7890; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 10px; word-break: keep-all; }
.price-time { font-size: 13px; font-weight: 700; color: #006AE6; margin-bottom: 14px; word-break: keep-all; }
.price-amount { display: flex; align-items: baseline; justify-content: center; gap: 6px; flex-wrap: wrap; }
.price-num { font-size: 44px; font-weight: 700; color: #1A2032; letter-spacing: -.04em; line-height: 1; white-space: nowrap; }
.price-wrap--3col .price-num { font-size: 34px; }
.price-unit { font-size: 15px; color: #6B7890; font-weight: 500; white-space: nowrap; }
.price-features {
  list-style: none; max-width: 640px; margin: 0 auto 36px; padding: 0;
  display: grid; grid-template-columns: 1fr; gap: 10px;
}
@media (min-width: 600px) { .price-features { grid-template-columns: repeat(2, 1fr); } }
.price-features li {
  font-size: 14px; color: #3D4A60; padding-left: 20px; position: relative; line-height: 1.7;
}
.price-features li::before {
  content: ""; position: absolute; left: 0; top: 5px; width: 14px; height: 14px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23006AE6" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center/contain no-repeat;
}
.price-note { font-size: 12px; color: #6B7890; margin-top: 12px; text-align: center; line-height: 1.7; }
.price-more { text-align: center; margin-top: 24px; }

/* ---- FAQアコーディオン（トップページ用） ---- */
.faq-wrap { max-width: 740px; margin: 0 auto; }
.faq-top__item { border-bottom: 1px solid #E2E8F0; }
.faq-top__item:first-child { border-top: 1px solid #E2E8F0; }
.faq-top__q {
  display: flex; align-items: center; gap: 12px; width: 100%;
  padding: 20px 2px; background: transparent; border: 0; font: inherit;
  font-size: 15px; font-weight: 500; color: #1A2032; text-align: left; cursor: pointer;
  transition: color .15s;
}
.faq-top__q:hover { color: #006AE6; }
.faq-top__q-mark {
  flex: 0 0 auto; width: 24px; height: 24px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  background: #EBF3FF; color: #006AE6; font-size: 11px; font-weight: 700;
}
.faq-top__q-text { flex: 1; text-align: left; }
.faq-top__q-icon { flex: 0 0 auto; width: 16px; height: 16px; color: #6B7890; transition: transform .28s; }
.faq-top__item.is-open .faq-top__q-icon { transform: rotate(180deg); }
.faq-top__item.is-open .faq-top__q { color: #006AE6; }
.faq-top__a { max-height: 0; overflow: hidden; opacity: 0; transition: max-height .3s ease, opacity .28s ease; }
.faq-top__item.is-open .faq-top__a { max-height: 400px; opacity: 1; }
.faq-top__a-inner { padding: 0 0 22px 36px; font-size: 14px; color: #6B7890; line-height: 1.9; }
.faq-top__a-inner a { color: #006AE6; text-decoration: underline; }
.faq-more { text-align: center; margin-top: 28px; }
.faq-more a { font-size: 14px; font-weight: 700; color: #006AE6; text-decoration: none; }
.faq-more a:hover { opacity: .75; }

/* ============================================================
   FAQページ リニューアル（検索＋カテゴリタブ＋アコーディオン）
   .faq-controls / .faq-search / .faq-tabs / .faq-results / .faq-cat / .faq-q
   ============================================================ */
.faq-controls, .word-controls { max-width: 860px; margin: 0 auto 36px; }
.faq-search, .word-search { position: relative; margin-bottom: 18px; }
.faq-search__input, .word-search__input {
  width: 100%; padding: 14px 18px 14px 46px; font-size: 15px;
  border: 1px solid var(--c-border); border-radius: 999px; background: #fff;
  color: var(--c-text); font-family: inherit; transition: border-color .2s, box-shadow .2s;
}
.faq-search__input:focus, .word-search__input:focus { outline: none; border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(29,78,216,.12); }
.faq-search__icon, .word-search__icon {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px; color: var(--c-text-sub); pointer-events: none;
}
.faq-tabs, .word-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.faq-tab, .word-tab {
  display: inline-block; padding: 9px 18px; background: #fff;
  border: 1px solid var(--c-primary); border-radius: 999px; font-size: 14px;
  color: var(--c-primary); cursor: pointer; font-family: inherit;
  transition: background .2s, color .2s;
}
.faq-tab:hover, .word-tab:hover { background: var(--c-accent-pale); }
.faq-tab.is-active, .word-tab.is-active { background: var(--c-primary); color: #fff; }

.faq-results { max-width: 860px; margin: 0 auto; }
.faq-cat { margin-bottom: 40px; }
.faq-cat:last-child { margin-bottom: 0; }
.faq-cat__title {
  font-size: 18px; font-weight: 700; color: var(--c-navy);
  padding-bottom: 10px; margin-bottom: 18px; border-bottom: 2px solid var(--c-primary);
}
.faq-q {
  border-radius: var(--radius); margin-bottom: 14px; overflow: hidden;
  background: #fff; box-shadow: var(--shadow-card);
}
.faq-q__btn {
  display: flex; align-items: center; gap: 14px; width: 100%;
  padding: 18px 20px; background: transparent; border: 0; cursor: pointer;
  font-family: inherit; font-size: 16px; font-weight: 500; color: var(--c-text); text-align: left;
}
.faq-q__mark, .faq-q__a-mark {
  width: 28px; height: 28px; border-radius: 50%; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #fff;
}
.faq-q__mark { background: var(--c-accent); }
.faq-q__a-mark { background: var(--c-primary); }
.faq-q__text { flex: 1; }
.faq-q__icon { flex: 0 0 auto; width: 16px; height: 16px; color: var(--c-text-sub); transition: transform .28s; }
.faq-q.is-open .faq-q__icon { transform: rotate(180deg); }
.faq-q.is-open .faq-q__btn { color: var(--c-primary); }
.faq-q__a { max-height: 0; overflow: hidden; opacity: 0; transition: max-height .3s ease, opacity .28s ease; }
.faq-q.is-open .faq-q__a { max-height: 800px; opacity: 1; }
.faq-q__a-inner { display: flex; gap: 14px; padding: 0 20px 20px; }
.faq-q__a-body { font-size: 14px; line-height: 1.9; color: var(--c-text-sub); padding-top: 3px; }
.faq-q__a-body > *:first-child { margin-top: 0; }
.faq-q__a-body a { color: var(--c-link); text-decoration: underline; }
.faq-q__note { display: block; margin-top: 8px; font-size: 12px; color: var(--c-error); }
.faq-noresult, .word-noresult { text-align: center; color: var(--c-text-sub); padding: 48px 0; font-size: 15px; }

/* ---- 用語辞書（glossary.html） ---- */
.word-results { max-width: 860px; margin: 0 auto; }
.word-cat { margin-bottom: 40px; }
.word-cat:last-child { margin-bottom: 0; }
.word-cat__title {
  font-size: 18px; font-weight: 700; color: var(--c-navy);
  padding-bottom: 10px; margin-bottom: 18px; border-bottom: 2px solid var(--c-primary);
}
.word-list { margin: 0; display: flex; flex-direction: column; gap: 10px; }
.word-item {
  border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-card);
  padding: 16px 20px; margin: 0;
}
.word-item__term { font-size: 15px; font-weight: 700; color: var(--c-navy); margin: 0 0 6px; }
.word-item__def { font-size: 14px; line-height: 1.8; color: var(--c-text-sub); margin: 0; }

@media (max-width: 768px) {
  .faq-q__btn { font-size: 15px; padding: 16px; gap: 10px; }
  .faq-q__a-inner { padding: 0 16px 18px; gap: 10px; }
}

/* ---- お知らせ ---- */
.news-list { list-style: none; max-width: 700px; margin: 0 auto; }
.news-item {
  display: grid; grid-template-columns: auto 1fr; gap: 16px 24px;
  padding: 18px 0; border-bottom: 1px solid #E2E8F0; align-items: baseline;
}
.news-item:first-child { border-top: 1px solid #E2E8F0; }
.news-date { font-size: 12px; font-weight: 700; color: #006AE6; white-space: nowrap; letter-spacing: .04em; }
.news-text { font-size: 14px; color: #3D4A60; line-height: 1.75; }
.news-text a { color: #006AE6; text-decoration: underline; }

/* ---- CTAバンド（トップページ版） ---- */
.idx-cta {
  background: #1A2032; padding: 72px 24px; text-align: center;
}
.idx-cta__h2 { font-size: clamp(20px, 3vw, 30px); font-weight: 700; color: #fff; margin-bottom: 10px; letter-spacing: -.01em; line-height: 1.4; }
.idx-cta__lead { font-size: 15px; color: rgba(255,255,255,.65); margin-bottom: 32px; }
.idx-cta__tel {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-size: clamp(26px, 4vw, 38px); font-weight: 700; color: #fff !important; letter-spacing: -.01em; margin-bottom: 8px; text-decoration: none;
}
.idx-cta__hours { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 28px; }
.idx-cta__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 36px; border-radius: 6px;
  background: #fff; color: #1A2032 !important;
  font-size: 15px; font-weight: 700; transition: opacity .15s; text-decoration: none;
}
.idx-cta__btn:hover { opacity: .88; text-decoration: none; }
