/* ============================================================
   職人ホームページ制作所 — 自社営業LP
   navy #16324f × paper #f5f2ec × gold #d9a44a
   Noto Sans JP 700/900 × Barlow Semi Condensed
   craft-01/02 の文法を継承。LP自体がデザインの見本。
   ============================================================ */

:root {
  --navy: #16324f;
  --navy-deep: #0d2338;
  --paper: #f5f2ec;      /* 紙白（やや温かい） */
  --paper-alt: #efeae1;
  --white: #ffffff;
  --ink: #1e2a33;
  --ink-soft: #566572;
  --gold: #d9a44a;
  --gold-deep: #b9832d;
  --line: #ddd6ca;
  --heading: "Noto Sans JP", sans-serif;
  --en: "Barlow Semi Condensed", sans-serif;
  --sans: "Noto Sans JP", sans-serif;

  --shadow-soft: 0 18px 48px -24px rgba(13, 35, 56, 0.42);
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea { font: inherit; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.95;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 300;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ============ Header ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 4vw, 48px);
  background: color-mix(in srgb, var(--navy) 92%, transparent);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid color-mix(in srgb, var(--gold) 42%, transparent);
  transition: padding 0.4s var(--ease), background 0.4s ease, box-shadow 0.4s ease;
}
body.is-scrolled .site-header {
  padding: 11px clamp(20px, 4vw, 48px);
  background: var(--navy-deep);
  box-shadow: 0 1px 0 0 var(--gold), 0 12px 30px rgba(8, 20, 36, 0.3);
}

.header-logo { display: flex; flex-direction: column; line-height: 1.28; }
.header-logo-ja {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  letter-spacing: 0.05em;
}
.header-logo-en {
  font-family: var(--en);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}

.site-nav ul { display: flex; align-items: center; gap: 30px; }
.site-nav a {
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.25s ease;
}
.site-nav a:hover { color: var(--gold); }

.nav-cta a {
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-deep);
  background: var(--gold);
  padding: 10px 22px;
  border-radius: 3px;
  transition: filter 0.25s ease;
}
.nav-cta a:hover { filter: brightness(1.08); color: var(--navy-deep); }

.nav-toggle { display: none; }

/* ============ Hero ============ */
.hero {
  position: relative;
  padding-top: clamp(120px, 18vw, 180px);
  padding-bottom: clamp(64px, 9vw, 110px);
  background:
    radial-gradient(120% 80% at 88% -6%, color-mix(in srgb, var(--gold) 18%, transparent), transparent 60%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-alt) 100%);
  overflow: hidden;
}
/* うっすら1pxグリッドで“図面”の気配 */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(color-mix(in srgb, var(--navy) 5%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--navy) 5%, transparent) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.5), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 0.85fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: end;
}

.hero-sub {
  display: inline-block;
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold-deep);
  padding-bottom: 12px;
  margin-bottom: 22px;
  border-bottom: 2px solid var(--gold);
}

.hero-title {
  font-family: var(--heading);
  font-weight: 900;
  font-size: clamp(38px, 6.4vw, 80px);
  line-height: 1.24;
  letter-spacing: 0.01em;
  color: var(--navy);
}

.hero-lead {
  margin-top: 26px;
  max-width: 30em;
  font-size: 16.5px;
  line-height: 2.05;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 38px;
}

/* Hero 価格カード */
.hero-price {
  background: var(--navy);
  color: var(--white);
  border-radius: 4px;
  padding: 30px 30px 32px;
  box-shadow: var(--shadow-soft);
  border-top: 3px solid var(--gold);
}
.hero-price-lead {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.hero-price-list { display: grid; gap: 22px; }
.hero-price-list div { border-top: 1px solid rgba(255,255,255,0.14); padding-top: 18px; }
.hero-price-list div:first-child { border-top: none; padding-top: 0; }
.hero-price dt {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.hero-price-num {
  font-family: var(--en);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 52px);
  line-height: 1;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.hero-price-unit {
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 700;
  margin-left: 6px;
}
.hero-price-note {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  line-height: 1.5;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: var(--heading);
  font-size: 15.5px;
  font-weight: 700;
  border-radius: 3px;
  transition: transform 0.2s ease, filter 0.25s ease, background 0.25s ease, color 0.25s ease;
  letter-spacing: 0.02em;
}
.btn-primary { background: var(--gold); color: var(--navy-deep); }
.btn-primary:hover { filter: brightness(1.07); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

/* ============ Stats band ============ */
.stats {
  background: var(--navy-deep);
  border-top: 1px solid color-mix(in srgb, var(--gold) 40%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--gold) 40%, transparent);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: clamp(52px, 6vw, 78px) 24px;
}
.stats-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 4px clamp(24px, 3vw, 48px);
  border-left: 1px solid rgba(255,255,255,0.12);
}
.stats-item:first-child { border-left: none; }
.stats-en {
  font-family: var(--en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.stats-num {
  font-family: var(--en);
  font-weight: 700;
  font-size: clamp(58px, 8vw, 92px);
  line-height: 0.96;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.stats-num-suffix {
  font-family: var(--heading);
  font-size: 0.3em;
  font-weight: 700;
  margin-left: 6px;
  color: rgba(255,255,255,0.82);
}
.stats-label {
  margin-top: 16px;
  max-width: 16em;
  font-size: 13px;
  line-height: 1.85;
  color: rgba(255,255,255,0.64);
}

/* ============ Sections 共通 ============ */
.section { padding: clamp(84px, 11vw, 148px) 0; }
.section-head { max-width: 780px; margin-bottom: clamp(44px, 5vw, 64px); }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.section-tag::before { content: ""; width: 30px; height: 2px; background: var(--gold); }
.section-title {
  font-family: var(--heading);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: var(--navy);
}
.section-lead {
  margin-top: 22px;
  font-size: 16px;
  line-height: 2.05;
  color: var(--ink-soft);
}
.section-lead em { font-style: normal; color: var(--gold-deep); font-weight: 700; }

/* ============ 共感 ============ */
.empathy { background: var(--white); }
.empathy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.empathy-title { font-size: clamp(26px, 3.6vw, 42px); }
.empathy-body p {
  font-size: 16.5px;
  line-height: 2.1;
  color: var(--ink-soft);
}
.empathy-body p + p { margin-top: 1.5em; }

/* ============ デザインパターン（主役） ============ */
.pattern { background: var(--paper); }
.pattern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.pattern-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 26px 26px 24px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease, border-color 0.3s ease;
}
.pattern-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: color-mix(in srgb, var(--gold) 60%, transparent);
}
/* 最初のカードだけ1マス広く敷き、対称を崩す */
.pattern-card:first-child { grid-column: span 1; }

.pattern-swatch {
  display: flex;
  height: 46px;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.pattern-swatch span { flex: 1; }
.pattern-index {
  font-family: var(--en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 22px;
}
.pattern-name {
  font-family: var(--heading);
  font-weight: 900;
  font-size: 26px;
  color: var(--navy);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.pattern-specimen {
  margin-top: 16px;
  padding: 14px 4px 15px;
  font-size: 27px;
  line-height: 1.2;
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
/* 各パターンの見出しフォントで店名例を実演 */
.specimen-01 { font-family: var(--heading); font-weight: 700; letter-spacing: 0.02em; }
.specimen-02 { font-family: "Shippori Mincho B1", serif; font-weight: 700; letter-spacing: 0.04em; }
.specimen-03 { font-family: var(--heading); font-weight: 700; letter-spacing: 0; }
.specimen-04 { font-family: "Zen Maru Gothic", sans-serif; font-weight: 700; letter-spacing: 0.02em; }
.specimen-05 { font-family: var(--heading); font-weight: 400; letter-spacing: 0.12em; }

.pattern-font {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--gold-deep);
}
.pattern-desc {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-soft);
  flex: 1;
}
.pattern-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-family: var(--heading);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  align-self: flex-start;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 3px;
  transition: gap 0.25s ease, color 0.25s ease;
}
.pattern-link span { transition: transform 0.25s ease; }
.pattern-link:hover { color: var(--gold-deep); }
.pattern-link:hover span { transform: translateX(4px); }

/* ============ 同じにならない仕組み ============ */
.mechanism { background: var(--navy); color: var(--white); }
.mechanism-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.mechanism .section-tag { color: var(--gold); }
.mechanism .section-title { color: var(--white); }
.mechanism-para {
  margin-top: 20px;
  font-size: 16px;
  line-height: 2.05;
  color: rgba(255,255,255,0.8);
}
.mechanism-para b { color: var(--gold); font-weight: 700; }

.mechanism-proof { display: grid; gap: 18px; }
.skin-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: color-mix(in srgb, var(--white) 8%, transparent);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 4px;
  padding: 18px 22px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.skin-card:hover {
  background: color-mix(in srgb, var(--white) 13%, transparent);
  border-color: var(--gold);
  transform: translateX(4px);
}
.skin-swatch {
  display: flex;
  width: 72px;
  height: 46px;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
}
.skin-swatch span { flex: 1; }
.skin-label {
  flex: 1;
  font-family: var(--heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
}
.skin-label em {
  display: block;
  font-style: normal;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.62);
  margin-top: 2px;
}
.skin-go { font-family: var(--en); font-size: 22px; color: var(--gold); }

/* ============ 含まれるもの ============ */
.includes { background: var(--white); }
.includes-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: var(--line);
}
.includes-item {
  display: flex;
  gap: 18px;
  padding: 26px 28px;
  background: var(--white);
  align-items: flex-start;
}
.includes-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--gold) 18%, transparent);
  border: 1.5px solid var(--gold);
  position: relative;
  margin-top: 2px;
}
.includes-check::after {
  content: "";
  position: absolute;
  left: 9px; top: 5px;
  width: 7px; height: 12px;
  border-right: 2.5px solid var(--gold-deep);
  border-bottom: 2.5px solid var(--gold-deep);
  transform: rotate(42deg);
}
.includes-item h3 {
  font-family: var(--heading);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
}
.includes-item p {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-soft);
}

/* ============ 料金 ============ */
.price { background: var(--paper); }
.price-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 38px 36px 40px;
}
.price-card-featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  position: relative;
}
.price-card-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 3px solid var(--gold);
  border-radius: 4px 4px 0 0;
  pointer-events: none;
}
.price-card-tag {
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-deep);
}
.price-card-featured .price-card-tag { color: var(--gold); }
.price-card-name {
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  margin-top: 4px;
}
.price-card-featured .price-card-name { color: var(--white); }
.price-card-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 14px 0 26px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.price-card-featured .price-card-amount { border-color: rgba(255,255,255,0.16); }
.price-num {
  font-family: var(--en);
  font-weight: 700;
  font-size: clamp(52px, 7vw, 68px);
  line-height: 1;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}
.price-card-featured .price-num { color: var(--white); }
.price-unit {
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.price-card-featured .price-unit { color: rgba(255,255,255,0.9); }
.price-unit small { font-size: 12.5px; font-weight: 500; color: var(--ink-soft); }
.price-card-featured .price-unit small { color: rgba(255,255,255,0.6); }
.price-card-list { display: grid; gap: 12px; }
.price-card-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.price-card-featured .price-card-list li { color: rgba(255,255,255,0.82); }
.price-card-list li::before {
  content: "";
  position: absolute;
  left: 2px; top: 10px;
  width: 12px; height: 6px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

.price-options {
  margin-top: 40px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 30px clamp(24px, 4vw, 40px) 26px;
}
.price-options-title {
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
}
.price-options-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 40px;
}
.price-options-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.opt-name { color: var(--ink); }
.opt-price {
  font-family: var(--en);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}
.price-options-note { margin-top: 16px; font-size: 12.5px; color: var(--ink-soft); }

/* ============ 流れ ============ */
.flow { background: var(--white); }
.flow-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.flow-item {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 34px 30px 32px;
}
.flow-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -16px; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--gold);
  z-index: 2;
}
.flow-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--en);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy-deep);
  background: var(--gold);
  width: 46px; height: 46px;
  border-radius: 3px;
  margin-bottom: 18px;
}
.flow-title {
  font-family: var(--heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.flow-desc { font-size: 14.5px; line-height: 1.9; color: var(--ink-soft); }

/* ============ FAQ ============ */
.faq { background: var(--paper); }
.faq-list { max-width: 820px; }
.faq-item { padding: 28px 0; border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  display: flex;
  gap: 16px;
  font-family: var(--heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
}
.faq-q::before {
  content: "Q";
  font-family: var(--en);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1.1;
}
.faq-a {
  margin-top: 14px;
  display: flex;
  gap: 16px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 2;
}
.faq-a::before {
  content: "A";
  font-family: var(--en);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
  line-height: 1.1;
}

/* ============ 運営者 ============ */
.owner { background: var(--white); }
.owner-inner {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.owner-photo { margin: 0; }
.owner-photo-placeholder {
  aspect-ratio: 4 / 5;
  border: 2px dashed var(--line);
  border-radius: 4px;
  background:
    repeating-linear-gradient(-45deg, var(--paper), var(--paper) 12px, var(--paper-alt) 12px, var(--paper-alt) 24px);
  display: grid;
  place-items: center;
}
.owner-photo-placeholder span {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
}
.owner-title { margin-bottom: 8px; }
.owner-para {
  margin-top: 16px;
  font-size: 16px;
  line-height: 2.1;
  color: var(--ink-soft);
}
.owner-sign {
  margin-top: 26px;
  font-family: var(--heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  letter-spacing: 0.04em;
}

/* ============ CTA / Contact ============ */
.cta {
  background: var(--navy-deep);
  border-top: 3px solid var(--gold);
  color: var(--white);
}
.cta-inner { padding-top: clamp(72px, 9vw, 110px); padding-bottom: clamp(72px, 9vw, 110px); text-align: center; }
.cta-tag {
  font-family: var(--en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.cta-title {
  font-family: var(--heading);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.4;
  color: var(--white);
  margin: 16px 0 16px;
}
.cta-text {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  max-width: 34em;
  margin: 0 auto 36px;
  line-height: 2;
}
.cta-actions { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
.cta .btn-ghost { color: var(--white); border-color: rgba(255,255,255,0.6); }
.cta .btn-ghost:hover { background: var(--white); color: var(--navy-deep); border-color: var(--white); }

/* Form */
.cta-form {
  max-width: 620px;
  margin: 48px auto 0;
  text-align: left;
  background: color-mix(in srgb, var(--white) 7%, transparent);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 4px;
  padding: 32px clamp(22px, 4vw, 40px) 34px;
}
.cta-form-lead {
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  margin-bottom: 24px;
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 3px;
  padding: 13px 15px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.7;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #9aa2a8; }
.contact-form input:focus,
.contact-form textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.form-submit { width: 100%; margin-top: 6px; }
.form-note {
  margin-top: 16px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
  text-align: center;
  line-height: 1.7;
}

/* ============ Footer ============ */
.site-footer { background: var(--navy); padding: 48px 0 40px; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-logo {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
}
.footer-logo span {
  display: block;
  font-family: var(--en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-nav a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.82);
  transition: color 0.25s ease;
}
.footer-nav a:hover { color: var(--gold); }
.footer-copy {
  max-width: 1160px;
  margin: 24px auto 0;
  padding: 0 32px;
  font-family: var(--en);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
}

/* ============ Reveal ============ */
[data-reveal] { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  }
  [data-reveal].is-visible { opacity: 1; transform: none; }
}

/* ============ Mobile ============ */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; align-items: start; gap: 40px; }
  .hero-price { max-width: 420px; }
  .stats-inner { grid-template-columns: 1fr; gap: 32px; padding: 44px 24px; }
  .stats-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.12); padding: 28px 8px 0; }
  .stats-item:first-child { border-top: none; padding-top: 0; }
  .empathy-inner { grid-template-columns: 1fr; gap: 28px; }
  .pattern-grid { grid-template-columns: repeat(2, 1fr); }
  .mechanism-inner { grid-template-columns: 1fr; gap: 36px; }
  .includes-list { grid-template-columns: 1fr; }
  .price-cards { grid-template-columns: 1fr; }
  .price-options-list { grid-template-columns: 1fr; gap: 0; }
  .flow-list { grid-template-columns: 1fr; gap: 32px; }
  .flow-item:not(:last-child)::after {
    right: 50%; top: auto; bottom: -22px;
    transform: translateX(50%) rotate(90deg);
  }
  .owner-inner { grid-template-columns: 1fr; gap: 32px; }
  .owner-photo { max-width: 360px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; line-height: 1.9; }
  .inner { padding: 0 20px; }
  .footer-copy { padding: 0 20px; }

  .site-nav {
    position: fixed;
    inset: 0;
    top: 0;
    background: var(--navy-deep);
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }
  body.nav-open .site-nav { opacity: 1; pointer-events: auto; }
  .site-nav ul { flex-direction: column; gap: 26px; }
  .site-nav a { font-size: 18px; }
  .nav-cta a { font-size: 16px; padding: 12px 28px; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 40px; height: 40px;
    position: relative;
    z-index: 110;
  }
  .nav-toggle span {
    display: block;
    width: 26px; height: 2px;
    background: var(--white);
    margin: 0 auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .pattern-grid { grid-template-columns: 1fr; }
  /* CTA文言の中折れ防止 — モバイルは全幅で縦積み */
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { flex: none; width: 100%; white-space: nowrap; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
