:root {
  --ink: #1f2726;
  --muted: #66706d;
  --line: rgba(31, 39, 38, .14);
  --paper: #fffdf8;
  --white: #fff;
  --accent: #2f6f5e;
  --accent2: #e78162;
  --shadow: 0 20px 55px rgba(31, 39, 38, .12);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--accent) 4%, transparent) 1px, transparent 1px),
    linear-gradient(color-mix(in srgb, var(--accent2) 4%, transparent) 1px, transparent 1px),
    var(--paper);
  background-size: 38px 38px;
  line-height: 1.75;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 253, 248, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(31,39,38,.06);
}

.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: .02em; }
.mark { width: 34px; height: 34px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; color: var(--white); font-size: 14px; }
.nav { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 14px; font-size: 13px; color: var(--muted); }
.nav a:last-child, .btn { background: var(--accent); color: var(--white); padding: 10px 16px; border-radius: 999px; font-weight: 800; box-shadow: 0 10px 24px rgba(47, 111, 94, .22); }

.hero {
  min-height: 86vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .88fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(36px, 6vw, 90px) clamp(18px, 6vw, 84px) 42px;
  position: relative;
}

.hero-copy { max-width: 690px; }
.eyebrow { color: var(--accent); font-weight: 900; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
h1 { font-size: clamp(40px, 6vw, 82px); line-height: 1.03; margin: 14px 0 20px; letter-spacing: 0; }
.lead { font-size: clamp(16px, 2vw, 21px); color: var(--muted); max-width: 620px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.ghost { border: 1px solid var(--line); padding: 10px 16px; border-radius: 999px; font-weight: 800; background: rgba(255,255,255,.72); }
.link-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.hero-photo { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 5; border: 6px solid #fff; transform: rotate(1deg); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.band { padding: clamp(44px, 7vw, 92px) clamp(18px, 6vw, 84px); }
.section-head { max-width: 760px; margin-bottom: 26px; }
.section-head h2 { font-size: clamp(28px, 4vw, 48px); line-height: 1.15; margin: 0 0 12px; }
.section-head p { color: var(--muted); margin: 0; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 24px; box-shadow: 0 12px 30px rgba(31,39,38,.06); position: relative; }
.card:nth-child(2n) { background: color-mix(in srgb, var(--accent2) 5%, white); }
.card strong { display: block; font-size: 18px; margin-bottom: 8px; }
.card p { color: var(--muted); margin: 0; font-size: 14px; }
.card.featured { border: 2px solid var(--accent); transform: translateY(-8px); }
.price { font-size: clamp(34px, 5vw, 54px); line-height: 1; font-weight: 900; margin: 14px 0; }
.price small { font-size: 15px; color: var(--muted); font-weight: 700; }
.mini { display: inline-flex; align-items: center; min-height: 30px; padding: 4px 10px; border-radius: 999px; background: color-mix(in srgb, var(--accent) 12%, white); color: var(--accent); font-size: 12px; font-weight: 800; margin-bottom: 12px; }
.staff-card {
  overflow: hidden;
  padding: 0;
}
.staff-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.staff-card .staff-role,
.staff-card strong,
.staff-card p {
  margin-left: 22px;
  margin-right: 22px;
}
.staff-role {
  display: inline-flex;
  width: fit-content;
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent2) 14%, white);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}
.staff-card p {
  margin-bottom: 24px;
}
.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(22px, 5vw, 64px); align-items: center; }
.panel { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: clamp(24px, 4vw, 44px); box-shadow: var(--shadow); }
.photo-panel { overflow: hidden; padding: 0; }
.photo-panel img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.list { display: grid; gap: 12px; padding: 0; margin: 18px 0 0; list-style: none; }
.list li { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); }
.list li::before { content: ""; flex: 0 0 8px; width: 8px; height: 8px; margin-top: 11px; border-radius: 50%; background: var(--accent2); }
.wage-table, .schedule, .info-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 8px; background: var(--white); box-shadow: 0 12px 30px rgba(31,39,38,.06); }
.wage-table th, .wage-table td, .schedule th, .schedule td, .info-table th, .info-table td { padding: 15px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.wage-table th, .schedule th, .info-table th { width: 34%; color: var(--accent); font-size: 13px; white-space: nowrap; }
.wage-table tr:last-child th, .wage-table tr:last-child td, .schedule tr:last-child th, .schedule tr:last-child td, .info-table tr:last-child th, .info-table tr:last-child td { border-bottom: 0; }
.note { color: var(--muted); font-size: 12px; margin-top: 12px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
.stat { border-top: 2px solid var(--accent); padding-top: 12px; }
.stat b { display: block; font-size: 30px; line-height: 1; }
.stat span { color: var(--muted); font-size: 12px; }
.contact-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(22px, 5vw, 58px); align-items: start; }
.form { display: grid; gap: 14px; }
.form label { display: grid; gap: 7px; color: var(--muted); font-size: 13px; font-weight: 700; }
.form input, .form select, .form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.form textarea { min-height: 120px; resize: vertical; }
.form button { border: 0; cursor: pointer; width: fit-content; }
.form-status { min-height: 22px; color: var(--accent); font-size: 13px; font-weight: 700; }
.mapbox { min-height: 220px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 8px; background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 9%, white), #fff); color: var(--muted); text-align: center; padding: 18px; }
.gallery-band { background: color-mix(in srgb, var(--accent) 7%, white); overflow: hidden; }
.slider-shell { position: relative; padding: 0 clamp(48px, 6vw, 72px); }
.slider-shell.is-enhanced { padding: 0; }
.slider-main {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  border: 6px solid #fff;
  box-shadow: 0 20px 48px rgba(31,39,38,.16);
}
.slider-main img {
  width: 100%;
  height: min(58vw, 560px);
  min-height: 360px;
  object-fit: cover;
}
.slider-main-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 12px 15px;
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(31,39,38,.14);
  backdrop-filter: blur(14px);
}
.slider-main-count { color: var(--accent); font-size: 13px; white-space: nowrap; }
.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 72%);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 2px;
  padding: 4px 2px 18px;
  scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.slider-shell.is-enhanced .gallery-track { display: none; }
.slide-card {
  scroll-snap-align: start;
  min-height: 420px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 38px rgba(31,39,38,.12);
  border: 1px solid rgba(255,255,255,.7);
}
.slide-card img { width: 100%; height: 330px; object-fit: cover; }
.slide-card figcaption { padding: 16px 18px 18px; font-weight: 900; color: var(--ink); font-size: 18px; }
.slider-controls {
  position: absolute;
  inset: calc(50% - 38px) 12px auto;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  pointer-events: none;
  transform: translateY(-50%);
}
.slider-controls button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid #fff;
  background: var(--accent);
  color: var(--accent);
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(31,39,38,.22);
  pointer-events: auto;
  display: grid;
  place-items: center;
  line-height: 1;
}
.slider-controls button:disabled {
  opacity: .35;
  cursor: default;
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.slider-thumbs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(92px, 1fr);
  gap: 10px;
  overflow-x: auto;
  padding: 14px 2px 4px;
  scrollbar-width: thin;
}
.slider-thumb {
  border: 3px solid transparent;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(31,39,38,.1);
}
.slider-thumb img {
  width: 100%;
  height: 72px;
  object-fit: cover;
  filter: saturate(.8);
}
.slider-thumb[aria-current="true"] {
  border-color: var(--accent);
}
.slider-thumb[aria-current="true"] img {
  filter: saturate(1.1);
}
.slider-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 26%, white);
  cursor: pointer;
  padding: 0;
}
.slider-dot[aria-current="true"] {
  width: 28px;
  background: var(--accent);
}
.blog-card { display: grid; grid-template-rows: auto 1fr; gap: 14px; }
.blog-date { color: var(--accent); font-size: 12px; font-weight: 900; letter-spacing: .08em; }
.blog-card strong { font-size: 20px; }
.cta { background: var(--ink); color: var(--white); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px; }
.cta p { color: rgba(255,255,255,.76); margin: 8px 0 0; }
.cta .btn { background: var(--white); color: var(--ink); box-shadow: none; }
.footer { padding: 28px clamp(18px, 6vw, 84px); color: var(--muted); font-size: 12px; border-top: 1px solid var(--line); }

.home {
  min-height: 100vh;
  padding: clamp(28px, 6vw, 76px);
  background: #f7f4ec;
}
.home h1 { max-width: 940px; font-size: clamp(36px, 6vw, 72px); }
.home-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 8px; }
.home-note { max-width: 840px; color: var(--muted); font-size: 14px; }
.demo-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 32px;
  max-width: 1040px;
}
.demo-tile { min-height: 260px; border-radius: 8px; overflow: hidden; position: relative; background: #111; color: white; box-shadow: var(--shadow); }
.demo-tile img { width: 100%; height: 100%; object-fit: cover; opacity: .76; position: absolute; inset: 0; }
.demo-tile div { position: absolute; inset: auto 0 0; padding: 18px; background: linear-gradient(transparent, rgba(0,0,0,.72)); }
.demo-tile strong { display: block; font-size: 21px; line-height: 1.25; }
.sales { --paper:#f8faf7; --ink:#1e2521; --accent:#275f50; --accent2:#de7d55; }
.sales-hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(42px, 7vw, 100px) clamp(18px, 6vw, 84px);
  background: linear-gradient(135deg, #fffaf0, #eef8f3);
}
.sales-shot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.sales-shot img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(31,39,38,.12);
}
.sales-shot img:first-child { grid-column: 1 / -1; height: 280px; }
.process { counter-reset: step; display: grid; gap: 14px; }
.process .card { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; }
.process .card::before { counter-increment: step; content: counter(step); width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--accent); color: #fff; font-weight: 900; }
.sticky-mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 20;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 40px rgba(31,39,38,.2);
  backdrop-filter: blur(14px);
}
.sticky-mobile-cta a { text-align: center; padding: 10px 12px; border-radius: 999px; font-weight: 800; font-size: 13px; }
.sticky-mobile-cta a:first-child { background: var(--accent); color: white; }
.sticky-mobile-cta a:last-child { border: 1px solid var(--line); background: white; color: var(--ink); }

.cafe { --paper:#fff8ef; --ink:#27211c; --accent:#9a4f2c; --accent2:#d99c46; }
.creative { --paper:#f7f7fb; --ink:#141827; --accent:#3857ff; --accent2:#ff5b8a; }
.farm { --paper:#f7fbf2; --ink:#1f2b20; --accent:#47783b; --accent2:#c78a2d; }
.craft { --paper:#fbf8f5; --ink:#202236; --accent:#21385f; --accent2:#dd6b66; }
.atelier { --accent:#1f9c75; --accent2:#ff8a66; }
.atelier .hero { background: linear-gradient(90deg, #fff7d8, #e9fff2); }
.cafe .hero { background: #fff0d8; }
.creative .hero { background: radial-gradient(circle at 78% 15%, rgba(255,91,138,.18), transparent 34%), #f7f7fb; }
.farm .hero { background: #edf7e8; }
.craft .hero { background: #f8f1ec; }
.creative .hero-photo, .craft .hero-photo { aspect-ratio: 1 / 1; }
.dac-hero {
  min-height: 84vh;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: clamp(26px, 5vw, 74px);
  align-items: center;
  padding: clamp(42px, 7vw, 96px) clamp(18px, 6vw, 84px);
  background:
    radial-gradient(circle at 84% 16%, rgba(255,91,138,.2), transparent 26%),
    radial-gradient(circle at 12% 82%, rgba(56,87,255,.15), transparent 28%),
    #f7f7fb;
}
.dac-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #fff;
  color: var(--accent);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(20,24,39,.08);
}
.dac-badge::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent2);
}
.dac-visual {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 12px;
}
.dac-visual img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  border: 5px solid #fff;
  box-shadow: 0 18px 40px rgba(20,24,39,.14);
}
.dac-visual img:first-child {
  grid-column: 1 / -1;
  height: 360px;
}
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.pill-grid span {
  padding: 8px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 10%, white);
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}
.work-card {
  overflow: hidden;
  padding: 0;
}
.work-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.work-card div { padding: 22px; }
.support-card strong { font-size: 21px; }
.voice-card {
  display: grid;
  gap: 12px;
  background: #fff;
}
.voice-card blockquote {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.step-list {
  counter-reset: use-step;
  display: grid;
  gap: 14px;
}
.step-list .card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}
.step-list .card::before {
  counter-increment: use-step;
  content: counter(use-step);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.cafe .hero-photo { aspect-ratio: 5 / 4; }
.farm .hero-photo { aspect-ratio: 4 / 3; }
.product-hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(320px, 1.02fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(40px, 7vw, 94px) clamp(18px, 6vw, 84px);
  background:
    radial-gradient(circle at 88% 10%, color-mix(in srgb, var(--accent2) 24%, transparent), transparent 28%),
    linear-gradient(135deg, #fff7ea, #f5f7ff);
}
.product-logo {
  display: inline-grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #fff;
  color: var(--accent);
  border: 3px solid color-mix(in srgb, var(--accent2) 55%, white);
  box-shadow: 0 18px 38px rgba(31,39,38,.12);
  font-weight: 900;
  font-size: 28px;
  margin-bottom: 18px;
}
.product-visual {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 12px;
}
.product-visual img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  border: 5px solid #fff;
  box-shadow: 0 18px 38px rgba(31,39,38,.13);
}
.product-visual img:first-child {
  grid-column: 1 / -1;
  height: 360px;
}
.product-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.product-menu a {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.78);
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}
.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  padding: 0;
}
.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.product-card > div { padding: 22px; }
.product-meta {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
.product-meta b { color: var(--accent); }
.order-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}
.order-strip p { margin: 0; color: rgba(255,255,255,.82); }
.order-strip .btn { background: #fff; color: var(--accent); box-shadow: none; }

@media (max-width: 900px) {
  .hero, .split, .cta, .contact-wrap, .sales-hero, .product-hero, .order-strip, .dac-hero { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 34px; }
  .hero-photo { aspect-ratio: 16 / 11; }
  .photo-panel img { min-height: 240px; }
  .hero-photo { transform: none; border-width: 4px; }
  .slider-shell { padding: 0 40px; }
  .slider-shell.is-enhanced { padding: 0; }
  .slider-main img { min-height: 260px; height: 58vw; }
  .slider-main-caption { position: static; border-radius: 0; box-shadow: none; align-items: flex-start; }
  .slider-controls { inset: 36% 8px auto; }
  .slider-thumbs { grid-auto-columns: 82px; }
  .slider-thumb img { height: 62px; }
  .gallery-track { grid-auto-columns: minmax(230px, 100%); }
  .slide-card { min-height: 310px; }
  .slide-card img { height: 225px; }
  .slider-controls button { width: 46px; height: 46px; font-size: 26px; }
  .grid, .grid.two, .grid.four, .demo-list { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .topbar { align-items: flex-start; }
  .nav { display: none; }
  .card.featured { transform: none; }
  .sales-shot { grid-template-columns: 1fr; }
  .sales-shot img, .sales-shot img:first-child { height: 210px; }
  .product-visual { grid-template-columns: 1fr; }
  .product-visual img, .product-visual img:first-child { height: 230px; }
  .dac-visual { grid-template-columns: 1fr; }
  .dac-visual img, .dac-visual img:first-child { height: 230px; }
  .sticky-mobile-cta { display: grid; }
  body { padding-bottom: 76px; }
}

/* Production-style override: make the demos feel like real public facility sites. */
body {
  background: #f7f8fa;
  color: #202428;
  line-height: 1.85;
}

.topbar {
  min-height: 70px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid #e7eaee;
  box-shadow: 0 2px 12px rgba(20,24,39,.04);
}

.brand {
  font-size: 16px;
  letter-spacing: 0;
}

.mark {
  border-radius: 6px;
}

.nav {
  gap: 18px;
  font-size: 14px;
  color: #3c434a;
}

.nav a:last-child,
.btn {
  border-radius: 6px;
  box-shadow: none;
  padding: 10px 18px;
}

.ghost {
  border-radius: 6px;
  background: #fff;
}

.hero,
.dac-hero,
.product-hero,
.sales-hero {
  min-height: 68vh;
  background: #fff !important;
  border-bottom: 1px solid #e7eaee;
  padding-top: clamp(42px, 7vw, 88px);
  padding-bottom: clamp(36px, 6vw, 76px);
}

h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.16;
}

.lead {
  font-size: clamp(15px, 1.7vw, 18px);
  color: #58616b;
}

.eyebrow {
  letter-spacing: .08em;
}

.hero-photo,
.dac-visual img,
.product-visual img,
.sales-shot img,
.photo-panel img {
  border: 0;
  border-radius: 6px;
  transform: none;
  box-shadow: 0 8px 24px rgba(20,24,39,.10);
}

.band {
  background: #f7f8fa;
  padding-top: clamp(48px, 7vw, 82px);
  padding-bottom: clamp(48px, 7vw, 82px);
}

.band:nth-of-type(odd) {
  background: #fff;
}

.section-head h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.28;
}

.card,
.panel,
.wage-table,
.schedule,
.info-table {
  border-radius: 6px;
  border: 1px solid #e4e8ed;
  box-shadow: 0 4px 16px rgba(20,24,39,.05);
}

.card:nth-child(2n) {
  background: #fff;
}

.card strong {
  font-size: 17px;
}

.mini,
.dac-badge,
.product-menu a,
.pill-grid span {
  border-radius: 4px;
  background: #eef3ff;
  color: var(--accent);
}

.mapbox {
  border-radius: 6px;
  background: #f1f4f7;
}

.anchor-target {
  display: block;
  position: relative;
  top: -76px;
  visibility: hidden;
}

.gallery-band {
  background: #fff;
}

.slider-main {
  border: 0;
  border-radius: 6px;
  box-shadow: 0 8px 26px rgba(20,24,39,.11);
}

.slider-main-caption {
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(20,24,39,.10);
}

.slider-controls button {
  border: 2px solid #fff;
  box-shadow: 0 8px 20px rgba(20,24,39,.16);
}

.slider-thumb {
  border-radius: 6px;
  box-shadow: none;
}

.is-clickable-photo {
  position: relative;
  cursor: zoom-in;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.is-clickable-photo::after {
  content: "写真を見る";
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #233044;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(20,24,39,.14);
}

.is-clickable-photo:hover,
.is-clickable-photo:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(57,93,201,.34);
  box-shadow: 0 14px 34px rgba(20,24,39,.14);
  outline: none;
}

.photo-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(15,20,31,.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

.photo-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.has-photo-modal {
  overflow: hidden;
}

.photo-modal-frame {
  width: min(980px, 100%);
  max-height: min(86vh, 820px);
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}

.photo-modal-frame img {
  width: 100%;
  height: min(62vh, 620px);
  object-fit: cover;
  display: block;
  background: #eef1f5;
}

.photo-modal-caption {
  display: grid;
  gap: 8px;
  padding: 18px 22px 22px;
}

.photo-modal-caption span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.photo-modal-caption strong {
  font-size: clamp(20px, 3vw, 30px);
}

.photo-modal-caption p {
  margin: 0;
  color: #566172;
}

.photo-modal-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 201;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #202838;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}

.demo-tile {
  border-radius: 6px;
  box-shadow: 0 6px 22px rgba(20,24,39,.12);
}

.product-logo {
  border-radius: 8px;
}

.order-strip {
  border-radius: 6px;
}

.home {
  background: #f7f8fa;
}

.sticky-mobile-cta {
  border-radius: 8px;
}

.sticky-mobile-cta a {
  border-radius: 6px;
}

@media (max-width: 900px) {
  .topbar {
    min-height: 62px;
  }

  h1 {
    font-size: clamp(31px, 9vw, 42px);
  }
}

/* Large first-view photo layout for public-facing demos. */
body:not(.sales) .hero,
body:not(.sales) .dac-hero,
body:not(.sales) .product-hero {
  position: relative;
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(52px, 8vw, 110px) clamp(18px, 7vw, 96px);
  background: #111 !important;
}

body:not(.sales) .hero::before,
body:not(.sales) .dac-hero::before,
body:not(.sales) .product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--hero-image) center / cover no-repeat;
}

body:not(.sales) .hero::after,
body:not(.sales) .dac-hero::after,
body:not(.sales) .product-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0,0,0,.54), rgba(0,0,0,.18) 52%, rgba(0,0,0,.08));
}

.atelier { --hero-image: url("assets/atelier-hero.png"); }
.cafe { --hero-image: url("assets/cafe-hero.png"); }
.farm { --hero-image: url("assets/farm-hero.png"); }
.creative { --hero-image: url("assets/creative-studio.png"); }
.craft { --hero-image: url("assets/craft-hero.png"); }

body:not(.sales) .hero-copy {
  max-width: 650px;
  padding: 0;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,.32);
}

body:not(.sales) .hero-copy h1,
body:not(.sales) .hero-copy p,
body:not(.sales) .hero-copy .eyebrow,
body:not(.sales) .hero-copy .hero-lead,
body:not(.sales) .dac-hero h1,
body:not(.sales) .dac-hero p,
body:not(.sales) .dac-hero .eyebrow,
body:not(.sales) .product-hero h1,
body:not(.sales) .product-hero p,
body:not(.sales) .product-hero .eyebrow {
  color: #fff;
}

body:not(.sales) .hero-copy .outline,
body:not(.sales) .dac-hero .outline,
body:not(.sales) .product-hero .outline {
  color: #fff;
  border-color: rgba(255,255,255,.76);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}

body:not(.sales) .hero-photo,
body:not(.sales) .dac-visual,
body:not(.sales) .product-visual {
  display: none;
}

body:not(.sales) .product-logo {
  width: 76px;
  height: 76px;
  font-size: 22px;
  margin-bottom: 14px;
}

@media (max-width: 900px) {
  body:not(.sales) .hero,
  body:not(.sales) .dac-hero,
  body:not(.sales) .product-hero {
    min-height: 78vh;
    padding: 34px 18px;
  }

  body:not(.sales) .hero-copy {
    padding: 0;
  }

  .is-clickable-photo::after {
    top: 10px;
    right: 10px;
    font-size: 11px;
  }

  .photo-modal-frame img {
    height: 54vh;
  }

  .photo-modal-caption {
    padding: 15px 16px 18px;
  }
}

/* 問い合わせボタン（フォーム・LINE・電話） */
.contact-choices {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.contact-choices .contact-cta {
  display: block;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}
.contact-choices .note {
  margin-top: 4px;
}

.sales-contact-form .btn,
.sales-contact-form .contact-cta {
  width: 100%;
  text-align: center;
  border: 0;
  cursor: pointer;
}

.sales-contact-form .note {
  margin: 0;
  line-height: 1.65;
}
