/* ─────────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────────── */
:root {
  --night:      #0c1210;
  --deep:       #141f1b;
  --bark:       #253220;
  --moss:       #3a5a35;
  --fern:       #567550;
  --sage:       #8aaa7a;
  --mist:       #b8ccb0;
  --parchment:  #f0ebe0;
  --cream:      #faf7f0;
  --white:      #ffffff;
  --gold:       #c8a86a;
  --gold-lt:    #e8d8a8;
  --amber:      #d49050;
  --ink:        #1a1e16;
  --gray:       #8a8778;
  --border:     rgba(90,122,85,0.18);
  --border-lt:  rgba(90,122,85,0.10);

  --font-serif:  'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-jp:     'Noto Serif JP', serif;
  --font-body:   'Noto Sans JP', sans-serif;
}

/* ─────────────────────────────────────────────
   BASE RESET
───────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.85;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ─────────────────────────────────────────────
   UTILITY
───────────────────────────────────────────── */
.inner       { max-width: 1120px; margin: 0 auto; }
.inner-narrow { max-width: 820px; margin: 0 auto; }

/* ─────────────────────────────────────────────
   SPONSORED BAR (最上部 - メディア告知)
───────────────────────────────────────────── */
.sponsored-bar {
  background: var(--bark);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(200,169,110,0.25);
}
.sponsored-bar .media-label {
  color: var(--mist);
  font-weight: 500;
}
.sponsored-bar .sep { color: rgba(255,255,255,0.2); }
.sponsored-bar .sponsor-name {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ─────────────────────────────────────────────
   NAV
───────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(12,18,16,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 300;
  color: var(--mist);
  letter-spacing: 0.14em;
}
.nav-logo strong { color: var(--gold); font-weight: 400; }
.nav-sponsored-tag {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-center {
  display: flex;
  gap: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}
.nav-center a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.nav-center a:hover { color: var(--gold); }
.nav-cta-btn {
  background: var(--gold);
  color: var(--night);
  padding: 9px 20px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.nav-cta-btn:hover { background: var(--gold-lt); transform: translateY(-1px); }

/* ─────────────────────────────────────────────
   HERO (full-screen with real photo BG)
───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--night);
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-image:
    url('https://www.mokustry.com/wp/wp-content/uploads/fe-top.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.55;
  transform: scale(1.02);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.02); }
  to   { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(12,18,16,0.88) 38%, rgba(12,18,16,0.2) 100%),
    linear-gradient(to top, rgba(12,18,16,0.8) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 60px 80px;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: end;
}
.hero-eyebrow {
  font-size: 10.5px;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  animation: fadeUp 0.7s ease both;
}
.hero-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
}
.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(46px,5.5vw,76px);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 10px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-subtitle {
  font-family: var(--font-jp);
  font-size: clamp(16px, 2vw, 21px);
  font-weight: 300;
  color: var(--mist);
  margin-bottom: 28px;
  line-height: 1.65;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  line-height: 1.95;
  max-width: 500px;
  margin-bottom: 36px;
  animation: fadeUp 0.7s 0.3s ease both;
}
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.4s ease both;
}
.btn-gold {
  background: var(--gold);
  color: var(--night);
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,169,110,0.3); }
.btn-outline-w {
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7);
  padding: 14px 26px;
  font-size: 13px;
  letter-spacing: 0.05em;
  border-radius: 2px;
  transition: all 0.25s;
}
.btn-outline-w:hover { border-color: var(--gold); color: var(--gold); }

/* Hero stat card (右サイド) */
.hero-kpi-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,169,110,0.2);
  backdrop-filter: blur(10px);
  border-radius: 4px;
  padding: 36px 28px;
  animation: fadeUp 0.7s 0.25s ease both;
}
.kpi-item {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.kpi-item:first-child { padding-top: 0; }
.kpi-item:last-child { border-bottom: none; padding-bottom: 0; }
.kpi-num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 5px;
}
.kpi-unit { font-size: 18px; }
.kpi-note { font-size: 11.5px; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.3);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 3;
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(200,169,110,0.6), transparent);
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ─────────────────────────────────────────────
   MEDIA NOTICE SECTION (sponsored表示)
───────────────────────────────────────────── */
.media-notice {
  background: var(--parchment);
  border-top: 3px solid var(--gold);
  padding: 36px 40px;
}
.media-notice-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
.media-notice-logo {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.media-notice-logo img {
  width: 120px;
  filter: brightness(0) saturate(100%);
  opacity: 0.85;
}
.media-notice-tag {
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--moss);
  text-transform: uppercase;
  border: 1px solid var(--moss);
  padding: 2px 8px;
  border-radius: 2px;
  white-space: nowrap;
}
.media-notice-text { font-size: 13px; color: #555; line-height: 1.9; }
.media-notice-text strong { color: var(--bark); font-weight: 600; }

/* ─────────────────────────────────────────────
   SECTION BASE STYLES
───────────────────────────────────────────── */
.sec-dark      { background: var(--deep); padding: 100px 40px; }
.sec-darkest   { background: var(--night); padding: 100px 40px; }
.sec-light     { background: var(--cream); padding: 100px 40px; }
.sec-parchment { background: var(--parchment); padding: 100px 40px; }
.sec-white     { background: var(--white); padding: 100px 40px; }
.sec-bark      { background: var(--bark); padding: 100px 40px; }

.sec-label {
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.sec-label::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--gold);
}
.sec-heading {
  font-family: var(--font-jp);
  font-size: clamp(24px,3vw,40px);
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 18px;
}
.sec-heading.on-dark  { color: #fff; }
.sec-heading.on-light { color: var(--bark); }
.sec-sub {
  font-size: 14.5px;
  line-height: 1.95;
  max-width: 660px;
}
.sec-sub.on-dark  { color: rgba(255,255,255,0.55); }
.sec-sub.on-light { color: #666; }

/* ─────────────────────────────────────────────
   MARKET NUMBERS (大きな数字 section)
───────────────────────────────────────────── */
.market-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.market-cell {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}
.market-cell::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--moss), transparent);
}
.market-big {
  font-family: var(--font-serif);
  font-size: 58px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.market-big .u { font-size: 22px; }
.market-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 6px; }
.market-src  { font-size: 10px; color: rgba(255,255,255,0.22); }

/* ─────────────────────────────────────────────
   PHOTO GALLERY (実績写真)
───────────────────────────────────────────── */
.gallery-intro {
  padding: 80px 40px 0;
  background: var(--night);
}
.photo-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 4px;
  margin-top: 40px;
}
.photo-cell {
  overflow: hidden;
  position: relative;
  background: var(--deep);
}
.photo-cell.large {
  grid-row: 1 / 3;
}
.photo-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.88) saturate(0.9);
}
.photo-cell:hover img {
  transform: scale(1.05);
  filter: brightness(0.96) saturate(1.05);
}
.photo-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(12,18,16,0.8));
  padding: 24px 16px 14px;
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
}
.photo-cap strong { color: var(--gold); display: block; font-size: 12.5px; margin-bottom: 2px; }

/* ─────────────────────────────────────────────
   CASE STUDIES (事例)
───────────────────────────────────────────── */
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 56px;
}
.case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(37,50,32,0.12);
}
.case-photo {
  height: 260px;
  overflow: hidden;
  position: relative;
}
.case-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.92);
}
.case-card:hover .case-photo img { transform: scale(1.04); }
.case-type-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--bark);
  color: var(--gold);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  padding: 4px 12px;
  border-radius: 2px;
  text-transform: uppercase;
}
.case-body { padding: 28px 28px 32px; }
.case-location { font-size: 11px; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; }
.case-name {
  font-family: var(--font-jp);
  font-size: 19px;
  font-weight: 500;
  color: var(--bark);
  margin-bottom: 10px;
  line-height: 1.45;
}
.case-desc { font-size: 13.5px; color: #666; line-height: 1.9; margin-bottom: 16px; }
.case-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.case-tag {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--moss);
  border: 1px solid rgba(58,90,53,0.3);
  padding: 3px 9px;
  border-radius: 2px;
}

/* ─────────────────────────────────────────────
   PACKAGE HERO (wide banner with details)
───────────────────────────────────────────── */
.pkg-banner {
  background:
    linear-gradient(135deg, var(--bark) 0%, var(--night) 70%),
    url('https://www.mokustry.com/wp/wp-content/uploads/se002.jpg')
    center/cover no-repeat;
  background-blend-mode: multiply;
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}
.pkg-banner::before {
  content: 'RESORT PACKAGE';
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-family: var(--font-serif);
  font-size: 140px;
  font-weight: 300;
  color: rgba(255,255,255,0.025);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}
.pkg-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--night);
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 24px;
}
.pkg-title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 10px;
}
.pkg-title em { color: var(--gold); font-style: italic; }
.pkg-catch {
  font-family: var(--font-jp);
  font-size: 17px;
  font-weight: 300;
  color: var(--mist);
  margin-bottom: 40px;
  line-height: 1.7;
}
.pkg-specs-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  margin-top: 48px;
}
.pkg-spec {
  background: rgba(255,255,255,0.03);
  padding: 28px 24px;
  text-align: center;
}
.pkg-spec-val {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.pkg-spec-val .su { font-size: 16px; }
.pkg-spec-lbl { font-size: 11px; color: rgba(255,255,255,0.45); letter-spacing: 0.04em; line-height: 1.65; }

/* ─────────────────────────────────────────────
   PACKAGE CONTENTS (何が含まれているか)
───────────────────────────────────────────── */
.pkg-contents-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
  margin-top: 52px;
}
.include-box {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.include-box-head {
  background: var(--bark);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: var(--font-jp);
  font-size: 14.5px;
  font-weight: 500;
}
.include-list { list-style: none; padding: 8px 0; }
.include-list li {
  display: flex;
  gap: 14px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border-lt);
  font-size: 14px;
  line-height: 1.75;
  align-items: flex-start;
}
.include-list li:last-child { border-bottom: none; }
.ic {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--moss);
  color: #fff;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.include-list strong { display: block; color: var(--bark); }
.include-list small { font-size: 12px; color: #888; }

/* 価格カード */
.price-card {
  background: linear-gradient(150deg, var(--night) 0%, var(--bark) 100%);
  border-radius: 4px;
  padding: 36px 32px;
  text-align: center;
}
.price-eyebrow { font-size: 10px; letter-spacing: 0.25em; color: rgba(255,255,255,0.38); text-transform: uppercase; margin-bottom: 14px; }
.price-figure {
  font-family: var(--font-serif);
  font-size: 68px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.price-figure .pf { font-size: 22px; margin-right: 4px; }
.price-figure .pu { font-size: 24px; }
.price-note-main { font-size: 12px; color: rgba(255,255,255,0.48); line-height: 1.8; margin-bottom: 8px; }
.price-note-small { font-size: 10.5px; color: rgba(255,255,255,0.28); line-height: 1.8; }
.price-cta-btn {
  display: block;
  margin: 28px auto 0;
  background: var(--gold);
  color: var(--night);
  padding: 14px 28px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 2px;
  text-align: center;
  transition: all 0.25s;
}
.price-cta-btn:hover { background: var(--gold-lt); transform: translateY(-2px); }
.sales-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}
.sales-cell { background: rgba(255,255,255,0.05); border-radius: 3px; padding: 13px 15px; }
.sales-cell-lbl { font-size: 10px; color: rgba(255,255,255,0.35); letter-spacing: 0.08em; margin-bottom: 4px; }
.sales-cell-val { font-size: 13.5px; color: rgba(255,255,255,0.75); font-weight: 500; }

/* ─────────────────────────────────────────────
   MODELS (4タイプ)
───────────────────────────────────────────── */
.models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-top: 52px;
}
.model-card {
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color 0.3s, transform 0.3s;
  cursor: default;
  background: rgba(255,255,255,0.02);
}
.model-card:hover { border-color: rgba(200,169,110,0.35); transform: translateY(-3px); }
.model-photo {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.model-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.88);
  transition: transform 0.5s ease, filter 0.4s;
}
.model-card:hover .model-photo img { transform: scale(1.06); filter: brightness(0.9) saturate(1); }
.model-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(12,18,16,0.72));
}
.model-info { padding: 20px 18px 22px; }
.model-type-tag {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
}
.model-name {
  font-family: var(--font-jp);
  font-size: 15.5px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 6px;
}
.model-use {
  font-size: 11.5px;
  color: rgba(255,255,255,0.42);
  line-height: 1.65;
}
.models-more {
  margin-top: 22px;
  text-align: center;
}
.btn-ghost-lt {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.55);
  padding: 12px 32px;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  border-radius: 2px;
  transition: all 0.25s;
}
.btn-ghost-lt:hover { border-color: var(--gold); color: var(--gold); }

/* ─────────────────────────────────────────────
   3 POINTS
───────────────────────────────────────────── */
.points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.point-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.point-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(37,50,32,0.1);
}
.point-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--moss), var(--sage));
}
.point-num {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 300;
  color: var(--mist);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.7;
}
.point-pill {
  display: inline-block;
  background: var(--moss);
  color: #fff;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 11px;
  border-radius: 2px;
  margin-bottom: 14px;
}
.point-title {
  font-family: var(--font-jp);
  font-size: 17px;
  font-weight: 500;
  color: var(--bark);
  margin-bottom: 12px;
  line-height: 1.5;
}
.point-body { font-size: 13.5px; color: #666; line-height: 1.9; }

/* ─────────────────────────────────────────────
   FLOW (開発の流れ)
───────────────────────────────────────────── */
.flow-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  margin-top: 56px;
}
.flow-track::before {
  content: '';
  position: absolute;
  top: 35px;
  left: calc(10% + 20px);
  right: calc(10% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--moss), var(--sage), var(--moss));
}
.flow-node {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}
.flow-dot {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--bark);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 20px;
}
.flow-step-lbl {
  font-size: 9.5px;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.flow-step-name {
  font-family: var(--font-jp);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--bark);
  line-height: 1.55;
  margin-bottom: 6px;
}
.flow-step-time { font-size: 11px; color: var(--amber); font-weight: 600; }
.flow-total-bar {
  margin-top: 40px;
  background: var(--night);
  border-radius: 4px;
  padding: 18px 36px;
  text-align: center;
  color: rgba(255,255,255,0.65);
  font-size: 13.5px;
}
.flow-total-bar strong { color: var(--gold); font-family: var(--font-serif); font-size: 22px; font-weight: 300; }

/* ─────────────────────────────────────────────
   INTERVIEW QUOTE
───────────────────────────────────────────── */
.interview-section {
  background: var(--bark);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}
.interview-section::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 30px;
  font-family: var(--font-serif);
  font-size: 320px;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}
.interview-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}
.interview-photo-wrap {
  position: relative;
}
.interview-photo-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
  filter: brightness(0.9) saturate(0.85);
}
.interview-photo-badge {
  position: absolute;
  bottom: -14px;
  right: -14px;
  background: var(--gold);
  color: var(--night);
  padding: 10px 16px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 2px;
}
.interview-quote-area { }
.interview-title {
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.interview-title::before { content: ''; width: 20px; height: 1px; background: var(--gold); }
.interview-blockquote {
  font-family: var(--font-jp);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
  margin-bottom: 24px;
  border-left: 2px solid var(--gold);
  padding-left: 24px;
}
.interview-body { font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.95; margin-bottom: 20px; }
.interview-byline { font-size: 12px; color: var(--gold); }
.interview-byline strong { font-size: 14px; color: rgba(255,255,255,0.85); }
.interview-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 12px;
  color: var(--gold);
  border-bottom: 1px solid rgba(200,169,110,0.35);
  padding-bottom: 3px;
  transition: gap 0.2s;
}
.interview-cta-link:hover { gap: 14px; }

/* ─────────────────────────────────────────────
   WHY BESS (実績 & 理由)
───────────────────────────────────────────── */
.why-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
  margin-top: 52px;
}
.why-list { list-style: none; }
.why-item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.why-item:last-child { border-bottom: none; }
.why-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(200,169,110,0.12);
  border: 1px solid rgba(200,169,110,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.why-content h4 {
  font-family: var(--font-jp);
  font-size: 14.5px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 5px;
  line-height: 1.5;
}
.why-content p { font-size: 12.5px; color: rgba(255,255,255,0.5); line-height: 1.8; }
.why-stats-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: 4px;
  padding: 40px 36px;
}
.why-stat { margin-bottom: 36px; }
.why-stat:last-child { margin-bottom: 0; }
.why-stat-big {
  font-family: var(--font-serif);
  font-size: 58px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 7px;
}
.why-stat-big .su { font-size: 24px; }
.why-stat-desc { font-size: 13px; color: rgba(255,255,255,0.58); line-height: 1.7; }
.why-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 28px 0; }

/* ─────────────────────────────────────────────
   COMPARISON TABLE
───────────────────────────────────────────── */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 48px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  font-size: 13.5px;
}
.compare-table th {
  padding: 16px 22px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.04em;
}
.th-feature { text-align: left; background: var(--night); color: rgba(255,255,255,0.55); }
.th-bess    { background: var(--bark); color: var(--gold); font-family: var(--font-serif); font-size: 16px; font-weight: 300; }
.th-free    { background: #404040; color: rgba(255,255,255,0.5); }
.compare-table td {
  padding: 15px 22px;
  border-bottom: 1px solid var(--border-lt);
  text-align: center;
}
.compare-table td:first-child { text-align: left; font-weight: 500; background: rgba(61,92,58,0.04); }
.compare-table tr:last-child td { border-bottom: none; }
.td-bess   { background: rgba(58,90,53,0.07); font-weight: 600; color: var(--moss); }
.td-free   { color: #aaa; }
.good      { color: var(--moss); font-weight: 700; font-size: 15px; }
.neutral   { color: #ccc; }

/* ─────────────────────────────────────────────
   TARGET (こんな事業者に)
───────────────────────────────────────────── */
.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}
.target-card {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 28px 22px;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s, transform 0.3s;
}
.target-card:hover { border-color: rgba(200,169,110,0.3); transform: translateY(-3px); }
.target-icon { font-size: 34px; margin-bottom: 14px; display: block; }
.target-name {
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 9px;
  line-height: 1.5;
}
.target-desc { font-size: 12.5px; color: rgba(255,255,255,0.48); line-height: 1.85; margin-bottom: 12px; }
.target-label {
  display: inline-block;
  font-size: 9.5px;
  letter-spacing: 0.14em;
  color: var(--gold);
  border: 1px solid rgba(200,169,110,0.28);
  padding: 3px 9px;
  border-radius: 2px;
}

/* ─────────────────────────────────────────────
   AREAS (実績エリア)
───────────────────────────────────────────── */
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-top: 48px;
}
.area-card {
  position: relative;
  overflow: hidden;
  height: 200px;
  cursor: default;
}
.area-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.85);
  transition: transform 0.5s, filter 0.4s;
}
.area-card:hover img { transform: scale(1.08); filter: brightness(0.8) saturate(1); }
.area-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,18,16,0.75) 0%, transparent 60%);
}
.area-name {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.area-name small { display: block; font-size: 10px; color: var(--gold); letter-spacing: 0.1em; font-weight: 300; margin-bottom: 3px; }

/* ─────────────────────────────────────────────
   CTA FINAL
───────────────────────────────────────────── */
.cta-final {
  background:
    linear-gradient(to bottom, rgba(12,18,16,0.92), rgba(37,50,32,0.95)),
    url('https://www.mokustry.com/wp/wp-content/uploads/fe002_P1085776.jpg')
    center/cover fixed;
  padding: 120px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(200,169,110,0.12), transparent 70%);
  pointer-events: none;
}
.cta-kicker {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.cta-h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 16px;
}
.cta-h2 em { color: var(--gold); font-style: italic; }
.cta-body { font-size: 14px; color: rgba(255,255,255,0.55); max-width: 460px; margin: 0 auto 40px; line-height: 1.95; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-contact-info {
  margin-top: 40px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.3);
  line-height: 2.1;
}
.cta-contact-info a { color: rgba(255,255,255,0.45); }
.btn-w {
  background: #fff;
  color: var(--bark);
  padding: 14px 36px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 2px;
  transition: all 0.25s;
}
.btn-w:hover { background: var(--gold-lt); }

/* ─────────────────────────────────────────────
   FOOTER (MOKUSTRY)
───────────────────────────────────────────── */
.site-footer {
  background: var(--night);
  padding: 56px 40px 36px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
}
.footer-logo-wrap {}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--mist);
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.footer-logo strong { color: var(--gold); }
.footer-tagline { font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 0.06em; }
.footer-about {
  max-width: 440px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.28);
  line-height: 1.85;
}
.footer-about strong { color: rgba(255,255,255,0.45); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.2); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 11px; color: rgba(255,255,255,0.28); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

	.sp-br {
		display:none;
	}
	.scroll-hint-text {
		display: none;		
	}
	.sec-parchment .inner .bess-architects-area {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 60px;
		align-items: center;
	}

	.sec-parchment .inner .bess-btn {
		display:flex;
		gap:12px;
		flex-wrap:wrap;
	}
	.sec-parchment .inner .message-ceo-area {
		margin-top:60px;
		border:1px solid var(--border);
		border-radius:4px;
		overflow:hidden;
		display:grid;
		grid-template-columns:260px 1fr;
		background:white;
	}
	.sec-parchment .inner .message-ceo-txt {
		font-size:10px;
		letter-spacing:0.25em;
		color:var(--gold);
		text-transform:uppercase;
		margin-bottom:14px;
	}
	.bess-img-sp {
		display:none;	
	}

/* ─────────────────────────────────────────────
   FADE-UP ANIMATION (intersection observer)
───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.js-fade { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js-fade.visible { opacity: 1; transform: translateY(0); }
.js-fade-delay-1 { transition-delay: 0.1s; }
.js-fade-delay-2 { transition-delay: 0.2s; }
.js-fade-delay-3 { transition-delay: 0.3s; }
.js-fade-delay-4 { transition-delay: 0.4s; }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1000px) {
  .hero-content      { grid-template-columns: 1fr; }
  .hero-kpi-box      { display: none; }
  .market-row        { grid-template-columns: 1fr 1fr; }
  .photo-mosaic      { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .photo-cell.large  { grid-row: auto; grid-column: span 2; height: 260px; }
  .case-grid         { grid-template-columns: 1fr; }
  .pkg-specs-row     { grid-template-columns: 1fr 1fr; }
  .pkg-contents-grid { grid-template-columns: 1fr; }
  .models-grid       { grid-template-columns: 1fr 1fr; }
  .points-grid       { grid-template-columns: 1fr 1fr; }
  .flow-track        { grid-template-columns: 1fr 1fr; gap: 24px; }
  .flow-track::before { display: none; }
  .interview-grid    { grid-template-columns: 1fr; }
  .interview-photo-wrap { max-width: 340px; margin: 0 auto; }
  .why-layout        { grid-template-columns: 1fr; }
  .target-grid       { grid-template-columns: 1fr 1fr; }
  .area-grid         { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .site-nav          { padding: 12px 18px; }
  .nav-center        { display: none; }
  .hero-content      { padding: 100px 24px 64px; }
  .sec-dark, .sec-darkest, .sec-light, .sec-parchment,
  .sec-white, .sec-bark,
  .pkg-banner, .interview-section, .cta-final { padding: 72px 22px; }
  .market-row, .photo-mosaic, .models-grid, .points-grid,
  .target-grid, .area-grid { grid-template-columns: 1fr; }
  .photo-cell.large { grid-column: auto; }
  .pkg-specs-row     { grid-template-columns: 1fr 1fr; }
  .flow-track        { grid-template-columns: 1fr; gap: 0; }
  .compare-table     { font-size: 12px; }
  .compare-table th, .compare-table td { padding: 12px 14px; }
}
@media (max-width: 680px) {
	.sp-br {
		display:block;
	}
	.pc-br {
		display:none;
	}
	.media-notice-inner {
		max-width: 100%;
		margin: 0 auto;
		display: block;
	}
	.media-notice-logo {
		margin: 0 0 20px 0;
	}
	.sec-heading {
		margin-bottom: 0;
        padding: 0 0 15px 0;
	}
	.flow-track .flow-node {
		opacity: 1;
		transform: translateY(0);
		border-bottom: 1px dotted #ccc;
		padding: 15px;
	}
	.flow-track .flow-node:last-child {
		border-bottom: none;
	}
	.flow-track {
		margin-top: 30px;
	}
	.flow-dot {
		margin: 0 auto 6px;
		font-size: 20px;
	}
	.flow-step-lbl {
		font-size: 16px;
		letter-spacing: 0.16em;
		color: var(--gold);
		text-transform: uppercase;
		margin-bottom: 0;
	}
	.flow-step-name {
		font-family: var(--font-jp);
		font-size: 20px;
		font-weight: 500;
		color: var(--bark);
		line-height: 1.55;
		margin-bottom: 0;
	}
	.flow-step-time {
		font-size: 20px;
		color: var(--amber);
		font-weight: 600;
	}
	table.compare-table th {
		display:table-cell;
	}
	table.compare-table td {
		display:table-cell;
	}
	.table-wrapper {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		margin-bottom: 20px;
	}
	.table-wrapper table {
		min-width:920px;
		width: 100%;
        margin: 0;
	}
	.table-wrapper th:nth-child(1),
	.table-wrapper td:nth-child(1) {
		width: 30%;
		font-size: 18px;
	}
	.table-wrapper th:nth-child(2),
	.table-wrapper td:nth-child(2) {
		width: 35%;
		font-size: 18px;
	}
	.table-wrapper th:nth-child(3),
	.table-wrapper td:nth-child(3) {
		width: 35%;
		font-size: 18px;
	}
	.scroll-hint-text {
		display: block;
		font-size: 11px;
		font-weight: bold;
		margin: 10px 0 5px 0;		
	}
	.sec-parchment .inner .bess-architects-area {
		grid-template-columns: unset;
	}
	.sec-parchment .inner .bess-btn {
		margin: 0 auto;
		display: block;
		text-align: center;
	}
	.sec-parchment .inner .message-ceo-area {
		grid-template-columns: unset;
	}
	.bess-img-pc {
		display:none;	
	}
	.bess-img-sp {
		display:block;	
	}
}
.step-num-txt {
  color:#fff;
}
