:root{
  --cream: #F5F5F0;
  --cream2: #EAE0D0;
  --ink: #2e2520;
  --muted: #7a6d5e;
  --green: #4A3B32;
  --green2: #5a4a3e;
  --gold: #C5A059;
  --line: rgba(46,37,32,.12);
  --white: #F5F5F0;
  --phone: 100vw;
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0; overflow: hidden;
  color: var(--ink);
  font-family: "Noto Serif JP", serif;
  background: #c8b89a;
  letter-spacing: .04em; line-height: 1.9;
}
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 {
  font-size: 16px; line-height: 1.55; font-weight: 700;
  letter-spacing: .01em; margin-bottom: 10px;
  word-break: keep-all; overflow-wrap: normal;
}

.stage {
  position: fixed; inset: 0;
  display: flex; justify-content: center;
  background: #c8b89a;
}

/* ───── OPENING ───── */
.opening {
  background: #c8b89a;
  position: absolute; inset: 0; z-index: 100;
  overflow: hidden; pointer-events: none;
  animation: openingHide .1s linear forwards 3.6s;
}
.opening-photo {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.3)),
    url('assets/hero.webp') center/cover no-repeat;
  transform: scale(1.05);
  animation: openingPhoto 4.2s cubic-bezier(.2,.8,.2,1) forwards;
}
.opening-title {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #fff; text-align: center;
  text-shadow: 0 12px 38px rgba(0,0,0,.4);
}
.opening-title span {
  display: block; opacity: 0;
  transform: translateY(42px) scale(.96); filter: blur(8px);
  font-size: clamp(44px, 10vw, 120px); line-height: .9;
  font-weight: 700; letter-spacing: .06em;
  font-family: "Cinzel", serif;
  animation: openingTitleIn .9s cubic-bezier(.2,.8,.2,1) forwards,
             openingTitleOut .55s ease forwards 2.35s;
}
.opening-title span:nth-child(1) { animation-delay: .35s, 2.35s; }
.opening-title span:nth-child(2) { animation-delay: .55s, 2.35s; }
.opening-wipe {
  position: absolute; inset: 0; z-index: 4;
  background: #4A3B32;
  transform: translateY(100%);
  animation: wipeAnim 1.25s cubic-bezier(.76,0,.24,1) forwards 2.25s;
}
@keyframes openingTitleIn { to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); } }
@keyframes openingTitleOut { to { opacity: 0; transform: translateY(-24px) scale(1.02); filter: blur(5px); } }
@keyframes openingPhoto { to { transform: scale(1); } }
@keyframes wipeAnim {
  0% { transform: translateY(100%); }
  48% { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}
@keyframes openingHide { to { visibility: hidden; opacity: 0; } }

/* iOSの「視覚効果を減らす」等でアニメ無効時 → opening を即座に隠す（真っ黒対策） */
@media (prefers-reduced-motion: reduce) {
  .opening,
  .opening-photo,
  .opening-title span,
  .opening-wipe { animation: none !important; }
  .opening { display: none !important; }
}
/* JSで強制hideした場合のクラス */
.opening.is-hidden { display: none !important; }

/* ───── PC ステージロゴ & キャッチコピー ───── */
.stage-logo { display: none; }
.stage-catchphrase { display: none; }
@media (min-width: 1181px) {
  .stage-logo {
    display: block; position: absolute;
    top: 28px; left: 32px; z-index: 30; line-height: 0;
  }
  .stage-logo img {
    height: 34px; width: auto; display: block;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,.28));
  }
  .stage-catchphrase {
    display: block; position: absolute;
    bottom: 40px; right: 40px; z-index: 6; text-align: right;
  }
  .catch-ja {
    font-size: 22px; font-weight: 700;
    color: rgba(255,255,255,.92);
    text-shadow: 0 2px 20px rgba(0,0,0,.5);
    letter-spacing: .1em; line-height: 1;
    margin: 0 0 8px; font-family: "Noto Serif JP", serif;
  }
  .catch-en {
    font-size: 9px; font-weight: 400;
    color: rgba(255,255,255,.62);
    text-shadow: 0 1px 12px rgba(0,0,0,.4);
    letter-spacing: .24em; margin: 0;
    font-family: "Cinzel", serif;
  }
}

/* ───── SIDE BG ───── */
.side-bg {
  position: absolute; top: 0; bottom: 0;
  width: calc((100vw - var(--phone)) / 2);
  overflow: hidden; pointer-events: none;
  background: #c8b89a;
}
.side-bg.left { left: 0; }
.side-bg.right { right: 0; }
.side-photo {
  position: absolute; inset: 0; opacity: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  filter: saturate(.95) contrast(.96) brightness(.82);
  transition: opacity 1.45s ease, transform 3.5s cubic-bezier(.2,.8,.2,1), filter 1.45s ease;
}
.side-photo.is-active {
  opacity: .88; transform: scale(1);
  filter: saturate(1) contrast(1) brightness(.9); z-index: 1;
}
.side-bg::after {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
}
.side-bg.left::after {
  background: linear-gradient(90deg, rgba(0,0,0,.28), rgba(0,0,0,.04) 52%, rgba(0,0,0,.0));
}
.side-bg.right::after {
  background: linear-gradient(270deg, rgba(0,0,0,.28), rgba(0,0,0,.04) 52%, rgba(0,0,0,.0));
}
.side-label {
  position: absolute; z-index: 4; bottom: 28px;
  writing-mode: vertical-rl;
  font-size: 9px; font-weight: 700; letter-spacing: .28em;
  color: rgba(255,255,255,.55);
  font-family: "Cinzel", serif;
}
.side-bg.left .side-label { left: 20px; }
.side-bg.right .side-label { right: 20px; }

.side-left-01 { background-image: url('assets/hero.webp'); background-position: left center; }
.side-left-02 { background-image: url('assets/room_02.webp'); }
.side-left-03 { background-image: url('assets/room_03.webp'); }
.side-left-04 { background-image: url('assets/scene_01.webp'); }
.side-right-01 { background-image: url('assets/hero.webp'); background-position: right center; }
.side-right-02 { background-image: url('assets/room_04.webp'); }
.side-right-03 { background-image: url('assets/scene_02.webp'); }
.side-right-04 { background-image: url('assets/room_05.webp'); }

/* ───── PC サイドナビ（pointer-events fix） ───── */
.pc-side-nav, .pc-side-cta { display: none; pointer-events: auto; }
@media (min-width: 1181px) {
  .pc-side-nav {
    display: flex; flex-direction: column;
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: min(92%, 280px); z-index: 5;
    background: rgba(15,10,5,.40);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(197,160,89,.28);
    padding: 0 22px;
  }
  .pc-nav-item {
    display: flex; align-items: baseline; gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(197,160,89,.28);
    text-decoration: none; color: rgba(255,255,255,.88);
    font-size: 20px; font-weight: 900; letter-spacing: .1em;
    font-family: "Cinzel", serif;
    transform: translateX(0);
    transition: color .28s ease, transform .28s cubic-bezier(.2,.8,.2,1);
  }
  .pc-nav-item:first-child { border-top: none; }
  .pc-nav-item::before {
    content: '→'; font-size: 12px;
    opacity: 0; transform: translateX(-8px);
    transition: opacity .28s ease, transform .28s cubic-bezier(.2,.8,.2,1);
    margin-right: -4px; font-family: sans-serif;
  }
  .pc-nav-item::after {
    content: attr(data-ja);
    white-space: nowrap;
    font-size: 9px; font-weight: 400; letter-spacing: .12em;
    color: rgba(255,255,255,.55); font-family: "Noto Serif JP", serif;
    transition: color .28s ease;
  }
  .pc-nav-item:hover { color: #fff; transform: translateX(6px); }
  .pc-nav-item:hover::before { opacity: 1; transform: translateX(0); }
  .pc-nav-item:hover::after { color: rgba(255,255,255,.8); }

  .pc-side-cta {
    display: flex; flex-direction: column; align-items: center;
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: min(82%, 230px); z-index: 5; text-align: center; gap: 0;
  }
  .pc-cta-catch {
    font-size: 13px; font-weight: 700;
    color: rgba(255,255,255,.9); letter-spacing: .08em;
    line-height: 1.75; text-shadow: 0 1px 14px rgba(0,0,0,.45);
    margin: 0 0 6px; font-family: "Noto Serif JP", serif;
  }
  .pc-cta-lead {
    font-size: 10px; font-weight: 400;
    color: rgba(255,255,255,.62); letter-spacing: .1em;
    line-height: 1.8; text-shadow: 0 1px 12px rgba(0,0,0,.4);
    margin: 0 0 24px; font-family: "Noto Serif JP", serif;
  }
  .pc-cta-btn {
    display: block; width: 100%; padding: 14px 20px;
    border: 1px solid rgba(255,255,255,.45);
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.9);
    font-size: 11px; font-weight: 700; letter-spacing: .16em;
    text-decoration: none; font-family: "Cinzel", serif;
    text-shadow: 0 1px 10px rgba(0,0,0,.35);
    backdrop-filter: blur(6px);
    transform: translateY(0); box-shadow: 0 0 0 rgba(255,255,255,0);
    transition: background .28s ease, border-color .28s ease,
                transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease;
  }
  .pc-cta-btn:hover {
    background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.8);
    transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.22);
  }
}

/* ───── PHONE FRAME ───── */
.phone {
  position: relative; z-index: 5; width: var(--phone);
  height: 100svh; overflow-y: auto; overflow-x: hidden;
  background: transparent; box-shadow: 0 0 80px rgba(0,0,0,.18);
  scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; -ms-overflow-style: none;
}
.phone::-webkit-scrollbar { width: 0; height: 0; display: none; }

/* ───── HAMBURGER（SPのみ） ───── */
.hamburger { display: none; }
@media (max-width: 1180px) {
  .hamburger {
    display: flex; flex-direction: column; justify-content: center;
    gap: 5px; width: 36px; height: 36px;
    background: none; border: none; cursor: pointer; padding: 4px; z-index: 25;
  }
  .hamburger span {
    display: block; width: 100%; height: 1px;
    background: var(--ink); transition: transform .3s, opacity .3s;
  }
}

/* ───── HEADER ───── */
.site-header {
  position: sticky; top: 0; z-index: 20; height: 56px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 22px;
  background: rgba(240,233,220,.55);
  color: var(--ink);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}
.brand { display: flex; align-items: center; }
.header-logo { height: 26px; width: auto; display: block; }
@media (min-width: 1181px) { .site-header { display: none; } }

/* ───── DRAWER ───── */
.drawer {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(248,246,240,.98);
  backdrop-filter: blur(16px);
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 48px;
  transform: translateX(100%);
  transition: transform .5s cubic-bezier(.76,0,.24,1);
}
.drawer.is-open { transform: translateX(0); }
.drawer-close {
  position: absolute; top: 22px; right: 24px;
  background: none; border: none; font-size: 18px;
  cursor: pointer; color: var(--ink); opacity: .5;
  transition: opacity .2s; font-weight: 300;
}
.drawer-close:hover { opacity: 1; }
.drawer-nav { display: flex; flex-direction: column; gap: 0; }
.drawer-item {
  display: flex; align-items: baseline; gap: 14px;
  padding: 20px 0; border-bottom: 1px solid rgba(197,160,89,.22);
  text-decoration: none; color: rgba(255,255,255,.88);
  font-size: 26px; font-weight: 600; letter-spacing: .04em;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: normal;
  opacity: 0; transform: translateY(12px);
  transition: opacity .4s, transform .4s, color .2s;
}
.drawer.is-open .drawer-item:nth-child(1) { opacity: 1; transform: none; transition-delay: .08s; }
.drawer.is-open .drawer-item:nth-child(2) { opacity: 1; transform: none; transition-delay: .16s; }
.drawer.is-open .drawer-item:nth-child(3) { opacity: 1; transform: none; transition-delay: .24s; }
.drawer.is-open .drawer-item:nth-child(4) { opacity: 1; transform: none; transition-delay: .32s; }
.drawer-item::after {
  content: attr(data-ja);
  font-size: 11px; font-weight: 400; letter-spacing: .12em;
  color: rgba(255,255,255,.5); font-family: "Noto Serif JP", serif;
  font-style: normal;
}
.drawer-item:hover { color: var(--gold); }
.drawer-cta {
  margin-top: 32px;
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 22px 24px;
  font-size: 15px; font-weight: 700;
  letter-spacing: .04em; color: var(--white);
  background: var(--ink);
  text-decoration: none; line-height: 1.7;
  opacity: 0;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,.22), inset 0 -3px 0 rgba(0,0,0,.18);
  transition: opacity .4s .38s, background .2s, transform .15s, box-shadow .15s;
  font-family: "Noto Sans JP", sans-serif;
}
.drawer-cta:active {
  transform: translateY(2px);
  box-shadow: 0 2px 8px rgba(0,0,0,.18), inset 0 -1px 0 rgba(0,0,0,.18);
}
.drawer.is-open .drawer-cta { opacity: 1; }
.drawer-cta:hover { background: #333; }

/* ───── SECTIONS ───── */
section {
  position: relative; padding: 82px 32px;
  overflow: hidden; background: var(--cream);
}
section::after {
  content: ""; position: absolute;
  left: 32px; right: 32px; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.section-inner { position: relative; z-index: 2; }

.paper {
  background:
    radial-gradient(circle at 14% 5%, rgba(255,255,255,.78), transparent 34%),
    linear-gradient(180deg, #fffdf8, #f0e8d8);
}
.dark {
  background: linear-gradient(180deg, #2e2520, #231c18);
  color: rgba(245,240,224,.95);
}

/* ───── TYPOGRAPHY ───── */
.en {
  display: inline-flex; align-items: center; gap: 9px;
  margin-bottom: 20px; color: var(--gold);
  font-size: 9px; font-weight: 700; letter-spacing: .26em;
  font-family: "Cinzel", serif;
}
.en::before { content: ""; width: 24px; height: 1px; background: currentColor; }
.dark .en { color: rgba(255,255,255,.68); }

h1 {
  font-size: clamp(28px, 6.8vw, 32px); line-height: 1.45;
  font-weight: 700; letter-spacing: .02em;
  word-break: auto-phrase; overflow-wrap: anywhere;
  text-wrap: balance;
}
h2 {
  font-size: clamp(22px, 5.4vw, 28px); line-height: 1.55;
  font-weight: 700; letter-spacing: .02em; margin-bottom: 26px;
  word-break: auto-phrase; overflow-wrap: anywhere; text-wrap: balance;
}
h3 { font-size: 18px; line-height: 1.55; font-weight: 700; margin-bottom: 10px; }
p { font-size: 13px; line-height: 1.95; }
.lead { font-size: 14px; font-weight: 500; line-height: 1.95; }
.mt { margin-top: 24px; }

/* ───── BUTTONS ───── */
.btns, .cta { display: grid; gap: 11px; margin-top: 30px; }
.btn {
  display: flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 14px 20px;
  border: 1px solid var(--green); background: var(--green);
  color: var(--white); font-size: 13px; font-weight: 700;
  letter-spacing: .05em; text-align: center; line-height: 1.6;
  box-shadow: 0 14px 28px rgba(0,0,0,.14);
  transition: transform .28s ease, opacity .28s ease;
}
.btn.secondary { background: transparent; color: var(--green); }
.dark .btn { background: var(--cream); color: var(--green); border-color: var(--cream); }
.dark .btn.secondary { background: transparent; color: rgba(255,255,255,.9); }
.btn:hover { transform: translateY(-2px); opacity: .86; }

/* ───── HERO ───── */
.hero {
  min-height: calc(100svh - 56px);
  display: grid; place-items: end start;
  text-align: left; padding: 0 32px 80px;
  background:
    linear-gradient(to top,
      rgba(12,8,4,.80) 0%,
      rgba(12,8,4,.34) 50%,
      rgba(12,8,4,.04) 100%),
    url('assets/hero.webp') center/cover no-repeat;
  isolation: isolate;
}
.hero::after { display: none; }
.hero::before {
  content: "BALI RESORT";
  position: absolute; left: 32px; top: 22px;
  font-size: 9px; font-weight: 400; letter-spacing: .38em;
  color: rgba(255,255,255,.5); font-family: "Cinzel", serif;
}
.hero-overlay { display: none; }
.hero-word { display: none; }
.hero-card {
  position: relative; z-index: 2; width: 100%; padding: 0;
  background: transparent !important; border: none !important;
  box-shadow: none !important; backdrop-filter: none !important;
  text-align: left; animation: heroCardWait 3.7s both;
}
@keyframes heroCardWait {
  0%, 76% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero .en {
  color: rgba(255,255,255,.62); letter-spacing: .32em; font-size: 9px;
}
.hero h1 {
  font-size: clamp(24px, 6.2vw, 30px); line-height: 1.55;
  font-weight: 700; letter-spacing: .04em;
  color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,.18);
  margin-top: 12px; word-break: auto-phrase; overflow-wrap: anywhere;
}
.hero-sub {
  margin-top: 18px; font-size: 13px; line-height: 2.05;
  color: rgba(255,255,255,.82);
}
.hero .cta { max-width: 280px; margin-top: 32px; }
.hero .btn {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,.55);
  letter-spacing: .1em; font-size: 12px;
  backdrop-filter: blur(4px); box-shadow: none;
}
.hero .btn:hover {
  background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.85);
}
.slide-word {
  display: inline-block; opacity: 0; transform: translateY(18px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2,.8,.2,1);
}
.show .slide-word { opacity: 1; transform: translateY(0); }
.show .slide-word:nth-child(2) { transition-delay: .1s; }

/* ───── CONCEPT / EMOTION ───── */
.emotion-statement {
  margin-top: 38px; border-top: 1px solid var(--line);
  padding-top: 32px; display: grid; gap: 24px;
}
.emotion-normal { font-size: 14px; line-height: 2; font-weight: 400; }
.emotion-brand {
  font-size: 18px; font-weight: 700; letter-spacing: .04em; color: #4A3B32;
}
.emotion-last {
  font-size: 15px; font-weight: 700; line-height: 1.9; color: var(--ink);
}

/* ───── SYSTEM GRID ───── */
.system-grid { display: grid; gap: 16px; margin-top: 32px; }
.system-card {
  padding: 24px; border: 1px solid var(--line);
  background: rgba(255,255,255,.32);
}
.dark .system-card {
  border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.06);
}
.system-label {
  display: block; font-size: 9px; font-weight: 700;
  letter-spacing: .22em; color: var(--gold); margin-bottom: 12px;
  font-family: "Cinzel", serif;
}
.system-card h3 { font-size: 16px; margin-bottom: 10px; }
.system-card ul { padding-left: 16px; margin: 10px 0 0; }
.system-card ul li { font-size: 12px; line-height: 1.9; }
.system-card .small { font-size: 12px; color: var(--muted); }
.system-closing {
  margin-top: 32px; font-size: 14px; font-weight: 700;
  text-align: center; color: var(--ink);
}

/* ───── GALLERY ───── */
.gallery-showcase {
  position: relative; margin: 32px -32px 0;
  background: #e8deca; overflow: hidden;
}
.gallery-head { position: absolute; left: 32px; top: 16px; z-index: 5; }
.gallery-head .en { margin: 0; }
.gallery-rail {
  display: flex; gap: 12px; width: max-content;
  padding: 56px 32px 28px; will-change: transform;
}
.gallery-rail.is-looping { animation: galleryLoop 34s linear infinite; }
@keyframes galleryLoop {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}
.gallery-item {
  flex: 0 0 250px; height: 420px; position: relative;
  overflow: hidden; background: #ccc;
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}
.gallery-item::before {
  content: ""; position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.03); transition: transform .9s cubic-bezier(.2,.8,.2,1);
}
.gallery-item:hover::before { transform: scale(1); }
.gallery-label {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  z-index: 6; width: 180px; height: 180px; border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  background: #4A3B32; color: #fff;
  box-shadow: 0 22px 60px rgba(0,0,0,.28);
}
.gallery-label strong { font-weight: 700; line-height: 1.6; font-size: 18px; }
.gallery-label strong::before {
  content: "Bali Resort";
  display: block; margin-bottom: 8px;
  font-size: 9px; letter-spacing: .18em;
  color: rgba(255,255,255,.8); font-weight: 700;
  font-family: "Cinzel", serif;
}
.gi1::before { background-image: url('assets/room_01.webp'); }
.gi2::before { background-image: url('assets/room_02.webp'); }
.gi3::before { background-image: url('assets/room_03.webp'); }
.gi4::before { background-image: url('assets/room_04.webp'); }
.gi5::before { background-image: url('assets/room_05.webp'); }

/* ───── CTA BAND ───── */
.lp-cta-band { padding: 68px 32px; background: var(--cream2); }
.lp-cta-band h2 { font-size: clamp(20px, 5.2vw, 26px); }

/* ───── COMPARE ───── */
.compare-wrap { display: grid; gap: 16px; margin-top: 32px; }
.compare-card {
  padding: 22px 20px; border: 1px solid rgba(255,255,255,.2);
}
.compare-card.is-active { border-color: var(--gold); background: rgba(255,255,255,.08); }
.compare-card .num {
  font-size: 9px; letter-spacing: .18em;
  color: rgba(255,255,255,.6); margin-bottom: 8px;
  font-family: "Cinzel", serif;
}
.compare-card.is-active .num { color: var(--gold); }
.compare-card h3 { font-size: 15px; margin-bottom: 10px; color: #fff; }
.compare-card ul { padding-left: 16px; margin: 0; }
.compare-card ul li { font-size: 12px; line-height: 1.9; color: rgba(255,255,255,.72); }
.compare-card.is-active ul li { color: rgba(255,255,255,.9); }

/* ───── SERVICE ───── */
.service-grid { display: grid; gap: 16px; margin-top: 38px; }
.service-card {
  position: relative; padding-top: 24px; border-top: 1px solid var(--line);
}
.service-thumb {
  height: 88px; margin-bottom: 16px;
  background-size: cover; background-position: center;
}
.thumb1 { background-image: url('assets/room_01.webp'); }
.thumb2 { background-image: url('assets/room_03.webp'); }
.thumb3 { background-image: url('assets/scene_01.webp'); }

/* ───── FLOW ───── */
.flow-steps { display: grid; gap: 0; margin-top: 32px; }
.flow-step {
  position: relative; display: grid;
  grid-template-columns: 56px 1fr; gap: 16px 14px;
  padding: 22px 0; border-bottom: 1px solid var(--line);
  opacity: 0; transform: translateY(18px);
  transition: opacity .5s ease, transform .5s cubic-bezier(.2,.8,.2,1);
}
.flow-step.is-visible { opacity: 1; transform: translateY(0); }
.flow-circle {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line); display: grid; place-items: center;
  background: rgba(255,255,255,.4); grid-row: 1 / 3;
}
.flow-icon { width: 22px; height: 22px; }
.flow-icon svg {
  width: 100%; height: 100%; fill: none; stroke: var(--green);
  stroke-width: 2; stroke-linecap: round;
}
.flow-step .num {
  display: block; font-size: 9px; letter-spacing: .18em;
  color: var(--gold); align-self: end; font-family: "Cinzel", serif;
}
.flow-step h3 { font-size: 15px; margin-bottom: 4px; align-self: start; }
.flow-step p { font-size: 12px; line-height: 1.85; color: var(--muted); grid-column: 2; }

/* ───── FAQ ───── */
.faq-list { display: grid; gap: 16px; margin-top: 38px; }
.faq-item { position: relative; padding: 22px 0 0; border-top: 1px solid var(--line); }
.faq-item h3 { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.faq-item p { color: var(--muted); font-size: 12px; }

/* ───── CLOSING ───── */
.closing {
  min-height: 84svh; display: grid; place-items: center;
  text-align: center; position: relative; overflow: hidden;
  background: var(--cream);
}
.closing::before {
  content: ""; position: absolute; width: 20px; height: 20px;
  background: url('assets/hero.webp') center/cover no-repeat;
  border-radius: 50%; top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0); z-index: 1; filter: brightness(.6);
}
.closing.show::before {
  animation: closingCircle 1.6s cubic-bezier(.18,.72,.18,1) forwards;
  animation-delay: .1s;
}
.closing .section-inner { position: relative; z-index: 2; color: var(--ink); }
.closing.show .section-inner {
  color: #fff; transition: color .4s ease .5s;
  text-shadow: 0 4px 20px rgba(0,0,0,.4);
}
@keyframes closingCircle {
  0% { transform: translate(-50%,-50%) scale(0); }
  60% { transform: translate(-50%,-50%) scale(18); }
  100% { transform: translate(-50%,-50%) scale(42); }
}

/* ───── FOOTER ───── */
footer {
  padding: 34px 32px 46px; background: #1a1210;
  color: rgba(255,255,255,.7); font-size: 10px; font-weight: 700;
  letter-spacing: .13em; font-family: "Cinzel", serif;
}

/* ───── SP 追従ボタン ───── */
.sp-sticky-cta { display: none; }
@media (max-width: 1180px) {
  .sp-sticky-cta {
    display: flex; align-items: center; justify-content: center;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    height: 56px; background: #4A3B32; color: #fff;
    font-size: 14px; font-weight: 900; letter-spacing: .08em;
    text-decoration: none; font-family: "Noto Serif JP", serif;
    box-shadow: 0 -4px 24px rgba(0,0,0,.22);
    animation: stickyIn .5s cubic-bezier(.2,.8,.2,1) forwards 4s;
    opacity: 0; transform: translateY(100%);
  }
  @keyframes stickyIn { to { opacity: 1; transform: translateY(0); } }
  .phone { padding-bottom: 56px; }
}

/* ───── ANIMATIONS ───── */
.fade {
  opacity: 0; transform: translateY(28px) scale(.985);
  transition: opacity .85s ease, transform .85s cubic-bezier(.2,.8,.2,1);
}
.fade.show { opacity: 1; transform: translateY(0) scale(1); }
.fade-up {
  opacity: 0; transform: translateY(18px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2,.8,.2,1);
}
.fade-up.show { opacity: 1; transform: translateY(0); }

/* ───── RESPONSIVE ───── */
@media (max-width: 1180px) {
  .phone { width: 100vw; }
  .side-bg { display: none; }
}
@media (max-width: 390px) {
  h1 { font-size: clamp(22px, 7vw, 26px); }
  h2 { font-size: clamp(20px, 6vw, 24px); }
}

/* ───── MISC ───── */
.lp-cta-box { background: var(--cream2); }
.no-compare-blue { background: linear-gradient(180deg, #2e2520, #231c18) !important; }



/* 英字ラベル非表示 */
.en { display: none; }

/* ══════════════════════════════════════════
   GLOBAL OVERRIDES
══════════════════════════════════════════ */

/* フォント: 本文テキストのみ Noto Sans JP（タイトル・装飾系はそのまま） */
p, li,
.lead, .emotion-normal, .emotion-brand, .emotion-last,
.system-card ul li, .system-card .small,
.flow-step p, .faq-item p,
.compare-card ul li,
.foryou-list li {
  font-family: "Noto Sans JP", "Helvetica Neue", sans-serif !important;
}

/* ヘッダー背景: 半透明ダーク（ハンバーガー＆ロゴを見やすく） */
.site-header {
  background: rgba(0,0,0,.4) !important;
  color: rgba(255,255,255,.9) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  box-shadow: none !important;
}
/* white logo image used directly */

/* photoblock グラデーション: テーマ色に依存せず写真境界を自然に */
.s-photoblock .pb-veil {
  background: linear-gradient(180deg,
    rgba(0,0,0,.3)   0%,
    rgba(0,0,0,.04)  18%,
    rgba(0,0,0,0)    28%,
    rgba(0,0,0,.12)  50%,
    rgba(0,0,0,0)    72%,
    rgba(0,0,0,.04)  82%,
    rgba(0,0,0,.3)   100%
  ) !important;
}

/* SP時: stage内の余分なハンバーガーを非表示 */
@media (max-width: 1180px) {
  #hamburger { display: none !important; }
}

/* リスト区切り線: かなり薄く */
.foryou-list li {
  border-bottom-color: rgba(255,255,255,.12) !important;
}
.foryou-list--no li {
  border-color: rgba(255,255,255,.1) !important;
}
.flow-step { border-bottom-color: rgba(var(--line), .06) !important; }

/* SP追従CTA: より洗練されたデザイン */
.sp-sticky-cta { display: none; }
@media (max-width: 1180px) {
  .sp-sticky-cta {
    display: flex !important;
    flex-direction: column;
    align-items: center; justify-content: center;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    height: 72px !important; gap: 3px;
    background: rgba(14,10,5,.9) !important;
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(197,160,89,.35);
    box-shadow: 0 -12px 40px rgba(0,0,0,.4),
                inset 0 1px 0 rgba(197,160,89,.12);
    text-decoration: none;
    animation: stickyIn .5s cubic-bezier(.2,.8,.2,1) forwards 4s;
    opacity: 0; transform: translateY(100%);
  }
  .sticky-main {
    font-size: 10px; font-weight: 500;
    letter-spacing: .2em; color: rgba(197,160,89,.85);
    font-family: "Cinzel", serif !important;
  }
  .sticky-sub {
    font-size: 15px; font-weight: 800;
    letter-spacing: .04em; color: #f5f0e8;
  }
  .phone { padding-bottom: 72px !important; }
}

/* 画像間の余白: 20px */
img + img { margin-top: 20px; }
.space-photo + .space-photo { margin-top: 20px; }
.service-thumb { margin-bottom: 20px; }
section img { display: block; }

/* SP: MVは高さ半分 */
@media (max-width: 1180px) {
  .hero { min-height: 50svh !important; }
}

/* TOPへ戻るリンク */
.style-back-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 14px 22px;
  background: var(--cream);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  border-top: 1px solid var(--line);
  transition: background .2s;
}
.style-back-top:hover { background: var(--cream2); }

/* 偏愛リノベーションサービスサイトへリンク */
.pc-nav-service-top {
  border-bottom: 1px solid rgba(197,160,89,.28);
  margin-bottom: 4px;
}
.drawer-service-top {
  font-size: 15px !important;
  font-family: "Noto Sans JP", sans-serif !important;
  letter-spacing: .06em !important;
  padding: 14px 0 !important;
  border-bottom: 1px solid rgba(197,160,89,.2) !important;
  color: rgba(255,255,255,.75) !important;
}
.drawer.is-open .drawer-service-top {
  opacity: 1 !important;
  transform: none !important;
  transition-delay: .08s !important;
}
.drawer-service-top::after {
  font-size: 10px !important;
  color: rgba(255,255,255,.45) !important;
}

/* ドロワー: PCサイドナビと同じダークパネルデザイン */
.drawer {
  background: rgba(10,8,5,.9) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 80px 32px 60px !important;
}
.drawer-close { color: rgba(255,255,255,.6) !important; }
.drawer-nav {
  width: min(92%, 320px);
  border: 1px solid rgba(197,160,89,.28) !important;
  padding: 8px 28px 16px !important;
  background: rgba(15,10,5,.45) !important;
}
.drawer-item {
  color: rgba(255,255,255,.88) !important;
  border-bottom-color: rgba(197,160,89,.22) !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-style: normal !important;
  font-size: 26px !important;
}
.drawer-item:hover { color: rgba(197,160,89,.9) !important; }
.drawer-item::after { color: rgba(255,255,255,.45) !important; font-style: normal !important; }
.drawer-cta { width: min(92%, 320px) !important; margin-top: 20px !important; }


/* 暗いテーマ用: 写真ブロックの上下を透過させて次のセクションと馴染ませる */
.s-photoblock {
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
}

/* ===== タブレット／スマホ横向き対応 ===== */
/* PCサイドBG付きレイアウトは 1181px 以上で復活 */
@media (min-width: 1181px) {
  :root { --phone: 430px; }
}

/* === 追従CTA 統一上書き（偏愛レッド・大きく・お申込みのみ） === */
.sp-sticky-cta { background:#C83A2A !important; height:78px !important; border-radius:10px !important; box-shadow:0 10px 30px rgba(200,58,42,.45) !important; }
.sp-sticky-cta .sticky-main { display:none !important; }
.sp-sticky-cta .sticky-sub { font-size:20px !important; font-weight:800 !important; letter-spacing:.06em !important; opacity:1 !important; }

/* 横長帯(サムネ)にも参考イメージ注記 */
.space-thumb{position:relative;}
.space-thumb::after{content:"※参考イメージ";position:absolute;right:6px;bottom:5px;z-index:5;font-size:8px;line-height:1.3;color:rgba(255,255,255,.72);letter-spacing:.02em;pointer-events:none;font-family:'Noto Sans JP',sans-serif;text-shadow:0 1px 3px rgba(0,0,0,.5);}


/* ===== index.php から移設（インライン<style>外部化） ===== */
/* このスタイルはFigmaキャプチャ時のみ capture.js が有効化します */

    /* スペースカード スライドイン */
    .space-card{opacity:0;transition:opacity 1s ease,transform 1.1s cubic-bezier(.22,1,.36,1);will-change:transform,opacity;}
    .space-card--right{transform:translateX(30%);}
    .space-card--left{transform:translateX(-30%);}
    .space-card.in-view{opacity:1;transform:translateX(0);}
    @media (prefers-reduced-motion: reduce){.space-card{opacity:1 !important;transform:none !important;transition:none !important;}}
    /* 追加セクション フェードアップ */
    .s-definition,.s-lifestyle-header,.s-foryou,.s-foryou-no,.s-spaces,.s-flow,.s-cta{opacity:0;transform:translateY(20px);transition:opacity .9s ease,transform .9s cubic-bezier(.22,1,.36,1);will-change:transform,opacity;}
    .s-definition.in-view,.s-lifestyle-header.in-view,.s-foryou.in-view,.s-foryou-no.in-view,.s-spaces.in-view,.s-flow.in-view,.s-cta.in-view{opacity:1;transform:translateY(0);}
    @media (prefers-reduced-motion: reduce){.s-definition,.s-lifestyle-header,.s-foryou,.s-foryou-no,.s-spaces,.s-flow,.s-cta{opacity:1 !important;transform:none !important;}}

/* 画像注釈: 「※参考イメージ」を画像右下に */
.img-note{position:absolute;right:8px;bottom:8px;z-index:20;font-size:9px;line-height:1.4;color:rgba(255,255,255,.7);letter-spacing:.02em;pointer-events:none;font-family:'Noto Sans JP',sans-serif;text-shadow:0 1px 2px rgba(0,0,0,.4);}

/* PC catchphrase 下の注釈 */
.catch-disclaimer{font-size:9px;color:rgba(255,255,255,.55);text-shadow:0 1px 8px rgba(0,0,0,.4);letter-spacing:.04em;margin:6px 0 0;line-height:1.4;}
/* SP FV右下の注釈 */
.fv-disclaimer{display:none;}
@media (max-width:1180px){
  .fv-disclaimer{display:block;position:absolute;right:12px;bottom:12px;z-index:5;font-size:10px;color:rgba(255,255,255,.7);text-shadow:0 1px 6px rgba(0,0,0,.6);letter-spacing:.02em;pointer-events:none;}
}

/* ══════════════════════════════════════════
       GLOBAL BALI DARK THEME
    ══════════════════════════════════════════ */
    body { background: #2E2520; color: #F5F5F0; line-height: 2.0;}
    .stage { background: #2E2520;}
    .side-bg { background: #2E2520;}
    section { background: #2E2520; color: #F5F5F0; overflow: hidden; padding: 0;}
    h1,h2,h3 { color: #F5F5F0; margin: 0;}
    p { color: rgba(240,232,220,.75); margin: 0;}

    .site-header {
      background: rgba(20,16,10,.85);
      color: #F5F5F0;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 1px 0 rgba(184,149,106,.12);}
    .site-header .hamburger span,
    .hamburger span { background: #F5F5F0 !important;}
    .drawer { background: rgba(16,12,7,.98);}
    .drawer-item { color: #F5F5F0; font-family:'Cormorant SC',serif !important; font-style:normal !important; border-color:rgba(184,149,106,.18);}
    .drawer-item::after { color: rgba(240,232,220,.4);}
    .drawer-item:hover { color: rgba(184,149,106,.9);}
    .drawer-close { color: #F5F5F0;}
    .drawer-cta { color: #F5F5F0; font-family:'Noto Sans JP',sans-serif; letter-spacing:.04em; font-size:15px;}
    .opening-title span { font-family:'Cormorant SC', serif !important; font-style:normal !important; font-weight:700 !important; font-size:clamp(44px,10vw,110px) !important;}
    .pc-side-nav .pc-nav-item {
      font-family:'Cormorant SC', serif !important;
      font-style: normal !important;
      font-size: 22px !important;
      letter-spacing: .04em !important;}
    .pc-nav-item::after {
      font-size: 11px !important;
      letter-spacing: .1em !important;}
    .pc-cta-catch {
      font-size: 18px !important;
      letter-spacing: .06em !important;}
    .pc-cta-lead {
      font-size: 12px !important;}
    .pc-cta-btn {
      font-size: 13px !important;}

    /* ══════════════════════════════════════════
       FV — FULL SCREEN HERO
    ══════════════════════════════════════════ */
    .s-fv {
      position: relative;
      min-height: calc(100svh - 56px);
      display: grid;
      place-items: center;
      overflow: hidden;
      background: #2E2520;}
    .s-fv::after { display: none;}
    .fv-bg {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      opacity: 0; transition: opacity 2.5s ease;
      filter: brightness(.65) saturate(.85);}
    .fv-bg.active { opacity: 1;}
    .fv-veil {
      position: absolute; inset: 0; z-index: 1; pointer-events: none;
      background: linear-gradient(to top, rgba(12,8,4,.9) 0%, rgba(12,8,4,.5) 38%, rgba(12,8,4,.15) 65%, transparent 100%);}
    .fv-body {
      position: relative; z-index: 2; text-align: center; padding: 0 24px;
      opacity: 0; transform: translateY(18px);
      animation: fadeUp .9s cubic-bezier(.2,.8,.2,1) forwards; animation-delay: 1.2s;}
    .fv-eyebrow {
      display: block; font-family:'Cinzel',serif; font-size: 8px;
      letter-spacing: .32em; color: rgba(184,149,106,.7); margin-bottom: 28px;}
    .fv-title {
      font-family:'Cormorant SC', serif; font-size: clamp(54px,16vw,80px);
      font-weight: 600; font-style: normal; color: #F5F5F0;
      line-height: 1.0; margin: 0 0 12px;
      text-shadow: 0 4px 32px rgba(0,0,0,.4);}
    .fv-ja {
      font-family:'Noto Sans JP',sans-serif; font-size: 11px;
      letter-spacing: .3em; color: rgba(240,232,220,.5); margin: 0 0 32px; font-weight: 300;}
    .fv-tagline {
      font-family:'Noto Sans JP',sans-serif; font-size: clamp(16px,4vw,20px);
      font-weight: 700; line-height: 1.8; color: rgba(240,232,220,.85); margin: 0;}
    .fv-scroll-cue {
      position: absolute; bottom: 36px; left: 0; right: 0; margin-inline: auto; width: max-content;
      z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 10px;
      opacity: 0; animation: fadeUp .6s forwards; animation-delay: 2.5s;}
    .fv-scroll-cue span { font-family:'Cinzel',serif; font-size: 7px; letter-spacing: .28em; color: rgba(184,149,106,.45);}
    .fv-scroll-cue::after {
      content:''; display: block; width: 1px; height: 44px;
      background: linear-gradient(to bottom, rgba(184,149,106,.6), transparent);
      animation: scrollPulse 2s ease-in-out infinite;}
    @keyframes fadeUp { to { opacity:1; transform:translateY(0);} }
    @keyframes scrollPulse { 0%,100%{opacity:.4;transform:scaleY(1);} 50%{opacity:.9;transform:scaleY(1.15);} }

    /* ══════════════════════════════════════════
       PHOTO BLOCKS — images with text overlaid
    ══════════════════════════════════════════ */
    .s-photoblock {
      position: relative; height: 460px; overflow: hidden;}
    .s-photoblock .pb-img {
      position: absolute; inset: -20%;
      background-size: cover; background-position: center;
      filter: brightness(.82) saturate(.88);
      will-change: transform;
      transform: translate3d(0,0,0);
      backface-visibility: hidden;}
    .s-photoblock .pb-veil {
      position: absolute; inset: 0; pointer-events: none;
      background: linear-gradient(180deg,
        rgba(24,20,15,1)   0%,
        rgba(24,20,15,.5)  10%,
        rgba(24,20,15,0)   22%,
        rgba(24,20,15,.15) 45%,
        rgba(24,20,15,.55) 65%,
        rgba(24,20,15,0)   75%,
        rgba(24,20,15,.6)  88%,
        rgba(24,20,15,1)   100%
      );}
    .s-photoblock .pb-text {
      position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
      font-family:'Noto Serif JP',serif; font-size: 16px; font-weight: 500;
      color: #fff; line-height: 2.4;}
    .s-photoblock--left .pb-text { left: 29px; text-align: left;}
    .s-photoblock--right .pb-text { right: 30px; text-align: right;}

    /* ══════════════════════════════════════════
       DEFINITION BOX
    ══════════════════════════════════════════ */
    .s-definition {
      background: #4A3B32; padding: 52px 40px; text-align: center;}
    .s-definition p {
      font-family:'Noto Sans JP', sans-serif; font-size: 16px; font-weight: 400;
      color: #F5F5F0; line-height: 2.2; letter-spacing: .06em;
      word-break: normal; overflow-wrap: anywhere;}

    /* ══════════════════════════════════════════
       LIFESTYLE SECTION
    ══════════════════════════════════════════ */
    .s-lifestyle { background: #2E2520;}

    /* 見出しエリア（動画なし） */
    .s-lifestyle-header {
      background: #2E2520; padding: 0 32px;
      position: relative; overflow: hidden;}
    .lifestyle-watermark {
      position: absolute; top: 10px; left: -20px;
      font-family:'Cormorant SC', serif; font-size: 130px; font-weight: 700;
      color: rgba(186,180,114,.2); white-space: nowrap; pointer-events: none;
      line-height: 1; user-select: none;}
    .lifestyle-label {
      font-family:'Noto Sans JP',sans-serif; font-size: 20px; font-weight: 500;
      color: #F5F5F0; text-align: center; padding: 72px 0 0;}
    .lifestyle-heading {
      font-family:'Noto Sans JP',sans-serif; font-size: 18px; font-weight: 500;
      color: #F5F5F0; text-align: center; padding: 24px 0 64px; line-height: 1.9;}

    /* Lifestyle video+poem — full section video background */
    .s-lifestyle {
      position: relative; overflow: hidden;}
    .s-lifestyle .lifestyle-video-bg {
      position: absolute; inset: 0; z-index: 0;}
    .s-lifestyle .lifestyle-video-bg video {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: brightness(.55) saturate(.85);}
    .s-lifestyle .lifestyle-video-overlay {
      position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(180deg,
        rgba(24,20,15,.55) 0%,
        rgba(24,20,15,.35) 40%,
        rgba(24,20,15,.55) 80%,
        rgba(24,20,15,.75) 100%
      );}
    .s-lifestyle .lifestyle-inner {
      position: relative; z-index: 2;}

    /* Poem */
    .s-poem {
      padding: 48px 48px 72px;}
    .s-poem p {
      font-family:'Noto Sans JP',sans-serif; font-size: 16px; font-weight: 700;
      color: rgba(240,232,220,.95); line-height: 1.6; text-align: center;
      white-space: pre-line;
      opacity: 0; transform: translateY(14px);
      transition: opacity .9s ease var(--d,0s), transform .9s cubic-bezier(.2,.8,.2,1) var(--d,0s);
      text-shadow: 0 1px 12px rgba(0,0,0,.4);}
    .s-poem p.visible { opacity:1; transform:translateY(0);}
    .s-poem .poem-spacer { height: 32px;}

    /* ══════════════════════════════════════════
       REASON SECTION
    ══════════════════════════════════════════ */
    .s-reason {
      background: #2E2520; padding: 80px 32px 80px;
      position: relative; overflow: hidden;}
    .reason-watermark {
      position: absolute; top: 40px; left: -30px; transform: none;
      font-family:'Cormorant SC', serif; font-size: 130px; font-weight: 700;
      color: rgba(186,180,114,.2); white-space: nowrap; pointer-events: none;
      line-height: 1; user-select: none;}
    .reason-heading {
      font-family:'Noto Sans JP',sans-serif; font-size: 20px; font-weight: 700;
      color: #F5F5F0; text-align: center; margin-bottom: 40px; position: relative;}
    .reason-lead {
      font-family:'Noto Sans JP',sans-serif; font-size: 16px; font-weight: 400;
      color: rgba(240,232,220,.85); text-align: center; line-height: 1.9;
      margin-bottom: 40px; white-space: pre-line; position: relative;}

    /* Gold box */
    .reason-box-gold {
      position: relative;
      background: rgba(184,149,106,.8); border: 1px solid #fff;
      padding: 24px 24px 24px;
      margin-bottom: 24px;}
    .reason-box-label {
      font-family:'Noto Sans JP',sans-serif; font-size: 18px; font-weight: 700;
      color: #fff; text-align: center; margin-bottom: 16px;}
    .reason-box-list {
      list-style: none; padding: 0; margin: 0;}
    .reason-box-list li {
      font-family:'Noto Sans JP',sans-serif; font-size: 16px; line-height: 1.6;
      color: #fff; padding: 2px 0; white-space: pre-line;}
    .reason-box-list li .etc {
      color: rgba(255,255,255,.7); font-size: 14px;}

    /* Dark box */
    .reason-box-dark {
      position: relative;
      background: #4A3B32; border: 1px solid #fff;
      padding: 24px; margin-bottom: 40px;}
    .reason-box-dark .reason-box-list li { color: #fff;}

    /* "だから…" callout */
    .reason-nokoto {
      position: relative; text-align: center; margin-bottom: 28px;}
    .reason-nokoto .nokoto-prefix {
      font-family:'Noto Sans JP',sans-serif; font-size: 18px; font-weight: 700;
      color: #fff; display: block; margin-bottom: 4px;}
    /* 金色SVG背景ラッパー */
    .reason-nokoto .nokoto-banner {
      position: relative; display: inline-block;
      padding: 10px 30px;
      overflow: hidden;}
    .reason-nokoto .nokoto-banner::before {
      content: '';
      position: absolute; inset: 0;
      background: url('assets/bali_rect9.svg') center/100% 100% no-repeat;
      pointer-events: none;
      /* 初期: 左から隠れた状態 */
      transform: translateX(-105%);
      transition: transform .8s cubic-bezier(.2,.8,.2,1);}
    .reason-nokoto.banner-in .nokoto-banner::before {
      transform: translateX(0);}
    .reason-nokoto .nokoto-main {
      font-family:'Noto Sans JP',sans-serif; font-size: 18px; font-weight: 700;
      color: #fff; line-height: 1.4; position: relative; z-index: 1;
      /* 初期: 非表示 */
      opacity: 0; transform: translateY(6px);
      transition: opacity .6s ease .6s, transform .6s ease .6s;}
    .reason-nokoto.banner-in .nokoto-main {
      opacity: 1; transform: translateY(0);}

    @keyframes shimmer {
      0%   { background-position: -200% center;}
      100% { background-position: 200% center;}
    }
    .reason-nokoto .nokoto-suffix {
      font-family:'Noto Sans JP',sans-serif; font-size: 18px; font-weight: 700;
      color: #fff; margin-top: 8px;}

    /* Closing text */
    .reason-closing {
      position: relative; text-align: center;
      font-family:'Noto Sans JP',sans-serif; font-size: 16px; font-weight: 700;
      color: rgba(240,232,220,.9); line-height: 1.6; white-space: pre-line;}
    .reason-closing .accent {
      font-size: 22px; color: #C5A059; line-height: 1.6;}

    /* ══════════════════════════════════════════
       FOR YOU SECTION
    ══════════════════════════════════════════ */
    .s-foryou {
      position: relative; overflow: hidden;}
    .foryou-bg {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      filter: brightness(.6) saturate(.8);}
    .foryou-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(180deg,
        rgba(24,20,15,1)   0%,
        rgba(24,20,15,.5)  8%,
        rgba(24,20,15,.1)  18%,
        rgba(24,20,15,.3)  55%,
        rgba(24,20,15,.6)  85%,
        rgba(24,20,15,1)   100%
      );}
    /* 向かないかもしれない方 — ダーク背景独立セクション */
    .s-foryou-no {
      background: #2E2520;}
    .s-foryou-no .foryou-inner {
      padding-top: 0;}

    /* アイコン */
    .foryou-icon {
      width: 24px; height: 24px; flex-shrink: 0; display: block;}
    .foryou-section-title--no { color: rgba(240,232,220,.7);}
    .foryou-inner {
      position: relative; z-index: 2; padding: 0 32px 56px;}
    .foryou-list li {
      word-break: break-all; overflow-wrap: break-word; overflow: hidden;}
    .foryou-section-title {
      display: flex; align-items: center; justify-content: center; gap: 10px;
      font-family:'Noto Sans JP',sans-serif; font-size: 20px; font-weight: 700;
      color: #fff; text-align: center; padding: 52px 0 20px; line-height: 1.3;}
    .foryou-list {
      list-style: none; padding: 0; margin: 0 auto; width: fit-content; max-width: 100%;}
    .foryou-list li {
      display: flex; align-items: center; gap: 12px;
      font-family:'Noto Sans JP',sans-serif; font-size: 13px; font-weight: 400;
      color: #fff; padding: 12px 0;
      border-bottom: 1px solid rgba(255,255,255,.5);
      letter-spacing: .04em;}
    .foryou-list li::before {
      content: '·'; font-size: 20px; color: #fff; flex-shrink: 0; line-height: 1;}
    .foryou-list--no li { color: rgba(255,255,255,.5);}
    .foryou-list--no li::before { color: #C5A059;}
    .foryou-list--no li { border-color: rgba(255,255,255,.6);}

    /* ══════════════════════════════════════════
       SPACES SECTION
    ══════════════════════════════════════════ */
    .s-spaces { background: #2E2520;}

    .spaces-intro {
      position: relative; padding: 72px 32px 56px; text-align: center; overflow: hidden;}
    .spaces-watermark {
      position: absolute; top: 20px; left: -20px; transform: none;
      font-family:'Cormorant SC', serif; font-size: 130px; font-weight: 700;
      color: rgba(186,180,114,.2); white-space: nowrap; pointer-events: none;
      line-height: 1; user-select: none;}
    .spaces-title {
      font-family:'Noto Sans JP',sans-serif; font-size: 20px; font-weight: 500;
      color: #F5F5F0; margin-bottom: 6px; position: relative;}
    .spaces-sub {
      font-family:'Noto Serif JP',serif; font-size: 14px; font-weight: 500;
      color: rgba(240,232,220,.6); margin-bottom: 32px; position: relative;}
    .spaces-tagline {
      font-family:'Noto Serif JP',serif; font-size: 18px; font-weight: 500;
      color: #F5F5F0; line-height: 1.8; position: relative;}

    /* Space cards — image + text overlay */
    .space-card {
      position: relative; height: 460px; overflow: hidden;}
    .space-card .sc-img {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;}
    .space-card .sc-gradient {
      position: absolute; inset: 0; pointer-events: none;}
    /* スペース間サムネイルストリップ — Figmaの千鳥配置 */
    .space-thumbs {
      display: flex; flex-direction: column; gap: 20px;
      overflow: visible;
      padding: 20px 0 70px;}
    .space-thumb {
      overflow: hidden; position: relative;}
    /* 上段: 右寄り (Figma x=67) */
    .space-thumb:nth-child(1) {
      height: 70px;
      margin-left: 67px;
      width: calc(100% - 67px);}
    /* 下段: 左寄り (Figma x=4) */
    .space-thumb:nth-child(2) {
      height: 60px;
      margin-left: 4px;
      width: calc(100% - 67px);}
    .space-thumb img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center 50%;
      filter: brightness(.85) saturate(.9);}
    .space-thumb:nth-child(2) img { transform: scale(1.8); transform-origin: center; }
    .space-thumbs--row .space-thumb--wide img { transform: scale(1.8); transform-origin: center; }

    /* 上下フェード — スペースカード共通 */
    .space-card::before,
    .space-card::after {
      content: ''; position: absolute; left: 0; right: 0; z-index: 3; pointer-events: none;}
    .space-card::before {
      top: 0; height: 80px;
      background: linear-gradient(180deg, rgba(24,20,15,1) 0%, rgba(24,20,15,0) 100%);}
    .space-card::after {
      bottom: 0; height: 80px;
      background: linear-gradient(0deg, rgba(24,20,15,1) 0%, rgba(24,20,15,0) 100%);}
    .space-card .sc-text {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 58%; z-index: 2;}
    .space-card .sc-label {
      font-family:'Cormorant SC', serif !important; font-size: 42px; font-weight: 400;
      color: #F5F5F0; line-height: 1.1; margin-bottom: 12px;
      white-space: nowrap;}
    /* WOOD WORK "木部＆建具" — Figma左側絶対配置 */
    .sc-sublabel-wood {
      position: absolute; z-index: 4;
      left: 20px; top: 45%;
      font-family:'Noto Serif JP',serif; font-size: 14px; font-weight: 400;
      color: rgba(240,232,220,.85); white-space: nowrap;}

    /* WOOD WORK サムネイル: 横並び */
    .space-thumbs--row {
      flex-direction: row !important;
      gap: 20px !important;
      padding: 20px 0 0 !important;}
    .space-thumb--narrow {
      width: calc(35% - 10px) !important; height: 80px !important;
      margin-left: 0 !important;}
    .space-thumb--wide {
      width: calc(65% - 10px) !important; height: 80px !important;
      margin-left: 0 !important;}

    /* LIGHTING "照明" — Figma右側絶対配置 */
    .sc-label-ja-right {
      position: absolute; z-index: 4;
      right: 20px; top: 50%;
      transform: translateY(-30px);
      font-family:'Noto Sans JP',sans-serif; font-size: 14px; font-weight: 400;
      color: rgba(240,232,220,.9); white-space: nowrap;
      display: flex; align-items: center; gap: 8px;}

    /* WOOD WORK & FITTING — Figma通り2行42px */
    .sc-label--sm {
      font-size: 36px !important;
      white-space: normal !important;
      line-height: 1.05 !important;}
    .space-card .sc-sublabel {
      font-family:'Noto Serif JP',serif; font-size: 14px; font-weight: 400;
      color: rgba(240,232,220,.8); margin-bottom: 4px; display: flex; align-items: center; gap: 8px;}
    .space-card .sc-sublabel::after { content:''; display:inline-block; width:16px; height:1px; background:rgba(240,232,220,.6);}
    .space-card .sc-body {
      font-family:'Noto Sans JP',sans-serif; font-size: 16px; font-weight: 300;
      color: rgba(240,232,220,.9); line-height: 1.8; white-space: pre-line;}

    /* Right-aligned (LDK, WET AREA, WOOD WORK): dark on right */
    .space-card--right .sc-gradient {
      background: linear-gradient(90deg,
        rgba(44,40,35,0) 6%,
        rgba(44,40,35,.04) 26%,
        rgba(44,40,35,.08) 35%,
        rgba(44,40,35,.12) 53%,
        rgba(0,0,0,.56) 67%,
        rgba(0,0,0,.8) 84%
      );}
    .space-card--right .sc-text { right: 20px; text-align: right;}
    .space-card--right .sc-sublabel { flex-direction: row-reverse;}
    .space-card--right .sc-sublabel::after { display: none;}
    .space-card--right .sc-sublabel::before { content:''; display:inline-block; width:16px; height:1px; background:rgba(240,232,220,.6);}

    /* Left-aligned (KITCHEN, LIGHTING): dark on left */
    .space-card--left .sc-gradient {
      background: linear-gradient(270deg,
        rgba(44,40,35,0) 6%,
        rgba(44,40,35,.04) 26%,
        rgba(44,40,35,.08) 35%,
        rgba(44,40,35,.12) 53%,
        rgba(0,0,0,.56) 67%,
        rgba(0,0,0,.8) 84%
      );}
    .space-card--left .sc-text { left: 20px; text-align: left;}

    /* ══════════════════════════════════════════
       FLOW SECTION
    ══════════════════════════════════════════ */
    .s-flow {
      background: #2E2520; padding: 0 0 80px;}
    .flow-heading {
      padding: 48px 32px 0;}
    .flow-list {
      padding: 0 32px;}
    .flow-heading {
      font-family:'Noto Serif JP',serif; font-size: 20px; font-weight: 700;
      color: #F5F5F0; text-align: center; margin-bottom: 48px;}
    .flow-img {
      display: block; width: 85%; height: 60px;
      object-fit: cover; object-position: center;
      margin: 0 0 0; filter: brightness(.75) saturate(.8);}
    .flow-desc {
      word-break: break-all; overflow-wrap: break-word;}
    .flow-list { display: flex; flex-direction: column; gap: 32px;}
    .flow-item {
      display: flex; align-items: flex-start; gap: 24px;}
    .flow-num {
      font-family:'Cormorant SC', serif; font-size: 36px; font-weight: 300;
      font-style: normal; color: rgba(184,149,106,.6);
      flex-shrink: 0; line-height: 1; letter-spacing: .02em;}
    .flow-content { flex: 1;}
    .flow-title {
      font-family:'Noto Sans JP',sans-serif; font-size: 16px; font-weight: 700;
      color: #F5F5F0; margin-bottom: 6px; letter-spacing: -.01em;}
    .flow-desc {
      font-family:'Noto Sans JP',sans-serif; font-size: 12px; font-weight: 700;
      color: rgba(240,232,220,.55); line-height: 1.8; letter-spacing: .01em;}

    /* ══════════════════════════════════════════
       CTA SECTION
    ══════════════════════════════════════════ */
    .s-cta {
      position: relative; overflow: hidden;
      min-height: 580px; display: flex; align-items: center; justify-content: center;}
    .s-cta::after { display: none;}
    .cta-bg {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      filter: brightness(.55) saturate(.8);}
    .cta-veil {
      position: absolute; inset: 0;
      background: linear-gradient(180deg,
        rgba(24,20,15,1)   0%,
        rgba(24,20,15,.3)  12%,
        rgba(24,20,15,.15) 30%,
        rgba(24,20,15,.25) 70%,
        rgba(24,20,15,.6)  90%,
        rgba(24,20,15,1)   100%
      );}
    .cta-body {
      position: relative; z-index: 2; text-align: center; padding: 72px 32px;}
    .cta-copy {
      font-family:'Noto Serif JP',serif; font-size: 24px; font-weight: 700;
      color: #F5F5F0; line-height: 1.8; margin-bottom: 28px;
      letter-spacing: .01em; text-shadow: 0 2px 16px rgba(0,0,0,.4);}
    .cta-sub {
      font-family:'Noto Serif JP',serif; font-size: 13px; font-weight: 700;
      color: rgba(240,232,220,.8); line-height: 2.0; margin-bottom: 40px;}
    .cta-btn {
      display: inline-block;
      border: 1px solid #F5F5F0; background: #4A3B32;
      color: #fff; padding:20px 36px;
      font-family:\'Noto Sans JP\',sans-serif;font-weight:700;font-size:17px;letter-spacing:.04em;
      text-decoration: none; transition: background .3s ease, color .3s ease;}
    .cta-btn:hover { background: #F5F5F0; color: #4A3B32;}

    /* ══════════════════════════════════════════
       FOOTER
    ══════════════════════════════════════════ */
    .bali-footer {
      background: #2E2520; padding: 32px 32px;
      display: flex; flex-direction: column; align-items: center; gap: 14px;
      border-top: 1px solid rgba(184,149,106,.2);}
    .bali-footer img { height: 26px; width: auto;}
    .bali-footer p {
      font-family:'Cinzel',serif; font-size: 10px; font-weight: 400;
      color: rgba(240,232,220,.5); letter-spacing: .09em; text-align: center;}

    /* ══════════════════════════════════════════
       Noto Sans JP — 説明文全般
    ══════════════════════════════════════════ */
    /* Noto Sans JP — 説明文（箇条書き・フロー・スペース説明） */
    .sc-body,
    .flow-desc,
    .foryou-list li,
    .reason-lead,
    .reason-box-list li,
    .s-definition p,
    .spaces-sub,
    .spaces-tagline {
      font-family: 'Noto Sans JP', sans-serif !important;}

    /* Noto Serif JP（明朝）— 「思っていたのと違う」のみ */
    .reason-nokoto .nokoto-main {
      font-family: 'Noto Serif JP', serif !important;}

    /* Noto Sans JP — だから・が起きにくい */
    .reason-nokoto .nokoto-prefix,
    .reason-nokoto .nokoto-suffix {
      font-family: 'Noto Sans JP', sans-serif !important;}

    /* Noto Sans JP — Reason締め＋定義テキスト */
    .reason-closing,
    .reason-def {
      font-family: 'Noto Sans JP', sans-serif !important;}

    /* ══════════════════════════════════════════
       SP STICKY CTA — 追従ボタン
    ══════════════════════════════════════════ */
    #stickyBtn {
      position: fixed !important;
      bottom: 30px !important;
      left: 50% !important;
      transform: translateX(-50%) translateY(120px) !important;
      /* phoneエリア(430px)の80% */
      width: min(calc(var(--phone) * 0.8), 344px) !important;
      height: 80px !important;
      right: auto !important;
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      justify-content: center !important;
      gap: 10px !important;
      background: #C83A2A !important;
      backdrop-filter: blur(12px) !important;
      -webkit-backdrop-filter: blur(12px) !important;
      color: #fff !important;
      text-decoration: none !important;
      z-index: 300 !important;
      box-shadow: 0 8px 32px rgba(0,0,0,.4) !important;
      opacity: 0 !important;
      pointer-events: none !important;
      transition: opacity .55s ease, transform .55s cubic-bezier(.2,.8,.2,1) !important;
      animation: none !important;}
    #stickyBtn.is-visible {
      opacity: 1 !important;
      pointer-events: auto !important;
      transform: translateX(-50%) translateY(0) !important;}
    .sticky-main {
      font-family:'Noto Sans JP',sans-serif;
      font-size: 12px; font-weight: 700;
      letter-spacing: .08em; color: rgba(24,20,15,.85);
      text-align: center;}

    /* オープニング画像をFV背景に合わせる */
    .opening-photo {
      background:
        linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.35)),
        url('assets/bali_hero_bg.png') center/cover no-repeat !important;}
    .sticky-sub {
      font-family:'Noto Sans JP',sans-serif;
      font-size: 18px; font-weight: 700;
      letter-spacing: .06em; color: #fff;
      text-align: center;}

    /* ══════════════════════════════════════════
       SIDE PANELS (PC)
    ══════════════════════════════════════════ */
    .stage-logo a img,
    .stage-catchphrase .catch-ja { color: #F5F5F0;}

    /* サイドパネル画像 — 部屋×風景 シャッフル */
    .sl-01{background-image:url('assets/side_room_01.png')}
    .sl-02{background-image:url('assets/side_scene_01.png')}
    .sl-03{background-image:url('assets/side_room_02.png')}
    .sl-04{background-image:url('assets/side_scene_02.png')}
    .sl-05{background-image:url('assets/side_room_03.png')}
    .sl-06{background-image:url('assets/side_scene_03.png')}
    .sl-07{background-image:url('assets/side_room_04.png')}
    .sl-08{background-image:url('assets/side_scene_04.png')}
    .sl-09{background-image:url('assets/side_room_05.png')}
    .sr-01{background-image:url('assets/side_room_06.png')}
    .sr-02{background-image:url('assets/side_scene_05.png')}
    .sr-03{background-image:url('assets/side_room_07.png')}
    .sr-04{background-image:url('assets/side_scene_06.png')}
    .sr-05{background-image:url('assets/side_room_08.png')}
    .sr-06{background-image:url('assets/side_room_09.png')}
    .sr-07{background-image:url('assets/side_room_10.png')}
    .sr-08{background-image:url('assets/side_room_11.png')}


    /* スペースカード スライドイン */
    .space-card{opacity:0;transition:opacity 1s ease,transform 1.1s cubic-bezier(.22,1,.36,1);will-change:transform,opacity;}
    .space-card--right{transform:translateX(30%);}
    .space-card--left{transform:translateX(-30%);}
    .space-card.in-view{opacity:1;transform:translateX(0);}
    @media (prefers-reduced-motion: reduce){.space-card{opacity:1 !important;transform:none !important;transition:none !important;}}
    /* 追加セクション フェードアップ */
    .s-definition,.s-lifestyle-header,.s-foryou,.s-foryou-no,.s-spaces,.s-flow,.s-cta{opacity:0;transform:translateY(20px);transition:opacity .9s ease,transform .9s cubic-bezier(.22,1,.36,1);will-change:transform,opacity;}
    .s-definition.in-view,.s-lifestyle-header.in-view,.s-foryou.in-view,.s-foryou-no.in-view,.s-spaces.in-view,.s-flow.in-view,.s-cta.in-view{opacity:1;transform:translateY(0);}
    @media (prefers-reduced-motion: reduce){.s-definition,.s-lifestyle-header,.s-foryou,.s-foryou-no,.s-spaces,.s-flow,.s-cta{opacity:1 !important;transform:none !important;}}

/* 画像注釈: 「※参考イメージ」を画像右下に */
.img-note{position:absolute;right:8px;bottom:8px;z-index:20;font-size:9px;line-height:1.4;color:rgba(255,255,255,.7);letter-spacing:.02em;pointer-events:none;font-family:'Noto Sans JP',sans-serif;text-shadow:0 1px 2px rgba(0,0,0,.4);}

/* PC catchphrase 下の注釈 */
.catch-disclaimer{font-size:9px;color:rgba(255,255,255,.55);text-shadow:0 1px 8px rgba(0,0,0,.4);letter-spacing:.04em;margin:6px 0 0;line-height:1.4;}
/* SP FV右下の注釈 */
.fv-disclaimer{display:none;}
@media (max-width:1180px){
  .fv-disclaimer{display:block;position:absolute;right:12px;bottom:12px;z-index:5;font-size:10px;color:rgba(255,255,255,.7);text-shadow:0 1px 6px rgba(0,0,0,.6);letter-spacing:.02em;pointer-events:none;}
}

.drawer{justify-content:flex-start!important;overflow-y:auto!important;padding-top:72px!important;padding-bottom:48px!important;}
  .drawer-acc{appearance:none;-webkit-appearance:none;background:none;border:none;border-bottom:1px solid rgba(128,128,128,.22);border-radius:0;cursor:pointer;}
  .drawer-acc .drawer-acc-icon{margin-left:8px;font-size:13px;opacity:.6;transition:transform .25s ease;}
  .drawer-acc.is-open .drawer-acc-icon{transform:rotate(180deg);}
  .drawer-acc-body{max-height:0;overflow:hidden;transition:max-height .4s ease;}
  .drawer-acc-body.is-open{max-height:1200px;}
  .drawer.is-open .drawer-item{opacity:1!important;transform:none!important;}
  .drawer-sub-link{display:block;padding:10px 0 10px 16px;font-size:14px;letter-spacing:.06em;color:inherit;text-decoration:none;opacity:.78;font-family:"Noto Sans JP",sans-serif;}
  .drawer-sub-link:hover{opacity:1;}
  .pc-side-nav{max-height:86vh;overflow-y:auto;overflow-x:hidden;width:min(94%,360px)!important;}
  .pc-side-nav .pc-nav-item{gap:8px!important;}
  .pc-side-nav .pc-nav-item::after{letter-spacing:.04em!important;}
  .pc-acc{appearance:none;-webkit-appearance:none;background:none;border:none;border-bottom:1px solid rgba(128,128,128,.22);border-radius:0;cursor:pointer;width:100%;}
  .pc-acc .pc-acc-icon{margin-left:8px;font-size:12px;opacity:.6;transition:transform .25s ease;}
  .pc-acc.is-open .pc-acc-icon{transform:rotate(180deg);}
  .pc-acc-wrap{position:relative;}
  .pc-acc-body{position:absolute;top:100%;left:0;right:0;z-index:30;background:rgba(20,13,9,.985);box-shadow:0 14px 34px rgba(0,0,0,.22);padding:4px 14px 10px;opacity:0;pointer-events:none;clip-path:inset(0 0 100% 0);transform:translateY(-4px);transition:clip-path .38s cubic-bezier(.2,.8,.2,1),opacity .25s ease,transform .38s ease;}
  .pc-acc-body.is-open{opacity:1;pointer-events:auto;clip-path:inset(0 0 0 0);transform:translateY(0);}
  .pc-sub-link{display:block;padding:9px 0 9px 14px;font-size:14px;letter-spacing:.06em;color:inherit;text-decoration:none;opacity:.78;font-family:"Noto Sans JP",sans-serif;}
  .pc-sub-link:hover{opacity:1;}
