:root {
  --bg: #F7F3EA;
  --paper: #FFFFFF;
  --text: #2A2F35;
  --muted: #6B7280;
  --navy: #0F1A2A;
  --navy-light: #1A2D47;
  --green: #2D6A4F;
  --green-dark: #1B4332;
  --green-soft: #D8F3DC;
  --green-pale: #E9F5EC;
  --gold: #D4A853;
  --gold-light: #E8C97A;
  --border: #E5E0D8;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.9;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

.container { 
  max-width: 860px; 
  margin: 0 auto; 
  padding: 0 24px; 
}

/* Header */
header {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.1);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 860px;
  margin: 0 auto;
}
.logo {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  color: #fff;
}
.header-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  background: var(--gold);
  padding: 10px 22px;
  border-radius: 6px;
  transition: all .2s;
}
.header-link:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ===== HERO（大幅強化） ===== */
.hero {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
  color: #fff;
  padding: 0;
  position: relative;
  overflow: hidden;
}

/* ヒーローイラスト */
.hero-illust {
  position: absolute;
  right: -20px;
  bottom: 40px;
  width: 220px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 768px) {
  .hero-illust { display: none; }
}

/* 装飾：幾何学パターン */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(212,168,83,.15) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(212,168,83,.08) 0%, transparent 35%);
  pointer-events: none;
}

/* ストライプ装飾 */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,.02) 20px,
    rgba(255,255,255,.02) 40px
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 64px 0 56px;
}

/* ターゲットラベル */
.hero-target {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  background: rgba(212,168,83,.12);
  border: 1px solid rgba(212,168,83,.3);
  padding: 8px 18px;
  border-radius: 4px;
  margin-bottom: 24px;
  margin-left: 28px;
  letter-spacing: .02em;
}
.hero-target svg {
  width: 16px;
  height: 16px;
}

/* メインキャッチ */
.hero-headline {
  margin-bottom: 32px;
  padding: 0 28px;
  position: relative;
}

.hero-headline-content {
  position: relative;
  z-index: 1;
}

.hero-headline-img {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 900px) {
  .hero-headline-img {
    display: none;
  }
}

.hero-sub {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,.82);
  margin-bottom: 14px;
  letter-spacing: .01em;
  line-height: 1.6;
}

.hero-title {
  font-size: clamp(28px, 5.5vw, 42px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -.01em;
}

.hero-title .highlight {
  color: var(--gold);
  position: relative;
}

.hero-title .price-inline {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  padding: 2px 16px;
  border-radius: 4px;
  margin: 0 4px;
}

/* FVバッジ（比較層の判断材料を先出し） */
/* 具体的なサービス内容（大きく表示） */
.hero-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 36px 0;
  padding: 28px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
}

.hero-service-item {
  text-align: center;
  padding: 20px 12px;
  background: rgba(255,255,255,.03);
  border-radius: 8px;
  transition: transform .2s, background .2s;
}

.hero-service-item:hover {
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}

.hero-service-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(212,168,83,.25);
}

.hero-service-icon svg {
  width: 26px;
  height: 26px;
  color: var(--navy);
}

.hero-service-item h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.hero-service-item p {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}

/* 結果訴求バッジ群 */
.hero-results-panel{
  margin: 0 0 36px;
  padding: 28px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
}
.hero-results{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0;
}
.hero-result{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: 16px 18px;
  border-radius: 10px;
}

.hero-result-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-result-icon svg {
  width: 18px;
  height: 18px;
  color: var(--navy);
}

.hero-result-text {
  text-align: left;
}

.hero-result-text .label {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  display: block;
  margin-bottom: 2px;
}

.hero-result-text .value {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.hero-result-text .value strong {
  color: var(--gold);
  font-size: 20px;
}

/* CTA */
.hero-cta-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  padding: 18px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 24px rgba(212,168,83,.35);
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(212,168,83,.45);
}

.hero-cta svg {
  width: 18px;
  height: 18px;
}

.hero-sub-link {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-sub-link:hover {
  color: #fff;
}

/* 安心バッジ */
.hero-trust {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.hero-trust-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.8);
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

/* ===== 中間CTA ===== */
.mid-cta {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mid-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,.03) 40px,
    rgba(255,255,255,.03) 80px
  );
}

.mid-cta-inner {
  position: relative;
  z-index: 1;
}

.mid-cta-text {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.mid-cta-text span {
  color: var(--gold);
}

.mid-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--green-dark);
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}

.mid-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,.25);
}

.mid-cta-btn svg {
  width: 18px;
  height: 18px;
}

/* ===== セクション共通 ===== */
.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--paper);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(212,168,83,.1);
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 16px;
  letter-spacing: .1em;
}

.section-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -.01em;
}

.section-lead {
  font-size: 15px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

/* 選ばれる理由 */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.reason-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}

.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
}

.reason-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  font-weight: 900;
  color: rgba(212,168,83,.15);
  line-height: 1;
}

.reason-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.reason-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.reason-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.reason-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

/* 向いている人 */
.target-section-wrap {
  position: relative;
}
.target-illust {
  position: absolute;
  left: -60px;
  bottom: 20px;
  width: 160px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 1024px) {
  .target-illust { display: none; }
}

.fit-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fit-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: transform .2s, box-shadow .2s;
}

.fit-item:hover {
  transform: translateX(4px);
  box-shadow: -4px 4px 16px rgba(0,0,0,.05);
}

.fit-check {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.fit-check svg {
  width: 14px;
  height: 14px;
  color: #fff;
}

.fit-text h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.fit-text p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

/* 含まれる範囲 */
.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.scope-card {
  background: var(--paper);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.scope-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 100%);
}

.scope-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--navy);
}

.scope-list {
  list-style: none;
}

.scope-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}

.scope-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
}

/* 信頼セクション */
.trust-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 72px 0;
  color: #fff;
}

.trust-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-item-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 24px;
}

.trust-check {
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-check svg {
  width: 14px;
  height: 14px;
  color: var(--navy);
}

.trust-text h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.trust-text p {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  line-height: 1.8;
}

/* 料金 */
.price-section {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.price-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(212,168,83,.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(212,168,83,.08) 0%, transparent 40%);
}

.price-box {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(255,255,255,.1) 0%, rgba(255,255,255,.03) 100%);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.price-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(212,168,83,.15);
  padding: 8px 24px;
  border-radius: 4px;
  margin-bottom: 24px;
  letter-spacing: .1em;
}

.price-value {
  font-size: 72px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.price-value span {
  font-size: 28px;
  font-weight: 700;
  margin-left: 4px;
}

.price-tax {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin-bottom: 32px;
}

.price-notes {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.price-notes li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
}

.price-notes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.price-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  padding: 18px 40px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 24px rgba(212,168,83,.35);
}

.price-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(212,168,83,.45);
}

.price-cta svg {
  width: 18px;
  height: 18px;
}

/* 開業後の運用 */
.after-box {
  background: linear-gradient(145deg, var(--paper) 0%, var(--bg) 100%);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.after-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--gold) 100%);
}

.after-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.after-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
}

.after-price {
  font-size: 14px;
  color: var(--muted);
}

.after-price strong {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
}

.after-body {
  font-size: 15px;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 24px;
}

.after-benefits {
  background: var(--green-pale);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 24px;
}

.after-benefits__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.after-benefits__list {
  list-style: none;
}

.after-benefits__list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text);
}

.after-benefits__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: bold;
}

.after-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
  transition: gap .2s;
}

.after-link:hover {
  gap: 12px;
}

.after-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
}

/* スケジュール */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--green) 100%);
}

.step {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  position: relative;
}

.step:last-child {
  margin-bottom: 0;
}

.step-n {
  position: absolute;
  left: -32px;
  width: 24px;
  height: 24px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  flex: 1;
}

.step-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

details {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .2s;
}

details:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}

details[open] {
  border-color: var(--gold);
}

summary {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--gold);
  transition: transform .2s;
}

details[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
}

/* Contact */
.contact-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.contact-illust {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 200px;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 900px) {
  .contact-illust { display: none; }
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(212,168,83,.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(212,168,83,.08) 0%, transparent 35%);
}

.contact-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.contact-title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.contact-lead {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  margin-bottom: 40px;
  line-height: 1.9;
}

.form-box {
  max-width: 480px;
  margin: 0 auto;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  padding: 36px;
  backdrop-filter: blur(8px);
}

.form-row {
  margin-bottom: 20px;
  text-align: left;
}

.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  margin-bottom: 8px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  color: #fff;
  transition: border-color .2s, background .2s;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(255,255,255,.4);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,.15);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  padding: 18px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 20px rgba(212,168,83,.3);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212,168,83,.4);
}

.form-note {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,.5);
}

/* Footer */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 40px 0;
  text-align: center;
  color: rgba(255,255,255,.6);
  font-size: 13px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,.7);
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--gold);
}

/* レスポンシブ */


/* 他サービス（関連） */
.related-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.related-card{
  display: block;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
  text-decoration: none !important;
}
.related-card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(20,82,58,.35);
}
.section-alt .related-card{
  border-color: rgba(0,0,0,.10);
}
.section-alt .related-card:hover{
  border-color: rgba(0,0,0,.16);
}
.related-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(20,82,58,.08);
  border: 1px solid rgba(20,82,58,.18);
  color: rgba(10,50,35,.92);
  font-size: 12px;
  font-weight: 700;
}
.related-card h3{
  margin: 12px 0 8px;
  font-size: 18px;
}
.related-card p{
  margin: 0;
  color: var(--muted);
}
.related-link{
  display: inline-block;
  margin-top: 12px;
  font-weight: 800;
  color: var(--accent2);
}

@media (max-width: 1024px) {
  .hero-services { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-services {
    grid-template-columns: 1fr;
  }
  
  .hero-results {
    flex-direction: column;
  }
  
  .hero-result {
    width: 100%;
  }
  
  .reasons-grid {
    grid-template-columns: 1fr;
  }
  
  .scope-grid {
    grid-template-columns: 1fr;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .price-value {
    font-size: 56px;
  }
  
  .hero-title {
    font-size: 26px;
  }
}


/* ===== HERO visual (illustration) ===== */
.hero-headline{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
}
.hero-visual{ margin:0; }
.hero-visual-img{
  width:100%;
  height:auto;
  display:block;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--paper);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
}
@media (max-width: 900px){
  .hero-headline{ grid-template-columns: 1fr; gap: 16px; }
  .hero-visual{ order: 2; }
}
