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

:root {
  --ink: #151515;
  --paper: #fbfaf7;
  --muted: #6f6a63;
  --line: rgba(0, 0, 0, .1);
  --brand: #b9964b;
  --brand-2: #6d8f79;
  --soft: #f2eee6;
  --radius: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.85;
  font-weight: 350;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.demo-bar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 18px;
  background: rgba(17, 17, 17, .82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  border-bottom: 1px solid var(--brand);
}

.demo-bar a,
.demo-bar span {
  font-size: .72rem;
  white-space: nowrap;
}

.demo-back {
  border: 1px solid rgba(255,255,255,.22);
  padding: 5px 11px;
  border-radius: 4px;
  color: rgba(255,255,255,.76);
}

.demo-kind {
  color: var(--brand);
  letter-spacing: .12em;
}

.demo-cta {
  background: var(--brand);
  color: #fff;
  padding: 7px 14px;
  border-radius: 4px;
}

.site {
  padding-top: 46px;
}

.nav {
  position: sticky;
  top: 46px;
  z-index: 200;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 34px;
  background: rgba(251,250,247,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 1.32rem;
  letter-spacing: .08em;
}

.brand small {
  display: block;
  margin-top: -5px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: .58rem;
  letter-spacing: .22em;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}

.nav-links a {
  font-size: .74rem;
  letter-spacing: .12em;
  color: var(--muted);
}

.nav-reserve {
  padding: 9px 20px;
  background: var(--ink);
  color: #fff;
  border-radius: 4px;
  font-size: .78rem;
  letter-spacing: .08em;
}

.hero {
  min-height: calc(100svh - 114px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 44%);
  align-items: stretch;
  background: #fff;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 7vw, 104px);
}

.eyebrow {
  color: var(--brand);
  font-size: .7rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: "Playfair Display", "Noto Serif JP", serif;
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 1.12;
  letter-spacing: 0;
  margin-bottom: 22px;
}

.hero-lead {
  max-width: 590px;
  color: var(--muted);
  font-size: clamp(.92rem, 2vw, 1.02rem);
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 26px;
  border-radius: 4px;
  font-size: .86rem;
  letter-spacing: .07em;
}

.btn.primary {
  background: var(--brand);
  color: #fff;
}

.btn.ghost {
  border: 1px solid var(--line);
  color: var(--ink);
}

.hero-media {
  min-height: 560px;
  background: var(--hero-img) center/cover;
}

.section {
  padding: 92px 34px;
}

.section.alt {
  background: var(--soft);
}

.section.dark {
  background: var(--ink);
  color: #fff;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
}

.section-head {
  max-width: 680px;
  margin-bottom: 42px;
}

.section-title {
  font-family: "Playfair Display", "Noto Serif JP", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.24;
  margin-bottom: 12px;
}

.section-text {
  color: var(--muted);
  font-size: .92rem;
}

.dark .section-text,
.dark .card p,
.dark .info-row p {
  color: rgba(255,255,255,.68);
}

.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.card-body {
  padding: 24px;
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 7px;
}

.card p {
  color: var(--muted);
  font-size: .84rem;
}

.card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.menu-item {
  background: #fff;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
}

.menu-item small {
  display: block;
  color: var(--muted);
  font-size: .72rem;
  margin-top: 2px;
}

.price {
  color: var(--brand);
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  white-space: nowrap;
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 10px;
}

.gallery img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
}

.gallery img:first-child {
  grid-row: span 2;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: stretch;
}

.map {
  min-height: 360px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(185,150,75,.2), rgba(109,143,121,.16)),
    #e6e0d5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  border: 1px solid var(--line);
  text-align: center;
}

.map small {
  display: block;
  margin-top: 6px;
  font-size: .7rem;
  opacity: .6;
}

.info-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}

.info-row {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.info-row:last-child {
  border-bottom: 0;
}

.info-row span {
  display: block;
  color: var(--brand);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.info-row p {
  color: var(--ink);
  font-size: .9rem;
}

.cta {
  text-align: center;
}

.cta .section-head {
  margin: 0 auto 30px;
}

.footer {
  padding: 42px 24px;
  background: #080808;
  color: rgba(255,255,255,.45);
  text-align: center;
  font-size: .76rem;
}

.demo-list-page {
  padding-top: 0;
}

.demo-list-hero {
  min-height: 58svh;
  padding: 80px 28px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(16,16,16,.85) 0%, rgba(80,70,60,.55) 38%, rgba(238,138,165,.45) 100%),
    url("https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?w=1600&auto=format&fit=crop") center/cover;
  color: #fff;
}

.demo-list-hero .container {
  width: 100%;
}

.demo-list-hero h1 {
  font-family: "Playfair Display", "Noto Serif JP", serif;
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.demo-list-hero p {
  max-width: 680px;
  color: rgba(255,255,255,.74);
}

.demo-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.demo-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}

.demo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0,0,0,.08);
}

.demo-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.demo-card-body {
  padding: 22px;
}

.demo-card-tag {
  color: var(--brand);
  font-size: .66rem;
  letter-spacing: .18em;
  margin-bottom: 7px;
}

.demo-card h2 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.demo-card p {
  color: var(--muted);
  font-size: .82rem;
}

.style-dark {
  --ink: #101010;
  --paper: #111;
  --muted: #b9b0a5;
  --line: rgba(255,255,255,.12);
  --brand: #c7a65b;
  --brand-2: #8a6a42;
  --soft: #1b1a18;
  color: #fff;
}

.style-dark .nav,
.style-dark .card,
.style-dark .menu-item,
.style-dark .info-panel {
  background: #171717;
}

.style-dark .hero {
  background: #101010;
}

.style-dark .btn.ghost {
  color: #fff;
}

.style-dark .map {
  background:
    linear-gradient(135deg, rgba(199,166,91,.2), rgba(255,255,255,.06)),
    #24211d;
}

.style-natural {
  --ink: #242722;
  --paper: #fbfaf6;
  --muted: #666c5d;
  --brand: #8b7750;
  --brand-2: #6c8d78;
  --soft: #eef0e8;
}

/* ===== Editorial（e-hakama × ZARA × FreeStitch）===== */
.style-editorial {
  --ink: #161616;
  --paper: #f7f4ee;
  --muted: #7a766e;
  --line: rgba(0,0,0,.08);
  --brand: #b4a587;
  --brand-2: #2a2a2a;
  --soft: #ede8df;
  --radius: 0px;
}

.style-editorial body,
.style-editorial {
  background: var(--paper);
  font-weight: 350;
}

.style-editorial .nav {
  background: rgba(247,244,238,.92);
  border-bottom: 0;
  padding: 0 48px;
}

.style-editorial .brand {
  font-family: "Playfair Display", "Noto Serif JP", serif;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: lowercase;
}

.style-editorial .nav-links a {
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 400;
}

.style-editorial .nav-reserve {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 0;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .68rem;
  padding: 10px 18px;
}

.style-editorial .hero {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 50%);
  background: var(--paper);
}

.style-editorial .hero-copy {
  padding: clamp(64px, 8vw, 130px) clamp(40px, 6vw, 100px);
}

.style-editorial .eyebrow {
  color: var(--brand);
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: none;
  font-size: .92rem;
  margin-bottom: 22px;
}

.style-editorial .hero h1 {
  font-family: "Playfair Display", "Noto Serif JP", serif;
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -.012em;
  margin-bottom: 30px;
}

.style-editorial .hero-lead {
  font-size: 1rem;
  line-height: 1.95;
  max-width: 480px;
}

.style-editorial .btn {
  border-radius: 0;
  font-size: .68rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  min-height: 52px;
  padding: 14px 32px;
}

.style-editorial .btn.primary {
  background: var(--ink);
}

.style-editorial .btn.ghost {
  border-color: var(--ink);
}

.style-editorial .hero-media {
  min-height: 720px;
  background-position: center 28%;
  filter: saturate(.85) contrast(1.02);
}

.style-editorial .section {
  padding: 130px 48px;
}

.style-editorial .section-head {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}

.style-editorial .section-title {
  font-family: "Playfair Display", "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  letter-spacing: -.01em;
}

.style-editorial .section-text {
  font-size: 1rem;
  line-height: 2;
  color: var(--muted);
}

.style-editorial .card {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  padding-top: 22px;
}

.style-editorial .card-body {
  padding: 0;
}

.style-editorial .card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.style-editorial .card-img {
  aspect-ratio: 3 / 4;
  border-radius: 0;
  filter: saturate(.88);
}

.style-editorial .menu-list {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 1fr;
}

.style-editorial .menu-item {
  background: transparent;
  border-bottom: 1px solid var(--line);
  padding: 28px 4px;
  align-items: center;
}

.style-editorial .menu-item strong {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .01em;
}

.style-editorial .menu-item small {
  letter-spacing: .08em;
  color: var(--muted);
  font-size: .76rem;
  margin-top: 4px;
}

.style-editorial .price {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--ink);
  font-weight: 400;
}

.style-editorial .gallery {
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4px;
}

.style-editorial .gallery img {
  border-radius: 0;
  filter: saturate(.88) contrast(1.03);
  min-height: 280px;
}

.style-editorial .section.alt {
  background: #fff;
}

.style-editorial .section.dark {
  background: var(--ink);
  color: #f7f4ee;
}

.style-editorial .info-panel {
  background: transparent;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 0;
  padding: 40px;
}

.style-editorial .info-row span {
  font-family: "Playfair Display", serif;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-size: .82rem;
  color: var(--brand);
}

.style-editorial .info-row p {
  font-size: 1rem;
  color: #f7f4ee;
}

.style-editorial .map {
  background:
    linear-gradient(135deg, rgba(180,165,135,.16), rgba(255,255,255,.04)),
    #1f1f1f;
  border-radius: 0;
  border: 0;
  color: rgba(255,255,255,.5);
  min-height: 420px;
}

.style-editorial .footer {
  background: var(--paper);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

body.plan-five.style-editorial .gallery {
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 6px;
}

body.plan-five.style-editorial .gallery img:first-child {
  grid-row: span 2;
  min-height: 580px;
}

body.plan-lp.style-editorial .section {
  padding: 88px 48px;
}

.style-pop {
  --ink: #2b2030;
  --paper: #fff9f4;
  --muted: #7a6a7e;
  --brand: #ee8aa5;
  --brand-2: #5dc2a8;
  --soft: #ffeef3;
  --radius: 18px;
}

.style-pop body,
.style-pop {
  background: var(--paper);
}

.style-pop .hero {
  background: linear-gradient(135deg, #ffe0ec 0%, #fff4e0 50%, #d8f2ea 100%);
}

.style-pop .hero h1 {
  font-family: "Noto Sans JP", "Playfair Display", sans-serif;
  font-weight: 700;
  letter-spacing: -.01em;
}

.style-pop .card,
.style-pop .info-panel {
  border-color: rgba(238,138,165,.2);
  box-shadow: 0 10px 28px rgba(238,138,165,.08), 0 2px 4px rgba(0,0,0,.03);
  border-radius: var(--radius);
}

.style-pop .menu-item {
  border-radius: 12px;
  background: #fff;
  margin: 0;
}

.style-pop .menu-list {
  background: transparent;
  border: 0;
  gap: 10px;
}

.style-pop .btn {
  border-radius: 999px;
  font-weight: 500;
  box-shadow: 0 4px 14px rgba(238,138,165,.28);
}

.style-pop .btn.ghost {
  box-shadow: none;
  border-color: rgba(238,138,165,.35);
}

.style-pop .nav-reserve {
  border-radius: 999px;
  background: var(--brand);
}

.style-pop .demo-cta {
  border-radius: 999px;
  background: var(--brand);
}

.style-pop .nav-links a {
  font-weight: 500;
}

.style-pop .eyebrow {
  letter-spacing: .18em;
}

.style-pop .gallery img {
  border-radius: 14px;
}

.style-pop .section.dark {
  background: linear-gradient(135deg, #ffe0ec, #d8f2ea);
  color: var(--ink);
}

.style-pop .section.dark .section-text,
.style-pop .dark .section-text,
.style-pop .dark .info-row p {
  color: var(--muted);
}

.style-pop .map {
  background:
    linear-gradient(135deg, rgba(238,138,165,.18), rgba(93,194,168,.16)),
    #fff;
  border-radius: var(--radius);
}

/* ===== ダーク強化 ===== */
.style-dark .hero h1 {
  line-height: 1.18;
}

.style-dark .section {
  padding: 110px 34px;
}

.style-dark body,
.style-dark .footer {
  background: #080808;
}

/* ===== プラン別の演出差 ===== */
body.plan-lp .section {
  padding: 64px 34px;
}

body.plan-lp .hero {
  min-height: calc(80svh - 114px);
}

body.plan-lp .hero-media {
  min-height: 440px;
}

body.plan-five .section {
  padding: 104px 34px;
}

body.plan-five .gallery {
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 12px;
}

body.plan-five .gallery img {
  min-height: 240px;
}

body.plan-five .gallery img:first-child {
  grid-row: span 2;
}

body.plan-five .grid-3 {
  gap: 24px;
}

body.plan-five .card-img {
  aspect-ratio: 3 / 4;
}

body.plan-five .hero-media {
  min-height: 640px;
}

body.plan-four .card-img {
  aspect-ratio: 4 / 3;
}

@media (max-width: 900px) {
  .hero,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 340px;
    order: -1;
  }

  .grid-3,
  .grid-4,
  .demo-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .menu-list {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 620px) {
  .demo-bar {
    height: auto;
    min-height: 46px;
    flex-wrap: wrap;
    padding: 7px 12px;
  }

  .site {
    padding-top: 62px;
  }

  .nav {
    top: 62px;
    padding: 0 18px;
  }

  .demo-kind {
    display: none;
  }

  .hero-copy,
  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .grid-3,
  .grid-4,
  .demo-card-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery img:first-child {
    grid-row: auto;
  }
}
