:root{
  --ink: #243545;          /* 深ネイビー（本文） */
  --ink2: #1a2434;         /* さらに深いネイビー */
  --muted: rgba(36,53,69,.7);
  --accent: #7696a8;       /* グレーブルー（アクセント） */
  --green: #c8d0ce;        /* ライトグリーン */
  --warm: #e8dcd0;         /* 暖かいベージュ */
  --light-blue: #DCE4E9;   /* 薄いブルー */
  --light-blue-08: rgba(220,228,233,.8);
  --dark-bg: #18140f;
  --line: rgba(36,53,69,.12);
  --white: #FFFFFF;
  --phone: 100vw;
  --font-en: 'Roboto', sans-serif;
  --font-title: 'Noto Sans JP', sans-serif;
  --font-body: 'Noto Sans JP', sans-serif;
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0; overflow: hidden;
  color: var(--ink);
  font-family: "Noto Sans JP","Roboto", sans-serif;
  background: var(--light-blue);
  letter-spacing: .02em; line-height: 1.9;
}
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 {
  margin: 0;
  word-break: keep-all; overflow-wrap: normal;
}

.stage {
  position: fixed; inset: 0;
  display: flex; justify-content: center;
  background: var(--light-blue);
}

/* ───── OPENING ───── */
.opening {
  background: var(--light-blue);
  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,.18), rgba(0,0,0,.35)),
    url('assets/fv_02.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(56px, 14vw, 120px); line-height: 1;
  font-weight: 400; letter-spacing: .04em;
  font-family: var(--font-en);
  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: var(--accent);
  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 reduced-motion 対策 */
@media (prefers-reduced-motion: reduce) {
  .opening, .opening-photo, .opening-title span, .opening-wipe { animation: none !important; }
  .opening { display: none !important; }
}
.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: "Roboto", sans-serif;
  }
}

/* ───── PC SIDE BG（旧デザイン） ───── */
.side-bg {
  position: absolute; top: 0; bottom: 0;
  width: calc((100vw - var(--phone)) / 2);
  overflow: hidden; pointer-events: none;
  background: color-mix(in srgb, var(--accent) 70%, var(--light-blue));
}
.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-bg.left .sl-01  { background-image: url('assets/room_07.webp'); }
.side-bg.left .sl-02  { background-image: url('assets/room_06.webp'); }
.side-bg.left .sl-03  { background-image: url('assets/room_05.webp'); }
.side-bg.left .sl-04  { background-image: url('assets/room_01.webp'); }
.side-bg.left .sl-05  { background-image: url('assets/room_03.webp'); }
.side-bg.left .sl-06  { background-image: url('assets/hero.webp'); }
.side-bg.left .sl-07  { background-image: url('assets/fv_03.webp'); }
.side-bg.left .sl-08  { background-image: url('assets/room_04.webp'); }
.side-bg.left .sl-09  { background-image: url('assets/fv_02.webp'); }
.side-bg.right .sr-01 { background-image: url('assets/room_02.webp'); }
.side-bg.right .sr-02 { background-image: url('assets/fv_01.webp'); }
.side-bg.right .sr-03 { background-image: url('assets/room_07.webp'); }
.side-bg.right .sr-04 { background-image: url('assets/room_06.webp'); }
.side-bg.right .sr-05 { background-image: url('assets/room_05.webp'); }
.side-bg.right .sr-06 { background-image: url('assets/room_01.webp'); }
.side-bg.right .sr-07 { background-image: url('assets/room_03.webp'); }
.side-bg.right .sr-08 { background-image: url('assets/hero.webp'); }

/* ───── SIDE LABEL (旧デザイン: 縦書き) ───── */
.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: "Roboto", sans-serif;
}
.side-bg.left .side-label { left: 20px; }
.side-bg.right .side-label { right: 20px; }

/* ───── PC サイドナビ・CTA（白透過 + 濃い文字） ───── */
.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(255,255,255,.50);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(36,53,69,.12);
    padding: 0 22px;
    box-shadow: 0 8px 32px rgba(0,0,0,.08);
  }
  .pc-nav-item {
    display: flex; align-items: baseline; gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(36,53,69,.12);
    text-decoration: none; color: var(--ink);
    font-size: 20px; font-weight: 900; letter-spacing: .1em;
    font-family: var(--font-en);
    transform: translateX(0);
    transition: color .28s ease, transform .28s cubic-bezier(.2,.8,.2,1);
  }
  .pc-nav-item:last-child { border-bottom: 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;
    color: var(--accent);
  }
  .pc-nav-item::after {
    content: attr(data-ja);
    white-space: nowrap;
    font-size: 9px; font-weight: 400; letter-spacing: .12em;
    color: rgba(36,53,69,.55); font-family: "Noto Sans JP", sans-serif;
    transition: color .28s ease;
  }
  .pc-nav-item:hover { color: var(--accent); transform: translateX(6px); }
  .pc-nav-item:hover::before { opacity: 1; transform: translateX(0); }
  .pc-nav-item:hover::after { color: rgba(36,53,69,.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;
    background: rgba(255,255,255,.50);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(36,53,69,.12);
    padding: 28px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,.08);
  }
  .pc-cta-catch {
    font-size: 14px; font-weight: 700;
    color: var(--ink); letter-spacing: .08em;
    line-height: 1.75;
    margin: 0 0 8px; font-family: "Noto Sans JP", sans-serif;
  }
  .pc-cta-lead {
    font-size: 10px; font-weight: 400;
    color: rgba(36,53,69,.65); letter-spacing: .08em;
    line-height: 1.8;
    margin: 0 0 22px; font-family: "Noto Sans JP", sans-serif;
  }
  .pc-cta-btn {
    display: block; width: 100%; padding: 14px 20px;
    border: 1px solid rgba(36,53,69,.4);
    background: rgba(255,255,255,.35);
    color: var(--ink);
    font-size: 11px; font-weight: 700; letter-spacing: .16em;
    text-decoration: none; font-family: "Cinzel", serif;
    text-align: center;
    transition: background .28s ease, border-color .28s ease, color .28s ease, transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease;
  }
  .pc-cta-btn:hover {
    background: var(--accent); border-color: var(--accent);
    color: var(--white);
    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: var(--light-blue);
  box-shadow: 0 0 80px rgba(0,0,0,.16);
  scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
}

/* ───── HAMBURGER ───── */
.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;
  }
}
/* stage直下のハンバーガーはSPでもPCでも非表示（ヘッダー内のhamburgerSpのみ使う） */
.stage > #hamburger { display: none !important; }

/* ───── 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(220,228,233,.85);
  color: var(--ink);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(36,53,69,.08);
}
.brand { display: flex; align-items: center; }
.header-logo { height: 24px; width: auto; display: block; }
@media (min-width: 1181px) { .site-header { display: none; } }

/* ───── DRAWER ───── */
.drawer {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(240,244,247,.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: 20px;
  cursor: pointer; color: var(--ink); opacity: .6;
  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(36,53,69,.14);
  text-decoration: none; color: var(--ink);
  font-size: 22px; letter-spacing: .14em;
  font-family: "Roboto", sans-serif;
}
.drawer-item::after {
  content: attr(data-ja);
  margin-left: auto; font-size: 11px; letter-spacing: .1em;
  color: var(--muted); font-family: "Noto Sans JP", sans-serif; font-weight: 400;
}
.drawer-item:hover { color: var(--accent); }
.drawer-cta {
  display: block; margin-top: 36px; padding: 22px 24px;
  background: var(--accent); color: var(--white);
  text-align: center; text-decoration: none;
  font-size: 15px; font-weight: 700; letter-spacing: .04em; line-height: 1.7;
  font-family: 'Noto Sans JP', sans-serif;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,.22), inset 0 -3px 0 rgba(0,0,0,.12);
  transition: transform .15s ease, box-shadow .15s ease;
}
.drawer-cta:active {
  transform: translateY(2px);
  box-shadow: 0 2px 8px rgba(0,0,0,.18), inset 0 -1px 0 rgba(0,0,0,.12);
}

/* =============================
   1. FV
============================= */
.s-fv {
  position: relative; height: calc(100svh - 56px);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: var(--dark-bg);
}
.fv-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.5s ease;
}
/* FVは画像をそのまま明るく見せる（オーバーレイなし） */
.fv-bg.active { opacity: 1; }

.fv-body {
  position: relative; z-index: 2;
  background: var(--light-blue-08);
  padding: 32px 24px 28px;
  display: flex; flex-direction: column; align-items: center;
  width: 78%; max-width: 320px;
  text-align: center;
}
.fv-eyebrow {
  font-family: var(--font-en);
  font-size: 10px; letter-spacing: .32em;
  color: rgba(118,150,168,.85);
  margin-bottom: 18px; white-space: nowrap;
}
.fv-title {
  font-family: var(--font-en); font-weight: 300;
  font-size: clamp(34px, 9.6vw, 42px);
  letter-spacing: .04em; line-height: 1.18;
  color: var(--ink); margin: 0 0 14px;
}
.fv-ja {
  font-family: "Noto Sans JP", sans-serif; font-weight: 300;
  font-size: 11px; letter-spacing: .3em;
  color: var(--ink); margin: 0 0 18px;
}
.fv-tagline {
  font-family: "Noto Sans JP", sans-serif; font-weight: 400;
  font-size: 16px; line-height: 1.7; letter-spacing: .02em;
  color: var(--ink); margin: 0;
}
.fv-scroll-cue {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 3;
  color: rgba(255,255,255,.7);
  font-family: "Roboto", sans-serif;
  font-size: 10px; letter-spacing: .3em;
  text-align: center;
}
.fv-scroll-cue::after {
  content: ""; display: block; width: 1px; height: 28px;
  background: rgba(255,255,255,.55); margin: 8px auto 0;
}

/* =============================
   2-3. PHOTO BLOCKS（Figma: 半透明ブルーボックスのキャプション）
   + パララックスのみ + 上下フェードで切れ目を馴染ませる
============================= */
/* 写真ブロックの周辺を accent ティントで塗りつぶす */
.s-photo-band {
  background: color-mix(in srgb, var(--accent) 70%, var(--light-blue));
  padding: 0;
}

.s-photo {
  position: relative;
  width: var(--reveal-w, 50%);
  margin: 0 auto;
  background: transparent;
  overflow: hidden;
  aspect-ratio: 9 / 13;
  opacity: var(--reveal-op, 0);
  transition: width .25s ease-out, opacity .25s ease-out;
}
.s-photo img {
  /* スクロールで円形に広がる柔らかいマスク */
  -webkit-mask-image: radial-gradient(circle, #000 55%, transparent 100%);
          mask-image: radial-gradient(circle, #000 55%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: calc(var(--reveal-r, 0%) * 2) calc(var(--reveal-r, 0%) * 2);
          mask-size: calc(var(--reveal-r, 0%) * 2) calc(var(--reveal-r, 0%) * 2);
  transition: -webkit-mask-size .15s linear, mask-size .15s linear;
}




.s-photo img {
  /* 絶対配置 + cover で transform 時の隙間防止 */
  position: absolute; inset: -10%;
  width: 120%; height: 120%;
  object-fit: cover;
  transform-origin: center center;
  will-change: transform, opacity;
  /* 初期: ズームインした状態で薄く */
  opacity: 0;
  transform: scale(1.18) translate3d(0, 0, 0);
  transition: opacity 1.2s ease, transform 1.6s cubic-bezier(.22,1,.36,1);
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
}
/* スクロールで画面に入ったら: 等倍まで縮みながら鮮明に */
.s-photo.in-view img {
  opacity: 1;
  transform: scale(var(--zoom, 1.04)) translate3d(0, var(--pl-y, 0px), 0);
  transition: opacity .9s ease, transform .15s linear;
}

/* キャプション: 写真より少し遅れて下から fade-up */
.s-photo-caption {
  position: absolute; right: 0; left: auto; bottom: 64px; z-index: 2;
  width: min(90%, 360px);
  margin: 0;
  padding: 18px 24px;
  background: color-mix(in srgb, var(--accent) 70%, transparent);
  font-family: "Noto Sans JP", sans-serif; font-weight: 300;
  font-size: 16px; line-height: 1.7; letter-spacing: .08em;
  color: var(--white);
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,.18);
}
/* 2枚目は左寄せ */
.s-photo:nth-of-type(2) .s-photo-caption {
  right: auto;
  left: 0;
}
.s-photo.in-view .s-photo-caption {
  opacity: 1;
  transform: translateY(0);
}


/* 視覚効果を減らす環境では Ken Burns を無効化 */
@media (prefers-reduced-motion: reduce) {
  .s-photo img { animation: none !important; transform: none !important; }
}

/* =============================
   5. INTRO (北欧ポップモダンとは)
============================= */
.s-intro {
  position: relative;
  background: var(--warm);
  padding: 80px 40px 60px;
  text-align: center;
  overflow: hidden;
}
.bg-word--intro { display: none; }
.s-intro p {
  position: relative; z-index: 1;
  font-size: 16px; line-height: 2.2; font-weight: 400;
  color: var(--ink); letter-spacing: .04em;
  margin: 0;
  word-break: normal;
  overflow-wrap: anywhere;
}

/* =============================
   6. STYLE
============================= */
.s-style {
  position: relative;
  background: rgba(255,255,255,.55);
  padding: 72px 32px 64px;
  text-align: center;
  overflow: hidden;
}
.bg-word {
  position: absolute; top: 24px; left: -18px; z-index: 0;
  font-family: "Roboto", sans-serif; font-weight: 300;
  font-size: 110px; line-height: 1;
  color: rgba(220,228,233,.55);
  letter-spacing: .02em;
  pointer-events: none; user-select: none;
}
.bg-word--light { color: rgba(255,255,255,.22); }
.s-style-title {
  position: relative; z-index: 1;
  font-family: "Noto Sans JP", sans-serif; font-weight: 700;
  font-size: 20px; letter-spacing: .02em; line-height: 1.95;
  color: var(--ink); margin: 0 0 28px;
}
.s-style-lead {
  position: relative; z-index: 1;
  font-family: "Noto Sans JP", sans-serif; font-weight: 500;
  font-size: 18px; line-height: 1.9; letter-spacing: .02em;
  color: var(--ink); margin: 0;
}

/* =============================
   7. LIVING (5項目 + サマリ)
============================= */
.s-living {
  position: relative;
  min-height: 615px;
  display: flex; align-items: center; justify-content: center;
  padding: 53px 0;
  overflow: hidden;
}
.s-living-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}
.s-living-bg::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(0,0,0,.25);
}
.s-living-card {
  position: relative; z-index: 2;
  background: rgba(255,255,255,.55);
  padding: 40px 28px;
  width: calc(100% - 74px); max-width: 320px;
  text-align: center;
}
.s-living-card p {
  margin: 0 0 22px;
  font-family: "Noto Sans JP", sans-serif; font-weight: 500;
  font-size: 16px; line-height: 1.8; letter-spacing: .04em;
  color: var(--ink);
}
.s-living-card p:last-of-type { margin-bottom: 0; }
.s-living-sum {
  margin-top: 22px !important;
  font-weight: 500 !important;
}

/* =============================
   8. REASON
============================= */
.s-reason {
  position: relative;
  background: var(--green);
  padding: 80px 32px 60px;
  text-align: center;
  overflow: hidden;
}
.s-reason .bg-word {
  top: 30px; left: -22px;
  color: rgba(255,255,255,.16);
}
.s-reason-title {
  position: relative; z-index: 1;
  font-family: "Noto Sans JP", sans-serif; font-weight: 700;
  font-size: 20px; letter-spacing: .04em; line-height: 1.65;
  color: var(--ink); margin: 0 0 32px;
}
.s-reason-lead {
  position: relative; z-index: 1;
  margin: 0 auto 30px;
}
.s-reason-lead p {
  font-family: "Noto Sans JP", sans-serif; font-weight: 400;
  font-size: 16px; line-height: 1.95; letter-spacing: .02em;
  color: var(--ink); margin: 0 0 20px;
}
.s-reason-lead p:last-child { margin-bottom: 0; }

.s-reason-card {
  position: relative; z-index: 1;
  margin: 0 auto 28px;
  padding: 40px 24px 36px;
  width: 100%;
}
.s-reason-card--light {
  background: var(--white);
}
.s-reason-card--dark {
  background: var(--ink);
}
.s-reason-card-title {
  font-family: var(--font-title); font-weight: 700;
  font-size: 18px; line-height: 1.6; letter-spacing: .02em;
  color: var(--ink);
  margin: 0 0 28px;
  text-align: center;
}
.s-reason-card--dark .s-reason-card-title { color: var(--white); }

.s-reason-list {
  list-style: none; padding: 0; margin: 0;
  text-align: left;
}
.s-reason-list li {
  font-family: var(--font-body); font-weight: 400;
  font-size: 15px; line-height: 1.95; letter-spacing: .04em;
  color: var(--ink);
  padding: 4px 0;
}
.s-reason-card--dark .s-reason-list li { color: var(--white); }
.s-reason-list li em { font-style: normal; color: inherit; margin-left: 4px; }
.s-reason-list--centered { text-align: left; }

.s-reason-bridge {
  position: relative; z-index: 1;
  font-family: "Noto Sans JP", sans-serif; font-weight: 700;
  font-size: 16px; line-height: 1.6; letter-spacing: .02em;
  color: var(--ink2); text-align: center;
  margin: 24px 0;
}
.s-reason-bridge span { display: inline-block; }

.s-reason-nokoto {
  position: relative; z-index: 1;
  margin: 36px 0;
  text-align: center;
}
.rn-top {
  font-family: "Noto Sans JP", sans-serif; font-weight: 700;
  font-size: 18px; letter-spacing: .04em; color: #333;
  margin: 0 0 10px;
}
.rn-banner {
  position: relative;
  display: inline-block; padding: 14px 30px;
  background: rgba(36,53,69,.9);
  margin: 0 0 10px;
  /* 平行四辺形に */
  transform: skewX(-18deg);
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
  white-space: nowrap;
}
.rn-banner span {
  display: inline-block;
  transform: skewX(18deg);
  font-family: "Noto Sans JP", sans-serif; font-weight: 700;
  font-size: 18px; letter-spacing: .04em; color: var(--green);
  white-space: nowrap;
}
.rn-bottom {
  font-family: "Noto Sans JP", sans-serif; font-weight: 700;
  font-size: 18px; letter-spacing: .02em; color: #333;
  margin: 0;
}

.s-reason-quote {
  position: relative; z-index: 1;
  text-align: center;
  margin: 32px 0 0;
  padding-bottom: 32px;
}
.s-reason-quote p {
  font-family: "Noto Sans JP", sans-serif; font-weight: 700;
  font-size: 16px; line-height: 1.6; letter-spacing: .02em;
  color: rgba(26,36,52,.82); margin: 0 0 12px;
}
.rq-brand {
  font-size: 22px !important; color: var(--accent) !important;
  font-weight: 500 !important; letter-spacing: .06em !important;
  line-height: 1.6 !important;
}

/* =============================
   9. FOR YOU（半透明白カードに濃い文字 + 項目間に区切り線）
============================= */
.s-foryou {
  position: relative;
  overflow: hidden;
  padding: 28px 28px 32px;
}
.s-foryou-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}
.s-foryou-card {
  position: relative; z-index: 1;
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  padding: 28px 24px 22px;
}
.s-foryou-title {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: "Noto Sans JP", sans-serif; font-weight: 700;
  font-size: 15px; letter-spacing: .04em;
  color: var(--ink); margin: 0 0 18px;
}
.fy-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  border: 1.2px solid var(--ink); border-radius: 50%;
  font-size: 10px; line-height: 1; color: var(--ink);
}
.s-foryou-list {
  list-style: none; padding: 0; margin: 0 auto;
  width: fit-content; max-width: 100%;
  display: flex; flex-direction: column; gap: 0;
}
.s-foryou-list li {
  position: relative;
  padding: 11px 0 11px 18px;
  font-family: "Noto Sans JP", sans-serif; font-weight: 400;
  font-size: 14px; line-height: 1.65; letter-spacing: .04em;
  color: var(--ink);
  border-top: 1px solid rgba(36,53,69,.15);
}
.s-foryou-list li:first-child { border-top: none; }
.s-foryou-list li::before {
  content: "・";
  position: absolute; left: 0; top: 11px;
  font-size: 12px; color: var(--ink);
  font-weight: 400;
  line-height: 1.65;
}

/* 向かないかも - ネガティブ印象を出すため ink + accent2 */
.s-foryou--no {
  background: var(--ink);
  padding: 28px 28px 32px;
}
.s-foryou--no .s-foryou-card {
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.s-foryou--no .s-foryou-title {
  color: rgba(255,255,255,.92);
}
.s-foryou--no .fy-icon {
  border-color: var(--accent2);
  color: var(--accent2);
}
.s-foryou--no .s-foryou-list li {
  color: rgba(255,255,255,.78);
  border-top-color: rgba(255,255,255,.12);
}
.s-foryou--no .s-foryou-list li::before {
  color: var(--accent2);
}
.s-foryou-list--no { padding: 0; }

/* =============================
   10. EXAMPLES (部位紹介)
============================= */
.s-examples {
  position: relative;
  background: var(--light-blue);
  padding: 72px 0 16px;
  overflow: hidden;
}
.s-examples .bg-word {
  top: 20px; left: -18px;
  color: rgba(118,150,168,.16);
}
.s-examples-title {
  position: relative; z-index: 1;
  font-family: "Noto Sans JP", sans-serif; font-weight: 700;
  font-size: 20px; letter-spacing: .02em; line-height: 1.6;
  color: var(--ink); text-align: center; margin: 0 32px 16px;
}
.s-examples-sub {
  position: relative; z-index: 1;
  font-family: "Noto Sans JP", sans-serif; font-weight: 500;
  font-size: 14px; letter-spacing: .04em;
  color: var(--muted); text-align: center; margin: 0 32px 28px;
}
.s-examples-lead {
  position: relative; z-index: 1;
  font-family: "Noto Sans JP", sans-serif; font-weight: 500;
  font-size: 18px; line-height: 1.9; letter-spacing: .02em;
  color: var(--ink); text-align: center; margin: 0 32px 48px;
}

.s-part {
  position: relative;
  width: 100%; height: 460px;
  margin: 0 0 0;
  overflow: hidden;
  /* 初期: 画面外に配置 + 透明 */
  opacity: 0;
  transition: opacity 1s ease, transform 1.1s cubic-bezier(.22,1,.36,1);
  will-change: transform, opacity;
}
.s-part--right { transform: translateX(40%); }
.s-part--left  { transform: translateX(-40%); }
.s-part.in-view {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .s-part { opacity: 1 !important; transform: none !important; transition: none !important; }
}
.s-part-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.s-part-card {
  position: absolute; z-index: 2;
  /* 半透明白 + 微blur で背景写真を透過させる */
  background: rgba(245,245,240,.5);
  backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
  padding: 24px 18px;
  width: calc(100% - 28px);
  max-width: 290px;
  display: flex; flex-direction: column; gap: 10px;
  box-sizing: border-box;
}
/* Figmaに合わせてテキストアラインメントを部位ごとに */
.s-part--right .s-part-card { top: 90px; right: 14px; text-align: right; }
.s-part--left  .s-part-card { top: 100px; left: 14px; text-align: left; }
.sp-en {
  font-family: var(--font-en); font-weight: 300;
  font-size: 34px; letter-spacing: .04em; line-height: 1.1;
  color: var(--ink); margin: 0 0 14px;
}
.sp-ja {
  font-family: "Noto Sans JP", sans-serif; font-weight: 700;
  font-size: 16px; line-height: 1.7; letter-spacing: .04em;
  color: var(--ink); margin: 0 0 12px;
}
.sp-desc {
  font-family: "Noto Sans JP", sans-serif; font-weight: 400;
  font-size: 13px; line-height: 1.8; letter-spacing: .04em;
  color: var(--muted); margin: 0;
}

.s-band {
  width: 100%; line-height: 0;
}
.s-band img { width: 100%; height: auto; display: block; }

/* =============================
   11. FLOW (サービスの流れ)
============================= */
.s-flow {
  background: var(--light-blue);
  padding: 16px 32px 60px;
}
.s-flow-title {
  font-family: "Noto Sans JP", sans-serif; font-weight: 700;
  font-size: 20px; letter-spacing: .04em;
  color: var(--ink); text-align: center; margin: 0 0 32px;
}
.s-flow-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 32px;
}
.s-flow-list > li {
  display: grid;
  grid-template-columns: 36px 1fr;
  column-gap: 18px;
  align-items: start;
}
.sf-num {
  font-family: "Roboto", sans-serif; font-weight: 500;
  font-size: 24px; line-height: 1; color: var(--accent);
}
.sf-body { padding-top: 2px; }
.sf-h {
  font-family: "Noto Sans JP", sans-serif; font-weight: 700;
  font-size: 16px; letter-spacing: .02em; line-height: 1.5;
  color: var(--ink); margin: 0 0 8px;
}
.sf-p {
  font-family: "Noto Sans JP", sans-serif; font-weight: 400;
  font-size: 13px; line-height: 1.7; letter-spacing: .02em;
  color: var(--muted); margin: 0;
  /* 長い文字列の折り返し許可（横はみ出し防止） */
  word-break: normal;
  overflow-wrap: anywhere;
}

/* =============================
   12. CTA
============================= */
.s-cta {
  position: relative;
  overflow: hidden;
}
.s-cta-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.s-cta-bg::after,
.s-cta::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(36,53,69,.35); z-index: 1;
}
.s-cta-body {
  position: relative; z-index: 2;
  padding: 60px 32px;
  text-align: center;
}
.cta-copy {
  font-family: "Noto Sans JP", sans-serif; font-weight: 700;
  font-size: 18px; line-height: 1.9; letter-spacing: .04em;
  color: var(--white);
  text-shadow: 0 2px 14px rgba(0,0,0,.45);
  margin: 0 0 24px;
}
.cta-sub {
  font-family: "Noto Sans JP", sans-serif; font-weight: 500;
  font-size: 14px; line-height: 1.85; letter-spacing: .04em;
  color: rgba(255,255,255,.95);
  text-shadow: 0 1px 10px rgba(0,0,0,.4);
  margin: 0 0 32px;
}
.cta-btn {
  display: inline-block;
  padding: 20px 36px;
  background: var(--accent);
  color: var(--white);
  font-family: 'Noto Sans JP', sans-serif; font-weight: 700;
  font-size: 17px; letter-spacing: .04em; text-decoration: none;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 4px;
  transition: background .25s ease, transform .25s ease;
}
.cta-btn:hover { background: var(--ink); transform: translateY(-2px); }

/* =============================
   FOOTER
============================= */
.bali-footer {
  background: var(--ink);
  padding: 36px 24px 28px;
  text-align: center;
}
.bali-footer img { height: 22px; width: auto; opacity: .9; margin-bottom: 18px; }
.bali-footer p {
  font-family: "Noto Sans JP", sans-serif; font-weight: 400;
  font-size: 11px; letter-spacing: .06em; color: rgba(255,255,255,.6);
  margin: 0;
}

/* =============================
   STICKY CTA (SP)
============================= */
.sp-sticky-cta {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(120px);
  width: min(calc(var(--phone) * 0.86), 360px);
  height: 72px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px;
  background: var(--accent);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  color: var(--white); text-decoration: none;
  z-index: 300;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  opacity: 0; pointer-events: none;
  transition: opacity .55s ease, transform .55s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease;
}
.sp-sticky-cta.is-visible {
  opacity: 1; transform: translateX(-50%) translateY(0);
  pointer-events: auto;
  animation: stickyPulse 2.4s ease-in-out infinite;
}
.sp-sticky-cta:active {
  transform: translateX(-50%) translateY(2px);
  box-shadow: 0 4px 18px rgba(0,0,0,.22);
}
@keyframes stickyPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(0,0,0,.18), 0 0 0 0 rgba(255,255,255,.0); }
  50% { box-shadow: 0 12px 38px rgba(0,0,0,.28), 0 0 0 6px rgba(255,255,255,.06); }
}
@keyframes stickyShine {
  0% { transform: translateX(-100%) skewX(-18deg); }
  100% { transform: translateX(200%) skewX(-18deg); }
}

.sticky-main {
  font-family: "Noto Sans JP", sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: .04em; line-height: 1.2;
  text-align: center;
}
.sticky-sub {
  font-family: "Noto Sans JP", sans-serif; font-weight: 400;
  font-size: 10px; letter-spacing: .08em; opacity: .85;
}

/* =============================
   REVEAL ANIMATION
============================= */
.reveal-section {
  opacity: 0; transform: translateY(20px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1);
}
.reveal-section.in-view { opacity: 1; transform: translateY(0); }


/* 部位後の2枚帯画像 */
.s-band-row {
  display: flex; flex-direction: column;
  gap: 10px;
  padding: 20px 16px;
  background: var(--light-blue);
}
.s-band-row .s-band-img {
  width: 100%;
  height: 90px;
  background-size: cover;
  background-position: center;
}
.s-band-row .s-band-img--narrow {
  width: 86%;
  height: 80px;
  margin-left: auto;
  background-size: 280% auto;
  background-position: 50% 50%;
}
.s-band-row:nth-of-type(2n) .s-band-img--narrow { background-position: 30% 60%; }
.s-band-row:nth-of-type(3n) .s-band-img--narrow { background-position: 70% 40%; }

/* 画像注釈: 「実際の施工イメージではありません。」を画像右下に */
.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;}
}

/* ===== タブレット／スマホ横向き対応 ===== */
/* 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; }

/* 横長帯にも参考イメージ注記 */
.s-band-row .s-band-img{position:relative;}
.s-band-row .s-band-img::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>外部化） ===== */
/* ── GLOBAL — Nordic Pop Modern theme ── */
    body { background:#DCE4E9; color:#243545; line-height:1.9; font-family:"Noto Sans JP","Roboto",sans-serif; }
    .stage { background:#DCE4E9; }
    .side-bg { background:#DCE4E9; }
    .site-header { background: rgba(220,228,233,.88); color:#243545; backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px); box-shadow:0 1px 0 rgba(36,53,69,.08); }
    .site-header .hamburger span, .hamburger span { background:#243545 !important; }
    .drawer { background:rgba(240,244,247,.98); }
    .drawer-item { color:#243545; font-family:'Roboto',sans-serif; border-color:rgba(36,53,69,.18); }
    .drawer-item:hover { color:#7696a8; }
    .drawer-close { color:#243545; }
    .drawer-cta { color:#243545; font-family:'Noto Sans JP',sans-serif; letter-spacing:.04em; font-size:13px; }
    .opening-title span { font-family:'Roboto',sans-serif !important; font-weight:300 !important; font-style:normal !important; font-size:clamp(36px,9vw,84px) !important; letter-spacing:.04em !important; }
    .opening-wipe { background:#7696a8 !important; }
    .opening-photo { background:linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.35)), url('assets/fv_02.webp') center/cover no-repeat !important; }
    /* sticky CTA: 北欧モダン色 */

.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(250,250,251,.99);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;}
