/* =====================================================================
   TechSuite 共通 CTA ページ（contact.php / meeting.php）用スタイル
   全サービス共通・完全自己完結（DSフル/lp-sharedに依存しない）。
   色は各サイトの theme.css（--accent 等）、構造はこのファイルで統一。
   ===================================================================== */
:root {
  --fg: #15212f;
  --fg-muted: #4b5663;
  --fg-dim: #8a92a0;
  --bg: #ffffff;
  --bg-2: #f7f7f9;
  --border: #e7e9ee;
  --font-jp: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic UI', system-ui, sans-serif;
  --font-serif: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  --font-en: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --wrap: 1240px;
  --gutter: 32px;
  --radius: 6px;
  --text-xs: 13px;
}
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--fg); font-family: var(--font-jp); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---- CTA page content ---- */
.cta-page { max-width: var(--wrap); margin: 0 auto; padding: clamp(20px, 2.6vw, 32px) var(--gutter) clamp(48px, 6vw, 80px); }
.cta-page .eyebrow { font-family: var(--font-en); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent, #864B98); font-weight: 600; margin-bottom: 12px; }
.cta-page h1 { font-family: var(--font-serif); font-weight: 600; font-size: clamp(28px, 4vw, 44px); line-height: 1.25; color: var(--fg); margin: 0; }
.cta-page .lead { margin: 12px 0 0; max-width: 62ch; color: var(--fg-muted); font-family: var(--font-jp); line-height: 1.9; font-size: 15px; }
.cta-embed-grid { display: grid; grid-template-columns: 2fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; margin-top: clamp(12px, 1.8vw, 20px); }
@media (max-width: 860px) { .cta-embed-grid { grid-template-columns: 1fr; gap: 28px; } }
.cta-detail h2 { font-family: var(--font-serif); font-weight: 600; font-size: 22px; color: var(--fg); margin: 0 0 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.cta-detail ul { list-style: none; padding: 0; margin: 0; }
.cta-detail li { position: relative; padding-left: 24px; margin-bottom: 12px; font-family: var(--font-jp); color: var(--fg); line-height: 1.7; }
.cta-detail li::before { content: ""; position: absolute; left: 0; top: .6em; width: 12px; height: 2px; background: var(--accent, #864B98); }
.cta-detail .note { margin: 20px 0 0; padding: 14px 16px; background: var(--accent-soft, var(--bg-2)); border-radius: var(--radius); font-family: var(--font-jp); font-size: 13px; line-height: 1.8; color: var(--fg-muted); }
.cta-embed-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(20px, 3vw, 32px); min-height: 420px; position: sticky; top: 90px; }
.meetings-iframe-container { min-height: 680px; }
@media (max-width: 860px) { .cta-embed-box { position: static; top: auto; } }

/* ---- 資料アイキャッチ・中身プレビュー（本文側＝cta-detail 内・資料ダウンロード=contact.php限定） ---- */
.cta-eyecatch { margin: 0 0 24px; }
.cta-eyecatch img { width: 100%; display: block; border-radius: var(--radius); border: 1px solid var(--border); }
.cta-preview { margin-top: 24px; margin-bottom: 28px; }
.cta-preview_pages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; list-style: none; padding: 0; margin: 0; }
.cta-preview_pages li { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: #fff; padding-left: 0; }
.cta-preview_pages li::before { content: none; }
.cta-preview_pages img { display: block; width: 100%; }
@media (max-width: 480px) { .cta-preview_pages { grid-template-columns: repeat(2, 1fr); } }

/* ---- 導入企業ロゴ（本文側＝cta-detail 内・独立セクション。管理台帳は shared/LOGO-GUIDE.md） ---- */
.cta-trust { margin-top: 24px; margin-bottom: 28px; }
.cta-trust_logos { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px 16px; list-style: none; padding: 0; margin: 0; }
.cta-trust_logos li { display: flex; align-items: center; justify-content: center; height: 44px; padding-left: 0; }
.cta-trust_logos li::before { content: none; }
.cta-trust_logos img { display: block; max-width: 100%; max-height: 100%; object-fit: contain; }
@media (max-width: 640px) { .cta-trust_logos { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 480px) { .cta-trust_logos { grid-template-columns: repeat(3, 1fr); } }

/* ---- Footer ---- */
.brand-logo { display: inline-flex; align-items: center; text-decoration: none; cursor: pointer; flex: none; }
.brand-logo img { display: block; width: auto; height: 30px; }
.site-footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 56px 0 24px; }
.footer-grid { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start; }
.footer-copy { font-family: var(--font-jp); font-size: var(--text-xs); color: var(--fg-muted); margin-top: 18px; line-height: 1.85; max-width: 340px; }
.footer-cols { display: grid; grid-template-columns: repeat(1, 1fr); gap: 32px; }
.footer-h { font-family: var(--font-en); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--fg); margin-bottom: 16px; }
.footer-cols a { display: block; font-family: var(--font-jp); font-size: var(--text-xs); color: var(--fg-muted); text-decoration: none; padding: 5px 0; }
.footer-cols a:hover { color: var(--accent); }
.footer-bottom { max-width: var(--wrap); margin: 40px auto 0; padding: 18px var(--gutter) 0; border-top: 1px solid var(--border); font-family: var(--font-mono); font-size: 11px; color: var(--fg-dim); text-align: center; }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
