/* =========================================================
   ノーブルガーデン元吉田4期 No.6 来場予約LP
   Modern minimal — editorial rhythm, generous whitespace.
   ========================================================= */

:root {
  /* Color tokens */
  --ink:        oklch(0.24 0.02 250);   /* main text / primary */
  --ink-2:      oklch(0.36 0.02 250);
  --ink-3:      oklch(0.52 0.015 250);  /* sub text */
  --ink-4:      oklch(0.68 0.01 250);   /* meta / captions */
  --bg:         oklch(0.985 0.005 90);  /* offwhite warm */
  --bg-2:       oklch(0.965 0.006 90);
  --bg-3:       oklch(0.94 0.008 90);
  --line:       oklch(0.88 0.006 90);
  --line-2:     oklch(0.82 0.008 90);
  --accent:     oklch(0.42 0.05 165);   /* deep muted green */
  --accent-soft:oklch(0.9 0.02 165);

  /* Type scale */
  --f-jp: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --f-en: "Manrope", "Helvetica Neue", Helvetica, sans-serif;
  --f-mono: "JetBrains Mono", "SF Mono", ui-monospace, monospace;
  --f-serif: "Cormorant Garamond", "Noto Serif JP", serif;

  /* Spacing */
  --pad-x: clamp(20px, 6vw, 80px);
  --sec-y: clamp(72px, 12vw, 160px);
  --maxw: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-jp);
  font-weight: 400;
  line-height: 1.75;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%;height: auto;}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

/* Reset default list styling — kept semantic ul/ol/li while preserving visual layout */
ul, ol { list-style: none; }

/* Visually hidden — for screen-reader-only content */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------------------------------------------------------
   Utility
   --------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.eyebrow {
  font-family: var(--f-en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--ink-3);
  display: inline-block;
}

.section-label {
  font-family: var(--f-en);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-4);
}

h1, h2, h3, h4 {
  font-family: var(--f-jp);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.45;
  color: var(--ink);
  text-wrap: pretty;
}

.h-display {
  font-size: clamp(28px, 6vw, 52px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.03em;
}

.h-section {
  font-size: clamp(22px, 3.6vw, 34px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.body {
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-2);
}
.body-sm {
  font-size: 12px;
  line-height: 1.85;
  color: var(--ink-3);
}

.rule {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}

/* ---------------------------------------------------------
   Header
   --------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: color-mix(in oklch, var(--bg) 82%, transparent);
  border-bottom: 1px solid var(--line);
}
.site-header .inner {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand .en {
  font-family: var(--f-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--ink);
	margin-bottom: 5px;
}
.brand .jp {
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink);
  transition: all .2s ease;
}
.header-cta:hover { background: var(--ink); color: var(--bg); }
.header-cta .arrow { font-family: var(--f-en); }

@media (max-width: 640px) {
  .header-cta { padding: 8px 14px; font-size: 11px; }
}

/* ---------------------------------------------------------
   Placeholder image (striped)
   --------------------------------------------------------- */

.ph {/*
  position: relative;
	
  background:
    repeating-linear-gradient(
      45deg,
      oklch(0.94 0.008 90) 0 10px,
      oklch(0.9 0.008 90) 10px 20px
    );
  color: var(--ink-3);
  border: 1px solid var(--line);
	*/
	  overflow: hidden;

}
.ph::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed color-mix(in oklch, var(--ink-3) 40%, transparent);
  pointer-events: none;
}
/*
.ph-image { background: var(--bg-3); border: 0; }
.ph-image::after { content: none; }
*/
.ph .ph-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--ink-3);
  padding: 24px;
  text-align: center;
  line-height: 1.6;
}
.ph .ph-label .tag {
  font-family: var(--f-en);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-4);
  border: 1px solid var(--line-2);
  padding: 3px 8px;
  border-radius: 999px;
  background: color-mix(in oklch, var(--bg) 80%, transparent);
  margin-bottom: 6px;
}

/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */

.hero {
  padding: clamp(40px, 8vw, 100px) 0 clamp(60px, 10vw, 120px);
}

/* --- Variant A: 縦積み静謐型 --- */
.hero-A .inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.hero-A .top { display: flex; flex-direction: column; gap: 20px; }
.hero-A .headline {
  font-size: clamp(30px, 6vw, 56px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.hero-A .headline .ac { color: var(--accent); }
.hero-A .lead {
  font-size: 14px;
  color: var(--ink-2);
  max-width: 560px;
  line-height: 1.95;
}
.hero-A .visual {
  aspect-ratio: 16 / 9;
  width: 100%;
}
.hero-A .cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}

/* --- Variant B: 誌面グリッド型 --- */
.hero-B .inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) {
  .hero-B .inner {
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
  }
}
.hero-B .left { display: flex; flex-direction: column; gap: 22px; }
.hero-B .headline {
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.04em;
}
.hero-B .headline .ac { color: var(--accent); }
.hero-B .right {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  aspect-ratio: 4 / 5;
}
.hero-B .right .ph:nth-child(1) { grid-row: 1 / span 2; }
.hero-B .right .ph:nth-child(2) { grid-column: 2; }
.hero-B .right .ph:nth-child(3) { grid-column: 2; }

/* --- Variant C: フルブリード型 --- */
.hero-C {
  padding: 0;
  position: relative;
}
.hero-C .stage {
  position: relative;
  height: calc(100vh - 60px);
  min-height: 780px;
  max-height: 960px;
  width: 100%;
}
.hero-C .stage .ph {
  position: absolute;
  inset: 0;
  height: 100%;
  border: 0;
}
.hero-C .overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      color-mix(in oklch, var(--ink) 10%, transparent) 0%,
      color-mix(in oklch, var(--ink) 35%, transparent) 45%,
      color-mix(in oklch, var(--ink) 78%, transparent) 100%
    );
}
.hero-C .content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: var(--pad-x);
  padding-bottom: clamp(40px, 6vw, 72px);
  color: var(--bg);
  max-width: var(--maxw);
  margin: 0 auto;
}
.hero-C .headline {
  color: var(--bg);
  font-size: clamp(28px, 5.5vw, 52px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  max-width: 720px;
  margin-top: 20px;
}
.hero-C .lead {
  color: color-mix(in oklch, var(--bg) 88%, transparent);
  margin-top: 20px;
  max-width: 560px;
  font-size: 14px;
  line-height: 1.9;
}
.hero-C .cta-row { margin-top: 36px; display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.hero-C .section-label,
.hero-C .eyebrow { color: color-mix(in oklch, var(--bg) 78%, transparent); }
.hero-C .eyebrow::before { background: color-mix(in oklch, var(--bg) 78%, transparent); }

/* Hero KEY POINTS — 主訴求2点 */
.hero-keys {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 300px));
  gap: 0;
  margin: 36px 0 0;
  padding: 0;
  border-top: 1px solid color-mix(in oklch, var(--bg) 35%, transparent);
  border-bottom: 1px solid color-mix(in oklch, var(--bg) 35%, transparent);
}
.hero-keys li {
  padding: 20px 28px 20px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.hero-keys li + li {
  padding-left: 28px;
  border-left: 1px solid color-mix(in oklch, var(--bg) 25%, transparent);
}
.hero-keys .k-en {
  font-family: var(--f-en);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: color-mix(in oklch, var(--bg) 65%, transparent);
  font-weight: 500;
}
.hero-keys .k-main {
  font-size: 17px;
  line-height: 1.5;
  color: var(--bg);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.hero-keys .k-main em {
  font-family: var(--f-en);
  font-style: normal;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.01em;
  margin: 0 4px 0 2px;
  line-height: 1;
}
.hero-keys .k-sub {
  font-size: 11px;
  line-height: 1.7;
  color: color-mix(in oklch, var(--bg) 72%, transparent);
  letter-spacing: 0.04em;
}
@media (max-width: 640px) {
  .hero-keys { grid-template-columns: 1fr; }
  .hero-keys li + li {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid color-mix(in oklch, var(--bg) 25%, transparent);
  }
}

/* Hero C の CTA ボタンは背景色で反転 */
.hero-C .hero-c-btn {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}
.hero-C .hero-c-btn:hover {
  background: transparent;
  color: var(--bg);
  border-color: var(--bg);
}

/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 34px;
  border-radius: 2px;
  font-size: 14px;
  letter-spacing: 0.12em;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
}
.btn-primary:hover { transform: translateY(1px); box-shadow: 0 6px 20px -8px oklch(0.24 0.02 250 / 0.5); }
.btn-primary .arrow { font-family: var(--f-en); font-size: 16px; transition: transform .25s ease; }
.btn-primary:hover .arrow { transform: translateX(3px); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--bg); }

.cta-note {
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  line-height: 1.6;
  max-width: 300px;
}
.hero-C .cta-note { color: color-mix(in oklch, var(--bg) 80%, transparent); }

/* ---------------------------------------------------------
   Section framework
   --------------------------------------------------------- */

section { padding: var(--sec-y) 0; }
section + section { border-top: 1px solid var(--line); }

.hero + section { border-top: 0; }

.sec-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
@media (min-width: 800px) {
  .sec-head {
    grid-template-columns: 140px 1fr;
    gap: 40px;
    align-items: baseline;
  }
}
.sec-head .no {
  font-family: var(--f-en);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-4);
  padding-top: 4px;
}
.sec-head .title { display: flex; flex-direction: column; gap: 14px; max-width: 720px; }
.sec-head .title h2 { font-size: clamp(22px, 3.4vw, 32px); }
.sec-head .title p { color: var(--ink-2); font-size: 14px; }

/* ---------------------------------------------------------
   Intro
   --------------------------------------------------------- */

.intro { padding: clamp(60px, 10vw, 120px) 0; }
.intro .inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.intro .lede {
  font-size: clamp(18px, 2.6vw, 24px);
  font-weight: 400;
  line-height: 2.0;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-wrap: balance;
}
.intro .sub {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.9;
  max-width: 540px;
  margin: 0 auto;
}
.intro-visual {
  margin: clamp(56px, 8vw, 100px) auto 0;
  max-width: var(--maxw);
  padding: 0 var(--pad-x);
}
.intro-visual .ph {
  aspect-ratio: 16 / 9;
  width: 100%;
}

/* ---------------------------------------------------------
   Benefits
   --------------------------------------------------------- */

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 800px) {
  .benefits-grid { grid-template-columns: 1fr 1fr; }
}
.b-item {
  padding: clamp(28px, 4vw, 40px) 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
}
@media (min-width: 800px) {
  .b-item {
    padding: clamp(36px, 4vw, 48px) clamp(24px, 3vw, 40px);
  }
  .b-item:nth-child(odd) { border-right: 1px solid var(--line); }
}
.b-item .num {
  font-family: var(--f-en);
  font-size: 24px;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: 0.06em;
  padding-top: 4px;
  line-height: 1;
  border-top: 1px solid var(--ink);
  padding-top: 12px;
}
.b-item .body-w { display: flex; flex-direction: column; gap: 12px; }
.b-item h3 {
  font-size: clamp(17px, 2.4vw, 21px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.05em;
}
.b-item .kicker {
  font-family: var(--f-en);
  font-size: 10px;
  color: var(--ink-4);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.b-item p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.9;
}
.b-item .metric {
  font-family: var(--f-en);
  font-size: 32px;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin-top: 6px;
  line-height: 1;
}
.b-item .metric small {
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  margin-left: 6px;
}

/* ---------------------------------------------------------
   LDK / Living
   --------------------------------------------------------- */

.living .inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) {
  .living .inner {
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: center;
  }
}
.living .visual-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.living .visual-wrap .ph { aspect-ratio: 4 / 5; }
.living .visual-wrap .ph:first-child {
  grid-column: 1 / span 2;
  aspect-ratio: 16 / 10;
}
.living .content { display: flex; flex-direction: column; gap: 24px; }
.living .content h2 { font-size: clamp(22px, 3vw, 30px); }
.living .content p { font-size: 14px; color: var(--ink-2); line-height: 1.95; }
.living .content .caption-list {
  list-style: none;
  padding: 0;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
}
.living .content .caption-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  align-items: baseline;
  font-size: 13px;
}
.living .content .caption-list li:last-child { border-bottom: 1px solid var(--line); }
.living .content .caption-list .k {
  font-family: var(--f-en);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
	
  color: var(--ink-4);
	
}
.living .content .caption-list .v { color: var(--ink-2); }

/* ---------------------------------------------------------
   Solar Diagram
   --------------------------------------------------------- */

.solar { background: var(--bg-2); }
.solar .inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px) {
  .solar .inner { grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; }
}
.solar-diagram {
  aspect-ratio: 4 / 3.2;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: clamp(20px, 3vw, 32px);
  position: relative;
}
.solar-diagram svg { width: 100%; height: 100%; display: block; }
.solar .content { display: flex; flex-direction: column; gap: 22px; }
.solar .metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.solar .metrics .m {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.solar .metrics .m + .m { border-left: 1px solid var(--line); padding-left: 20px; }
.solar .metrics .k {
  font-family: var(--f-en);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.solar .metrics .v {
  font-family: var(--f-en);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1;
}
.solar .metrics .v small { font-size: 12px; color: var(--ink-3); margin-left: 4px; letter-spacing: 0.08em; }

/* ---------------------------------------------------------
   Specs Table
   --------------------------------------------------------- */

.specs table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.specs table tr { border-bottom: 1px solid var(--line); }
.specs table tr:first-child { border-top: 1px solid var(--line); }
.specs th, .specs td {
  text-align: left;
  padding: 18px 8px;
  vertical-align: top;
}
.specs th {
  width: 34%;
  font-weight: 500;
  color: var(--ink-3);
  font-size: 11px;
  letter-spacing: 0.12em;
}
.specs td { color: var(--ink); line-height: 1.85; }
.specs td .badge {
  display: inline-block;
  font-family: var(--f-en);
  font-size: 10px;
  padding: 3px 8px;
  border: 1px solid var(--line-2);
  border-radius: 2px;
  margin-right: 6px;
  color: var(--ink-2);
  letter-spacing: 0.1em;
}
.specs td .num {
  font-family: var(--f-en);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.specs td .price {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.specs td .price .num {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1;
}
.specs td .sub-note {
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  margin-left: 4px;
}
.specs td .loan-note {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: 0.04em;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.specs td .loan-note .num {
  font-family: var(--f-en);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin: 0 2px;
}
.specs td .loan-note .loan-terms {
  font-size: 10px;
  color: var(--ink-4);
  line-height: 1.7;
  letter-spacing: 0.04em;
}
.specs .note {
  margin-top: 24px;
  font-size: 11px;
  color: var(--ink-3);
  line-height: 1.85;
}

/* --- C案: Floorplan 統合レイアウト --- */
.specs-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
  margin-top: 8px;
}
@media (max-width: 960px) {
  .specs-grid { grid-template-columns: 1fr; }
}

/* Floorplan wrap */
.fp-wrap { display: flex; flex-direction: column; gap: 28px; }

/* Energy badge (図面外の設備) */
.fp-energy {
  display: flex;
  align-items: stretch;
  gap: 20px;
  padding: 18px 22px;
  border: 1px solid var(--accent);
  background: oklch(from var(--accent-soft) l c h / 0.35);
  border-radius: 2px;
}
.fp-energy-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.fp-energy-k {
  font-family: var(--f-en);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.fp-energy-v {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.fp-energy-v em {
  font-family: var(--f-en);
  font-style: normal;
  font-size: 18px;
  font-weight: 400;
  color: var(--accent);
  margin: 0 2px;
}
.fp-energy-s {
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.fp-energy-sep {
  width: 1px;
  background: var(--accent);
  opacity: 0.4;
}
@media (max-width: 560px) {
  .fp-energy { flex-direction: column; gap: 14px; }
  .fp-energy-sep { width: 100%; height: 1px; }
}

/* Floorplan frame */
.fp-frame {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.fp-floor {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fp-floor-tag {
  font-family: var(--f-en);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ink-3);
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}
.fp-image {
  position: relative;
  background: var(--bg-2);
  overflow: hidden;
}
.fp-image img {
  width: 100%;
  height: auto;
  display: block;
}
.fp-image .ph {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.fp-caption-row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 14px;
  font-family: var(--f-en);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.fp-caption-row .fp-area { color: var(--ink-2); }

/* Numbered pins on floorplan - clickable */
.fp-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.fp-pin .dot {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 28px; height: 28px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-family: var(--f-en);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 0 0 3px var(--bg), 0 2px 8px oklch(0.24 0.02 250 / 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.fp-pin .dot:hover {
  transform: scale(1.12);
  background: var(--ink);
  box-shadow: 0 0 0 3px var(--bg), 0 4px 14px oklch(0.24 0.02 250 / 0.28);
}
.fp-pin.is-active .dot {
  background: var(--ink);
  transform: scale(1.15);
  box-shadow: 0 0 0 3px var(--bg), 0 0 0 5px var(--accent), 0 6px 18px oklch(0.24 0.02 250 / 0.32);
}

/* Tooltip (opens on active) */
.fp-tip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 14px);
  transform: translateX(-50%) translateY(6px);
  min-width: 180px;
  max-width: 240px;
  padding: 12px 14px 13px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 3px;
  box-shadow: 0 10px 30px oklch(0.24 0.02 250 / 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 3px;
  white-space: normal;
  text-align: left;
}
.fp-tip::after {
  content: "";
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--ink);
}
.fp-pin.is-active .fp-tip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.fp-tip-n {
  font-family: var(--f-en);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--accent-soft);
  font-weight: 500;
  opacity: 0.85;
}
.fp-tip-label {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #fff;
}
.fp-tip-sub {
  font-size: 11px;
  line-height: 1.6;
  color: oklch(0.85 0.008 250);
  letter-spacing: 0.02em;
}

/* Flip tooltip below for pins near the top edge */
.fp-pin[style*="top: 1"] .fp-tip,
.fp-pin[style*="top: 2"] .fp-tip {
  bottom: auto;
  top: calc(100% + 14px);
  transform: translateX(-50%) translateY(-6px);
}
.fp-pin[style*="top: 1"] .fp-tip::after,
.fp-pin[style*="top: 2"] .fp-tip::after {
  top: auto;
  bottom: 100%;
  border-top-color: transparent;
  border-bottom-color: var(--ink);
}
.fp-pin[style*="top: 1"].is-active .fp-tip,
.fp-pin[style*="top: 2"].is-active .fp-tip {
  transform: translateX(-50%) translateY(0);
}

/* Hint bar under the floorplan */
.fp-hint {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  background: var(--bg);
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.7;
  letter-spacing: 0.04em;
}
.fp-hint strong { color: var(--accent); font-weight: 500; }
.fp-hint-mark {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 20px; height: 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-family: var(--f-en);
  font-size: 11px;
  font-style: italic;
  font-weight: 500;
}

/* Right side */
.specs-side { display: flex; flex-direction: column; gap: 32px; }
.specs-name h3 {
  font-family: var(--f-jp);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-top: 8px;
}
.specs-name-sub {
  margin-top: 8px;
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
}

.specs-price {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.specs-price .price-row {
  margin-top: 10px;
  display: flex; align-items: baseline; gap: 6px;
}
.specs-price .price .num {
  font-family: var(--f-en);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.specs-price .sub-note {
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
}
.specs-price .loan-note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: 0.04em;
  line-height: 1.75;
  display: flex; flex-direction: column; gap: 4px;
}
.specs-price .loan-note .num {
  font-family: var(--f-en);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  margin: 0 2px;
}
.specs-price .loan-note .loan-terms {
  font-size: 10px;
  color: var(--ink-4);
  line-height: 1.7;
}

/* ---------------------------------------------------------
   Access
   --------------------------------------------------------- */

.access { background: var(--bg-2); }
.access .inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px) {
  .access .inner { grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
}
.access .map {
  aspect-ratio: 1 / 1;
  background: var(--bg);
}
.access .map.ph-image img {
  object-fit: contain !important;
  padding: 12px;
}
/* Google Maps 埋め込み */
.access .map-embed {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: #eef1f4;
}
.access .map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.92) contrast(0.98);
}
.access .map-link {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 20px -8px rgba(26, 31, 43, 0.25);
  transition: background 0.2s ease, transform 0.2s ease;
}
.access .map-link:hover {
  background: #fff;
  transform: translateY(-1px);
}
.access .map-link span {
  font-size: 11px;
  color: var(--sub, #6b7280);
}
.access .modes { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 8px; }
.access .modes .row {
  display: grid;
  grid-template-columns: 40px 90px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.access .modes .row:last-child { border-bottom: 1px solid var(--line); }
.access .modes .icon {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-2);
}
.access .modes .icon svg { width: 22px; height: 22px; }
.access .modes .label {
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
}
.access .modes .desc {
  font-size: 13px;
  color: var(--ink-2);
}
.access .modes .num {
  font-family: var(--f-en);
  font-size: 22px;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}
.access .modes .num small { font-size: 11px; color: var(--ink-3); margin-left: 4px; letter-spacing: 0.08em; }
.access .honest-note {
  margin-top: 24px;
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.9;
  padding: 18px 20px;
  background: var(--bg);
  border-left: 2px solid var(--accent);
}

@media (max-width: 640px) {
  .access .modes .row { grid-template-columns: 34px 1fr auto; }
  .access .modes .label { display: none; }
}

/* ---------------------------------------------------------
   Neighborhood
   --------------------------------------------------------- */

.neighborhood .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (min-width: 800px) {
  .neighborhood .grid { grid-template-columns: repeat(4, 1fr); }
}
.n-item {
  padding: 24px 20px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 8px;
  min-height: 130px;
}
@media (min-width: 800px) {
  .n-item:nth-child(4n) { border-right: 0; }
}
@media (max-width: 799px) {
  .n-item:nth-child(2n) { border-right: 0; }
}
.n-item .cat {
  font-family: var(--f-en);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.n-item .name {
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.04em;
}
.n-item .dist {
  font-family: var(--f-en);
  font-size: 12px;
  color: var(--ink-3);
  margin-top: auto;
  padding-top: 8px;
}

/* ---------------------------------------------------------
   Steps
   --------------------------------------------------------- */

.steps .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 800px) {
  .steps .grid { grid-template-columns: repeat(3, 1fr); }
}
.step {
  padding: clamp(28px, 3.5vw, 40px) clamp(20px, 2.5vw, 32px);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 800px) {
  .step { border-right: 1px solid var(--line); border-bottom: 0; }
  .step:last-child { border-right: 0; }
}
.step .no {
  font-family: var(--f-en);
  font-size: 34px;
  font-weight: 300;
  color: var(--ink-4);
  letter-spacing: 0.02em;
  line-height: 1;
}
.step h3 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.step p {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.9;
}

/* ---------------------------------------------------------
   Final CTA
   --------------------------------------------------------- */

.final-cta {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(72px, 12vw, 140px) 0;
}
.final-cta .inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.final-cta .eyebrow { color: color-mix(in oklch, var(--bg) 60%, transparent); }
.final-cta .eyebrow::before { background: color-mix(in oklch, var(--bg) 60%, transparent); }
.final-cta h2 {
  color: var(--bg);
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
.final-cta p {
  color: color-mix(in oklch, var(--bg) 78%, transparent);
  font-size: 14px;
  line-height: 1.95;
  max-width: 520px;
  margin: 0 auto;
}
.final-cta .btn-primary {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
  align-self: center;
  padding: 20px 40px;
}
.final-cta .btn-primary:hover { background: transparent; color: var(--bg); }
.final-cta .cta-note {
  color: color-mix(in oklch, var(--bg) 60%, transparent);
  font-size: 11px;
}
.final-cta .direct-line {
  display: flex; flex-direction: column; gap: 6px; align-items: center;
  margin-top: 8px;
  padding-top: 32px;
  border-top: 1px solid color-mix(in oklch, var(--bg) 20%, transparent);
}
.final-cta .direct-line .k {
  font-family: var(--f-en);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: color-mix(in oklch, var(--bg) 60%, transparent);
}
.final-cta .direct-line .v {
  font-family: var(--f-en);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--bg);
}

/* ---------------------------------------------------------
   Bonus — 来場予約特典
   --------------------------------------------------------- */

.bonus {
  background: var(--bg-2);
}
.bonus .sec-head .title h2 .amt {
  font-family: "Manrope", "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.01em;
  padding: 0 0.06em;
}
.only-sp { display: none; }
@media (max-width: 700px) {
  .only-sp { display: inline; }
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
  margin-top: 44px;
}
@media (min-width: 820px) {
  .bonus-grid {
    grid-template-columns: 1fr auto 1fr;
    gap: 28px;
  }
}

.bonus-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.bonus-card:hover {
  border-color: color-mix(in oklch, var(--ink) 50%, var(--line));
}
.bonus-card .tag {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-4);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.bonus-card .tag::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--ink-4);
  display: inline-block;
}

.bonus-card .amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  line-height: 1;
  margin: 6px 0 4px;
}
.bonus-card .amount .unit {
  font-size: 24px;
  font-weight: 400;
  color: var(--ink-3);
  margin-right: 2px;
}
.bonus-card .amount .num {
  font-size: 64px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.bonus-card .amount .tail {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-2);
  margin-left: 4px;
  letter-spacing: 0.02em;
}

.bonus-card h3 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.65;
  color: var(--ink);
  margin: 4px 0 0;
  letter-spacing: 0.02em;
}
.bonus-card p {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--ink-3);
  margin: 0;
}

.bonus-grid .plus {
  align-self: center;
  justify-self: center;
  font-size: 28px;
  font-weight: 300;
  color: var(--ink-4);
  font-family: "Manrope", sans-serif;
  padding: 0 4px;
}
@media (max-width: 819px) {
  .bonus-grid .plus { display: none; }
}

.bonus-total {
  margin-top: 28px;
  padding: 22px 28px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}
.bonus-total .k {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.bonus-total .v {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.bonus-total .v em {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  color: var(--accent);
  margin-right: 4px;
  letter-spacing: -0.01em;
}

/* Notes accordion */
.bonus-notes {
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--bg);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.bonus-notes.is-open { border-color: color-mix(in oklch, var(--ink) 30%, var(--line)); }

.notes-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: var(--ink);
  letter-spacing: 0.02em;
  transition: background 0.15s ease;
}
.notes-toggle:hover { background: var(--bg-3); }
.notes-toggle .label {
  flex: 1;
  font-size: 13.5px;
  font-weight: 500;
}
.notes-toggle .chev {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  color: var(--ink-3);
  width: 20px;
  text-align: center;
}
.notes-toggle .burger {
  width: 22px;
  height: 14px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  flex: none;
}
.notes-toggle .burger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
.bonus-notes.is-open .burger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.bonus-notes.is-open .burger span:nth-child(2) {
  opacity: 0;
}
.bonus-notes.is-open .burger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.notes-panel {
  padding: 8px 22px 24px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.notes-panel .notes-lead {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--ink-2);
  margin: 16px 0 14px;
}
.notes-panel .notes-lead strong {
  color: var(--ink);
  font-weight: 600;
}
.notes-panel .notes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.notes-panel .notes-list li {
  font-size: 12.5px;
  line-height: 1.9;
  color: var(--ink-3);
  padding: 12px 0 12px 18px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.notes-panel .notes-list li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--ink-4);
  font-size: 11px;
}

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */

.site-footer {
  padding: 48px 0 40px;
  background: var(--bg-2);
  font-size: 11px;
  color: var(--ink-3);
  line-height: 1.85;
}
.site-footer .inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 800px) {
  .site-footer .inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.site-footer .brand-block { display: flex; flex-direction: column; gap: 6px; }
.site-footer .brand-block .name {
  font-family: var(--f-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--ink-2);
}
.site-footer .legal { font-size: 10px; color: var(--ink-4); letter-spacing: 0.08em; }

/* Footer 店舗情報テーブル */
.site-footer .shop-info {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  min-width: 0;
  flex: 1;
  max-width: 480px;
}
.site-footer .shop-info .row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.site-footer .shop-info dt {
  font-size: 11.5px;
  color: var(--ink-4);
  letter-spacing: 0.1em;
  font-weight: 500;
  margin: 0;
}
.site-footer .shop-info dd {
  margin: 0;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.75;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.site-footer .shop-info dd a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.site-footer .shop-info dd a:hover {
  border-bottom-color: var(--ink);
}
/* Footer 全体を店舗情報が入っても綺麗に並ぶよう調整 */
@media (min-width: 800px) {
  .site-footer .inner {
    align-items: flex-start;
    gap: 48px;
  }
  .site-footer .brand-block { flex: 0 0 auto; padding-top: 6px; }
  .site-footer .legal { align-self: flex-end; margin-left: auto; }
}

/* ---------------------------------------------------------
   Divider heading (editorial)
   --------------------------------------------------------- */

.chapter-mark {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.chapter-mark .line { flex: 1; height: 1px; background: var(--line); }
.chapter-mark .label {
  font-family: var(--f-en);
  font-size: 10px;
  color: var(--ink-4);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.brand-block .en{
	width: 60%;
	margin: 0 auto;
}
.brand-block .jp{
text-align: center;
}