@charset "UTF-8";
/* ================================================================
   WINBRIGHT WEBSITE — メインスタイルシート
   カラー配色: winbright_solutions_site 統一版
   白ヘッダー × ブルー (#0b63df) × ネイビー × オレンジ
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&family=IBM+Plex+Mono:wght@400;600&display=swap');

/* ── カラートークン ── */
:root {
  --navy:    #071a33;   /* 最深ネイビー (フッター・CTAバー) */
  --deep:    #052b5e;   /* 深ブルーネイビー (グラデーション用) */
  --blue:    #0b63df;   /* プライマリブルー */
  --blue-l:  #0d6fef;   /* ブルーホバー */
  --blue-bg: #eaf3ff;   /* 薄ブルー背景 */
  --orange:  #ff7a1a;   /* オレンジアクセント */
  --orange-h:#ff6b00;   /* オレンジホバー */
  --ink:     #10233f;   /* 見出し・本文 */
  --ink-2:   #3d516d;   /* サブテキスト */
  --muted:   #64748b;   /* キャプション */
  --rule:    #dbe7f5;   /* 罫線・カードボーダー */
  --surface: #f5f9ff;   /* セクション薄背景 */
  --white:   #ffffff;
  --font-sans: 'Noto Sans JP', Meiryo, system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --wrap:    1140px;
  --px:      28px;
}

/* ── リセット ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--ink); background: var(--white); line-height: 1.75; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ── ラッパー ── */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--px); }

/* ── ボタン ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 26px; border-radius: 6px; font-weight: 700; font-size: 14px; transition: transform .15s, box-shadow .15s, background .2s, color .2s; cursor: pointer; border: 2px solid transparent; font-family: var(--font-sans); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-l); box-shadow: 0 6px 20px rgba(11,99,223,.3); }
.btn-teal { background: var(--blue); color: var(--white); }
.btn-teal:hover { background: var(--blue-l); box-shadow: 0 6px 20px rgba(11,99,223,.3); }
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-h); box-shadow: 0 6px 18px rgba(255,122,26,.3); }
.btn-ghost { border-color: rgba(255,255,255,.45); color: var(--white); background: transparent; }
.btn-ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn-outline { border-color: var(--blue); color: var(--blue); background: var(--white); }
.btn-outline:hover { background: var(--blue); color: var(--white); }

/* ═══════════════════════════════════════
   HEADER / NAV — 白背景
═══════════════════════════════════════ */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 200; height: 64px; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); border-bottom: 1px solid #e6eef8; }
.site-header .wrap { height: 64px; display: flex; align-items: center; justify-content: space-between; }

.site-logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; font-size: 17px; color: var(--navy); letter-spacing: .02em; flex-shrink: 0; }
.site-logo .logo-img { height: 34px; width: 34px; border-radius: 7px; object-fit: contain; }
.site-logo .logo-sub { font-size: 12px; font-weight: 400; opacity: .7; margin-left: 1px; color: var(--ink-2); }

.site-nav { display: flex; align-items: center; gap: 2px; }
.site-nav a { padding: 7px 11px; font-size: 13px; font-weight: 500; color: var(--ink-2); border-radius: 5px; transition: color .2s, background .2s; white-space: nowrap; }
.site-nav a:hover, .site-nav a.active { color: var(--blue); background: var(--blue-bg); }
.site-nav .nav-cta { margin-left: 8px; padding: 8px 16px; background: var(--orange); color: var(--white); border-radius: 6px; font-weight: 700; font-size: 13px; }
.site-nav .nav-cta:hover { background: var(--orange-h); transform: translateY(-1px); }

.menu-toggle { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 36px; height: 36px; background: none; border: none; cursor: pointer; padding: 4px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 1px; transition: transform .3s, opacity .3s; }

.mobile-nav { display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 199; background: var(--white); border-bottom: 1px solid var(--rule); padding: 8px 0 16px; box-shadow: 0 8px 24px rgba(7,26,51,.1); }
.mobile-nav a { display: block; padding: 13px var(--px); color: var(--ink-2); font-size: 15px; font-weight: 500; border-bottom: 1px solid var(--rule); transition: color .2s, background .2s; }
.mobile-nav a:hover { color: var(--blue); background: var(--blue-bg); }

/* ═══════════════════════════════════════
   PAGE HERO (内ページタイトルバー) — 白〜薄青
═══════════════════════════════════════ */
.page-hero {
  margin-top: 64px; padding: 52px 0 40px;
  background: linear-gradient(110deg, #f0f6ff 0%, var(--surface) 100%);
  border-bottom: 3px solid var(--blue); position: relative; overflow: hidden;
}
.page-hero .wrap { position: relative; }
.ph-en { font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; color: var(--blue); text-transform: uppercase; margin-bottom: 8px; display: block; }
.page-hero h1 { font-size: clamp(22px,3.5vw,38px); font-weight: 900; color: var(--ink); margin-bottom: 10px; line-height: 1.3; }
.page-hero p { color: var(--muted); font-size: 14px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--muted); margin-top: 18px; }
.breadcrumb a { color: var(--blue); transition: color .2s; }
.breadcrumb a:hover { color: var(--blue-l); }
.breadcrumb .sep { color: var(--rule); }

/* ═══════════════════════════════════════
   SECTIONS 共通
═══════════════════════════════════════ */
.section { padding: 88px 0; }
.section-alt { background: var(--surface); }
.section-dark { background: var(--navy); }

.section-eyebrow { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.section-eyebrow::before { content: ''; display: block; width: 22px; height: 1px; background: var(--blue); flex-shrink: 0; }
.section-title { font-size: clamp(22px,3vw,36px); font-weight: 900; color: var(--ink); margin-bottom: 14px; line-height: 1.28; }
.section-title.on-dark { color: var(--white); }
.section-lead { font-size: 15px; color: var(--muted); line-height: 1.9; max-width: 680px; margin-bottom: 48px; }
.section-lead.on-dark { color: rgba(255,255,255,.6); }

/* ═══════════════════════════════════════
   TOP PAGE — HERO (白〜薄水色)
═══════════════════════════════════════ */
.hero-top {
  margin-top: 64px; min-height: 92vh;
  background: radial-gradient(circle at 72% 18%, #d9ecff 0, #f7fbff 34%, #fff 70%);
  display: flex; align-items: center; position: relative; overflow: hidden; padding: 60px 0 80px;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em; color: var(--blue); text-transform: uppercase; margin-bottom: 20px; display: block; }
.hero-h1 { font-size: clamp(30px,4vw,54px); font-weight: 900; color: var(--ink); line-height: 1.2; margin-bottom: 20px; letter-spacing: -.02em; }
.hero-h1 em { font-style: normal; color: var(--blue); }
.hero-lead { font-size: 16px; color: var(--ink-2); line-height: 1.9; margin-bottom: 28px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; background: #f3f8ff; border: 1px solid #c8ddf8; border-radius: 20px; font-size: 12px; color: var(--ink-2); font-weight: 500; }
.badge-icon { font-size: 14px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ヒーロー右カード */
.hero-stat-card {
  background: var(--white); border: 1px solid var(--rule);
  border-radius: 16px; padding: 28px;
  box-shadow: 0 20px 56px rgba(7,26,51,.1), 0 4px 14px rgba(0,0,0,.04);
}
.hsc-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 24px; }
.hsc-item { text-align: center; }
.hsc-num { font-family: var(--font-mono); font-size: 26px; font-weight: 600; color: var(--blue); line-height: 1; margin-bottom: 4px; }
.hsc-num span { font-size: 13px; }
.hsc-num-sm { font-size: 14px; }
.hsc-label { font-size: 11px; color: var(--muted); }
.hsc-divider { height: 1px; background: var(--rule); margin-bottom: 20px; }
.hsc-tech-label { font-size: 10px; font-family: var(--font-mono); letter-spacing: .12em; color: var(--muted); margin-bottom: 10px; text-transform: uppercase; }
.hsc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.hsc-tags span { font-size: 11px; padding: 3px 9px; background: rgba(11,99,223,.08); border: 1px solid rgba(11,99,223,.18); border-radius: 3px; color: var(--ink-2); font-family: var(--font-mono); }
.hsc-cert { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--muted); }
.live-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.3;} }

.hero-scroll-hint { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; color: var(--muted); font-size: 9px; letter-spacing: .15em; font-family: var(--font-mono); }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(11,99,223,.4), transparent); }

/* ═══════════════════════════════════════
   TOP — STRENGTHS
═══════════════════════════════════════ */
.strength-section { padding: 80px 0; }
.strength-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.str-card { background: var(--white); border: 1px solid var(--rule); border-radius: 12px; padding: 28px 24px; border-top: 4px solid var(--blue); transition: transform .2s, box-shadow .2s; }
.str-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(7,26,51,.09); }
.str-icon { font-size: 32px; margin-bottom: 14px; }
.str-card h3 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.str-card p { font-size: 13px; color: var(--muted); line-height: 1.8; }

/* ═══════════════════════════════════════
   TOP — NO BIG CORP (大企業病を持たない)
═══════════════════════════════════════ */
.no-bc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.nbc-card { background: var(--white); border: 1px solid var(--rule); border-radius: 12px; padding: 32px 26px; border-top: 4px solid var(--blue); transition: transform .2s, box-shadow .2s; }
.nbc-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(7,26,51,.09); }
.nbc-card:nth-child(2) { border-top-color: var(--orange); }
.nbc-icon { font-size: 32px; margin-bottom: 14px; }
.nbc-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.nbc-card:nth-child(2) .nbc-tag { color: var(--orange); }
.nbc-card h3 { font-size: 19px; font-weight: 900; color: var(--ink); margin-bottom: 10px; }
.nbc-card p { font-size: 13px; color: var(--muted); line-height: 1.8; }

/* ═══════════════════════════════════════
   TOP — AUDIENCE SPLIT（法人/個人 振り分け）
═══════════════════════════════════════ */
.aud-split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.aud-split-card { display: block; background: var(--white); border: 1px solid var(--rule); border-radius: 14px; padding: 36px 32px; border-top: 5px solid var(--blue); transition: transform .2s, box-shadow .2s; }
.aud-split-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(7,26,51,.1); }
.aud-split-card--indiv { border-top-color: var(--orange); }
.asc-icon { font-size: 34px; margin-bottom: 12px; }
.asc-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; color: var(--blue); margin-bottom: 10px; text-transform: uppercase; }
.aud-split-card--indiv .asc-tag { color: var(--orange); }
.aud-split-card h3 { font-size: 19px; font-weight: 900; color: var(--ink); margin-bottom: 10px; line-height: 1.4; }
.aud-split-card p { font-size: 13px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.asc-link { font-size: 13px; font-weight: 700; color: var(--blue); }
.aud-split-card--indiv .asc-link { color: var(--orange); }

/* ═══════════════════════════════════════
   TOP — SERVICES
═══════════════════════════════════════ */
.svc-grid-top { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.svc-top-card { display: flex; align-items: flex-start; gap: 16px; padding: 24px; background: var(--white); border: 1px solid var(--rule); border-radius: 12px; transition: transform .2s, box-shadow .2s, border-color .2s; }
.svc-top-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(7,26,51,.09); border-color: var(--blue); }
.svc-top-card--accent { border-color: var(--blue); background: linear-gradient(135deg,#f0f6ff,#fff); }
.svc-top-card--accent:hover { border-color: var(--blue-l); box-shadow: 0 12px 32px rgba(11,99,223,.12); }
.stc-icon { font-size: 30px; flex-shrink: 0; margin-top: 2px; }
.stc-body { flex: 1; }
.stc-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; color: var(--muted); margin-bottom: 4px; }
.svc-top-card--accent .stc-tag { color: var(--blue); }
.stc-body h3 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.stc-body p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.stc-arrow { font-size: 18px; color: var(--rule); flex-shrink: 0; margin-top: 8px; transition: color .2s, transform .2s; }
.svc-top-card:hover .stc-arrow { color: var(--blue); transform: translateX(4px); }

/* ═══════════════════════════════════════
   TOP — IT顧問CTA
═══════════════════════════════════════ */
.advisor-cta-section { padding: 0; }
.advisor-cta-box { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; padding: 52px 60px; background: linear-gradient(135deg, var(--deep) 0%, #063d91 100%); border-radius: 16px; margin: 0 0 0 0; }
.acb-eyebrow { font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em; color: rgba(255,255,255,.7); text-transform: uppercase; margin-bottom: 8px; }
.acb-title { font-size: clamp(18px,2.5vw,28px); font-weight: 900; color: var(--white); margin-bottom: 12px; line-height: 1.35; }
.acb-lead { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.85; margin-bottom: 24px; }
.acb-plans { display: flex; gap: 12px; flex-wrap: wrap; }
.acb-plan { display: flex; flex-direction: column; align-items: center; padding: 10px 16px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 8px; }
.acb-plan--pro { border-color: rgba(11,99,223,.5); background: rgba(11,99,223,.18); }
.acb-plan-name { font-size: 10px; color: rgba(255,255,255,.6); margin-bottom: 2px; font-family: var(--font-mono); }
.acb-plan-price { font-size: 15px; font-weight: 700; color: var(--white); }
.acb-plan-price span { font-size: 11px; font-weight: 400; }
.acb-plan--pro .acb-plan-price { color: #7eb8ff; }
.acb-right { display: flex; flex-direction: column; gap: 0; align-items: center; flex-shrink: 0; }

/* ═══════════════════════════════════════
   TOP — SOLUTIONS
═══════════════════════════════════════ */
.sol-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.sol-card { background: var(--white); border: 1px solid var(--rule); border-radius: 12px; padding: 24px; display: flex; flex-direction: column; gap: 8px; transition: transform .2s, box-shadow .2s; }
.sol-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(7,26,51,.09); }
.sol-bar { height: 3px; border-radius: 1.5px; margin-bottom: 4px; }
.sol-icon { font-size: 28px; width: 52px; height: 52px; border-radius: 10px; display: grid; place-items: center; }
.sol-tag { font-family: var(--font-mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.sol-card h3 { font-size: 16px; font-weight: 700; color: var(--ink); }
.sol-card p { font-size: 13px; color: var(--muted); line-height: 1.7; flex: 1; }
.sol-link { font-size: 12px; color: var(--muted); font-family: var(--font-mono); transition: color .2s; }
.sol-card:hover .sol-link { color: var(--blue-l); }

/* ═══════════════════════════════════════
   TOP — BLOG
═══════════════════════════════════════ */
.blog-top-section { padding: 88px 0; }
.blog-loading { text-align: center; color: var(--muted); font-size: 14px; }
.blog-preview-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.blog-preview-card { background: var(--white); border: 1px solid var(--rule); border-radius: 12px; padding: 24px; display: flex; flex-direction: column; gap: 8px; transition: transform .2s, box-shadow .2s; }
.blog-preview-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(7,26,51,.09); }
.bpc-date { font-size: 11px; color: var(--muted); font-family: var(--font-mono); }
.bpc-title { font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.45; flex: 1; }
.bpc-excerpt { font-size: 13px; color: var(--muted); line-height: 1.7; }
.bpc-more { font-size: 12px; color: var(--blue); font-weight: 600; }

/* ═══════════════════════════════════════
   TOP — RECRUIT STRIP
═══════════════════════════════════════ */
.recruit-strip { padding: 60px 0; }
.recruit-box { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.rb-accent { background: var(--orange); color: var(--white); padding: 3px 10px; border-radius: 4px; font-size: 14px; margin-right: 8px; }
.recruit-title { font-size: clamp(20px,2.5vw,30px); font-weight: 900; color: var(--ink); margin-bottom: 12px; }
.rb-left p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.rb-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.rb-tags span { font-size: 12px; padding: 4px 10px; background: var(--surface); border: 1px solid var(--rule); border-radius: 4px; color: var(--muted); }
.rb-right { display: flex; flex-direction: column; gap: 0; align-items: center; flex-shrink: 0; }

/* ═══════════════════════════════════════
   TOP — CONTACT CTA (ダークネイビー)
═══════════════════════════════════════ */
.contact-cta-section { background: linear-gradient(135deg, var(--deep) 0%, #075bc4 100%); padding: 72px 0; }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ═══════════════════════════════════════
   FOOTER (ダークネイビー)
═══════════════════════════════════════ */
.site-footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,.08); }
.footer-main { padding: 56px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .site-logo { margin-bottom: 14px; font-size: 15px; color: var(--white); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.85; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: .12em; color: rgba(255,255,255,.4); text-transform: uppercase; margin-bottom: 14px; font-family: var(--font-mono); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col ul a:hover { color: rgba(255,255,255,.95); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.3); }
.footer-bottom nav { display: flex; gap: 20px; }
.footer-bottom nav a { font-size: 11px; color: rgba(255,255,255,.3); transition: color .2s; }
.footer-bottom nav a:hover { color: rgba(255,255,255,.7); }

/* ═══════════════════════════════════════
   PAGE TOP BUTTON
═══════════════════════════════════════ */
.page-top { display: none; position: fixed; bottom: 28px; right: 28px; z-index: 100; width: 44px; height: 44px; border-radius: 50%; background: var(--blue); color: var(--white); border: none; cursor: pointer; font-size: 18px; box-shadow: 0 4px 16px rgba(11,99,223,.25); transition: background .2s, transform .2s; }
.page-top.show { display: flex; align-items: center; justify-content: center; }
.page-top:hover { background: var(--blue-l); transform: translateY(-2px); }

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.fade-up.pre-anim { opacity: 0; }
.fade-up.visible { animation: fadeUp .6s ease both; }

/* ═══════════════════════════════════════
   INNER PAGES 共通コンテンツスタイル
═══════════════════════════════════════ */
.content-body { padding: 60px 0 80px; }
.content-body h2 { font-size: clamp(18px,2.5vw,26px); font-weight: 900; padding: 14px 20px; background: linear-gradient(135deg, var(--navy), var(--deep)); color: var(--white); border-left: 5px solid var(--blue); border-radius: 0 8px 8px 0; margin-bottom: 20px; margin-top: 48px; }
.content-body h2:first-child { margin-top: 0; }
.content-body h3 { font-size: 17px; font-weight: 700; color: var(--blue); border-bottom: 2px solid var(--rule); padding-bottom: 8px; margin-bottom: 14px; margin-top: 32px; }
.content-body p { font-size: 14px; color: var(--ink-2); line-height: 1.9; margin-bottom: 14px; }
.content-body ul, .content-body ol { padding-left: 0; margin-bottom: 16px; display: flex; flex-direction: column; gap: 8px; }
.content-body li { font-size: 14px; color: var(--ink-2); line-height: 1.8; display: flex; align-items: flex-start; gap: 8px; }
.content-body li::before { content: '▸'; color: var(--blue); flex-shrink: 0; margin-top: 2px; font-size: 12px; }
.content-body table { width: 100%; border-collapse: collapse; margin-bottom: 20px; font-size: 14px; }
.content-body th { background: var(--navy); color: var(--white); padding: 10px 14px; text-align: left; font-weight: 600; }
.content-body td { padding: 10px 14px; border-bottom: 1px solid var(--rule); color: var(--ink-2); vertical-align: top; }
.content-body tr:nth-child(even) td { background: var(--surface); }
.content-body dl { margin-bottom: 20px; }
.content-body dt { font-weight: 700; color: var(--navy); font-size: 14px; padding: 8px 0 4px; border-bottom: 1px dotted var(--rule); }
.content-body dd { font-size: 14px; color: var(--ink-2); padding: 6px 0 8px 16px; line-height: 1.8; }
.content-body hr { border: none; border-top: 1px solid var(--rule); margin: 36px 0; }
.content-body .point-box { background: var(--blue-bg); border: 1px solid rgba(11,99,223,.2); border-left: 4px solid var(--blue); border-radius: 8px; padding: 20px 24px; margin-bottom: 20px; }
.content-body .point-box li::before { color: var(--blue); }
.content-body a:not(.btn) { color: var(--blue); text-decoration: underline; }
.content-body a:not(.btn):hover { color: var(--blue-l); }

/* ── 2カラムレイアウト ── */
.inner-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; margin-top: 48px; }
.sidebar-card { background: var(--surface); border: 1px solid var(--rule); border-radius: 12px; padding: 24px; position: sticky; top: 80px; }
.sidebar-card h3 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--blue); }
.sidebar-card ul { display: flex; flex-direction: column; gap: 8px; }
.sidebar-card li { font-size: 13px; }
.sidebar-card li a { color: var(--blue); display: block; padding: 6px 10px; border-radius: 5px; transition: background .2s; }
.sidebar-card li a:hover { background: var(--blue-bg); text-decoration: none; }
.sidebar-isms { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--rule); }
.sidebar-isms img { width: 100%; border-radius: 6px; }
.sidebar-isms p { font-size: 12px; color: var(--muted); margin-top: 8px; line-height: 1.6; }

/* ═══════════════════════════════════════
   SOLUTIONS PAGE
═══════════════════════════════════════ */
.solutions-page .sol-detail-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-bottom: 48px; }
.sol-detail-card { background: var(--white); border: 1px solid var(--rule); border-radius: 14px; overflow: hidden; box-shadow: 0 4px 20px rgba(7,26,51,.06); transition: transform .2s, box-shadow .2s; }
.sol-detail-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(7,26,51,.1); }
.sol-detail-bar { height: 5px; }
.sol-detail-head { padding: 24px 24px 0; display: flex; align-items: flex-start; gap: 14px; }
.sol-detail-icon { width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center; font-size: 26px; flex-shrink: 0; }
.sol-detail-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 3px; }
.sol-detail-name { font-size: 20px; font-weight: 900; color: var(--ink); }
.sol-detail-sub { font-size: 12px; color: var(--muted); font-family: var(--font-mono); }
.sol-detail-body { padding: 16px 24px; }
.sol-detail-desc { font-size: 14px; color: var(--ink-2); line-height: 1.8; margin-bottom: 16px; }
.sol-screen { border: 1px solid var(--rule); border-radius: 10px; overflow: hidden; background: #09182c; margin-bottom: 16px; }
.sol-screen img { width: 100%; display: block; }
.sol-screen-ph { height: 200px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: rgba(255,255,255,.35); font-size: 13px; text-align: center; padding: 20px; }
.sol-screen-ph .ph-icon { font-size: 36px; }
.sol-feats { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.sol-feats li { font-size: 13px; color: var(--ink-2); display: flex; align-items: flex-start; gap: 8px; line-height: 1.6; }
.sol-feats li::before { content: '✓'; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.sol-detail-foot { padding: 16px 24px 22px; border-top: 1px solid var(--rule); display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.sol-stack { display: flex; flex-wrap: wrap; gap: 5px; }
.sol-badge { font-size: 10px; padding: 3px 8px; background: var(--surface); border: 1px solid var(--rule); border-radius: 3px; color: var(--muted); font-family: var(--font-mono); }
.wip-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; padding: 4px 10px; background: rgba(255,122,26,.1); border: 1px solid rgba(255,122,26,.3); color: var(--orange); border-radius: 20px; }
.wip-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); animation: pulse 1.5s infinite; }

/* ═══════════════════════════════════════
   IT_ADVISOR — 料金カード
═══════════════════════════════════════ */
.plan-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin: 28px 0; }
.plan-card { border: 1px solid var(--rule); border-radius: 12px; padding: 24px 20px; text-align: center; position: relative; transition: transform .2s, box-shadow .2s; }
.plan-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(7,26,51,.1); }
.plan-card.featured { border-color: var(--blue); box-shadow: 0 0 0 2px rgba(11,99,223,.15); background: linear-gradient(135deg,var(--blue-bg),var(--white)); }
.plan-rec { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--blue); color: var(--white); font-size: 10px; font-weight: 700; padding: 2px 12px; border-radius: 10px; white-space: nowrap; }
.plan-name { font-size: 14px; font-weight: 700; color: var(--muted); margin-bottom: 6px; font-family: var(--font-mono); letter-spacing: .08em; }
.plan-price { font-size: 28px; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.plan-price sub { font-size: 14px; font-weight: 400; }
.plan-tax { font-size: 11px; color: var(--muted); margin-bottom: 14px; }
.plan-desc { font-size: 12px; color: var(--muted); line-height: 1.7; }
.plan-card.featured .plan-price { color: var(--blue); }
.plan-channel { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; border-radius: 12px; font-size: 11px; font-weight: 700; margin-bottom: 12px; }
.plan-channel--mail { background: #f3f8ff; color: var(--blue); border: 1px solid #c8ddf8; }
.plan-channel--phone { background: #fff4ec; color: var(--orange); border: 1px solid #f5d5bb; }
.plan-more { display: inline-block; margin-top: 12px; font-size: 12px; font-weight: 700; color: var(--blue); }
.plan-compare-table { width: 100%; border-collapse: collapse; font-size: 13px; margin: 24px 0; }
.plan-compare-table th, .plan-compare-table td { padding: 12px 10px; border: 1px solid var(--rule); text-align: center; vertical-align: top; line-height: 1.6; }
.plan-compare-table th:first-child, .plan-compare-table td:first-child { text-align: left; background: var(--surface); font-weight: 700; color: var(--navy); width: 130px; }
.plan-compare-table thead th { background: var(--navy); color: var(--white); font-weight: 700; font-size: 13px; }
.plan-compare-table thead th.featured { background: var(--blue); }

/* ═══════════════════════════════════════
   COMPANY — 概要テーブル
═══════════════════════════════════════ */
.company-info-table { width: 100%; border-collapse: collapse; }
.company-info-table th { width: 160px; background: var(--surface); padding: 12px 16px; font-size: 13px; font-weight: 700; color: var(--navy); border: 1px solid var(--rule); text-align: left; vertical-align: top; }
.company-info-table td { padding: 12px 16px; font-size: 13px; color: var(--ink-2); border: 1px solid var(--rule); line-height: 1.8; }

/* ═══════════════════════════════════════
   RECRUIT — 求人カード
═══════════════════════════════════════ */
.job-card { background: var(--white); border: 1px solid var(--rule); border-radius: 12px; padding: 28px; margin-bottom: 20px; border-left: 5px solid var(--blue); }
.job-card.job-featured { border-left-color: var(--orange); }
.job-tag { display: inline-block; padding: 3px 10px; background: var(--surface); border: 1px solid var(--rule); border-radius: 4px; font-size: 11px; color: var(--muted); margin-bottom: 10px; font-family: var(--font-mono); }
.job-card h3 { font-size: 20px; font-weight: 900; color: var(--navy); margin-bottom: 8px; }
.job-card .job-badge { background: var(--orange); color: var(--white); font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 4px; margin-right: 6px; }
.job-dl { display: grid; grid-template-columns: 120px 1fr; gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: 8px; overflow: hidden; margin-top: 20px; }
.job-dl dt { background: var(--surface); padding: 10px 14px; font-size: 13px; font-weight: 700; color: var(--navy); display: flex; align-items: flex-start; }
.job-dl dd { background: var(--white); padding: 10px 14px; font-size: 13px; color: var(--ink-2); line-height: 1.8; }

/* ═══════════════════════════════════════
   RECRUIT — 私たちが約束できる環境
═══════════════════════════════════════ */
.rvp-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-bottom: 28px; }
.rvp-card { background: var(--white); border: 1px solid var(--rule); border-radius: 12px; overflow: hidden; transition: transform .2s, box-shadow .2s; }
.rvp-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(7,26,51,.1); }
.rvp-bar { height: 4px; }
.rvp-body { padding: 22px 24px 24px; }
.rvp-icon { width: 46px; height: 46px; border-radius: 10px; display: grid; place-items: center; font-size: 22px; margin-bottom: 14px; }
.rvp-card h3 { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.rvp-card p { font-size: 13px; color: var(--ink-2); line-height: 1.8; }
.rvp-card--blue .rvp-bar { background: linear-gradient(90deg,#0b63df,#3d8fe8); }
.rvp-card--blue .rvp-icon { background: rgba(11,99,223,.12); color: #0b63df; }
.rvp-card--orange .rvp-bar { background: linear-gradient(90deg,#ff7a1a,#f5a050); }
.rvp-card--orange .rvp-icon { background: rgba(255,122,26,.12); color: #ff7a1a; }
.rvp-card--purple .rvp-bar { background: linear-gradient(90deg,#7c3aed,#a78bfa); }
.rvp-card--purple .rvp-icon { background: rgba(124,58,237,.12); color: #7c3aed; }
.rvp-card--green .rvp-bar { background: linear-gradient(90deg,#0f9f6e,#34d399); }
.rvp-card--green .rvp-icon { background: rgba(15,159,110,.12); color: #0f9f6e; }
.rvp-quote { margin-bottom: 8px; padding: 26px 32px; background: linear-gradient(135deg, var(--navy) 0%, var(--deep) 100%); border-radius: 14px; text-align: center; }
.rvp-quote p { color: var(--white); font-size: 15px; font-weight: 700; line-height: 1.9; }

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */
.contact-methods { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 40px; }
.contact-method { text-align: center; padding: 28px 20px; background: var(--surface); border: 1px solid var(--rule); border-radius: 12px; }
.cm-icon { font-size: 36px; margin-bottom: 12px; }
.cm-name { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.cm-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ═══════════════════════════════════════
   BLOG PAGE
═══════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.blog-card { background: var(--white); border: 1px solid var(--rule); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(7,26,51,.1); }
.blog-card-body { padding: 20px; flex: 1; }
.blog-date { font-size: 11px; color: var(--muted); font-family: var(--font-mono); margin-bottom: 8px; }
.blog-card h3 { font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.5; margin-bottom: 8px; }
.blog-excerpt { font-size: 13px; color: var(--muted); line-height: 1.7; }
.blog-card-foot { padding: 12px 20px; border-top: 1px solid var(--rule); display: flex; align-items: center; justify-content: space-between; }
.blog-read-more { font-size: 12px; color: var(--blue); font-weight: 600; }

/* ═══════════════════════════════════════
   ISMS PAGE
═══════════════════════════════════════ */
.isms-detail { display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: start; }
.isms-img-box img { width: 100%; border-radius: 10px; border: 1px solid var(--rule); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1000px) {
  .sol-grid { grid-template-columns: repeat(2,1fr); }
  .strength-grid { grid-template-columns: repeat(2,1fr); }
  .no-bc-grid { grid-template-columns: repeat(2,1fr); }
  .plan-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .aud-split-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .section { padding: 60px 0; }
  .site-nav { display: none; }
  .menu-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card-area { display: none; }
  .hero-top { min-height: auto; padding: 52px 0 64px; }
  .hero-scroll-hint { display: none; }
  .advisor-cta-box { grid-template-columns: 1fr; gap: 28px; }
  .recruit-box { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .inner-layout { grid-template-columns: 1fr; }
  .solutions-page .sol-detail-grid { grid-template-columns: 1fr; }
  .isms-detail { grid-template-columns: 1fr; }
  .contact-methods { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .rvp-grid { grid-template-columns: 1fr; }

  /* カードグリッドをスマホでは横スクロールに切り替え（縦長すぎるのを防ぐ） */
  .aud-split-grid,
  .no-bc-grid,
  .strength-grid,
  .svc-grid-top,
  .sol-grid {
    display: flex;
    grid-template-columns: none;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px;
    margin: 0 calc(-1 * var(--px));
    padding: 4px var(--px) 18px;
  }
  .aud-split-grid::-webkit-scrollbar,
  .no-bc-grid::-webkit-scrollbar,
  .strength-grid::-webkit-scrollbar,
  .svc-grid-top::-webkit-scrollbar,
  .sol-grid::-webkit-scrollbar { display: none; height: 0; }

  .aud-split-card,
  .nbc-card,
  .str-card,
  .svc-top-card,
  .sol-card {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }
}
@media (max-width: 600px) {
  :root { --px: 16px; }
  .plan-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero-badges { gap: 6px; }
  .hero-badge { font-size: 11px; padding: 5px 10px; }
  .hsc-row { grid-template-columns: repeat(3,1fr); gap: 10px; }
  .job-dl { grid-template-columns: 90px 1fr; }
}
