:root {
  --primary: #0B5E9B;
  --accent: #F59E0B;
  --text: #1a1a1a;
  --text-muted: #6b7280;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --border: #e5e7eb;
  --font-heading: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  --font-body: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  --radius: 8px;
  --radius-sm: calc(8px * 0.5);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .hero-headline, .section-title, .card-title, .brand {
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}
body.has-demo-banner { padding-top: 36px; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; }

/* ===== WEB受付ページ 追加セクション ===== */
.strengths-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 32px; }
.strength-card { padding: 24px; background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); }
.strength-num { font-family: var(--font-heading); font-size: 13px; font-weight: 700; color: var(--primary); letter-spacing: 0.12em; }
.strength-title { font-size: 17px; margin-top: 6px; }
.strength-body { margin-top: 8px; color: var(--text-muted); font-size: 14px; }

.audience-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; margin-top: 32px; list-style: none; }
.audience-item { position: relative; padding: 14px 16px 14px 42px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); font-size: 15px; }
.audience-item::before { content: "✓"; position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--primary); font-weight: 700; }

.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 32px; }
.testimonial-card { padding: 24px; background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); }
.testimonial-body { font-size: 15px; line-height: 1.8; }
.testimonial-body::before { content: "\201C"; font-size: 30px; color: var(--primary); line-height: 0; vertical-align: -10px; margin-right: 2px; }
.testimonial-meta { margin-top: 14px; font-size: 13px; color: var(--text-muted); font-style: normal; }

.flow-steps { margin-top: 32px; list-style: none; max-width: 720px; }
.flow-step { display: flex; gap: 16px; padding-bottom: 24px; position: relative; }
.flow-step:not(:last-child)::after { content: ""; position: absolute; left: 17px; top: 36px; bottom: 0; width: 2px; background: var(--border); }
.flow-step-num { flex: 0 0 36px; height: 36px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; position: relative; z-index: 1; }
.flow-step-title { font-size: 16px; }
.flow-step-desc { margin-top: 4px; color: var(--text-muted); font-size: 14px; }

.faq-list { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg); padding: 0 18px; }
.faq-q { cursor: pointer; list-style: none; padding: 16px 0; font-weight: 700; font-size: 15px; position: relative; padding-right: 28px; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: "+"; position: absolute; right: 2px; top: 14px; color: var(--primary); font-size: 18px; }
.faq-item[open] .faq-q::after { content: "\2212"; }
.faq-a { padding: 0 0 16px; color: var(--text-muted); font-size: 14px; line-height: 1.8; }

.links-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.link-chip { display: inline-flex; align-items: center; padding: 10px 18px; background: var(--bg); border: 1px solid var(--border); border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--text); text-decoration: none; transition: all 0.15s; }
.link-chip:hover { border-color: var(--primary); color: var(--primary); }



/* Header */
.site-header {
  position: sticky; top: 0; background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border); z-index: 50;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { font-weight: 700; font-size: 18px; display: flex; align-items: center; }
.brand-logo { max-height: 40px; max-width: 200px; width: auto; height: auto; display: block; }
.nav { display: flex; gap: 24px; align-items: center; }
.nav a { color: var(--text); text-decoration: none; font-size: 14px; font-weight: 500; }
.nav a:hover { color: var(--primary); }
.nav-cta {
  background: var(--primary); color: #fff !important;
  padding: 8px 16px; border-radius: var(--radius-sm);
}
@media (max-width: 640px) {
  .nav a:not(.nav-cta) { display: none; }
}

/* Hero */
.hero {
  position: relative; padding: 120px 0 100px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 8%, white) 0%, color-mix(in srgb, var(--accent) 12%, white) 100%);
  z-index: 0;
}
.hero-inner { position: relative; z-index: 2; }
/* ===== Hero with background image (ユーザーアップロード時) ===== */
.hero-with-bg { background-size: cover; background-position: center; }
.hero-with-bg .hero-bg { display: none; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.hero-with-bg .hero-eyebrow { color: rgba(255,255,255,0.92); }
.hero-with-bg .hero-headline { color: #ffffff; text-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.hero-with-bg .hero-subheadline { color: rgba(255,255,255,0.92); }
.hero-eyebrow { color: var(--primary); font-weight: 600; letter-spacing: 0.1em; font-size: 13px; margin-bottom: 16px; }
.hero-headline { font-size: 48px; font-weight: 800; line-height: 1.3; margin-bottom: 20px; }
.hero-subheadline { font-size: 18px; color: var(--text-muted); margin-bottom: 32px; max-width: 640px; }
@media (max-width: 640px) {
  .hero-headline { font-size: 32px; }
  .hero-subheadline { font-size: 16px; }
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--primary); color: #fff;
  padding: 14px 32px; border-radius: var(--radius);
  font-weight: 600; text-decoration: none; border: none; cursor: pointer; font-size: 15px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px color-mix(in srgb, var(--primary) 30%, transparent); }

/* Section */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-eyebrow { color: var(--primary); font-weight: 600; letter-spacing: 0.1em; font-size: 13px; margin-bottom: 12px; }
.section-title { font-size: 36px; font-weight: 700; margin-bottom: 32px; line-height: 1.3; }
.section-body { font-size: 16px; color: var(--text); max-width: 760px; }
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .section-title { font-size: 28px; }
}

/* Cards */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 40px; }
.card {
  background: #fff; border: 1px solid var(--border); border-radius: calc(var(--radius) * 1.5);
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); border-color: var(--primary); }
.card-num { color: var(--accent); font-weight: 700; font-size: 14px; letter-spacing: 0.1em; margin-bottom: 12px; }
.card-title { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.card-body { color: var(--text-muted); font-size: 14px; line-height: 1.7; }

/* News */
.news-list { list-style: none; margin-top: 40px; }
.news-item {
  display: grid; grid-template-columns: 120px 1fr; gap: 24px;
  padding: 24px 0; border-bottom: 1px solid var(--border);
}
.news-date { color: var(--text-muted); font-size: 13px; font-weight: 500; padding-top: 2px; }
.news-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.news-excerpt { color: var(--text-muted); font-size: 14px; }
@media (max-width: 640px) {
  .news-item { grid-template-columns: 1fr; gap: 8px; }
}

/* Access */
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 40px; }
@media (max-width: 720px) { .access-grid { grid-template-columns: 1fr; } }
.access-info p { margin-bottom: 12px; }
.access-info ul { padding-left: 20px; }
.access-info a { color: var(--primary); }
.access-map { aspect-ratio: 4 / 3; border-radius: calc(var(--radius) * 1.5); overflow: hidden; border: 1px solid var(--border); }
.access-map iframe { width: 100%; height: 100%; border: 0; }

/* Contact */
.contact-inner { max-width: 720px; }
.contact-methods {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px; margin-top: 32px;
}
.contact-method {
  display: flex; flex-direction: column; gap: 4px;
  background: white; border: 1px solid var(--border); border-radius: calc(var(--radius) * 1.5);
  padding: 22px 24px; text-decoration: none; color: var(--text);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.contact-method:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--primary) 15%, transparent);
}
.contact-method-icon { font-size: 24px; }
.contact-method-label { font-size: 12px; color: var(--text-muted); font-weight: 600; letter-spacing: 0.05em; }
.contact-method-value { font-size: 18px; font-weight: 700; color: var(--primary); word-break: break-all; }
.contact-empty {
  margin-top: 24px; padding: 16px; border: 1px dashed var(--border); border-radius: var(--radius);
  color: var(--text-muted); font-size: 14px; text-align: center;
}

/* Contact form (有料プラン) */
.contact-form {
  max-width: 560px; margin: 32px auto 0;
  display: flex; flex-direction: column; gap: 16px;
  background: white; padding: 28px; border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
}
.hp-honeypot { position: absolute; left: -9999px; top: -9999px; height: 0; width: 0; opacity: 0; }
.form-row { display: flex; flex-direction: column; }
.form-captcha-row { align-items: center; margin: 4px 0; }
.form-label { display: flex; flex-direction: column; gap: 6px; }
.form-label-text { font-size: 13px; font-weight: 600; color: var(--text); }
.form-label-text em { color: #ef4444; font-style: normal; margin-left: 2px; }
.contact-form input, .contact-form textarea {
  font: inherit; font-size: 15px;
  padding: 11px 13px; border: 1px solid var(--border); border-radius: var(--radius);
  background: #fff; color: var(--text);
  outline: none; transition: border-color 0.15s, box-shadow 0.15s;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 15%, transparent);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-submit {
  margin-top: 8px;
  padding: 14px 24px;
  background: var(--primary); color: white;
  font-size: 15px; font-weight: 700;
  border: none; border-radius: var(--radius); cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.form-submit:hover:not(:disabled) {
  background: color-mix(in srgb, var(--primary) 85%, #000);
  transform: translateY(-1px);
}
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-status {
  padding: 12px 14px; border-radius: var(--radius); font-size: 14px; text-align: center; margin: 0;
}
.form-status-ok { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.form-status-err { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* Footer */
.site-footer {
  background: #0f172a; color: #94a3b8;
  padding: 32px 0; text-align: center; font-size: 13px;
}
.legal-links { margin-top: 12px; font-size: 11px; }
.legal-links a { color: #cbd5e1; text-decoration: none; }
.legal-links a:hover { color: white; text-decoration: underline; }

/* Subpage (追加ページ) */
.nav .is-active { color: var(--primary); font-weight: 600; }
.subpage-main { padding: 80px 0 100px; min-height: 60vh; }
.subpage-container { max-width: 760px; }
.subpage-eyebrow {
  color: var(--primary); font-weight: 600; letter-spacing: 0.1em;
  font-size: 13px; margin-bottom: 12px;
}
.subpage-title {
  font-family: var(--font-heading);
  font-size: 40px; font-weight: 700; line-height: 1.3;
  margin: 0 0 32px;
}
.subpage-body {
  font-size: 16px; line-height: 1.8; color: var(--text);
}
.subpage-body h2 {
  font-family: var(--font-heading);
  font-size: 26px; font-weight: 700; margin: 48px 0 16px;
  padding-bottom: 8px; border-bottom: 2px solid var(--primary);
}
.subpage-body h3 {
  font-family: var(--font-heading);
  font-size: 20px; font-weight: 700; margin: 32px 0 12px;
}
.subpage-body p { margin: 0 0 16px; }
.subpage-body ul { margin: 0 0 16px; padding-left: 24px; }
.subpage-body li { margin-bottom: 6px; }
.subpage-back { margin-top: 64px; }
.btn-secondary {
  display: inline-block; padding: 12px 28px;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: white; color: var(--text); text-decoration: none;
  font-size: 14px; font-weight: 600;
  transition: border-color 0.15s, color 0.15s;
}
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }
@media (max-width: 768px) {
  .subpage-main { padding: 56px 0 80px; }
  .subpage-title { font-size: 30px; }
}

/* Blog 一覧・記事 */
.blog-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 24px; }
.blog-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius);
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.blog-card:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.05); }
.blog-card-link { display: block; padding: 24px 28px; color: inherit; text-decoration: none; }
.blog-card-date { font-size: 11px; color: var(--text-muted); letter-spacing: 0.05em; margin: 0; }
.blog-card-title { font-family: var(--font-heading); font-size: 22px; font-weight: 700; margin: 8px 0 12px; line-height: 1.4; }
.blog-card-excerpt { font-size: 14px; color: var(--text-muted); margin: 0 0 12px; line-height: 1.75; }
.blog-card-more { font-size: 12px; font-weight: 600; color: var(--primary); }
.blog-empty { padding: 60px 0; text-align: center; color: var(--text-muted); }
.blog-article .blog-excerpt {
  font-size: 17px; color: var(--text-muted); line-height: 1.85;
  margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--border);
}
.blog-body p { font-size: 16px; line-height: 1.9; }

/* ===== Hero variant: serif-elegant (飲食 / 建設) ===== */
body.hero-serif-elegant .hero-eyebrow { font-family: var(--font-heading); letter-spacing: 0.3em; font-size: 11px; }
body.hero-serif-elegant .hero-headline { font-weight: 500; letter-spacing: 0.04em; line-height: 1.5; }

/* ===== Hero variant: minimal-bold (美容・サロン) ===== */
body.hero-minimal-bold .hero { padding: 160px 0 140px; }
body.hero-minimal-bold .hero-eyebrow { color: var(--text-muted); letter-spacing: 0.4em; font-weight: 400; font-size: 11px; }
body.hero-minimal-bold .hero-headline { font-weight: 500; line-height: 1.6; letter-spacing: 0.05em; }
body.hero-minimal-bold .hero-bg {
  background: color-mix(in srgb, var(--primary) 4%, #ffffff);
}

/* ===== Hero variant: photo-first (小売) ===== */
body.hero-photo-first .hero { min-height: 540px; display: flex; align-items: center; }
body.hero-photo-first .hero-headline { font-weight: 800; letter-spacing: -0.02em; }

/* ===== Services variant: numbered (士業・建設) ===== */
body.services-numbered .grid { grid-template-columns: 1fr; gap: 0; }
body.services-numbered .card {
  display: grid; grid-template-columns: 80px 1fr; gap: 24px;
  align-items: start; padding: 32px 0; border: 0; border-bottom: 1px solid var(--border);
  border-radius: 0;
}
body.services-numbered .card:hover { transform: none; box-shadow: none; border-color: var(--primary); }
body.services-numbered .card-num {
  font-family: var(--font-heading); font-size: 48px; line-height: 1; color: var(--primary);
  margin: 0;
}

/* ===== Services variant: minimal-list (美容・サロン) ===== */
body.services-minimal-list .grid {
  grid-template-columns: 1fr; gap: 8px; max-width: 760px; margin-left: auto; margin-right: auto;
}
body.services-minimal-list .card {
  background: transparent; border: 0; border-bottom: 1px solid var(--border);
  border-radius: 0; padding: 28px 0;
}
body.services-minimal-list .card:hover { transform: none; box-shadow: none; }
body.services-minimal-list .card-num { display: none; }
body.services-minimal-list .card-title { font-size: 18px; font-weight: 500; letter-spacing: 0.05em; }
body.services-minimal-list .card-body { color: var(--text-muted); margin-top: 8px; }

/* ============================================================
   Scroll-in animation (全業種共通)
   ============================================================ */
.section, .hero-content > * { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .section { animation: hp-fadein 0.7s ease-out both; animation-timeline: view(); animation-range: entry 0% cover 30%; }
}
@keyframes hp-fadein {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   業種別個性 — body.variant-{industry} で上書き
   ============================================================ */

/* === 飲食店: 重厚・明朝・暖色 === */
body.variant-restaurant {
  background: #faf6f1;
}
body.variant-restaurant .hero {
  min-height: 80vh;
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 90%, #1a0f08) 0%, #1a0f08 100%);
  color: #fffaf3;
}
body.variant-restaurant .hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.5));
}
body.variant-restaurant .hero-content { position: relative; z-index: 2; }
body.variant-restaurant .hero-eyebrow {
  color: color-mix(in srgb, var(--accent) 80%, #ffd9a0);
  font-style: italic; letter-spacing: 0.5em;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 60%, #ffd9a0); padding-bottom: 8px;
  display: inline-block;
}
body.variant-restaurant .hero-headline {
  font-size: clamp(36px, 6vw, 64px); font-weight: 700; letter-spacing: 0.05em; line-height: 1.4;
}
body.variant-restaurant .hero-subheadline { color: rgba(255, 250, 243, 0.8); }
body.variant-restaurant .section-title::after {
  content: ''; display: block; width: 48px; height: 1px;
  background: var(--accent); margin: 16px 0 0;
}
body.variant-restaurant .section { background: #fffefb; }
body.variant-restaurant .section-alt { background: #faf6f1; }
body.variant-restaurant .card {
  background: #fffefb; border-color: rgba(0,0,0,0.06);
}

/* === 美容・サロン: 繊細・余白・極細 === */
body.variant-salon {
  background: #fffafa;
}
body.variant-salon .site-header { background: rgba(255, 250, 250, 0.96); border-bottom: 1px solid rgba(0,0,0,0.04); }
body.variant-salon .hero { min-height: 90vh; padding: 200px 0 180px; }
body.variant-salon .hero-bg {
  background:
    radial-gradient(ellipse at 80% 20%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 60%),
    radial-gradient(ellipse at 20% 80%, color-mix(in srgb, var(--primary) 8%, transparent), transparent 60%),
    #fffafa;
}
body.variant-salon .hero-eyebrow {
  font-size: 10px; letter-spacing: 0.6em; text-transform: uppercase;
  color: color-mix(in srgb, var(--primary) 60%, #999);
}
body.variant-salon .hero-headline {
  font-size: clamp(28px, 4.5vw, 48px); font-weight: 300; line-height: 1.8; letter-spacing: 0.1em;
}
body.variant-salon .section { padding: 120px 0; }
body.variant-salon .section-title {
  font-size: 28px; font-weight: 400; letter-spacing: 0.15em; text-align: center;
}
body.variant-salon .section-title::after {
  content: ''; display: block; width: 32px; height: 1px;
  background: var(--primary); margin: 24px auto 0;
}
body.variant-salon .section-eyebrow { text-align: center; letter-spacing: 0.4em; }
body.variant-salon .section-body { text-align: center; margin: 0 auto; }

/* === 士業・コンサル: 重厚・章番号・英字キャプション === */
body.variant-professional {
  background: #ffffff;
}
body.variant-professional .hero {
  background: linear-gradient(135deg, #0a1a3e 0%, #1e3a6e 100%);
  color: #ffffff; min-height: 70vh;
}
body.variant-professional .hero-eyebrow {
  font-family: 'Georgia', serif; font-style: italic;
  color: color-mix(in srgb, var(--accent) 90%, #ffd700);
  letter-spacing: 0.05em;
}
body.variant-professional .hero-headline {
  font-weight: 700; letter-spacing: 0.02em; line-height: 1.5;
  font-size: clamp(32px, 5vw, 52px);
}
body.variant-professional .hero-subheadline { color: rgba(255,255,255,0.85); }
body.variant-professional .btn-primary {
  background: var(--accent); color: #0a1a3e; border-radius: 0;
}
body.variant-professional .section-title {
  position: relative; padding-left: 24px;
}
body.variant-professional .section-title::before {
  content: ''; position: absolute; left: 0; top: 12px;
  width: 8px; height: 32px; background: var(--accent);
}
body.variant-professional .section-eyebrow {
  font-family: 'Georgia', serif; font-style: italic; color: var(--accent);
}

/* === クリニック・医療: 清潔・水色・柔らか === */
body.variant-clinic {
  background: #f5fbff;
}
body.variant-clinic .hero {
  background: linear-gradient(180deg, #e8f5fd 0%, #ffffff 100%);
  min-height: 70vh;
}
body.variant-clinic .hero-eyebrow {
  background: white; padding: 6px 16px; border-radius: 100px;
  display: inline-block; box-shadow: 0 2px 8px rgba(2, 132, 199, 0.08);
}
body.variant-clinic .hero-headline {
  font-weight: 700; line-height: 1.7;
}
body.variant-clinic .section { background: white; }
body.variant-clinic .section-alt { background: #f5fbff; }
body.variant-clinic .card {
  border-radius: 24px; border: 0; box-shadow: 0 4px 24px rgba(2, 132, 199, 0.06);
  background: white;
}
body.variant-clinic .card:hover {
  transform: translateY(-4px); box-shadow: 0 12px 32px rgba(2, 132, 199, 0.12);
  border: 0;
}
body.variant-clinic .nav-cta { border-radius: 100px; padding: 8px 20px; }

/* === 小売・EC: ギャラリー風・大胆・写真メイン === */
body.variant-shop {
  background: #ffffff;
}
body.variant-shop .hero {
  min-height: 95vh; align-items: flex-end;
  padding-bottom: 80px;
}
body.variant-shop .hero-headline {
  font-size: clamp(40px, 8vw, 96px); font-weight: 900;
  letter-spacing: -0.03em; line-height: 1.0;
}
body.variant-shop .hero-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
}
body.variant-shop .section { padding: 100px 0; }
body.variant-shop .section-title {
  font-size: clamp(32px, 5vw, 56px); font-weight: 800; letter-spacing: -0.02em;
}
body.variant-shop .grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px;
}
body.variant-shop .card {
  background: #fafafa; border: 0; border-radius: 4px;
  display: flex; flex-direction: column;
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
body.variant-shop .card:hover {
  transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,0.08);
}
body.variant-shop .card-num {
  font-size: 11px; color: #999; font-weight: 700; letter-spacing: 0.15em;
  margin: 0 0 12px;
}
body.variant-shop .card-title { font-size: 17px; font-weight: 700; margin: 0 0 10px; }
body.variant-shop .card-body { font-size: 13px; color: #666; line-height: 1.75; }

/* === 建設・リフォーム: 力強い・職人技・大番号 === */
body.variant-construction {
  background: #f5f5f4;
}
body.variant-construction .hero {
  background: linear-gradient(120deg, #1c1917 0%, #2c2724 100%);
  color: white; min-height: 75vh;
}
body.variant-construction .hero-eyebrow {
  color: var(--accent); font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  padding-left: 32px; position: relative;
}
body.variant-construction .hero-eyebrow::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 20px; height: 2px; background: var(--accent);
}
body.variant-construction .hero-headline {
  font-weight: 800; letter-spacing: 0.02em;
  font-size: clamp(36px, 6vw, 64px);
}
body.variant-construction .section { background: #ffffff; }
body.variant-construction .section-alt { background: #f5f5f4; }
body.variant-construction .section-title {
  font-weight: 800; border-left: 6px solid var(--primary); padding-left: 20px;
}
body.variant-construction.services-numbered .card { border-bottom-width: 2px; padding: 40px 0; }
body.variant-construction .card-num {
  font-size: 72px !important; font-weight: 900;
  color: color-mix(in srgb, var(--primary) 15%, transparent) !important;
  -webkit-text-stroke: 1px var(--primary);
}

/* === コーポレート / その他: 控えめにブラッシュアップ === */
body.variant-corporate .hero-headline,
body.variant-other .hero-headline {
  font-size: clamp(32px, 5.5vw, 56px); font-weight: 700; letter-spacing: -0.01em;
}
body.variant-corporate .section-title::after,
body.variant-other .section-title::after {
  content: ''; display: block; width: 40px; height: 3px;
  background: var(--primary); margin: 16px 0 0; border-radius: 2px;
}

/* === 問い合わせ用1ページ 追加セクション === */
.testimonial-stars { color: #f5a623; font-size: 15px; letter-spacing: 2px; margin-bottom: 8px; }
.testimonial-photo { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; margin-right: 8px; vertical-align: middle; }
.pricing-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.pricing-item { display: grid; grid-template-columns: 1fr auto; gap: 4px 16px; align-items: baseline; background: var(--bg); border: 1px solid rgba(0,0,0,.08); border-radius: 8px; padding: 16px 20px; }
.pricing-name { font-weight: 700; }
.pricing-price { font-weight: 700; color: var(--primary); font-size: 18px; white-space: nowrap; }
.pricing-desc { grid-column: 1 / -1; margin: 0; color: var(--text-muted); font-size: 13px; line-height: 1.7; }
.pricing-note { margin-top: 14px; color: var(--text-muted); font-size: 13px; }
.work-image { width: 100%; height: 160px; object-fit: cover; border-radius: 8px; margin-bottom: 12px; }
.profile-card { display: flex; gap: 24px; align-items: flex-start; background: var(--bg); border: 1px solid rgba(0,0,0,.08); border-radius: 8px; padding: 24px; }
.profile-photo { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; flex: none; }
.profile-title { margin: 0 0 2px; color: var(--text-muted); font-size: 12px; }
.profile-name { margin: 0 0 10px; font-size: 20px; }
.profile-bio { margin: 0; font-size: 14px; line-height: 1.9; }
.profile-qual { margin: 10px 0 0; font-size: 12.5px; color: var(--text-muted); }
@media (max-width: 600px) { .profile-card { flex-direction: column; align-items: center; text-align: center; } }
/* 追従CTA (Light+ プラン) */
.sticky-cta { position: fixed; left: 50%; transform: translateX(-50%); bottom: 18px; z-index: 9990;
  background: var(--primary); color: #fff; font-weight: 700; font-size: 15px; text-decoration: none;
  padding: 13px 30px; border-radius: 999px; box-shadow: 0 8px 24px rgba(0,0,0,.22); white-space: nowrap; }
.sticky-cta:hover { filter: brightness(1.08); }
@media (min-width: 900px) { .sticky-cta { left: auto; right: 24px; transform: none; } }
