/* 株式会社KUSOW コーポレートサイト
 * 営業先が検索したときに「ちゃんとした会社だ」と分かることが目的。
 * 営業用LPではないので、煽らず・数字は実測値のみ・装飾は最小限にする。
 * 配色は営業資料（.company/pm/projects/kangoshi-agent-support/deck/）と揃えている。 */

:root {
  --navy:  #14346B;
  --navy-d:#0D2450;
  --teal:  #0F766E;
  --ink:   #1A1A1A;
  --muted: #6B7280;
  --line:  #E5E7EB;
  --soft:  #F5F7FA;
  --max:   1080px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--ink);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  background: #fff;
}

a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ── ヘッダー ── */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
header .wrap { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.logo { font-size: 19px; font-weight: 800; color: var(--navy); letter-spacing: .04em; }
nav ul { list-style: none; display: flex; gap: 28px; align-items: center; }
nav a { font-size: 14px; font-weight: 700; color: #374151; }
nav a:hover { color: var(--navy); }
.btn {
  display: inline-block; background: var(--navy); color: #fff;
  font-size: 14px; font-weight: 700; padding: 11px 22px; border-radius: 4px;
  transition: background .15s;
}
.btn:hover { background: var(--navy-d); }
.btn.ghost { background: #fff; color: var(--navy); border: 1.5px solid var(--navy); }
.btn.ghost:hover { background: var(--soft); }

/* ── ヒーロー ── */
.hero { padding: 96px 0 80px; }
.hero .bar { width: 56px; height: 5px; background: var(--navy); margin-bottom: 28px; }
.hero h1 { font-size: 40px; font-weight: 800; line-height: 1.5; color: var(--navy); letter-spacing: .01em; }
.hero p { font-size: 17px; color: #374151; margin-top: 24px; max-width: 720px; }
.hero .acts { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ── セクション ── */
section { padding: 76px 0; }
section.alt { background: var(--soft); }
.eyebrow { font-size: 12.5px; font-weight: 800; color: var(--teal); letter-spacing: .14em; }
h2 { font-size: 30px; font-weight: 800; color: var(--navy); margin-top: 10px; line-height: 1.45; }
.sub { font-size: 16px; color: #4B5563; margin-top: 16px; max-width: 780px; }

/* ── カード ── */
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.grid2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 40px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 28px 26px; }
.card .n { font-size: 12px; font-weight: 800; color: var(--teal); letter-spacing: .1em; }
.card h3 { font-size: 19px; color: var(--navy); margin-top: 10px; line-height: 1.5; }
.card p { font-size: 14.5px; color: #4B5563; margin-top: 12px; line-height: 1.85; }

/* ── 表 ── */
/* 表は th に固定幅を持たせているため、そのままだと狭い画面で
   ページ全体が横に広がる。スクロール領域で包んで閉じ込める */
.tbl-scroll { margin-top: 36px; overflow-x: auto; -webkit-overflow-scrolling: touch;
              border: 1px solid var(--line); border-radius: 8px; }
.tbl { width: 100%; min-width: 620px; border-collapse: collapse; }
.tbl th { background: var(--navy); color: #fff; font-size: 14px; font-weight: 700;
          padding: 13px 16px; text-align: left; }
.tbl td { padding: 14px 16px; border-bottom: 1px solid var(--line); font-size: 14.5px; color: #374151; }
.tbl tr:last-child td { border-bottom: none; }
.tbl td:first-child { font-weight: 700; color: var(--ink); }
.tbl .num { font-weight: 800; color: var(--navy); }

.info { width: 100%; border-collapse: collapse; margin-top: 36px; }
.info td { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 15px; vertical-align: top; }
.info td:first-child { width: 190px; color: var(--muted); font-weight: 700; font-size: 14px; }

/* ── 数値 ── */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 30px 24px; text-align: center; }
.stat .v { font-size: 40px; font-weight: 800; color: var(--navy); line-height: 1.1; }
.stat .v .u { font-size: 16px; margin-left: 3px; }
.stat .l { font-size: 13.5px; color: var(--muted); margin-top: 12px; line-height: 1.6; }

/* ── フロー ── */
.flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.fstep { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 24px 20px; }
.fstep .k { font-size: 11.5px; font-weight: 800; color: var(--teal); letter-spacing: .1em; }
.fstep .t { font-size: 16px; font-weight: 800; color: var(--navy); margin-top: 8px; }
.fstep .d { font-size: 13.5px; color: var(--muted); margin-top: 8px; line-height: 1.7; }

/* ── CTA帯 ── */
.cta { background: var(--navy); color: #fff; text-align: center; }
.cta h2 { color: #fff; }
.cta .sub { color: #C7D3EA; margin: 16px auto 0; }
.cta .acts { margin-top: 32px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta .btn { background: #fff; color: var(--navy); }
.cta .btn:hover { background: #E8EEF8; }
.cta .mail { font-size: 20px; font-weight: 800; margin-top: 26px; letter-spacing: .02em; }

/* ── フッター ── */
footer { border-top: 1px solid var(--line); padding: 40px 0 46px; font-size: 13px; color: var(--muted); }
footer .wrap { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
footer .logo { font-size: 16px; }

.note { font-size: 12.5px; color: var(--muted); margin-top: 18px; line-height: 1.7; }

/* ── スマホ ── */
@media (max-width: 860px) {
  nav ul { gap: 16px; }
  nav li.hide-sp { display: none; }
  .hero { padding: 64px 0 56px; }
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 16px; }
  section { padding: 56px 0; }
  h2 { font-size: 24px; }
  .grid3, .grid2, .stats, .flow { grid-template-columns: 1fr; gap: 16px; }
  .info td { display: block; padding: 8px 0; border: none; }
  .info td:first-child { width: auto; padding-top: 14px; }
  .info tr { display: block; border-bottom: 1px solid var(--line); padding-bottom: 10px; }
  footer .wrap { flex-direction: column; align-items: flex-start; }
}
