/* ==========================================================
   SILVER CORD LP v7 — Mobile-first redesign
   Monochrome base + single gold accent（エディトリアル系を継承）
   設計方針：
   - モバイルファースト（min-width で段階的に拡張）
   - 本文はSPで15.5px基準、タップ領域44px以上
   - 表は使わず、SPでも読めるカード構造を基本にする
   ========================================================== */

:root {
  --ink: #101418;
  --ink-soft: #2A3138;
  --paper: #FFFFFF;
  --grey-050: #F7F8F9;
  --grey-100: #F1F2F4;
  --grey-300: #DFE2E6;
  --grey-500: #9AA1A9;
  --grey-700: #5C646C;
  --accent: #B08D2E;
  --accent-soft: #E8DDC2;
  --gold-text: #7A5E17; /* 文字用の金（WCAG AA対応の濃色） */
  --gold-bright: #C9A44A;
  --tan: #F5F3EC;
  --font-jp: "Noto Sans JP", sans-serif;
  --font-en: "Inter", "Noto Sans JP", sans-serif;
  --font-serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --wrap: 1180px;
  --pad-x: 20px;
  --sec-pad: clamp(64px, 12vw, 150px);
  --radius: 3px;
  --header-h: 64px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  font-family: var(--font-jp);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  font-size: 15.5px;
  line-height: 1.9;
  letter-spacing: 0.02em;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
body.menu-locked { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul, ol { list-style: none; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad-x); }

.pc { display: none; }
.sp { display: inline; }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================
   Header
   ========================================================== */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-100);
  transition: box-shadow .3s;
}
.header.is-scrolled { box-shadow: 0 1px 24px rgba(16, 20, 24, .08); }
.header-in { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }

.logo {
  font-family: var(--font-en); font-weight: 700; font-size: 16px;
  letter-spacing: .2em; text-decoration: none; color: var(--ink);
}

/* SP：全画面ドロワー */
.gnav {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
  display: none; flex-direction: column;
  background: rgba(255, 255, 255, .98);
  padding: 20px var(--pad-x) 32px;
  overflow-y: auto;
}
.gnav.is-open { display: flex; }
.gnav a {
  font-size: 16px; font-weight: 600; text-decoration: none;
  color: var(--ink); letter-spacing: .05em;
  padding: 15px 4px; border-bottom: 1px solid var(--grey-100);
}
.gnav a:active { color: var(--gold-text); }
.gnav-cta {
  margin-top: 20px; text-align: center;
  background: var(--ink); color: #fff !important;
  border: none !important; border-radius: var(--radius);
  padding: 16px !important; font-weight: 700 !important;
}

.menu-btn {
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 44px; height: 44px;
  background: none; border: 1px solid var(--grey-300); border-radius: var(--radius); cursor: pointer;
}
.menu-btn span { display: block; width: 18px; height: 2px; background: var(--ink); transition: transform .3s, opacity .3s; }
.menu-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.is-open span:nth-child(2) { opacity: 0; }
.menu-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 900px) {
  :root { --header-h: 72px; }
  .menu-btn { display: none; }
  .gnav {
    position: static; display: flex; flex-direction: row; align-items: center;
    gap: clamp(14px, 1.8vw, 26px); background: none; padding: 0; overflow: visible;
  }
  .gnav a {
    font-size: 13.5px; font-weight: 500; color: var(--ink-soft); letter-spacing: .06em;
    padding: 6px 0; border-bottom: 2px solid transparent;
    transition: border-color .25s, color .25s;
  }
  .gnav a:hover { color: var(--ink); border-bottom-color: var(--accent); }
  .gnav-cta {
    margin-top: 0; background: var(--ink); color: #fff !important;
    padding: 10px 20px !important; border-radius: var(--radius);
    transition: background .25s;
  }
  .gnav-cta:hover { background: var(--accent); }
}

/* ==========================================================
   Buttons
   ========================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 15px; font-weight: 700; letter-spacing: .04em; line-height: 1.5;
  text-decoration: none; text-align: center;
  padding: 16px 24px; border-radius: var(--radius);
  transition: background .25s, color .25s, border-color .25s, transform .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-fill { background: var(--ink); color: #fff; }
.btn-fill:hover { background: var(--accent); }
.btn-gold { background: var(--gold-bright); color: #14120A; }
.btn-gold:hover { background: #D9BC69; }
.btn-lg { padding: 18px 40px; font-size: 16px; width: 100%; }
.btn-sub {
  flex: 0 0 auto;
  font-size: 11px; font-weight: 700; background: var(--accent);
  color: #fff; padding: 2px 8px; border-radius: 2px; letter-spacing: .1em;
}
.btn-fill:hover .btn-sub { background: rgba(255,255,255,.25); }

@media (min-width: 768px) {
  .btn-lg { width: auto; }
}

/* ==========================================================
   Hero
   ========================================================== */
.hero {
  padding: calc(var(--header-h) + clamp(40px, 9vw, 96px)) 0 clamp(44px, 8vw, 92px);
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--grey-100);
  background-color: #FDFCF9;
  background-image: radial-gradient(rgba(16, 20, 24, .05) 1px, transparent 1px);
  background-size: 24px 24px;
}
.hero-in { display: flex; flex-direction: column; gap: 28px; }

.hero-aud {
  display: inline-block; align-self: flex-start;
  font-size: 11.5px; font-weight: 600; letter-spacing: .08em; color: var(--grey-700);
  border: 1px solid var(--grey-300); border-radius: 999px; padding: 5px 14px;
  margin-bottom: 18px; background: rgba(255, 255, 255, .7);
  line-height: 1.7;
}

.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-en); font-size: 11px; font-weight: 600;
  letter-spacing: .3em; color: var(--gold-text); margin-bottom: 18px;
}
.kicker::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold-text); flex: 0 0 auto; }

.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 6.8vw, 40px);
  font-weight: 600; line-height: 1.5; letter-spacing: .02em;
  margin-bottom: 20px;
}
.hero-h1 em {
  font-style: normal;
  background: linear-gradient(transparent 72%, var(--accent-soft) 72%);
}

.hero-lead { font-size: clamp(15px, 4vw, 17px); color: var(--ink-soft); margin-bottom: 28px; }

.hero-cta { display: flex; flex-direction: column; gap: 12px; }
.btn-hero { width: 100%; padding: 17px 20px; font-size: 15px; }
.hero-cta-second {
  align-self: center; font-size: 13.5px; font-weight: 600; color: var(--ink-soft);
  text-decoration: none; border-bottom: 1px solid var(--accent); padding-bottom: 2px;
}
.hero-cta-second:hover { color: var(--gold-text); }
.hero-cta-note { text-align: center; font-size: 12px; color: var(--grey-700); }

/* 実績スタッツ：SPはカード縦積み */
.hero-stats { display: grid; grid-template-columns: 1fr; gap: 10px; }
.hero-stats li {
  display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 4px 16px;
  background: rgba(255, 255, 255, .85); border: 1px solid var(--grey-300);
  border-left: 3px solid var(--accent);
  padding: 14px 18px; border-radius: var(--radius);
}
.hs-num {
  grid-row: 1 / 3;
  font-family: var(--font-en); font-variant-numeric: tabular-nums;
  font-size: 26px; font-weight: 800; color: var(--ink); line-height: 1.15;
  min-width: 96px;
}
.hs-num small { font-size: 12px; font-weight: 700; color: var(--gold-text); margin-left: 2px; }
.hs-cap { font-size: 12.5px; color: var(--ink-soft); letter-spacing: .03em; line-height: 1.5; }
.hs-tag {
  justify-self: start;
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  color: var(--grey-700); border: 1px solid var(--grey-300); border-radius: 999px;
  padding: 1px 9px;
}
.hs-tag.sc { color: var(--gold-text); border-color: var(--accent-soft); background: rgba(232, 221, 194, .3); }
.hero-stats-note { font-size: 11.5px; color: var(--grey-700); margin-top: 12px; line-height: 1.7; }

@media (min-width: 900px) {
  .hero-in { flex-direction: row; align-items: center; gap: clamp(32px, 5vw, 72px); }
  .hero-copy { flex: 1 1 58%; min-width: 0; }
  .hero-side { flex: 1 1 42%; min-width: 0; }
  .hero-cta { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 20px; }
  .btn-hero { width: auto; }
  .hero-cta-note { flex-basis: 100%; text-align: left; }
  .hero-stats { gap: 14px; }
  .hero-stats li { padding: 18px 22px; }
  .hs-num { font-size: 32px; }
}

/* ==========================================================
   信頼バー
   ========================================================== */
.trust-band { background: var(--ink); color: #fff; padding: 18px 0; }
.trust-in { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,.82); line-height: 1.6;
}
.trust-item b {
  flex: 0 0 auto; font-size: 10.5px; font-weight: 700; letter-spacing: .12em;
  color: var(--gold-bright); border: 1px solid rgba(201, 164, 74, .5);
  padding: 1px 8px; border-radius: 999px;
}
@media (min-width: 900px) {
  .trust-in { grid-template-columns: repeat(4, auto); justify-content: space-between; }
  .trust-item { font-size: 13px; }
}

/* ==========================================================
   共通セクション
   ========================================================== */
.sec { padding: var(--sec-pad) 0; }

.sec-kicker {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-en); font-size: 11.5px; font-weight: 600;
  letter-spacing: .3em; color: var(--gold-text); margin-bottom: 18px;
}
.sec-kicker::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: 0 0 auto; }
.kicker-invert { color: var(--accent-soft); }
.kicker-invert::before { background: var(--accent-soft); }

.sec-title {
  font-size: clamp(23px, 6vw, 42px); font-weight: 900;
  line-height: 1.5; letter-spacing: .02em; margin-bottom: 22px;
}
.title-invert { color: #fff; }

.sec-lead {
  font-size: clamp(14.5px, 3.8vw, 16.5px); color: var(--grey-700);
  max-width: 780px; margin-bottom: clamp(32px, 6vw, 64px);
}
.lead-invert { color: rgba(255,255,255,.72); }

/* ==========================================================
   Pain
   ========================================================== */
.sec-pain { background: var(--grey-050); }
.pain-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: clamp(28px, 5vw, 56px); }
.pain-card { background: #fff; padding: clamp(24px, 5vw, 44px) clamp(20px, 4vw, 36px); border-top: 3px solid var(--ink); }
.pain-no { font-family: var(--font-en); font-size: 13px; font-weight: 700; color: var(--accent); letter-spacing: .18em; }
.pain-card h3 { font-size: clamp(17.5px, 4.6vw, 22px); font-weight: 700; margin: 12px 0; line-height: 1.5; }
.pain-card p { font-size: 14.5px; color: var(--grey-700); }

.pc-stat {
  margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--grey-300);
  font-size: 12.5px; color: var(--ink-soft); line-height: 1.7;
}
.pc-stat strong {
  display: block; font-family: var(--font-en); font-variant-numeric: tabular-nums;
  font-size: 26px; font-weight: 800; color: var(--ink); line-height: 1.2;
}
.pc-stat strong small { font-size: 13px; font-weight: 700; color: var(--gold-text); margin-left: 2px; }
.pc-stat .src { display: block; font-size: 10.5px; color: var(--grey-700); margin-top: 4px; font-weight: 400; }

.pain-flow {
  text-align: center; color: var(--gold-text);
  font-size: 13px; margin: clamp(20px, 4vw, 34px) 0 8px;
}
.pain-flow-label {
  text-align: center; font-size: 13px; font-weight: 600;
  color: var(--grey-700); letter-spacing: .1em;
  margin-bottom: clamp(18px, 4vw, 32px);
}

.issue-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.issue-card { background: #fff; border: 1px solid var(--grey-100); padding: 16px 14px 12px; }
.issue-card h3 {
  font-size: 13.5px; font-weight: 700; letter-spacing: .05em;
  margin-bottom: 8px; padding-bottom: 8px;
  border-bottom: 1px solid var(--grey-100);
}
.issue-card li {
  font-size: 12px; color: var(--ink-soft); line-height: 1.7;
  position: relative; padding-left: 13px; margin: 6px 0;
}
.issue-card li::before {
  content: ""; position: absolute; left: 0; top: .7em;
  width: 8px; height: 2px; background: var(--accent);
}
@media (min-width: 768px) {
  .pain-grid { grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.5vw, 32px); }
  .issue-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .issue-card { padding: 20px 20px 14px; }
  .issue-card h3 { font-size: 14.5px; }
  .issue-card li { font-size: 12.5px; }
}

.pain-solution {
  margin-top: clamp(24px, 5vw, 44px);
  background: var(--ink); border-radius: var(--radius);
  padding: 26px 22px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 16px;
}
.ps-label {
  font-size: 11px; font-weight: 700; letter-spacing: .24em;
  color: var(--gold-bright); border: 1px solid rgba(201, 164, 74, .55);
  padding: 5px 14px; white-space: nowrap;
}
.ps-copy {
  font-family: var(--font-serif);
  font-size: clamp(16px, 4.4vw, 21px); color: #F4F2EC; letter-spacing: .04em;
}
.ps-copy em { font-style: normal; color: var(--gold-bright); }
.pain-solution .btn { width: 100%; }
@media (min-width: 768px) {
  .pain-solution { flex-direction: row; justify-content: space-between; text-align: left; padding: 28px 34px; flex-wrap: wrap; }
  .pain-solution .btn { width: auto; }
}

/* ==========================================================
   Future（未来の姿）
   ========================================================== */
.sec-future { background: var(--ink); }
.future-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.future-card {
  position: relative;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.14);
  border-top: 3px solid var(--gold-bright);
  padding: clamp(24px, 5vw, 40px) clamp(20px, 4vw, 34px);
}
.fu-when {
  display: inline-block;
  font-family: var(--font-en); font-size: 11.5px; font-weight: 700; letter-spacing: .16em;
  color: var(--gold-bright); margin-bottom: 12px;
}
.future-card h3 { color: #fff; font-size: clamp(17px, 4.6vw, 21px); font-weight: 700; line-height: 1.6; margin-bottom: 12px; }
.future-card p { color: rgba(255,255,255,.72); font-size: 14px; }
.future-note { font-size: 11.5px; color: rgba(255,255,255,.5); margin-top: 20px; }
.future-cta { margin-top: 26px; text-align: center; }
.future-cta .btn { width: 100%; }
@media (min-width: 768px) {
  .future-grid { grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px); }
  .future-cta .btn { width: auto; }
}

/* ==========================================================
   Approach（三位一体）
   ========================================================== */
.sec-solution { background: #fff; }
.sol-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: clamp(28px, 5vw, 56px); }
.sol-card { background: var(--grey-050); border-top: 3px solid var(--ink); padding: clamp(24px, 5vw, 48px) clamp(20px, 4vw, 38px); }
.sol-no { font-family: var(--font-en); font-size: 13px; font-weight: 700; color: var(--accent); letter-spacing: .2em; }
.sol-card h3 { font-size: clamp(17.5px, 4.6vw, 22px); font-weight: 700; margin: 14px 0; line-height: 1.55; }
.sol-card p { color: var(--grey-700); font-size: 14px; }
.sol-tag { margin-top: 16px; font-size: 12.5px; color: var(--gold-text) !important; letter-spacing: .05em; font-weight: 600; }
.sol-quote {
  margin-top: clamp(32px, 6vw, 64px); text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(16.5px, 4.6vw, 24px); font-weight: 600; letter-spacing: .04em;
}
.sol-quote em { font-style: normal; color: var(--gold-text); background: linear-gradient(transparent 68%, var(--accent-soft) 68%); }
@media (min-width: 768px) {
  .sol-grid { grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px); }
}

/* ==========================================================
   Service Map（16手）
   ========================================================== */
.sec-map {
  background: var(--tan);
  border-top: 1px solid #E7E2D2;
  border-bottom: 1px solid #E7E2D2;
}

.teuchi { display: flex; flex-direction: column; gap: 24px; margin-top: clamp(24px, 5vw, 44px); }
.tg-title {
  font-size: 13.5px; font-weight: 700; letter-spacing: .12em;
  color: var(--ink); margin-bottom: 10px;
  display: flex; align-items: baseline; gap: 12px;
}
.tg-title::before { content: ""; width: 14px; height: 2px; background: var(--accent); align-self: center; }
.tg-title span { font-size: 11px; font-weight: 600; letter-spacing: .08em; color: var(--gold-text); }
.tg-grid { display: grid; grid-template-columns: 1fr; gap: 8px; }
.tile {
  display: flex; align-items: flex-start; gap: 11px;
  background: #fff; border: 1px solid var(--grey-100);
  padding: 13px 15px; border-radius: var(--radius);
}
.pg-num {
  flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #3A3F47, #16181C 70%);
  color: #F4F2EC; font-family: var(--font-serif); font-size: 10.5px;
  display: flex; align-items: center; justify-content: center;
}
.tile .pg-num { margin-top: 2px; }
.t-body strong { display: block; font-size: 14px; letter-spacing: .04em; line-height: 1.5; }
.t-body small { display: block; font-size: 11.5px; color: var(--grey-700); line-height: 1.6; margin-top: 1px; }
.tile.gold { background: #FBF7EC; border-color: var(--accent-soft); }
.tile.gold .pg-num { background: radial-gradient(circle at 35% 30%, #D4B45E, #96731E 75%); color: #211A08; font-weight: 700; }
.tile.gold .t-body strong, .tile.gold .t-body small { color: var(--gold-text); }
@media (min-width: 600px) { .tg-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }
@media (min-width: 900px) { .tg-grid { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); } }

/* 施策マップ（details + 横スクロール表） */
.jt-map { margin-top: 26px; border: 1px solid var(--grey-300); border-radius: 8px; background: #fff; overflow: hidden; }
.jt-map summary {
  cursor: pointer; list-style: none;
  padding: 14px 16px; min-height: 44px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transition: background .2s;
}
.jt-map summary:hover, .jt-map summary:active { background: #FBF7EC; }
.jt-map summary:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.jt-map summary::-webkit-details-marker { display: none; }
.jm-open { font-size: 14px; font-weight: 700; letter-spacing: .04em; }
.jm-hint { display: block; font-size: 10.5px; font-weight: 500; color: var(--grey-700); margin-top: 3px; letter-spacing: .02em; }
.jm-btn {
  flex: 0 0 auto; display: inline-flex; align-items: center; gap: 7px;
  min-height: 36px; padding: 6px 16px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .06em; color: var(--gold-text);
  background: #fff; border: 1.5px solid var(--accent); border-radius: 999px;
  box-shadow: 0 2px 6px rgba(16, 20, 24, .08);
}
.jm-btn::before { content: "開く"; }
.jm-btn::after { content: "▾"; color: var(--accent); font-size: 11px; }
.jt-map[open] .jm-btn::before { content: "閉じる"; }
.jt-map[open] .jm-btn::after { content: "▴"; }
.jmap-swipe { text-align: center; font-size: 11px; color: var(--grey-500); letter-spacing: .1em; padding: 4px 0; }
.jmapwrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-top: 1px solid var(--grey-100); }
table.jmap { border-collapse: collapse; width: 100%; min-width: 620px; font-size: 12px; background: #fff; }
table.jmap th, table.jmap td { border: 1px solid var(--grey-100); text-align: center; padding: 7px 5px; }
table.jmap thead th { background: var(--ink); color: #fff; font-size: 11px; font-weight: 600; }
table.jmap thead th.mv { text-align: left; padding-left: 14px; width: 190px; }
table.jmap tbody th { text-align: left; font-weight: 500; padding: 7px 12px; color: var(--ink); white-space: nowrap; }
table.jmap tbody th .n { display: inline-flex; align-items: center; justify-content: center; width: 17px; height: 17px; border-radius: 50%; background: var(--ink); color: #fff; font-family: var(--font-serif); font-size: 9.5px; margin-right: 7px; vertical-align: middle; }
table.jmap tr.band th { background: var(--grey-050); font-size: 10px; font-weight: 700; letter-spacing: .14em; color: var(--gold-text); }
table.jmap td.p { background: #FBF7EC; color: var(--gold-text); font-size: 14px; font-weight: 800; }
table.jmap td.s { color: var(--grey-700); }
table.jmap tr.goldrow th, table.jmap tr.goldrow td { background: #FBF7EC; }
table.jmap tr.goldrow td.p { color: var(--gold-text); }
.jmap-legend { font-size: 11.5px; color: var(--grey-700); padding: 12px 18px 16px; margin: 0; }
.jmap-legend b { color: var(--gold-text); }
.jmapwrap:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
@media (min-width: 768px) { .jmap-swipe { display: none; } }

/* ==========================================================
   CTA帯
   ========================================================== */
.cta-band { background: var(--ink); }
.cta-band-in {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 18px; padding-top: 34px; padding-bottom: 34px;
}
.cta-band-copy {
  font-family: var(--font-serif);
  font-size: clamp(17px, 4.6vw, 22px); color: #F4F2EC; letter-spacing: .05em;
}
.cta-band-copy span { color: var(--gold-bright); }
.cta-band .btn { width: 100%; max-width: 420px; }
@media (min-width: 768px) {
  .cta-band-in { flex-direction: row; justify-content: space-between; text-align: left; }
  .cta-band .btn { width: auto; }
}

/* ==========================================================
   Journey（6段階：PC=タブ／SP=チップ+パネル）
   ========================================================== */
.journey { border: 1px solid var(--grey-300); background: #fff; border-radius: 6px; overflow: hidden; }

.journey-tabs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
  padding: 12px; background: var(--grey-050);
  border-bottom: 1px solid var(--grey-300);
}
.j-tab {
  appearance: none; border: 1px solid var(--grey-300); border-radius: 999px;
  background: #fff;
  font-family: var(--font-jp); font-size: 12.5px; font-weight: 700;
  letter-spacing: .04em; color: var(--grey-700);
  padding: 9px 4px; min-height: 44px; cursor: pointer;
  transition: background .25s, color .25s, border-color .25s;
}
.j-step { display: block; font-family: var(--font-en); font-size: 9px; font-weight: 600; letter-spacing: .18em; color: var(--grey-700); }
.j-tab.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.j-tab.is-active .j-step { color: var(--gold-bright); }

.j-panel { display: none; }
.j-panel.is-active { display: block; }
.j-before, .j-after { padding: clamp(20px, 4vw, 34px) clamp(18px, 3vw, 34px); }
.j-before { background: var(--grey-050); border-bottom: 1px solid var(--grey-300); }
.j-label { font-family: var(--font-en); font-size: 11px; font-weight: 700; letter-spacing: .28em; margin-bottom: 12px; color: var(--grey-500); }
.j-after .j-label { color: var(--accent); }
.j-before p:not(.j-label) { font-size: 14.5px; color: var(--grey-700); }
.j-after p:not(.j-label) { font-size: 15px; color: var(--ink-soft); }
.j-after strong { color: var(--ink); background: linear-gradient(transparent 68%, var(--accent-soft) 68%); font-weight: 700; }

.j-side {
  padding: 12px 16px 10px;
  background: var(--grey-050); border-bottom: 1px solid var(--grey-300);
}
.j-moves2 {
  margin: 0; display: flex; flex-wrap: nowrap; gap: 8px 10px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; padding-bottom: 2px;
}
.j-moves2::-webkit-scrollbar { display: none; }
.j-moves2 li {
  flex: 0 0 auto;
  display: flex; align-items: center; gap: 7px;
  font-size: 12.5px; color: var(--ink-soft); line-height: 1.5;
  background: #fff; border: 1px solid var(--accent-soft); border-radius: 999px;
  padding: 4px 13px 4px 4px;
}
.j-moves2 b {
  flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  min-width: 20px; height: 20px; padding: 0 5px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #D4B45E, #8A6C18 78%);
  color: #211A08; font-family: var(--font-serif); font-size: 10.5px; font-weight: 600; font-style: normal;
}
.j-role {
  margin: 0 0 8px; padding: 0; border: none;
  font-size: 12.5px; font-weight: 700; letter-spacing: .04em; color: var(--gold-text);
  line-height: 1.7;
}
.j-role::before { content: ""; display: inline-block; width: 12px; height: 2px; background: var(--accent); margin-right: 8px; vertical-align: middle; }

@media (min-width: 768px) {
  .journey-tabs { grid-template-columns: repeat(6, 1fr); gap: 0; padding: 0; background: none; }
  .j-tab {
    border: none; border-radius: 0; background: var(--grey-050);
    border-right: 1px solid var(--grey-300);
    font-size: clamp(13px, 1.2vw, 15.5px);
    padding: 18px 8px 16px; position: relative;
  }
  .j-tab:last-child { border-right: none; }
  .j-step { font-size: 11px; letter-spacing: .22em; margin-bottom: 4px; }
  .j-tab:hover { background: #fff; color: var(--ink); }
  .j-tab.is-active { background: #fff; color: var(--ink); }
  .j-tab.is-active::after {
    content: ""; position: absolute; left: 0; right: 0; top: -1px; height: 3px; background: var(--accent);
  }
  .j-tab.is-active .j-step { color: var(--gold-text); }

  .j-panel.is-active {
    display: grid; grid-template-columns: 1fr 1.15fr; align-items: stretch;
  }
  .j-before { border-bottom: none; border-right: 1px solid var(--grey-300); }
  .j-side {
    grid-column: 1 / -1; border-bottom: 1px solid var(--grey-300);
    display: flex; align-items: center; gap: 24px;
    padding: 13px 26px;
  }
  .j-role { margin: 0; flex: 0 0 auto; }
  .j-role::after {
    content: ""; display: inline-block; width: 1px; height: 14px;
    background: var(--grey-300); margin-left: 24px; vertical-align: middle;
  }
  .j-moves2 { flex-wrap: wrap; overflow: visible; gap: 4px 20px; padding-bottom: 0; }
  .j-moves2 li { background: none; border: none; border-radius: 0; padding: 2px 0; gap: 9px; font-size: 13px; }
  .j-moves2 b { background: radial-gradient(circle at 35% 30%, #3A3F47, #16181C 70%); color: #F4F2EC; }
}

/* ==========================================================
   Service（フロー・ロードマップ・商品体系）
   ========================================================== */
.flow-steps {
  display: flex; flex-direction: column; gap: 0;
  margin: clamp(24px, 5vw, 40px) 0 26px;
  counter-reset: fs;
}
.flow-step {
  position: relative;
  display: flex; flex-direction: column;
  padding: 16px 18px 16px 24px; color: #fff;
  border-left: 3px solid var(--accent);
}
.flow-step + .flow-step { margin-top: 4px; }
.fs-1 { background: #101418; }
.fs-2 { background: #23282E; }
.fs-3 { background: #3A4048; }
.fs-4 { background: #7A5E17; }
.fs-no { font-family: var(--font-en); font-size: 10px; font-weight: 700; letter-spacing: .2em; color: rgba(255,255,255,.6); }
.fs-title { font-size: 15px; font-weight: 700; letter-spacing: .06em; margin-top: 2px; }
.fs-sub { font-size: 11.5px; letter-spacing: .04em; color: rgba(255, 255, 255, .78); margin-top: 3px; }
@media (min-width: 768px) {
  .flow-steps { flex-direction: row; gap: 6px; }
  .flow-step {
    flex: 1 1 0; min-width: 0; min-height: 92px; justify-content: center; text-align: center;
    border-left: none;
    padding: 14px 22px 14px 30px;
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%, 18px 50%);
  }
  .flow-step + .flow-step { margin-top: 0; }
  .flow-step:first-child { clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%); }
}

.svc-note-box {
  background: var(--grey-050); border-left: 3px solid var(--accent);
  padding: 18px 20px; margin: 0 0 14px;
}
.svc-why { border: 1px solid var(--grey-300); padding: 18px 20px; }
.svc-note-box h3, .svc-why h3 {
  font-size: 12px; font-weight: 700; letter-spacing: .16em;
  color: var(--gold-text); margin-bottom: 8px;
}
.svc-note-box p, .svc-why p { font-size: 13.5px; color: var(--ink-soft); }
.svc-why-note { font-size: 11.5px !important; color: var(--grey-700) !important; margin-top: 6px; }

/* 90日ロードマップ */
.roadmap { margin-top: clamp(32px, 6vw, 56px); }
.lineup-title {
  font-family: var(--font-serif);
  font-size: clamp(17.5px, 4.8vw, 22px); font-weight: 600; letter-spacing: .04em;
  margin-bottom: 8px;
}
.lineup-lead { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 18px; }
.rm-grid {
  position: relative; display: grid; grid-template-columns: 1fr;
  gap: 12px; margin-top: 22px;
}
.rm-col { position: relative; background: #fff; border: 1px solid var(--grey-100); border-left: 3px solid var(--grey-300); padding: 16px 18px 12px; }
.rm-period {
  font-family: var(--font-en); font-size: 11px; font-weight: 700;
  letter-spacing: .18em; color: var(--gold-text);
}
.rm-phase {
  font-family: var(--font-serif);
  font-size: 18px; font-weight: 600; letter-spacing: .08em;
  margin: 2px 0 10px; padding-bottom: 8px; border-bottom: 1px solid var(--grey-100);
}
.rm-col li {
  font-size: 12.5px; color: var(--ink-soft); line-height: 1.8;
  position: relative; padding-left: 13px; margin: 6px 0;
}
.rm-col li::before {
  content: ""; position: absolute; left: 0; top: .72em;
  width: 7px; height: 2px; background: var(--accent);
}
.rm-col li b, .lu-moves b {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 17px; height: 17px; padding: 0 3px; margin: 0 2px;
  border-radius: 50%; background: radial-gradient(circle at 35% 30%, #3A3F47, #16181C 70%);
  color: #F4F2EC; font-family: var(--font-serif); font-size: 9.5px; font-weight: 600;
  vertical-align: middle; transform: translateY(-1px);
}
.rm-goal { background: #FBF7EC; border-color: var(--accent-soft); border-left-color: var(--accent); }
.rm-goal .rm-phase { color: var(--gold-text); border-bottom-color: var(--accent-soft); }
@media (min-width: 768px) {
  .rm-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; padding-top: 18px; }
  .rm-grid::before {
    content: ""; position: absolute; top: 0; left: 4px; right: 4px; height: 2px;
    background: linear-gradient(to right, var(--accent-soft), var(--accent));
  }
  .rm-col { border-left: 1px solid var(--grey-100); }
  .rm-col::before {
    content: ""; position: absolute; top: -22px; left: 0;
    width: 9px; height: 9px; border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #D4B45E, #96731E 75%);
  }
  .rm-goal { border-color: var(--accent-soft); }
}

/* 商品体系：カード構造（SPでも表を使わない） */
.lineup { margin-top: clamp(32px, 6vw, 56px); }
.lineup-cards { display: grid; grid-template-columns: 1fr; gap: 12px; }
.lu-card {
  position: relative; background: #fff; border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  padding: 18px 18px 14px;
}
.lu-stage {
  position: absolute; top: 18px; right: 16px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .14em; color: var(--grey-700);
  border: 1px solid var(--grey-300); border-radius: 999px; padding: 2px 10px;
}
.lu-name { font-size: 15.5px; font-weight: 700; line-height: 1.6; padding-right: 64px; }
.lu-desc { font-size: 12.5px; color: var(--grey-700); margin-top: 4px; }
.lu-ph { margin-top: 10px; }
.lu-ph span {
  display: inline-block; font-size: 10.5px; font-weight: 600; letter-spacing: .06em;
  color: var(--ink-soft); border: 1px solid var(--grey-300); border-radius: 999px;
  padding: 2px 10px; margin: 2px 4px 2px 0; white-space: nowrap;
}
.lu-ph .ph-all { border-color: var(--accent-soft); color: var(--gold-text); background: rgba(232, 221, 194, .25); }
.lu-meta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 6px 16px;
  margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--grey-300);
}
.lu-moves { font-size: 12px; color: var(--ink-soft); line-height: 2; }
.lu-form { font-size: 11.5px; font-weight: 700; color: var(--grey-700); white-space: nowrap; }
.lu-main { background: #FBF7EC; border-color: var(--accent-soft); border-left: 3px solid var(--accent); }
.lu-main .lu-stage { color: var(--gold-text); border-color: var(--accent-soft); background: #fff; }
.lineup-note { font-size: 11.5px; color: var(--grey-700); margin-top: 12px; }
.lineup-cta { margin-top: 14px; }
.lineup-cta a {
  font-size: 14px; font-weight: 700; letter-spacing: .05em;
  color: var(--gold-text); text-decoration: none;
  border-bottom: 1px solid var(--accent); padding-bottom: 2px;
}
.lineup-cta a:hover { color: var(--ink); border-bottom-color: var(--ink); }
@media (min-width: 768px) {
  .lineup-cards { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .lu-card { padding: 22px 22px 16px; }
}

/* ==========================================================
   AI社員
   ========================================================== */
.sec-ai { background: var(--grey-050); }
.ai-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.ai-card { background: #fff; padding: clamp(20px, 4vw, 36px); border-top: 3px solid var(--accent); }
.ai-card h3 { font-size: 16.5px; font-weight: 700; margin-bottom: 8px; }
.ai-card h3::before { content: "AI"; font-family: var(--font-en); font-size: 10.5px; font-weight: 700; color: #fff; background: var(--ink); padding: 3px 7px; margin-right: 10px; vertical-align: 2px; letter-spacing: .1em; }
.ai-card p { font-size: 13.5px; color: var(--grey-700); }
.ai-note {
  margin-top: clamp(24px, 5vw, 48px); font-size: 14px; color: var(--ink-soft);
  background: #fff; border-left: 3px solid var(--ink); padding: 18px 20px;
}
@media (min-width: 600px) { .ai-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .ai-grid { grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); } }

/* ==========================================================
   Works（黒帯）
   ========================================================== */
.sec-works { background: var(--ink); }
.works-grid {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14);
  margin-top: clamp(28px, 5vw, 56px);
}
.work-card { background: var(--ink); padding: clamp(24px, 5vw, 52px) clamp(20px, 4vw, 44px); }
.work-label {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .14em;
  color: rgba(255, 255, 255, .65); border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px; padding: 3px 12px; margin-bottom: 12px;
}
.work-label.sc { color: var(--gold-bright); border-color: rgba(201, 164, 74, .6); background: rgba(201, 164, 74, .08); }
.work-tag { font-size: 12.5px; font-weight: 700; letter-spacing: .12em; color: var(--accent-soft); margin-bottom: 14px; }
.work-num { font-family: var(--font-en); font-size: clamp(38px, 10vw, 64px); font-weight: 800; color: #fff; line-height: 1.05; }
.work-num small { font-size: .38em; font-weight: 700; letter-spacing: .04em; color: var(--accent-soft); margin-left: 4px; }
.work-what { font-size: 13.5px; color: rgba(255,255,255,.75); margin: 10px 0 16px; }
.work-card ul { border-top: 1px solid rgba(255,255,255,.14); padding-top: 14px; }
.work-card li { font-size: 13px; color: rgba(255,255,255,.6); padding: 3px 0; }
.work-scope { margin-top: 16px; font-size: 11.5px; color: rgba(255,255,255,.62); line-height: 1.8; }
.works-note { font-size: 11.5px; color: rgba(255,255,255,.68); margin-top: 24px; }
@media (min-width: 768px) { .works-grid { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================
   Difference（比較：SPでも読めるカード積み）
   ========================================================== */
.diff-list { display: flex; flex-direction: column; gap: 12px; }
.diff-row {
  display: grid; grid-template-columns: 1fr;
  border: 1px solid var(--grey-300); border-radius: var(--radius); overflow: hidden;
}
.diff-them { background: var(--grey-050); padding: 16px 20px; }
.diff-them h3 { font-size: 14.5px; font-weight: 700; margin-bottom: 4px; }
.diff-them p { font-size: 13px; color: var(--grey-700); }
.diff-ours { background: #FBF7EC; border-top: 1px solid var(--accent-soft); padding: 14px 20px 16px; }
.diff-arrow { font-size: 11px; font-weight: 700; letter-spacing: .12em; color: var(--gold-text); margin-bottom: 4px; }
.diff-ours p:not(.diff-arrow) { font-size: 14.5px; font-weight: 700; color: var(--ink); }
@media (min-width: 768px) {
  .diff-row { grid-template-columns: 1fr 1.2fr; }
  .diff-them { padding: 22px 26px; }
  .diff-ours { border-top: none; border-left: 3px solid var(--accent); padding: 22px 26px; }
}

.diff-method {
  margin-top: clamp(24px, 5vw, 44px);
  border: 1px solid var(--grey-300); border-left: 3px solid var(--accent);
  padding: 18px 20px;
}
.diff-method h3 {
  font-size: 12px; font-weight: 700; letter-spacing: .16em;
  color: var(--gold-text); margin-bottom: 8px;
}
.diff-method p { font-size: 13.5px; color: var(--ink-soft); }

/* ==========================================================
   Founder
   ========================================================== */
.sec-founder { background: var(--grey-050); }
.founder-in { display: grid; grid-template-columns: 1fr; gap: clamp(24px, 6vw, 72px); align-items: start; }
.founder-photo { max-width: 420px; margin: 0 auto; width: 100%; }
.founder-photo img { width: 100%; object-fit: cover; aspect-ratio: 4 / 5; border-radius: var(--radius); }
.founder-name { font-size: clamp(25px, 6.6vw, 36px); font-weight: 900; letter-spacing: .06em; margin-bottom: 6px; }
.founder-name span { display: block; font-family: var(--font-en); font-size: 12px; font-weight: 600; letter-spacing: .3em; color: var(--gold-text); margin-top: 8px; }
.founder-role { font-size: 14px; color: var(--grey-700); margin-bottom: 22px; }
.founder-body p:not(.sec-kicker):not(.founder-role) { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 16px; }
.founder-links { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.founder-links a {
  display: inline-block; align-self: flex-start;
  font-size: 13.5px; font-weight: 500; color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--accent); padding: 4px 0 2px;
}
.founder-links a:hover { color: var(--gold-text); }
@media (min-width: 768px) {
  .founder-in { grid-template-columns: .8fr 1.2fr; }
  .founder-photo { margin: 0; }
  .founder-links { flex-direction: row; flex-wrap: wrap; gap: 12px 28px; }
}

/* ==========================================================
   FAQ
   ========================================================== */
.faq-list { border-top: 1px solid var(--grey-300); max-width: 880px; }
.faq-item { border-bottom: 1px solid var(--grey-300); }
.faq-item summary {
  cursor: pointer; list-style: none; position: relative;
  font-size: clamp(14.5px, 4vw, 17px); font-weight: 700; line-height: 1.7;
  padding: 20px 44px 20px 2px; min-height: 44px;
  transition: color .25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { content: "Q."; font-family: var(--font-en); font-weight: 800; color: var(--accent); margin-right: 12px; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-en); font-size: 24px; font-weight: 400; color: var(--grey-500);
  transition: transform .3s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); color: var(--accent); }
.faq-item summary:hover { color: var(--gold-text); }
.faq-item p { font-size: 14px; color: var(--grey-700); padding: 0 2px 24px 34px; }

/* ==========================================================
   Contact（黒帯）
   ========================================================== */
.sec-contact { background: var(--ink); }
.contact-lead { color: rgba(255,255,255,.72); font-size: 14.5px; margin-bottom: 24px; max-width: 720px; }

.contact-points { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.contact-points li {
  position: relative; padding-left: 24px;
  font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,.85);
}
.contact-points li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--gold-bright); font-weight: 800;
}
@media (min-width: 768px) {
  .contact-points { flex-direction: row; gap: 32px; }
}

.contact-steps {
  display: grid; grid-template-columns: 1fr; gap: 10px;
  max-width: 880px; margin-bottom: clamp(32px, 6vw, 52px);
  counter-reset: cs;
}
.contact-steps li {
  display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 2px 14px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius); padding: 14px 18px;
}
.cs-no {
  grid-row: 1 / 3;
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #D4B45E, #96731E 75%);
  color: #211A08; font-family: var(--font-en); font-size: 15px; font-weight: 800;
}
.contact-steps b { font-size: 14.5px; font-weight: 700; color: #fff; }
.contact-steps li > span:not(.cs-no) { font-size: 12px; color: rgba(255,255,255,.62); line-height: 1.7; }
@media (min-width: 768px) {
  .contact-steps { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .contact-steps li { grid-template-columns: auto 1fr; align-content: start; padding: 18px 20px; }
}

.form { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 880px; }
.f-field label { display: block; font-size: 13px; font-weight: 700; color: rgba(255,255,255,.85); margin-bottom: 8px; letter-spacing: .06em; }
.req { font-size: 10.5px; color: #fff; background: var(--accent); padding: 2px 8px; margin-left: 8px; border-radius: 2px; letter-spacing: .1em; }
.f-field input, .f-field select, .f-field textarea {
  width: 100%; padding: 14px 16px; font-size: 16px; font-family: var(--font-jp);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.22);
  color: #fff; border-radius: var(--radius);
  transition: border-color .25s, background .25s;
}
.f-field select { appearance: auto; min-height: 50px; }
.f-field select option { color: var(--ink); }
.f-field input:focus, .f-field select:focus, .f-field textarea:focus {
  outline: none; border-color: var(--accent); background: rgba(255,255,255,.1);
}
.f-field input.is-error, .f-field textarea.is-error { border-color: #C0392B; }
.f-full { grid-column: 1 / -1; }
.f-submit { text-align: center; margin-top: 8px; }
.f-note { font-size: 12.5px; color: rgba(255,255,255,.5); margin-top: 14px; }
.f-note-todo { color: rgba(255, 255, 255, .62) !important; }
.contact-form-cta { margin-top: 32px; max-width: 880px; text-align: center; }
.contact-form-cta .btn-fill { background: var(--gold-bright); color: #14120A; }
.contact-form-cta .btn-fill:hover { background: #D9BC69; }
.form .btn-fill { background: var(--gold-bright); color: #14120A; }
.form .btn-fill:hover { background: #D9BC69; }

.f-consent {
  grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 12px;
  font-size: 13px; line-height: 1.8; color: rgba(255, 255, 255, .8); cursor: pointer;
}
.f-consent input {
  flex: 0 0 auto; width: 20px; height: 20px; margin-top: 4px;
  accent-color: var(--accent); cursor: pointer;
}
.f-consent a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.f-consent a:hover { color: var(--accent-soft); }
.f-consent .req { margin-left: 6px; }
.f-consent.is-error span { color: #E8A79B; }
.form-status {
  grid-column: 1 / -1; min-height: 1.2em; margin: 0;
  font-size: 13.5px; font-weight: 700; color: var(--gold-bright); text-align: center;
}
@media (min-width: 768px) {
  .form { grid-template-columns: 1fr 1fr; gap: 24px 32px; }
}

/* ==========================================================
   Company / Footer
   ========================================================== */
.sec-company { padding: clamp(56px, 9vw, 100px) 0; }
.company-title { font-size: 19px; font-weight: 900; letter-spacing: .1em; margin-bottom: 26px; }
.company-dl { border-top: 1px solid var(--grey-300); max-width: 880px; }
.company-dl > div { display: grid; grid-template-columns: 1fr; gap: 2px; padding: 14px 2px; border-bottom: 1px solid var(--grey-300); }
.company-dl dt { font-size: 12.5px; font-weight: 700; color: var(--grey-700); }
.company-dl dd { font-size: 14px; }
@media (min-width: 768px) {
  .company-dl > div { grid-template-columns: 180px 1fr; gap: 24px; padding: 18px 4px; }
}

.footer { background: var(--ink); color: #fff; padding: clamp(44px, 7vw, 72px) 0 40px; }
.footer-in { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: start; }
.footer-logo { font-family: var(--font-en); font-weight: 700; font-size: 17px; letter-spacing: .24em; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 8px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 4px 22px; }
.footer-nav a {
  font-size: 13px; color: rgba(255,255,255,.7); text-decoration: none;
  padding: 12px 0; display: inline-block;
}
.footer-nav a:hover { color: var(--accent-soft); }
.footer-legal { grid-column: 1 / -1; font-size: 11.5px; color: rgba(255,255,255,.4); border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; margin-top: 8px; }
/* 追従CTAに隠れないよう余白を確保（SPのみ） */
@media (max-width: 899px) {
  .footer { padding-bottom: 108px; }
}
@media (min-width: 768px) {
  .footer-in { grid-template-columns: 1fr auto; gap: 32px; }
}

/* ==========================================================
   追従CTA（モバイルのみ）
   ========================================================== */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  padding: 10px var(--pad-x) calc(10px + env(safe-area-inset-bottom));
  background: rgba(16, 20, 24, .92); backdrop-filter: blur(8px);
  transform: translateY(110%); visibility: hidden;
  transition: transform .35s ease, visibility .35s;
}
.sticky-cta.is-visible { transform: translateY(0); visibility: visible; }
.btn-sticky {
  width: 100%; padding: 13px 16px;
  display: flex; flex-direction: column; gap: 0; line-height: 1.4;
}
.btn-sticky:hover { transform: none; }
.sticky-sub { font-size: 10.5px; font-weight: 600; color: rgba(20, 18, 10, .7); letter-spacing: .06em; }
@media (min-width: 900px) { .sticky-cta { display: none; } }

/* ==========================================================
   プライバシーポリシー（privacy.html）
   ========================================================== */
.legal-main { padding: calc(var(--header-h) + clamp(32px, 7vw, 72px)) 0 clamp(56px, 9vw, 100px); }
.legal-wrap { max-width: 800px; }
.legal-main h1 { font-size: clamp(23px, 6vw, 34px); font-weight: 900; letter-spacing: .04em; margin-bottom: 14px; }
.legal-updated { font-size: 12.5px; color: var(--grey-700); margin-bottom: 32px; }
.legal-main h2 {
  font-size: clamp(16px, 4.4vw, 19px); font-weight: 700; letter-spacing: .04em;
  margin: 36px 0 12px; padding-left: 14px; border-left: 3px solid var(--accent);
}
.legal-main h3 {
  font-size: clamp(14.5px, 4vw, 16px); font-weight: 700; letter-spacing: .03em;
  margin: 26px 0 8px; color: var(--ink);
}
.legal-main p, .legal-main li { font-size: 14px; color: var(--ink-soft); }
.legal-main ul { padding-left: 2px; }
.legal-main li { position: relative; padding-left: 16px; margin: 6px 0; }
.legal-main li::before {
  content: ""; position: absolute; left: 0; top: .8em;
  width: 8px; height: 2px; background: var(--accent);
}
.legal-note {
  margin-top: 40px; padding: 16px 18px; background: var(--grey-050);
  border-left: 3px solid var(--grey-500); font-size: 12.5px !important; color: var(--grey-700) !important;
}
.legal-back { display: inline-block; margin-top: 28px; font-size: 13.5px; font-weight: 700; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--accent); padding-bottom: 2px; }
.legal-back:hover { color: var(--gold-text); }

/* ==========================================================
   PC表示ヘルパー
   ========================================================== */
@media (min-width: 768px) {
  :root { --pad-x: clamp(24px, 4vw, 48px); }
}
/* .pc/.sp の切替はヘッダー・ヒーローの2カラム化（900px）に合わせる */
@media (min-width: 900px) {
  .pc { display: inline; }
  .sp { display: none; }
}

/* スキップリンク */
.skip-link {
  position: absolute; left: 8px; top: -72px; z-index: 200;
  line-height: 1.4;
  background: var(--ink); color: #fff; font-size: 13px; font-weight: 700;
  padding: 12px 18px; border-radius: var(--radius); text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: 8px; }

/* honeypot（スパム対策・視覚非表示） */
.hp-field {
  position: absolute !important; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; padding: 0; margin: -1px;
}

/* ============================================================
   styles-v8.css — index-v8.html 追加分（自社開発プロダクト紹介）
   styles.css の後に読み込む。既存クラスは変更しない。
   モバイルファースト（min-width で段階拡張）
   ============================================================ */

/* ---------- セクション ---------- */
.sec-products { background: var(--tan); }

/* ---------- プロダクト1件 ---------- */
.pd {
  display: grid;
  gap: 22px;
  margin-top: 52px;
  padding-top: 44px;
  border-top: 1px solid var(--grey-300);
}
.pd:first-of-type { margin-top: 44px; padding-top: 0; border-top: 0; }

/* ---------- スクリーンショット（ブラウザ風フレーム） ---------- */
.pd-shot {
  background: #E9E6DD;
  border: 1px solid var(--grey-300);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(16, 20, 24, .10);
}
.pd-shot-bar {
  display: flex;
  gap: 5px;
  padding: 9px 12px;
  background: #F3F1EA;
  border-bottom: 1px solid var(--grey-300);
}
.pd-shot-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--grey-300);
}
.pd-shot img {
  display: block;
  width: 100%;
  height: auto;
}
.pd-shot figcaption {
  font-size: 11px;
  color: var(--grey-700);
  padding: 8px 12px;
  background: #F3F1EA;
  border-top: 1px solid var(--grey-300);
}

/* ---------- テキスト ---------- */
.pd-kicker {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--gold-text);
}
.pd-name {
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.4;
  margin-top: 10px;
}
.pd-en {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  color: var(--grey-500);
  margin-left: 8px;
  white-space: nowrap;
}
.pd-tagline {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-text);
  margin-top: 8px;
}
.pd-desc {
  font-size: 14.5px;
  line-height: 2;
  color: var(--ink-soft);
  margin-top: 14px;
}

/* ---------- アップデート枠（コンテルジュ：SNS配信設計） ---------- */
.pd-update {
  margin-top: 18px;
  padding: 16px 16px 14px;
  background: var(--paper);
  border: 1px solid var(--accent-soft);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
}
.pd-new {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  color: #fff;
  background: var(--accent);
  border-radius: 2px;
  padding: 3px 8px;
  margin-right: 8px;
  vertical-align: 1px;
}
.pd-update-head {
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.7;
}
.pd-update-desc {
  font-size: 12.5px;
  color: var(--grey-700);
  line-height: 1.9;
  margin-top: 6px;
}
.pd-flow {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
}
.pd-flow li {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--grey-050);
  border: 1px solid var(--grey-300);
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 11.5px;
  line-height: 1.4;
}
.pd-flow li b {
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--ink);
}
.pd-flow li span { color: var(--gold-text); font-weight: 500; }
.pd-flow li + li::before {
  content: "→";
  color: var(--grey-500);
  margin-right: 6px;
  margin-left: -2px;
}

/* ---------- 特長・注記・CTA ---------- */
.pd-points {
  list-style: none;
  margin-top: 16px;
  display: grid;
  gap: 8px;
}
.pd-points li {
  position: relative;
  padding-left: 20px;
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--ink-soft);
}
.pd-points li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 11px;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--gold-bright), var(--accent));
}
.pd-note {
  font-size: 11.5px;
  color: var(--grey-700);
  margin-top: 10px;
}
.pd-cta { margin-top: 22px; }
.pd-cta .btn { width: 100%; text-align: center; }

/* ---------- 768px〜 ---------- */
@media (min-width: 768px) {
  .pd-cta .btn { width: auto; }
  .pd-name { font-size: 27px; }
}

/* ---------- 900px〜：画像とテキストの2カラム（交互配置） ---------- */
@media (min-width: 900px) {
  .pd {
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 72px;
    padding-top: 64px;
  }
  .pd:first-of-type { margin-top: 56px; }
  .pd-rev .pd-media { order: 2; }
  .pd-rev .pd-body { order: 1; }
}

/* ============================================================
   提供サービス ダイジェスト（ヒーロー直後・離脱防止）
   ============================================================ */
.sec-svcdig { padding: clamp(40px, 8vw, 84px) 0; background: var(--paper); border-bottom: 1px solid var(--grey-100); }
.svcdig-title {
  font-size: clamp(20px, 4.6vw, 26px); font-weight: 900; letter-spacing: .02em;
  margin-top: 14px;
}
.svcdig-lead { font-size: 13.5px; color: var(--grey-700); line-height: 2; margin-top: 10px; }
.svcdig-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.svcdig-list a {
  display: block;
  padding: 14px 38px 14px 16px;
  border: 1px solid var(--grey-300);
  border-radius: var(--radius);
  background: var(--paper);
  text-decoration: none;
  position: relative;
  transition: border-color .25s, box-shadow .25s;
}
.svcdig-list a::after {
  content: "→";
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  color: var(--accent); font-family: var(--font-en); font-weight: 700;
}
.svcdig-list a:hover { border-color: var(--accent); box-shadow: 0 6px 18px rgba(16, 20, 24, .07); }
.sd-name { display: block; }
.sd-cat { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: .06em; color: var(--grey-700); margin-bottom: 3px; }
.sd-brand {
  display: block; font-size: 17px; font-weight: 800; letter-spacing: .02em; line-height: 1.4; color: var(--ink);
}
.sd-brand::after {
  content: ""; display: block; width: 26px; height: 2px; margin-top: 6px;
  background: linear-gradient(90deg, var(--gold-bright), var(--accent)); border-radius: 2px;
}
.sd-copy { display: block; font-size: 12px; font-weight: 700; color: var(--gold-text); margin-top: 8px; }
.sd-sub { display: block; font-size: 12px; color: var(--grey-700); line-height: 1.8; margin-top: 4px; }
.sd-main a { border-left: 3px solid var(--accent); }

@media (min-width: 768px) {
  .svcdig-list { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (min-width: 1100px) {
  .svcdig-list { grid-template-columns: repeat(3, 1fr); }
  .svcdig-list a { padding: 18px 40px 16px 18px; }
}

/* ============================================================
   提供サービス 詳細（5サービス・#service内）
   ============================================================ */
.svc5-list { display: grid; gap: 14px; margin-top: 24px; }
.svc5-card {
  background: var(--paper);
  border: 1px solid var(--grey-300);
  border-radius: var(--radius);
  padding: 22px 20px 20px;
}
.svc5-stage {
  font-family: var(--font-en);
  font-size: 10.5px; font-weight: 700; letter-spacing: .16em;
  color: var(--gold-text);
}
.svc5-name { font-size: 19px; font-weight: 800; margin-top: 8px; line-height: 1.4; letter-spacing: .02em; }
.svc5-name .svc5-en { font-family: var(--font-en); font-size: 11px; font-weight: 700; letter-spacing: .1em; color: var(--grey-500); margin-left: 8px; }
.svc5-name .svc5-cat { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: .04em; color: var(--grey-700); margin-top: 4px; }
.svc5-copy { font-size: 13px; font-weight: 700; color: var(--gold-text); margin-top: 6px; }
.svc5-desc { font-size: 13.5px; line-height: 2; color: var(--ink-soft); margin-top: 10px; }
.svc5-scope { list-style: none; display: flex; flex-wrap: wrap; gap: 6px 8px; margin-top: 12px; }
.svc5-scope li {
  font-size: 11.5px; color: var(--ink-soft); line-height: 1.5;
  background: var(--grey-050); border: 1px solid var(--grey-300); border-radius: 999px;
  padding: 4px 11px;
}
.svc5-meta { margin-top: 14px; }
.svc5-main { border-color: var(--accent-soft); background: #FDFBF4; border-top: 3px solid var(--accent); }

@media (min-width: 900px) {
  .svc5-list { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .svc5-card { padding: 26px 26px 24px; }
}

/* ============================================================
   v9 追加（index-v9.html 用の新規クラス。既存ページには影響なし）
   ============================================================ */

/* リード文をPCで1行に（sec-lead の max-width 780px を解除） */
@media (min-width: 900px) {
  .lead-wide { max-width: none; }
}

/* アプローチカード：上=キャッチコピー（小）／下=サービス名称（強調） */
.sol-tag .sol-catch {
  display: block;
  font-size: 11px; font-weight: 600; letter-spacing: .08em;
  color: var(--grey-700);
  margin-bottom: 5px;
}
.sol-tag .sol-svc {
  display: inline-block;
  font-size: 16.5px; font-weight: 800; letter-spacing: .03em; line-height: 1.6;
  color: var(--ink);
  background: linear-gradient(transparent 70%, var(--accent-soft) 70%);
  padding: 0 2px;
}
.sol-tag .sol-svc small {
  font-family: var(--font-en);
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  color: var(--gold-text);
  margin-left: 3px;
}

/* 会社概要：事業内容リスト（定款準拠・PC2カラム） */
.biz-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 5px 28px; }
.biz-list li { position: relative; padding-left: 14px; line-height: 1.8; }
.biz-list li::before {
  content: ""; position: absolute; left: 0; top: .8em;
  width: 7px; height: 2px; background: var(--accent);
}
@media (min-width: 768px) {
  .biz-list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(7, auto);
    grid-auto-flow: column;
  }
}

/* ============================================================
   v10 追加（index v10 用の新規クラス。既存クラスは変更しない）
   1) First Step（アミューズビズ・#future前の橋渡し）
   2) 提供サービス6件化（#products）：STEPキッカー・バッジ・提供形態・
      画像なしサービス用パネル・主力ハイライト
   3) AI社員 → AIデギュスタシオン誘導ボックス
   ============================================================ */

/* ---------- 1) First Step（アミューズビズ） ---------- */
.sec-amuse { background: var(--paper); border-top: 1px solid var(--grey-100); }
.amuse-in { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 6vw, 64px); align-items: center; }

.amuse-brand {
  display: inline-block;
  font-size: clamp(19px, 5vw, 24px); font-weight: 800; letter-spacing: .02em; line-height: 1.5;
  color: var(--ink);
}
.amuse-cat {
  display: block; font-size: 11.5px; font-weight: 700; letter-spacing: .06em;
  color: var(--grey-700); margin-bottom: 4px;
}
.amuse-brand::after {
  content: ""; display: block; width: 30px; height: 2px; margin-top: 8px;
  background: linear-gradient(90deg, var(--gold-bright), var(--accent)); border-radius: 2px;
}
.amuse-desc { font-size: 14.5px; color: var(--ink-soft); margin-top: 16px; max-width: 640px; }
.amuse-cta { display: flex; flex-direction: column; align-items: stretch; gap: 14px; margin-top: 26px; }
.amuse-cta-second {
  align-self: center; font-size: 13.5px; font-weight: 600; color: var(--ink-soft);
  text-decoration: none; border-bottom: 1px solid var(--accent); padding-bottom: 2px;
}
.amuse-cta-second:hover { color: var(--gold-text); }

/* 4象限ミニマップ（画像を使わないCSS図解） */
.amuse-visual { max-width: 470px; width: 100%; margin: 0 auto; }
.amuse-axis-y, .amuse-axis-x { font-size: 11px; font-weight: 600; letter-spacing: .1em; color: var(--grey-700); }
.amuse-axis-y { margin-bottom: 8px; }
.amuse-axis-y::before { content: "↑ "; color: var(--accent); }
.amuse-axis-x { text-align: right; margin-top: 8px; }
.amuse-axis-x::after { content: " →"; color: var(--accent); }
.amuse-quad { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.aq-cell {
  min-height: 96px; padding: 12px 10px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  text-align: center;
  background: var(--grey-050); border: 1px dashed var(--grey-300); border-radius: var(--radius);
}
.aq-tag { font-size: 12.5px; font-weight: 700; letter-spacing: .04em; color: var(--grey-500); }
.aq-cell small { font-size: 10.5px; color: var(--grey-700); line-height: 1.6; }
.aq-hit { background: #FBF7EC; border: 1px solid var(--accent-soft); }
.aq-hit .aq-tag { font-size: 15px; color: var(--gold-text); }
.aq-ai { background: var(--ink); border-color: var(--ink); }
.aq-ai .aq-tag { color: #fff; }
.aq-ai small { color: rgba(255, 255, 255, .6); }
.amuse-visual-note { font-size: 11px; color: var(--grey-700); margin-top: 10px; }

@media (min-width: 768px) {
  .amuse-cta { flex-direction: row; align-items: center; }
  .amuse-cta .btn { width: auto; }
  .aq-cell { min-height: 116px; }
}
@media (min-width: 900px) {
  .amuse-in { grid-template-columns: 1.15fr .85fr; }
  .amuse-visual { margin: 0; }
}

/* ---------- 2) 提供サービス6件化（#products） ---------- */
/* キッカー：STEP＋カテゴリ＋バッジの3層 */
.pd-kicker { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 10px; }
.pd-step { flex: 0 0 auto; }
.pd-cat {
  font-family: var(--font-jp); font-size: 11.5px; font-weight: 700; letter-spacing: .06em;
  color: var(--grey-700);
  padding-left: 10px; border-left: 1px solid var(--grey-300);
}
.pd-badge {
  font-family: var(--font-jp); font-size: 10px; font-weight: 700; letter-spacing: .12em;
  color: var(--gold-text); background: rgba(232, 221, 194, .35);
  border: 1px solid var(--accent-soft); border-radius: 999px; padding: 1px 10px;
}
.pd-badge-main { color: #fff; background: var(--ink); border-color: var(--ink); }

/* 提供形態 */
.pd-meta { margin-top: 16px; font-size: 12px; font-weight: 700; color: var(--ink-soft); letter-spacing: .04em; }
.pd-meta::before {
  content: "提供形態";
  font-size: 10px; font-weight: 700; letter-spacing: .14em; color: var(--grey-700);
  border: 1px solid var(--grey-300); border-radius: 999px; padding: 1px 9px;
  margin-right: 10px; vertical-align: 1px;
}

/* 成果物モック（.pd-shot のブラウザ風フレーム内に置く出力イメージ） */
.mk {
  display: flex; flex-direction: column; gap: 12px;
  padding: 16px 16px 18px;
  background: #fff;
}
.mk-head {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: .05em; color: var(--ink);
  padding-bottom: 9px; border-bottom: 1px solid var(--grey-100);
}
.mk-tag {
  flex: 0 0 auto;
  font-size: 9.5px; font-weight: 700; letter-spacing: .08em; color: var(--gold-text);
  border: 1px solid var(--accent-soft); border-radius: 999px; padding: 1px 9px;
  background: rgba(232, 221, 194, .25); white-space: nowrap;
}
.mk-list { display: grid; gap: 7px; }
.mk-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 5px 8px;
  font-size: 12px; line-height: 1.6;
  background: var(--grey-050); border: 1px solid var(--grey-100); border-radius: 4px;
  padding: 8px 11px;
}
.mk-row b { flex: 1 1 auto; min-width: 0; font-size: 12px; font-weight: 600; color: var(--ink-soft); }
.mk-chip {
  flex: 0 0 auto;
  font-size: 9.5px; font-weight: 700; letter-spacing: .04em;
  border-radius: 999px; padding: 1px 9px; white-space: nowrap;
}
.mk-chip-ai { background: var(--ink); color: #fff; }
.mk-chip-human { background: #FBF7EC; color: var(--gold-text); border: 1px solid var(--accent-soft); }
.mk-chip-ok { background: #EAF3ED; color: #2F6B48; }
.mk-chip-wait { background: var(--grey-100); color: var(--grey-700); }
.mk-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mk-stat {
  font-size: 10.5px; color: var(--grey-700); line-height: 1.7;
  background: #FBF7EC; border: 1px solid var(--accent-soft); border-radius: 4px;
  padding: 10px 12px;
}
.mk-stat b { display: block; font-size: 16px; font-weight: 800; color: var(--gold-text); letter-spacing: .02em; }
.mk-foot {
  font-size: 10.5px; font-weight: 600; color: var(--grey-700); letter-spacing: .03em;
  padding-top: 2px;
}
.mk-foot::before { content: ""; display: inline-block; width: 10px; height: 2px; background: var(--accent); margin-right: 7px; vertical-align: middle; }

/* 90日計画書：簡易工程表 */
.mk-gantt { display: grid; gap: 7px; }
.mk-g { display: grid; grid-template-columns: 52px 1fr; align-items: center; gap: 8px; }
.mk-g > span:first-child { font-size: 10.5px; font-weight: 700; color: var(--ink-soft); }
.mk-track { display: block; position: relative; height: 10px; background: var(--grey-050); border: 1px solid var(--grey-100); border-radius: 999px; overflow: hidden; }
.mk-track i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--gold-bright), var(--accent)); }

/* 記事＋SNS展開（コンテルジュ） */
.mk-doc { border: 1px solid var(--grey-100); border-radius: 4px; padding: 10px 12px 11px; }
.mk-doc-title { font-size: 11.5px; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.mk-doc-meta { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 8px; }
.mk-line { display: block; height: 4px; border-radius: 2px; background: var(--grey-100); margin-top: 4px; }
.mk-sns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.mk-sns li { border: 1px solid var(--grey-100); border-radius: 4px; padding: 7px 8px 9px; min-width: 0; }
.mk-sns b { display: block; font-family: var(--font-en); font-size: 9.5px; font-weight: 700; letter-spacing: .04em; color: var(--gold-text); }

/* KPIサマリ（伴走支援レポート） */
.mk-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.mk-kpi {
  text-align: center; font-size: 10px; color: var(--grey-700); line-height: 1.6;
  border: 1px solid var(--grey-100); border-radius: 4px; padding: 8px 4px;
}
.mk-kpi b { display: block; font-size: 17px; line-height: 1.3; color: var(--grey-500); }
.mk-kpi b.up { color: var(--gold-text); }
.mk-kpi b.warn { color: #A6503C; }

/* 主力（伴走支援）のハイライト枠 */
.pd-main {
  background: #FDFBF4;
  border: 1px solid var(--accent-soft); border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px 20px;
}
@media (min-width: 900px) {
  .pd-main { padding: 44px 42px; }
  .mk { padding: 20px 20px 22px; }
}

/* ---------- 3) AIデギュスタシオン誘導（#ai-staff） ---------- */
.ai-try {
  margin-top: 22px;
  background: var(--ink); border-radius: var(--radius);
  padding: clamp(26px, 5vw, 44px) clamp(20px, 4vw, 40px);
  display: grid; grid-template-columns: 1fr; gap: 22px;
}
.ai-try-label {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11px; font-weight: 700; letter-spacing: .18em;
  color: var(--gold-bright);
}
.ai-try-label::before { content: ""; width: 14px; height: 2px; background: var(--gold-bright); flex: 0 0 auto; }
.ai-try-copy {
  font-family: var(--font-serif);
  font-size: clamp(18px, 4.8vw, 24px); font-weight: 600; line-height: 1.7; letter-spacing: .04em;
  color: #F4F2EC; margin-top: 12px;
}
.ai-try-desc { font-size: 13.5px; line-height: 2; color: rgba(255, 255, 255, .75); margin-top: 12px; }
.ai-try-cta { display: flex; flex-direction: column; gap: 12px; }
.ai-try-cta .btn { width: 100%; }
.ai-try .btn-fill {
  background: transparent; color: #fff;
  border: 1px solid rgba(255, 255, 255, .55);
}
.ai-try .btn-fill:hover { background: rgba(255, 255, 255, .1); border-color: var(--gold-bright); }
@media (min-width: 900px) {
  .ai-try { grid-template-columns: 1.5fr 1fr; align-items: center; gap: clamp(24px, 4vw, 56px); }
}
