/* ============================================================
   株式会社サイクスグループ — ソフト・シグナル (design-pattern-db パターン2準拠)
   カラーはCSS変数で一元管理。純白#FFF/純黒#000はカード以外禁止。
   ============================================================ */
:root {
  --base: #FAFAF7;            /* ウォームホワイト（背景。#FFF禁止） */
  --card: #FFFFFF;            /* カードのみ白可（DB仕様） */
  --line: #E8E6E1;            /* カード罫線 */
  --ink: #2A2A26;             /* 本文（純黒禁止） */
  --ink-sub: #6B6A64;         /* サブテキスト */
  --cixes-blue: #1b6395;      /* サイクスブルー（サブ30%） */
  --cixes-blue-dark: #124a72;
  --cixes-blue-pale: #E9F1F7; /* 淡ブルー面 */
  --cixes-white: #fcedec;     /* サイクスホワイト（ソフト面） */
  --accent: #FF8A5C;          /* アプリコット。CTA限定（DB: 定義なき色使い禁止） */
  --alert-red: #c0392b;       /* 要確認バッジ専用 */
  --radius-s: 8px; --radius-m: 12px; --radius-l: 16px;
  --shadow: 0 4px 10px rgba(0,0,0,0.08);
  --maxw: 1120px;
  --ease-out: cubic-bezier(0.22,1,0.36,1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body {
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  color: var(--ink); background: var(--base);
  font-size: 16px; line-height: 1.9;
}
img { max-width: 100%; display: block; }
a { color: var(--cixes-blue); text-decoration: none; }
.en, .num { font-family: Inter, "Zen Kaku Gothic New", sans-serif; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; }

/* 見出し（ジャンプ率3.5倍 16px:56px、行間1.2、キーワード1語のみアクセント） */
.sec-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: Inter, sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--cixes-blue);
  margin-bottom: 14px;
}
.sec-label::before { content: ""; width: 24px; height: 1.5px; background: var(--cixes-blue); }
.sec-title {
  font-size: clamp(28px, 4.4vw, 56px); font-weight: 700;
  line-height: 1.2; letter-spacing: 0.02em; color: var(--ink);
  margin-bottom: 24px;
}
.sec-title .kw { color: var(--cixes-blue); }
.sec-lead { max-width: 640px; color: var(--ink-sub); margin-bottom: 48px; }

.todo-badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  background: var(--cixes-white); color: var(--alert-red);
  border: 1px solid var(--alert-red); border-radius: 4px;
  padding: 1px 8px; margin-left: 8px; vertical-align: middle;
}
.placeholder { color: var(--ink-sub); }

/* ボタン（アクセントはCTA限定） */
.btn {
  display: inline-block; padding: 14px 32px; border-radius: 999px;
  font-weight: 700; font-size: 15px; transition: all 0.2s ease-out;
  border: 1.5px solid transparent; cursor: pointer;
}
.btn-cta { background: var(--accent); color: #fff; box-shadow: 0 4px 14px rgba(240,113,64,0.28); }
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(240,113,64,0.34); }
.btn-ghost { border-color: var(--cixes-blue); color: var(--cixes-blue); background: transparent; }
.btn-ghost:hover { background: var(--cixes-blue-pale); }

/* ============ Header ============ */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,250,247,0.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
}
.logo { font-family: Inter, sans-serif; font-size: 17px; font-weight: 700; color: var(--ink); letter-spacing: 0.02em; }
.logo span { color: var(--cixes-blue); }
nav.pc-nav { display: flex; gap: 26px; align-items: center; }
nav.pc-nav a { font-size: 14px; font-weight: 500; color: var(--ink); transition: color 0.2s ease-out; padding: 4px 0; border-bottom: 2px solid transparent; }
nav.pc-nav a:hover { color: var(--cixes-blue); }
nav.pc-nav a.active { color: var(--cixes-blue); border-bottom-color: var(--cixes-blue); }
.nav-cta { background: var(--accent); color: #fff !important; padding: 9px 22px; border-radius: 999px; border-bottom: none !important; font-weight: 700; transition: opacity 0.2s ease-out; }
.nav-cta:hover { opacity: 0.88; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; }
.sp-menu { display: none; position: fixed; top: 68px; left: 0; right: 0; background: var(--base); border-bottom: 1px solid var(--line); padding: 16px 24px 24px; z-index: 99; }
.sp-menu a { display: block; padding: 12px 4px; font-weight: 600; border-bottom: 1px solid var(--line); color: var(--ink); }
.sp-menu a.active { color: var(--cixes-blue); }
.sp-menu.open { display: block; }

/* ============ FV：左60%テキスト / 右40%浮遊カード ============ */
.hero {
  padding: 170px 0 96px; position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 900px 500px at 85% 10%, rgba(27,99,149,0.07), transparent 60%),
    radial-gradient(ellipse 700px 420px at 5% 95%, rgba(252,237,236,0.65), transparent 60%),
    var(--base);
}
.hero-grid { display: grid; grid-template-columns: 58% 1fr; gap: 48px; align-items: center; }
.hero h1 {
  font-size: clamp(38px, 5.8vw, 68px); font-weight: 900;
  line-height: 1.25; letter-spacing: 0.03em;
}
.hero h1 .kw { color: var(--cixes-blue); }
.hero .lead { margin-top: 24px; color: var(--ink-sub); max-width: 520px; }
.hero .cta-row { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }

/* 浮遊するQ→Aカード断片（perspective俯瞰） */
.float-stage { perspective: 1200px; }
.float-stack { transform: rotateY(-14deg) rotateX(7deg); transform-style: preserve-3d; }
.float-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-m);
  box-shadow: var(--shadow); padding: 18px 20px; max-width: 340px;
  animation: floaty 6s ease-in-out infinite;
}
.float-card + .float-card { margin-top: 18px; }
.float-card:nth-child(2) { margin-left: 36px; animation-delay: -2s; }
.float-card:nth-child(3) { margin-left: 12px; animation-delay: -4s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.float-card .row { display: flex; gap: 10px; align-items: flex-start; }
.float-card .chip {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: Inter, sans-serif; font-weight: 700; font-size: 13px;
}
.chip-q { background: var(--cixes-white); color: var(--cixes-blue-dark); }
.chip-a { background: var(--cixes-blue); color: #fff; }
.float-card p { font-size: 13px; line-height: 1.6; }
.float-card .q-text { color: var(--ink-sub); }
.float-card .a-text { font-weight: 700; margin-top: 8px; }

/* ============ 信頼バー（数値3つ・端数+時点） ============ */
.trust-bar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--card); padding: 40px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.trust-item .num {
  font-size: clamp(30px, 3.6vw, 44px); font-weight: 700; color: var(--cixes-blue);
  font-variant-numeric: tabular-nums; line-height: 1.2;
}
.trust-item .num small { font-size: 0.5em; font-weight: 600; margin-left: 2px; }
.trust-item .cap { font-size: 13px; color: var(--ink-sub); margin-top: 6px; }

/* ============ Bento Grid（事業+CTA 2×2） ============ */
.bento {
  display: grid; gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas: "b1 b2 cta cta" "b3 b4 cta cta";
}
.bento .cell {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-l); padding: 26px 24px;
  box-shadow: var(--shadow); position: relative;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
  display: flex; flex-direction: column;
}
.bento .cell:hover { transform: translateY(-4px); box-shadow: 0 10px 22px rgba(0,0,0,0.10); }
.cell-b1 { grid-area: b1; } .cell-b2 { grid-area: b2; }
.cell-b3 { grid-area: b3; } .cell-b4 { grid-area: b4; }
.cell-cta { grid-area: cta; background: var(--cixes-blue); border: none; color: #fff; justify-content: center; align-items: flex-start; padding: 40px 36px; }
.cell-cta h3 { font-size: clamp(22px, 2.4vw, 30px); font-weight: 700; line-height: 1.35; }
.cell-cta p { color: rgba(255,255,255,0.85); font-size: 14px; margin: 14px 0 26px; }
.cell h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.cell .solve { font-size: 12.5px; color: var(--cixes-blue); font-weight: 600; margin-bottom: 10px; }
.cell .desc { font-size: 13.5px; color: var(--ink-sub); flex: 1; }
.cell .more { font-size: 13px; font-weight: 700; margin-top: 14px; color: var(--cixes-blue); }
.cell .more::after { content: " →"; }

/* Bentoセル内ミニUI（ホバーで1アクション動く） */
.mini-ui { height: 44px; margin-bottom: 14px; display: flex; align-items: flex-end; gap: 6px; }
.mini-bars span { display: inline-block; width: 12px; border-radius: 3px 3px 0 0; background: var(--cixes-blue-pale); transition: height 0.45s var(--ease-out), background 0.45s; }
.mini-bars span:nth-child(1) { height: 14px; } .mini-bars span:nth-child(2) { height: 22px; } .mini-bars span:nth-child(3) { height: 18px; }
.cell:hover .mini-bars span { background: var(--cixes-blue); }
.cell:hover .mini-bars span:nth-child(1) { height: 20px; }
.cell:hover .mini-bars span:nth-child(2) { height: 34px; }
.cell:hover .mini-bars span:nth-child(3) { height: 42px; }
.mini-toggle { align-items: center; }
.mini-toggle .track { width: 44px; height: 24px; border-radius: 999px; background: var(--line); position: relative; transition: background 0.3s; display: inline-block; }
.mini-toggle .knob { position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: var(--card); box-shadow: 0 1px 3px rgba(0,0,0,0.2); transition: left 0.3s var(--ease-out); }
.cell:hover .mini-toggle .track { background: var(--cixes-blue); }
.cell:hover .mini-toggle .knob { left: 23px; }
.mini-progress { align-items: center; }
.mini-progress .rail { width: 100%; height: 8px; border-radius: 999px; background: var(--cixes-blue-pale); overflow: hidden; display: inline-block; }
.mini-progress .fill { display: block; height: 100%; width: 30%; border-radius: 999px; background: var(--cixes-blue); transition: width 0.5s var(--ease-out); }
.cell:hover .mini-progress .fill { width: 86%; }
.mini-people { align-items: center; gap: 4px; }
.mini-people i {
  width: 22px; height: 22px; border-radius: 50%; background: var(--cixes-blue-pale);
  display: inline-flex; align-items: center; justify-content: center;
  font-style: normal; font-size: 11px; color: var(--cixes-blue-dark); font-weight: 700;
  transition: background 0.3s, color 0.3s;
}
.cell:hover .mini-people i { background: var(--cixes-blue); color: #fff; }
.mini-people .plus { opacity: 0; transform: scale(0.6); transition: all 0.35s var(--ease-out) 0.1s; background: var(--cixes-white); color: var(--cixes-blue-dark); }
.cell:hover .mini-people .plus { opacity: 1; transform: scale(1); }

/* ============ 選ばれる理由（3つまで） ============ */
.reason-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.reason {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: 32px 28px; box-shadow: var(--shadow);
}
.reason .no { font-family: Inter, sans-serif; font-size: 13px; font-weight: 600; color: var(--cixes-blue); letter-spacing: 0.15em; }
.reason h3 { font-size: 19px; font-weight: 700; margin: 10px 0 12px; line-height: 1.4; }
.reason p { font-size: 14px; color: var(--ink-sub); }

/* ============ Q→Aカード（事業ページ） ============ */
.qa-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.qa-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-l); box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s ease-out, box-shadow 0.2s ease-out; }
.qa-card:hover { transform: translateY(-4px); box-shadow: 0 10px 22px rgba(0,0,0,0.10); }
.qa-q { background: var(--cixes-white); padding: 20px 22px; display: flex; gap: 12px; align-items: flex-start; }
.qa-a { padding: 20px 22px 24px; display: flex; gap: 12px; align-items: flex-start; flex: 1; }
.qa-q .mark, .qa-a .mark { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: Inter, sans-serif; font-weight: 700; font-size: 14px; }
.qa-q .mark { background: var(--card); color: var(--cixes-blue-dark); border: 1px solid var(--cixes-blue-dark); }
.qa-a .mark { background: var(--cixes-blue); color: #fff; }
.qa-q p { font-weight: 700; font-size: 14.5px; line-height: 1.6; color: var(--cixes-blue-dark); }
.qa-a .body h3 { font-size: 16px; color: var(--cixes-blue); margin-bottom: 6px; }
.qa-a .body p { font-size: 13.5px; color: var(--ink-sub); }

.biz-detail { border-top: 1px solid var(--line); padding: 56px 0; }
.biz-detail:first-of-type { border-top: none; }
.biz-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 18px; }
.biz-num { font-family: Inter, sans-serif; font-size: 12px; font-weight: 600; color: var(--cixes-blue); letter-spacing: 0.15em; }
.biz-head h3 { font-size: 24px; font-weight: 700; }
.biz-body { max-width: 800px; }
.biz-body ul { margin: 14px 0 0 1.4em; color: var(--ink-sub); font-size: 14.5px; }

/* ============ 下層ページ帯 ============ */
.page-hero { padding: 150px 0 56px; background: linear-gradient(160deg, var(--cixes-blue-pale), var(--base) 70%); border-bottom: 1px solid var(--line); }
.page-hero .en { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--cixes-blue); }
.page-hero h1 { font-size: clamp(30px, 4.6vw, 48px); font-weight: 900; line-height: 1.2; margin-top: 10px; }
.breadcrumb { font-size: 13px; color: var(--ink-sub); margin-top: 14px; }

/* ============ 理念 ============ */
.philosophy-state { background: var(--cixes-blue); color: #fff; padding: 96px 0; }
.philosophy-state h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 700; line-height: 1.4; margin-bottom: 22px; }
.philosophy-state p { max-width: 700px; color: rgba(255,255,255,0.88); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-l); padding: 32px 28px; box-shadow: var(--shadow); }
.value-card .num { font-family: Inter, sans-serif; font-size: 12px; font-weight: 600; color: var(--cixes-blue); letter-spacing: 0.15em; }
.value-card h3 { font-size: 18px; margin: 10px 0 12px; }
.value-card p { font-size: 14px; color: var(--ink-sub); }

/* ============ 代表挨拶 ============ */
.message-wrap { display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: start; }
.message-photo { aspect-ratio: 3/4; border-radius: var(--radius-l); background: linear-gradient(160deg, var(--cixes-blue-pale), var(--cixes-white)); display: flex; align-items: center; justify-content: center; color: var(--cixes-blue); font-size: 13px; border: 1px dashed var(--cixes-blue); text-align: center; }
.message-body h3 { font-size: 22px; margin-bottom: 20px; line-height: 1.5; }
.message-body p { margin-bottom: 16px; }
.message-sign { margin-top: 28px; text-align: right; font-weight: 700; }
.message-sign small { display: block; font-weight: 400; color: var(--ink-sub); }

/* ============ 沿革・会社概要 ============ */
.timeline { position: relative; padding-left: 32px; max-width: 720px; }
.timeline::before { content: ""; position: absolute; left: 8px; top: 4px; bottom: 4px; width: 2px; background: var(--cixes-blue); }
.timeline-item { position: relative; padding-bottom: 30px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content: ""; position: absolute; left: -30px; top: 6px; width: 14px; height: 14px; border-radius: 50%; background: var(--card); border: 3px solid var(--cixes-blue); }
.timeline-item .year { font-family: Inter, sans-serif; font-weight: 700; color: var(--cixes-blue); font-size: 17px; }
.company-table { width: 100%; border-collapse: collapse; max-width: 760px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-m); overflow: hidden; box-shadow: var(--shadow); }
.company-table th, .company-table td { padding: 18px 20px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; font-size: 15px; }
.company-table tr:last-child th, .company-table tr:last-child td { border-bottom: none; }
.company-table th { width: 160px; color: var(--cixes-blue-dark); font-weight: 700; white-space: nowrap; background: var(--cixes-blue-pale); }

/* ============ ニュース ============ */
.news-list { max-width: 780px; }
.news-item { display: grid; grid-template-columns: 110px 90px 1fr; gap: 16px; padding: 18px 10px; border-bottom: 1px solid var(--line); align-items: center; font-size: 15px; }
.news-item .date { font-family: Inter, sans-serif; color: var(--ink-sub); font-size: 13.5px; }
.news-item .cat { text-align: center; font-size: 12px; font-weight: 700; color: var(--cixes-blue); border: 1px solid var(--cixes-blue); border-radius: 4px; padding: 2px 0; }
.news-item a { color: var(--ink); transition: color 0.2s ease-out; }
.news-item a:hover { color: var(--cixes-blue); }

/* ============ 採用 ============ */
.job-table { width: 100%; border-collapse: collapse; max-width: 760px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-m); overflow: hidden; box-shadow: var(--shadow); }
.job-table th, .job-table td { padding: 16px 20px; border-bottom: 1px solid var(--line); text-align: left; font-size: 15px; vertical-align: top; }
.job-table tr:last-child th, .job-table tr:last-child td { border-bottom: none; }
.job-table th { width: 140px; color: var(--cixes-blue-dark); white-space: nowrap; background: var(--cixes-blue-pale); }

/* ============ FAQ ============ */
.faq { max-width: 760px; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-m); box-shadow: var(--shadow); margin-bottom: 12px; overflow: hidden; }
.faq summary { padding: 18px 22px; font-weight: 700; cursor: pointer; list-style: none; position: relative; padding-right: 48px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-family: Inter, sans-serif; font-size: 20px; color: var(--cixes-blue); transition: transform 0.3s var(--ease-out); }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq .faq-body { padding: 0 22px 18px; color: var(--ink-sub); font-size: 14.5px; }

/* ============ CTA再掲バンド ============ */
.cta-band { background: var(--cixes-blue); color: #fff; padding: 72px 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 700; line-height: 1.4; }
.cta-band p { color: rgba(255,255,255,0.85); font-size: 14px; margin-top: 8px; }

/* ============ フォーム ============ */
.contact-form { max-width: 640px; background: var(--card); padding: 40px; border-radius: var(--radius-l); border: 1px solid var(--line); box-shadow: var(--shadow); }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 8px; }
.form-group label .req { color: var(--alert-red); font-size: 12px; margin-left: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-s); font-size: 15px; font-family: inherit; background: var(--base); transition: border-color 0.2s ease-out; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--cixes-blue); }
.form-error { display: none; color: var(--alert-red); font-size: 13px; margin-top: 6px; }
.form-note { font-size: 13px; color: var(--ink-sub); margin-bottom: 24px; }
.contact-form .btn { width: 100%; }
.form-success { display: none; text-align: center; padding: 32px 0; font-weight: 700; }

/* ============ Footer ============ */
footer { background: var(--cixes-blue-dark); color: #fff; padding: 52px 0 24px; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 32px; margin-bottom: 40px; }
.footer-logo { font-family: Inter, sans-serif; font-size: 17px; font-weight: 700; }
.footer-nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-nav a { color: rgba(255,255,255,0.85); font-size: 14px; }
.footer-nav a:hover { color: #fff; }
.copyright { text-align: center; font-size: 12px; color: rgba(255,255,255,0.55); border-top: 1px solid rgba(255,255,255,0.14); padding-top: 24px; }

/* ============ スマホ固定CTAバー ============ */
.sp-cta-bar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; background: rgba(250,250,247,0.95); backdrop-filter: blur(8px); border-top: 1px solid var(--line); padding: 10px 16px; }
.sp-cta-bar a { display: block; text-align: center; background: var(--accent); color: #fff; font-weight: 700; border-radius: 999px; padding: 12px; }

/* ============ スクロール出現（stagger 40ms・0.6s） ============ */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .float-card { animation: none; }
  .fade-up { opacity: 1 !important; transform: none !important; transition: none !important; }
}
@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr 1fr; grid-template-areas: "b1 b2" "b3 b4" "cta cta"; }
  .hero-grid { grid-template-columns: 1fr; }
  .float-stage { display: none; }
}
@media (max-width: 768px) {
  section { padding: 60px 0; }
  nav.pc-nav { display: none; }
  .hamburger { display: block; }
  .sp-cta-bar { display: block; }
  body { padding-bottom: 64px; }
  .hero { padding: 130px 0 64px; }
  .trust-grid { grid-template-columns: 1fr; gap: 20px; }
  .bento { grid-template-columns: 1fr; grid-template-areas: "b1" "b2" "b3" "b4" "cta"; }
  .reason-grid, .value-grid { grid-template-columns: 1fr; }
  .message-wrap { grid-template-columns: 1fr; }
  .message-photo { max-width: 260px; margin: 0 auto; }
  .news-item { grid-template-columns: 88px 68px 1fr; gap: 10px; }
  .contact-form { padding: 28px 20px; }
  .company-table th, .job-table th { width: 108px; }
}
