@charset "UTF-8";
/* ============================================================
   Prime Partners — News・コラム（一覧・記事）
   新トップ（assets/group-top/css/style.css）と同じ言語:
   白基調 × チャコール × #34718B / 角丸ゼロ / 影なし / 1px罫線 / 控えめモーション
   共通トークン（--accent 等）と .pp-header / .pp-footer / .btn / .sec-* は style.css が持つ。
   このファイルはコラム固有（.col-*）と、記事本文（.col-body）の体裁だけを持つ。
============================================================ */

:root {
  --col-body-size: 16px;
  --col-max: 1240px;
  --col-side-w: 312px;
  --tone-teal: #34718B;
  --tone-navy: #2d4a5e;
  --tone-slate: #5b6f7a;
  --tone-moss: #4f7a63;
  --tone-sand: #9a7b4f;
  --tone-plum: #6b5b7a;
  --tone-news: #34718B;
  --tone-gray: #7a868c;
}

/* ---------- ヘッダー：ヒーローが無いので最初からインク配色・白帯 ---------- */
.col-page .pp-header {
  background: var(--white);
  border-bottom-color: transparent; /* 初期表示は線なしで本文とシームレスに。スクロール後だけ style.css の罫線が出る */
}
.col-page .pp-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-bottom-color: var(--line);
}
.col-page .pp-header .logo-white { opacity: 0; }
.col-page .pp-header .logo-color { opacity: 1; }
.col-page .global-nav > ul > li > a { color: var(--ink); }
.col-page .menu-toggle span { background: var(--ink); }
.col-page .header-tel-num { color: var(--ink); }
.col-page .header-tel-num:hover { color: var(--accent); }
.col-page .header-tel-note { color: var(--text-sub); }
.col-page .skip-link { position: absolute; left: -9999px; top: 0; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.col-page .skip-link:focus { left: 8px; top: 8px; z-index: 1000; width: auto; height: auto; overflow: visible; clip: auto; background: var(--white); color: var(--ink); padding: 8px 12px; border: 1px solid var(--ink); }

/* 追加CSS（wp-custom-css）の html,body{overflow-x:hidden} は position:sticky を殺す。
   clip は横あふれを隠しつつスクロールコンテナにならない */
html:has(body.col-page), body.col-page { overflow-x: clip !important; }

/* 追加CSSを外した分、reCAPTCHA バッジの非表示（本番の追加CSSと同じ扱い）はここで持つ */
.col-page .grecaptcha-badge { visibility: hidden; }

/* Elementor のCSSは読まないので、フッター側に出るポップアップの器は必ず隠す */
.elementor-location-popup { display: none !important; }

.col-main { padding-top: 92px; }
.section-sm { padding: clamp(48px, 6vw, 80px) 0; }
.col-page .wrapper { max-width: var(--col-max); }

/* ---------- ボタン（コラム固有。style.css の .btn と同じ骨格） ---------- */
.col-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-width: 200px; padding: 14px 26px;
  border: 1px solid var(--line-strong);
  font-size: 14px; font-weight: 500; letter-spacing: 0.1em; color: var(--ink);
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.col-btn:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }
.col-btn-accent { background: var(--accent); border-color: var(--accent); color: var(--white); }
.col-btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: var(--white); }
.col-btn-arrow { font-size: 13px; transition: transform var(--dur) var(--ease); }
.col-btn:hover .col-btn-arrow { transform: translateX(4px); }

/* ---------- パンくず ---------- */
.col-breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 0; font-size: 11.5px; letter-spacing: 0.06em; color: var(--text-sub); }
.col-breadcrumb li { display: inline-flex; align-items: center; min-width: 0; }
.col-breadcrumb li + li::before { content: "/"; margin: 0 10px; color: var(--line-strong); }
.col-breadcrumb a { color: var(--text-sub); transition: color var(--dur) var(--ease); }
.col-breadcrumb a:hover { color: var(--accent); }
.col-breadcrumb li[aria-current] { color: var(--text-sub); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 60vw; display: block; }

/* ---------- カテゴリチップ・日付 ---------- */
.col-cat {
  display: inline-block; padding: 3px 10px;
  border: 1px solid var(--line-strong);
  font-size: 10.5px; letter-spacing: 0.08em; color: var(--text-sub); white-space: nowrap; line-height: 1.6;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
a.col-cat:hover { color: var(--accent); border-color: var(--accent); }
.col-cat-news { border-color: var(--accent); color: var(--accent); }
.col-cat-on-photo { border-color: rgba(255, 255, 255, 0.7); color: var(--white); background: rgba(20, 37, 45, 0.25); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.col-date-on-photo { color: rgba(255, 255, 255, 0.85); }
.col-date { font-family: var(--en); font-weight: 400; font-size: 12.5px; letter-spacing: 0.08em; color: var(--text-sub); }

/* ============================================================
   一覧
============================================================ */
.col-hero { padding: clamp(28px, 4vw, 44px) 0 clamp(28px, 4vw, 40px); }
.col-hero .col-breadcrumb { margin-top: 22px; }
.col-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 380px); gap: 32px; align-items: end; }
.col-hero .sec-head { margin-bottom: 0; }
.col-hero .sec-title { font-size: clamp(26px, 3.2vw, 34px); }
.col-hero .sec-lead { margin-top: 16px; font-size: 14px; color: var(--text-sub); }

.col-search { display: flex; border: 1px solid var(--line-strong); background: var(--white); }
.col-search-input {
  flex: 1 1 auto; min-width: 0; padding: 13px 16px;
  border: 0; background: transparent; font: inherit; font-size: 14px; color: var(--ink); outline: none;
}
.col-search-input::placeholder { color: var(--text-sub); opacity: 0.8; }
.col-search-btn {
  flex: 0 0 52px; display: inline-flex; align-items: center; justify-content: center;
  border-left: 1px solid var(--line-strong); color: var(--ink);
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.col-search-btn svg { width: 18px; height: 18px; }
.col-search-btn:hover { background: var(--accent); color: var(--white); }
.col-search:focus-within { border-color: var(--accent); }

/* カテゴリの絞り込み: 文字のタブ＋件数。現在地はアクセントの下線。
   PCは折り返し、タブレット・スマホは横スクロール1行でヘッダー下に追従（端はフェードで続きを示す） */
.col-filter { position: relative; z-index: 20; background: var(--white); }
.col-filter-nav { display: flex; align-items: flex-start; gap: 28px; border-bottom: 1px solid var(--line); }
.col-filter-label { flex: 0 0 auto; padding-top: 19px; font-family: var(--en); font-weight: 500; font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent); }
.col-filter-scroll { position: relative; flex: 1 1 auto; min-width: 0; }
.col-filter-list { display: flex; flex-wrap: wrap; gap: 0 26px; }
.col-filter-list a {
  position: relative; display: inline-flex; align-items: baseline; gap: 6px;
  padding: 16px 0 15px;
  font-size: 13.5px; letter-spacing: 0.06em; color: var(--text-sub); white-space: nowrap;
  transition: color var(--dur) var(--ease);
}
.col-filter-list a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left center;
  transition: transform var(--dur) var(--ease);
}
.col-filter-list a:hover { color: var(--ink); }
.col-filter-list a:hover::after { transform: scaleX(1); background: var(--line-strong); }
.col-filter-list a[aria-current] { color: var(--ink); font-weight: 500; }
.col-filter-list a[aria-current]::after { transform: scaleX(1); background: var(--accent); }
.col-filter-list a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.col-filter-count { font-family: var(--en); font-size: 11px; letter-spacing: 0.02em; color: var(--text-sub); opacity: 0.75; font-variant-numeric: tabular-nums; }
.col-filter-list a[aria-current] .col-filter-count { color: var(--accent); opacity: 1; }

/* グリッド・カード（白地。右上に小さなサムネイル、左にカテゴリ・タイトル・日付） */
.col-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2vw, 24px); }
.col-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.col-card { min-width: 0; }
.col-card-link {
  display: grid; grid-template-columns: minmax(0, 1fr) 92px; gap: 0; align-items: stretch;
  height: 100%; min-height: 176px;
  background: var(--white); border: 1px solid var(--line);
  transition: border-color var(--dur) var(--ease);
}
.col-card-link:hover { border-color: var(--accent); }
/* 右側に縦長で接地する写真（上下・右いっぱい。切り取りでよい） */
.col-card-thumb { order: 2; display: block; overflow: hidden; background: var(--bg-alt); }
.col-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.col-card-link:hover .col-card-thumb img { transform: scale(1.04); }
.col-card-body { order: 1; min-width: 0; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; padding: 20px 18px 18px 20px; }
.col-card-title { align-self: stretch; }
.col-card-title {
  font-weight: 500; font-size: 15px; line-height: 1.7; letter-spacing: 0.04em; color: var(--ink);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  transition: color var(--dur) var(--ease);
}
.col-card-link:hover .col-card-title { color: var(--accent); }
.col-card .col-date { margin-top: auto; }
.col-grid-4 .col-card-link { grid-template-columns: 1fr; min-height: 0; }
.col-grid-4 .col-card-thumb { order: 0; }
.col-grid-4 .col-card-thumb img { height: auto; aspect-ratio: 16 / 9; }
.col-grid-4 .col-card-title { font-size: 14px; }

/* ページ送り */
.col-pagination { margin-top: clamp(48px, 6vw, 72px); }
.col-pagination ul { display: flex; justify-content: center; align-items: center; gap: 8px; flex-wrap: wrap; }
.col-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; height: 42px; padding: 0 8px;
  border: 1px solid var(--line-strong); border-radius: 50%;
  font-family: var(--en); font-size: 13px; letter-spacing: 0.04em; color: var(--ink);
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.col-pagination a.page-numbers:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }
.col-pagination .page-numbers.current { background: var(--accent); border-color: var(--accent); color: var(--white); }
.col-pagination .page-numbers.dots { border: 0; min-width: 24px; color: var(--text-sub); }

.col-empty { text-align: center; padding: clamp(40px, 6vw, 72px) 0; }
.col-empty-title { font-family: var(--serif); font-size: 20px; color: var(--ink); margin-bottom: 12px; }
.col-empty p + p { margin-bottom: 28px; font-size: 14px; color: var(--text-sub); }

/* ============================================================
   記事
============================================================ */
.col-article-head { padding: clamp(24px, 4vw, 44px) 0 0; }
.col-article-head-inner { max-width: 880px; }
.col-article-title {
  margin: 14px 0 18px;
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(23px, 2.8vw, 32px); line-height: 1.65; letter-spacing: 0.05em; color: var(--ink);
}

.col-layout { display: grid; grid-template-columns: minmax(0, 1fr) var(--col-side-w); gap: clamp(40px, 5vw, 72px); padding: clamp(28px, 3.5vw, 48px) 0 clamp(48px, 6vw, 80px); }
.col-body-wrap { min-width: 0; max-width: 780px; }

/* ---------- サイドバー（追従: CTAカード・士業AI） ---------- */
.col-side { min-width: 0; }
.col-side-sticky {
  position: sticky; top: 88px; display: grid; gap: 20px; align-content: start;
  max-height: calc(100vh - 104px); overflow-y: auto; scrollbar-width: none;
}
.col-side-sticky::-webkit-scrollbar { display: none; }

/* ---------- CTA（サイド／記事末尾）: ブロック全体が1つのボタン。内側に区切り線を引かない ---------- */
.col-cta {
  display: grid; align-items: center;
  border: 1px solid var(--accent); background: var(--white); color: var(--ink);
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.col-cta:hover, .col-cta:focus-visible { background: rgba(52, 113, 139, 0.06); border-color: var(--accent-dark); }
.col-cta:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.col-cta-media { display: block; min-width: 0; }
.col-cta-media img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: contain; display: block; outline: 1px solid var(--line); }
.col-cta-text { display: grid; gap: 6px; min-width: 0; text-align: left; }
.col-cta-en { font-family: var(--en); font-weight: 500; font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); }
.col-cta-title { font-family: var(--serif); font-weight: 500; line-height: 1.6; letter-spacing: 0.04em; color: var(--ink); }
.col-cta-action {
  display: inline-flex; align-items: center; gap: 10px; white-space: nowrap;
  font-size: 13.5px; font-weight: 500; letter-spacing: 0.1em; color: var(--accent);
  transition: color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.col-cta-arrow { display: inline-block; transition: transform var(--dur) var(--ease); }
.col-cta:hover .col-cta-action { color: var(--accent-dark); }
.col-cta:hover .col-cta-arrow { transform: translateX(6px); }

/* 共通のボタン（塗り。ブロック全体がリンクなので見た目だけのボタン） */
.col-cta-action {
  justify-content: center; padding: 14px 22px;
  background: var(--accent); border: 1px solid var(--accent); color: var(--white);
  font-size: 14px; letter-spacing: 0.1em;
}
.col-cta:hover .col-cta-action { background: var(--accent-dark); border-color: var(--accent-dark); color: var(--white); }

/* 記事末尾: 左に画像（全体表示）、右に文言 → その下にボタン */
.col-cta-end {
  grid-template-columns: minmax(0, 36%) minmax(0, 1fr);
  grid-template-areas: "media text" "media action";
  align-items: start;
  gap: 16px clamp(20px, 3vw, 32px);
  margin: clamp(48px, 6vw, 72px) 0 0; padding: clamp(20px, 3vw, 28px);
}
.col-cta-end .col-cta-media { grid-area: media; align-self: center; }
.col-cta-end .col-cta-text { grid-area: text; gap: 8px; }
.col-cta-end .col-cta-title { font-size: clamp(17px, 2vw, 20px); line-height: 1.6; }
.col-cta-end .col-cta-action { grid-area: action; justify-self: start; min-width: 240px; }

/* 画像を持たない種別（汎用の問い合わせ）: 文言＋一言＋ボタンだけで組む */
.col-cta-noimg .col-cta-lead { font-size: 13px; line-height: 1.85; color: var(--text-sub); }
.col-cta-end.col-cta-noimg {
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "text action";
  align-items: center;
  gap: 16px clamp(20px, 3vw, 40px);
  padding: clamp(24px, 3.5vw, 36px) clamp(20px, 3vw, 32px);
  border-width: 1px 1px 1px 3px;
}
.col-cta-end.col-cta-noimg .col-cta-title { font-size: clamp(18px, 2.1vw, 22px); }
.col-cta-end.col-cta-noimg .col-cta-action { justify-self: end; align-self: center; }

/* サイド（追従）: 画像を横いっぱいに、文言、横いっぱいのボタン */
.col-cta-side { grid-template-columns: 1fr; gap: 14px; padding: 16px 16px 18px; }
.col-cta-side .col-cta-title { font-size: 16.5px; line-height: 1.55; }
.col-cta-side .col-cta-action { width: 100%; margin-top: 2px; }

/* 目次（本文の先頭。PCは開いた状態、スマホは畳んだ状態で始まる） */
.col-toc { background: var(--bg-alt); margin-bottom: 32px; }
.col-toc summary {
  display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; cursor: pointer; list-style: none;
  font-family: var(--en); font-weight: 500; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent);
}
.col-toc summary::-webkit-details-marker { display: none; }
.col-toc summary > span:first-child { display: inline-flex; align-items: center; gap: 12px; }
.col-toc summary > span:first-child::before { content: ""; width: 24px; height: 1px; background: var(--accent); }
.col-toc-chevron { width: 8px; height: 8px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); transform: rotate(45deg); transition: transform var(--dur) var(--ease); }
.col-toc[open] .col-toc-chevron { transform: rotate(225deg); }
.col-toc-list { padding: 0 18px 12px; }
.col-toc-list a {
  display: block; padding: 9px 0 9px 12px; border-left: 2px solid transparent;
  font-size: 13px; line-height: 1.65; letter-spacing: 0.03em; color: var(--text);
  transition: color var(--dur) var(--ease);
}
.col-toc-list a:hover { color: var(--accent); }
.col-toc-l3 a { padding-left: 24px; font-size: 12.5px; color: var(--text-sub); }
.col-toc-l3 a::before { content: "– "; }

/* ---------- 本文 ---------- */
.col-body { font-size: var(--col-body-size); line-height: 2; letter-spacing: 0.03em; color: var(--text); word-break: normal; overflow-wrap: anywhere; }
.col-body > * + * { margin-top: 1.4em; }
.col-body p { text-align: left; }
.col-body strong { font-weight: 700; color: var(--ink); }
.col-body a:not(.ppc-cta-01):not(.ppc-cta-02):not(.colcard):not(.ref-chip) { color: var(--accent); border-bottom: 1px solid rgba(52, 113, 139, 0.4); transition: opacity var(--dur) var(--ease); }
.col-body a:not(.ppc-cta-01):not(.ppc-cta-02):not(.colcard):not(.ref-chip):hover { opacity: 0.65; }
.col-body img { max-width: 100%; height: auto; display: block; margin: 1.6em auto; }
.col-body blockquote { margin: 1.8em 0; padding: 4px 0 4px 22px; border-left: 1px solid var(--accent); font-family: var(--serif); color: var(--ink); }

.col-body h2 {
  margin-top: 2.6em; padding-bottom: 14px; position: relative;
  font-family: var(--serif); font-weight: 500; font-size: clamp(20px, 2.2vw, 24px); line-height: 1.6; letter-spacing: 0.05em; color: var(--ink);
}
.col-body h2::after { content: ""; position: absolute; left: 0; bottom: 0; width: 40px; height: 2px; background: var(--accent); }
.col-body h3 {
  margin-top: 2.2em; padding-left: 14px; border-left: 2px solid var(--accent);
  font-weight: 600; font-size: clamp(17px, 1.7vw, 19px); line-height: 1.6; letter-spacing: 0.04em; color: var(--ink);
}
.col-body h4 { margin-top: 1.8em; font-weight: 600; font-size: 16px; color: var(--ink); }
.col-body h2 + *, .col-body h3 + *, .col-body h4 + * { margin-top: 1em; }

.col-body ul, .col-body ol { padding-left: 1.5em; }
.col-body ul { list-style: none; padding-left: 0; }
.col-body ul > li { position: relative; padding-left: 1.3em; }
.col-body ul > li::before { content: ""; position: absolute; left: 0; top: 0.95em; width: 8px; height: 1px; background: var(--accent); }
.col-body ol { list-style: decimal; }
.col-body li + li { margin-top: 0.4em; }
.col-body li, .col-body li a { text-align: left; }

/* 表（型A: 左列見出し／型B: 1行目見出し／型C: 仕訳）— docs/blog-article-elementor.css を新デザインで移植 */
.col-body table { width: 100% !important; max-width: 100% !important; height: auto !important; border-collapse: collapse; table-layout: auto; font-size: 14.5px; line-height: 1.75; border: 1px solid var(--line-strong); }
.col-body table th, .col-body table td { height: auto !important; padding: 12px 14px; border: 1px solid var(--line-strong); vertical-align: middle; }
.col-body table th { font-weight: 700; background: var(--accent) !important; color: var(--white); }
.col-body table thead th { text-align: center; white-space: nowrap; }
.col-body table tbody th { text-align: left; white-space: normal; min-width: 7.5em; }
.col-body table tbody > tr:nth-child(odd) > td { background: transparent !important; }
.col-body table tbody tr:hover > td { background: transparent !important; }
.col-body table.journal thead th { text-align: center; }
.col-body table.journal td:nth-child(1), .col-body table.journal td:nth-child(3) { text-align: left; white-space: normal; }
.col-body table.journal td:nth-child(2), .col-body table.journal td:nth-child(4) { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }
.col-body table.journal th:nth-child(2), .col-body table.journal td:nth-child(2) { border-right: 2px solid var(--accent); }
.col-body table.journal td:empty::after { content: ""; display: inline-block; }
.col-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.col-table-scroll > table { min-width: 560px; }

/* 計算式ブロック */
.col-body .formula {
  display: block; margin: 1.4em 0; padding: 14px 18px;
  background: var(--bg-alt); border-left: 2px solid var(--accent);
  font-size: 15px; line-height: 1.9; word-break: keep-all; overflow-wrap: anywhere; text-align: left;
}

/* 出典チップ（旧記事のみ） */
.col-body .ref-chip {
  background: #eef4f6; color: var(--accent) !important; font-size: 0.82em; line-height: 1.7;
  padding: 0.08em 0.6em; margin: 0 0.15em; text-decoration: none !important; border-radius: 0.6em; white-space: normal;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}

/* コラムカード（関連コラムへの内部リンク） */
.col-body .colcard {
  display: flex; align-items: center; gap: 0.75em; width: 100%; max-width: 680px; margin: 1.6em 0;
  padding: 14px 18px; background: var(--white) !important; border: 1px solid var(--line-strong);
  text-decoration: none !important; color: var(--ink) !important;
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.col-body .colcard:hover { border-color: var(--accent); background: var(--bg-alt) !important; }
.col-body .colcard__label { flex: 0 0 auto; font-size: 10.5px; font-weight: 500; letter-spacing: 0.08em; color: var(--accent) !important; border: 1px solid var(--accent); padding: 2px 8px; white-space: nowrap; }
.col-body .colcard__title { flex: 1 1 auto; font-size: 14px; font-weight: 500; line-height: 1.6; color: var(--ink) !important; }
.col-body .colcard__arrow { flex: 0 0 auto; color: var(--accent) !important; font-size: 1em; line-height: 1; }

/* 本文中のCTA（Code Snippets の [ppc-cta-01]/[ppc-cta-02]。構造はそのまま、見た目だけ新デザインへ） */
.col-body .ppc-cta-01 {
  display: flex; align-items: stretch; width: 100%; max-width: 100%; margin: 2.4em 0;
  background: var(--accent); border-radius: 0; overflow: hidden; box-shadow: none;
  text-decoration: none !important; color: var(--white) !important; border-bottom: 0;
  transition: background-color var(--dur) var(--ease); transform: none;
}
.col-body .ppc-cta-01:hover { background: var(--accent-dark); transform: none; box-shadow: none; }
.col-body .ppc-cta-01__media { order: 2; flex: 0 0 34%; position: relative; }
.col-body .ppc-cta-01__media img { display: block; width: 100%; height: 100%; object-fit: cover; margin: 0; min-height: 0; }
.col-body .ppc-cta-01__body { order: 1; flex: 1 1 66%; display: flex; flex-direction: column; justify-content: center; gap: 0.45em; padding: 26px 28px; text-align: left; }
.col-body .ppc-cta-01__lead { color: var(--white) !important; font-family: var(--serif); font-size: 17px; font-weight: 500; line-height: 1.55; letter-spacing: 0.04em; }
.col-body .ppc-cta-01__sub { color: rgba(255, 255, 255, 0.8) !important; font-size: 12px; letter-spacing: 0.06em; }
.col-body .ppc-cta-01__btn {
  display: inline-flex; align-items: center; align-self: flex-start; gap: 0.5em; margin-top: 0.6em; padding: 11px 20px;
  background: var(--white) !important; color: var(--ink) !important; font-size: 13.5px; font-weight: 500; letter-spacing: 0.08em; border-radius: 0;
}
.col-body .ppc-cta-01__arrow { font-size: 0.8em; line-height: 1; }
.col-body .ppc-cta-02 {
  display: flex; align-items: center; justify-content: center; gap: 0.6em; width: 100%; max-width: 100%; margin: 2em 0; padding: 17px 24px;
  background: var(--accent) !important; border-radius: 0; box-shadow: none; text-decoration: none !important; border-bottom: 0;
  color: var(--white) !important; font-size: 15px; font-weight: 500; letter-spacing: 0.08em;
  transition: background-color var(--dur) var(--ease); transform: none;
}
.col-body .ppc-cta-02:hover { background: var(--accent-dark) !important; transform: none; box-shadow: none; }
.col-body .ppc-cta-02__text, .col-body .ppc-cta-02__arrow { color: var(--white) !important; }

/* ---------- 免責（本文の末尾に小さく） ---------- */
.col-disclaimer { margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 12px; line-height: 1.9; color: var(--text-sub); }

/* ---------- 事務所紹介（Office）: 記事とは別の全幅帯 ---------- */
.col-office-band { padding: clamp(64px, 8vw, 112px) 0; background: var(--white); border-top: 1px solid var(--line); }
.col-office-head { display: grid; gap: 14px; max-width: 720px; margin-bottom: clamp(28px, 4vw, 44px); }
.col-office-head .sec-label { margin-bottom: 0; }
.col-office-title { font-family: var(--serif); font-weight: 500; font-size: clamp(22px, 2.6vw, 30px); line-height: 1.5; letter-spacing: 0.06em; color: var(--ink); }
.col-office-lead { font-size: 14px; line-height: 1.9; color: var(--text-sub); }
.col-office-photos { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: clamp(8px, 1.2vw, 16px); }
.col-office-photos li { overflow: hidden; background: var(--bg-alt); }
.col-office-photos img { display: block; width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.8s var(--ease); }
.col-office-photos li:hover img { transform: scale(1.03); }
.col-office-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: clamp(28px, 4vw, 56px); margin-top: clamp(28px, 4vw, 48px); align-items: stretch; }
.col-office-table { border-top: 1px solid var(--line); }
.col-office-table div { display: grid; grid-template-columns: 7.5em minmax(0, 1fr); gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 14px; line-height: 1.8; }
.col-office-table dt { font-weight: 500; letter-spacing: 0.08em; color: var(--ink); }
.col-office-table dd { color: var(--text); }
.col-office-table a { color: var(--accent); }
.col-office-hours { font-size: 12.5px; color: var(--text-sub); }
.col-office-links { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px; margin-top: 28px; }
.col-office-links .text-link { font-size: 13px; }
.col-office-map { position: relative; min-height: 320px; background: var(--bg-alt); border: 1px solid var(--line); }
.col-office-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }

/* ---------- 前後の記事 ---------- */
.col-adjacent { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 32px; }
.col-adjacent-item { display: block; padding: 18px 20px; border: 1px solid var(--line); transition: border-color var(--dur) var(--ease); }
.col-adjacent-item:hover { border-color: var(--accent); }
.col-adjacent-next { text-align: right; }
.col-adjacent-label { display: block; font-size: 10.5px; letter-spacing: 0.14em; color: var(--accent); margin-bottom: 6px; }
.col-adjacent-title { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-size: 13px; line-height: 1.7; color: var(--ink); }

/* ---------- 関連記事 ---------- */
.col-related .sec-title { font-size: clamp(22px, 2.6vw, 28px); }

/* ---------- スマホ下部の追従CTAバー ---------- */
.col-sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; align-items: center; gap: 12px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  transform: translateY(105%); transition: transform 0.35s var(--ease);
}
.col-sticky-bar.is-visible { transform: translateY(0); }
.col-sticky-bar-text { flex: 1 1 auto; min-width: 0; font-size: 12.5px; font-weight: 500; letter-spacing: 0.04em; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.col-sticky-bar-btn {
  flex: 0 0 auto; display: inline-flex; align-items: center; gap: 8px; padding: 12px 18px;
  background: var(--accent); color: var(--white); font-size: 13px; font-weight: 500; letter-spacing: 0.08em;
}
.col-sticky-bar-btn:hover { background: var(--accent-dark); }
body.col-bar-visible .pp-footer { padding-bottom: 96px; }

/* ============================================================
   レスポンシブ
============================================================ */
@media (max-width: 1100px) {
  :root { --col-side-w: 280px; }
}
@media (max-width: 1023px) {
  .col-layout { grid-template-columns: 1fr; gap: 40px; }
  .col-body-wrap { max-width: none; }
  .col-side-sticky { position: static; max-height: none; overflow: visible; grid-template-columns: 1fr; align-items: start; }
  .col-cta-side { max-width: 520px; }
  .col-sticky-bar { display: flex; }
  /* カテゴリ: 横スクロール1行。ヘッダー（スクロール後 64px）の下に追従 */
  .col-filter { position: sticky; top: 64px; }
  .col-filter .wrapper { padding-left: 0; padding-right: 0; }
  .col-filter-label { display: none; }
  .col-filter-nav { gap: 0; }
  .col-filter-scroll::after {
    content: ""; position: absolute; top: 0; right: 0; bottom: 1px; width: 36px; pointer-events: none;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), var(--white));
  }
  .col-filter-list {
    flex-wrap: nowrap; gap: 0 22px; padding: 0 40px 0 clamp(24px, 5vw, 60px);
    overflow-x: auto; overscroll-behavior-x: contain; -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity; scroll-padding: 0 clamp(24px, 5vw, 60px); scrollbar-width: none;
  }
  .col-filter-list::-webkit-scrollbar { display: none; }
  .col-filter-list li { scroll-snap-align: start; }
  .col-filter-list a { padding: 15px 0 14px; font-size: 13.5px; }
  .col-office-grid { grid-template-columns: 1fr; }
  .col-office-map { min-height: 0; aspect-ratio: 4 / 3; }
  .col-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .col-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  .col-main { padding-top: 92px; }
  .col-hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .col-office-photos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .col-office-photos li:first-child { grid-column: 1 / -1; }
  .col-office-photos li:first-child img { aspect-ratio: 16 / 9; }
  .col-office-table div { grid-template-columns: 6.5em minmax(0, 1fr); gap: 12px; padding: 14px 0; font-size: 13.5px; }
  .col-office-links .col-btn { width: 100%; }
  .col-side-sticky { grid-template-columns: 1fr; }
  .col-cta-end { grid-template-columns: 1fr; grid-template-areas: "media" "text" "action"; gap: 14px; padding: 18px; }
  .col-cta-end.col-cta-noimg { grid-template-columns: 1fr; grid-template-areas: "text" "action"; gap: 16px; padding: 22px 18px; }
  .col-cta-end.col-cta-noimg .col-cta-action { justify-self: stretch; }
  .col-cta-end .col-cta-action { width: 100%; min-width: 0; }
  .col-adjacent { grid-template-columns: 1fr; }
  .col-adjacent-next { text-align: left; }
  .col-body { font-size: 15.5px; line-height: 1.95; }
  .col-body table { font-size: 13.5px; }
  .col-body table th, .col-body table td { padding: 9px 10px; }
  .col-body .ppc-cta-01 { flex-direction: column; }
  .col-body .ppc-cta-01__media { order: 0; flex: none; }
  .col-body .ppc-cta-01__media img { height: 150px; }
  .col-body .ppc-cta-01__body { padding: 22px 20px 24px; }
}
@media (max-width: 600px) {
  .col-grid, .col-grid-4 { grid-template-columns: 1fr; gap: 14px; }
  .col-card-link { grid-template-columns: minmax(0, 1fr) 84px; min-height: 0; }
  .col-card-body { padding: 16px; }
  .col-breadcrumb li[aria-current] { max-width: 50vw; }
}

@media (prefers-reduced-motion: reduce) {
  .col-sticky-bar { transition: none; }
}

@media print {
  .pp-header, .global-menu, .col-side, .col-sticky-bar, .col-cta-end, .col-related, .col-office-band, .col-filter, .col-adjacent, .pp-footer { display: none !important; }
  .col-main { padding-top: 0; }
  .col-layout { display: block; }
}
