@charset "UTF-8";
/* ============================================================
   MIRATIO — style.scss
   CSS設計: FLOCSS（Foundation / Layout / Object[Component, Project, Utility]）
   命名:    既存クラス名をそのまま維持（.site-head / .v-card / .ask-ai 等）。
            BEM接頭辞 l-/c-/p-/u- への全面リネームは行っていない（JS連携が多く、
            リネームは見た目・挙動を変えない範囲を超えるため。詳細は README 参照）
   状態:    is-*（JSが付け外し）／JSフックは id と data-* 属性
   コンパイル: cd site && npx -y sass@1.104.0 assets/scss/style.scss assets/scss/style.css --style=expanded --source-map
   ============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

button {
  font-family: inherit;
}

:root {
  --bg:#F2EDE3;
  --bg-card:#FBF8F1;
  --ink:#2A2A25;
  --ink-dim:#8B857A;
  --ink-soft:#5D584E;
  --green:#1B1B19;
  --green-deep:#000000;
  --line:#DAD0BE;
  --ivory:#F6F2E8;
  --dark:#14171C;
  --en:YuMincho, "Yu Mincho", "Hiragino Mincho ProN", serif;
  --jp:YuMincho, "Yu Mincho", "Hiragino Mincho ProN", serif;
  --ease:cubic-bezier(.22,1,.36,1);
  --head-h:86px;
}

html {
  overflow-x: clip;
  scroll-behavior: auto;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--jp);
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

.skip {
  position: fixed;
  left: 12px;
  top: -52px;
  z-index: 200;
  background: var(--green);
  color: #fff;
  padding: 9px 18px;
  border-radius: 4px;
  transition: top 0.2s;
  font-size: 13px;
}

.skip:focus {
  top: 12px;
}

.grecaptcha-badge {
  visibility: hidden;
}

.site-head {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: var(--head-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 52px);
  transition: background 0.5s var(--ease), height 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-head.is-scrolled {
  background: rgba(242, 237, 227, 0.9);
  backdrop-filter: blur(14px);
  height: 66px;
  border-color: var(--line);
}

.brand {
  display: block;
  line-height: 1;
  position: relative;
  z-index: 95;
}

.brand .b-en {
  font-family: var(--en);
  font-size: 21px;
  letter-spacing: 0.36em;
}

.brand .b-jp {
  display: block;
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.42em;
  color: var(--ink-dim);
  margin-top: 5px;
}

.hero-zone .brand {
  color: var(--ivory);
}

.hero-zone .brand .b-jp {
  color: rgba(246, 242, 232, 0.75);
}

.site-head.is-scrolled .brand, .menu-open .brand {
  color: var(--ink);
}

.site-head.is-scrolled .brand .b-jp, .menu-open .brand .b-jp {
  color: var(--ink-dim);
}

.gnav {
  display: flex;
  gap: clamp(14px, 2.2vw, 34px);
  align-items: center;
}

@media (max-width: 1180px) {
  .gnav a {
    font-size: 11.5px;
    letter-spacing: 0.14em;
  }
}
.gnav a {
  font-family: var(--en);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  padding: 6px 0;
  position: relative;
  color: rgba(246, 242, 232, 0.82);
  transition: color 0.3s;
}

.gnav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}

.gnav a:hover {
  color: var(--ivory);
}

.gnav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-head.is-scrolled .gnav a {
  color: var(--ink-soft);
}

.site-head.is-scrolled .gnav a:hover {
  color: var(--ink);
}

.head-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.head-reserve {
  background: var(--green);
  color: #FBF8F1;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-indent: 0.26em;
  padding: 13px 26px;
  border-radius: 999px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}

.head-reserve:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(20, 23, 28, 0.34);
  background: var(--green-deep);
}

.menu-btn {
  display: none;
  position: relative;
  z-index: 95;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(246, 242, 232, 0.5);
  background: rgba(20, 23, 28, 0.18);
  backdrop-filter: blur(6px);
  cursor: pointer;
  place-items: center;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.3s var(--ease);
}

.menu-btn:hover {
  transform: scale(1.06);
}

.site-head.is-scrolled .menu-btn, .menu-open .menu-btn {
  border-color: var(--ink);
  background: transparent;
}

.menu-btn .bars {
  position: relative;
  width: 20px;
  height: 12px;
  display: block;
}

.menu-btn .bars i {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--ivory);
  transition: transform 0.45s var(--ease), top 0.45s var(--ease), background 0.4s var(--ease);
}

.menu-btn .bars i:nth-child(1) {
  top: 0;
}

.menu-btn .bars i:nth-child(2) {
  top: 10.5px;
}

.site-head.is-scrolled .menu-btn .bars i, .menu-open .menu-btn .bars i {
  background: var(--ink);
}

.menu-open .menu-btn .bars i:nth-child(1) {
  top: 5px;
  transform: rotate(24deg);
}

.menu-open .menu-btn .bars i:nth-child(2) {
  top: 5px;
  transform: rotate(-24deg);
}

.sub-page .brand {
  color: var(--ink);
}

.sub-page .brand .b-jp {
  color: var(--ink-dim);
}

.sub-page .gnav a {
  color: var(--ink-soft);
}

.sub-page .gnav a:hover, .sub-page .gnav a.is-current {
  color: var(--ink);
}

.sub-page .gnav a.is-current::after {
  transform: scaleX(1);
  transform-origin: left;
}

.sub-page .menu-btn {
  border-color: var(--ink);
  background: transparent;
}

.sub-page .menu-btn .bars i {
  background: var(--ink);
}

@media (max-width: 900px) {
  :root {
    --head-h:72px;
  }
  .gnav {
    display: none;
  }
  .head-reserve {
    display: none;
  }
  .menu-btn {
    display: grid;
    width: 48px;
    height: 48px;
  }
}
.menu-overlay {
  --R:min(96vw,60svh);
  position: fixed;
  inset: 0;
  z-index: 55; /* ヘッダー(60)より下＝閉じるボタンが見える */
  background: var(--bg);
  visibility: hidden;
  pointer-events: none;
  clip-path: circle(0px at calc(100% - 46px) 43px);
  touch-action: none;
  overscroll-behavior: contain;
}

.menu-overlay.is-open {
  visibility: visible;
  pointer-events: auto;
}

.menu-overlay:focus {
  outline: none;
}

.menu-open .sp-reserve {
  transform: translateY(110%) !important;
}

.menu-open .site-head {
  background: transparent;
  border-color: transparent;
  backdrop-filter: none;
}

/* 針：アーク頂点の右側から左向きに指す */
.wheel-needle {
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  right: calc(var(--inset) - 36px);
  top: var(--cy);
  transform: translateY(-50%);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 12px solid var(--green);
}

/* 大円ダイヤル：中心は画面右外（--cx相当）。見えるのは左側の緩いアーク */
.menu-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.menu-rings i {
  position: absolute;
  right: calc(var(--inset) - var(--R) - var(--rr));
  top: calc(var(--cy) - var(--rr));
  width: calc(var(--rr) * 2);
  height: calc(var(--rr) * 2);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: block;
}

.menu-rings i:nth-child(1) {
  --rr:calc(var(--R) - 44px);
}

.menu-rings i:nth-child(2) {
  --rr:calc(var(--R) + 56px);
  border-color: rgba(218, 208, 190, 0.6);
}

.menu-rings i:nth-child(3) {
  display: none;
}

.menu-rings b {
  display: none;
}

.wheel {
  position: absolute;
  top: var(--cy);
  right: calc(var(--inset) - var(--R));
}

/* 扇形（スポーク沿い）にラベルを傾けて配置＝ルーレットの目
   transformはJSが直接書く（カスタムプロパティ経由の毎フレーム再計算を避ける） */
.m-slot {
  --a:0deg; /* JSが transform を直接書くまでの既定値 */
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  transform: rotate(var(--a)) translateX(calc(var(--R) * -1));
  will-change: transform, opacity;
}

.m-link {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(calc(-100% - 14px), -50%);
  display: flex;
  align-items: baseline;
  gap: 14px;
  white-space: nowrap;
  padding: 8px 2px;
}

.m-link i {
  font-family: var(--en);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--green);
}

.m-link .l-en {
  font-family: var(--en);
  font-size: clamp(26px, 3.6vmin, 38px);
  letter-spacing: 0.12em;
  color: var(--ink);
  transition: color 0.3s;
}

.m-link .l-jp {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--ink-dim);
  margin-left: 4px;
}

.m-link::after {
  content: "";
  position: absolute;
  right: -24px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  transform: translateY(-50%) scale(0);
  transition: transform 0.35s var(--ease);
}

.m-link:hover .l-en {
  color: var(--green);
}

.m-link:hover::after {
  transform: translateY(-50%) scale(1);
}

.m-link.is-reserve .l-en {
  color: var(--green);
}

.m-link.is-reserve .l-jp {
  color: var(--green);
}

.m-slot.is-active .l-en {
  color: var(--green);
}

.m-slot.is-active .m-link::after {
  transform: translateY(-50%) scale(1);
}

@media (max-width: 900px) {
  .m-link .l-en {
    font-size: clamp(23px, 6.6vw, 30px);
  }
  .m-link i {
    font-size: 10px;
  }
  .m-link .l-jp {
    display: none;
  }
  .menu-rings i:nth-child(1) {
    width: calc(var(--R) * 1.34);
  }
  .menu-rings i:nth-child(1), .menu-rings i:nth-child(2) {
    aspect-ratio: 1;
    height: auto;
  }
  .menu-rings i:nth-child(2) {
    width: calc(var(--R) * 2.3);
  }
  .menu-rings i:nth-child(3) {
    display: none;
  }
}
.fixbg-track {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
  top: calc(var(--vh) * -1);
  height: calc(var(--vh) * 2 + 100%);
}

.fixbg {
  position: sticky;
  top: 0;
  height: var(--vh);
}

.fixbg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

:root {
  --vh:100lvh;
}

@supports not (height: 100lvh) {
  :root {
    --vh:100vh;
  }
}
/* 動きを減らす設定では通常の敷き込み背景にする */
.no-motion .fixbg-track {
  position: absolute;
  inset: 0;
  top: 0;
  height: 100%;
}

.no-motion .fixbg {
  position: absolute;
  inset: 0;
  height: 100%;
}

.site-foot {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--dark);
  color: rgba(246, 242, 232, 0.85);
  padding: clamp(60px, 8vw, 100px) clamp(22px, 5vw, 64px) clamp(150px, 16vw, 210px);
}

/* three.jsの波（WebGL不可時はCSSの薄い層でフォールバック） */
.foot-wave {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
  pointer-events: none;
}

.site-foot::before { /* WebGL不可時のフォールバック＝静かな水面の階調 */
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(246, 242, 232, 0.055) 60%, rgba(246, 242, 232, 0.09));
}

.f-grid {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 44px;
  align-items: start;
}

.f-brand .b-en {
  font-family: var(--en);
  font-size: 26px;
  letter-spacing: 0.34em;
  color: var(--ivory);
}

.f-brand .b-jp {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.4em;
  color: rgba(246, 242, 232, 0.55);
  margin-top: 8px;
}

.f-addr {
  margin-top: 26px;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 2.3;
  color: rgba(246, 242, 232, 0.6);
}

.f-nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 44px;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.f-nav a {
  color: rgba(246, 242, 232, 0.75);
  padding: 4px 0;
  position: relative;
  transition: color 0.3s;
}

.f-nav a:hover {
  color: var(--ivory);
}

.f-legal {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(246, 242, 232, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  align-items: center;
  justify-content: space-between;
}

.f-legal ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  list-style: none;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.f-legal a {
  color: rgba(246, 242, 232, 0.55);
  transition: color 0.3s;
}

.f-legal a:hover {
  color: var(--ivory);
}

.f-copy {
  font-family: var(--en);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  color: rgba(246, 242, 232, 0.45);
}

.f-recaptcha {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 14px auto 0;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: rgba(246, 242, 232, 0.35);
}

.f-recaptcha a {
  color: rgba(246, 242, 232, 0.5);
  text-decoration: underline;
  transition: color 0.3s;
}

.f-recaptcha a:hover {
  color: var(--ivory);
}

@media (max-width: 900px) {
  .f-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .f-legal {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-foot {
    padding-bottom: calc(214px + env(safe-area-inset-bottom));
  }
}
.sec {
  position: relative;
  padding: clamp(96px, 12vw, 170px) clamp(22px, 5vw, 64px);
}

.sec-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.kicker {
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: 0.44em;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--green);
}

.sec-title {
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.9;
}

.sec-lead {
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 2.4;
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  font-family: var(--en);
  font-size: 12.5px;
  letter-spacing: 0.3em;
  color: var(--green);
}

.link-more::after {
  content: "→";
  transition: transform 0.4s var(--ease);
}

.link-more:hover::after {
  transform: translateX(7px);
}

.page-head {
  position: relative;
  background: var(--bg);
  padding: calc(var(--head-h) + clamp(52px, 7vw, 104px)) clamp(22px, 5vw, 64px) clamp(56px, 7vw, 96px);
}

.crumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--en);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  color: var(--ink-dim);
  margin-bottom: clamp(36px, 4.5vw, 64px);
}

.crumb a {
  transition: color 0.3s;
}

.crumb a:hover {
  color: var(--ink);
}

.crumb .sep {
  width: 20px;
  height: 1px;
  background: var(--line);
  display: inline-block;
}

.crumb [aria-current] {
  color: var(--ink);
}

.page-title {
  font-size: clamp(28px, 3.6vw, 50px);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.7;
}

.page-head .sec-lead {
  max-width: 600px;
}

.page-head .spec-chips {
  margin-top: 30px;
}

/* 写真つき見出し（VILLAS）：枠は固定・中の画像だけパララックス（CONCEPTと同じ方式） */
.ph-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}

.ph-fig {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/5;
  background: #E2DACA;
  box-shadow: 0 30px 70px rgba(42, 42, 37, 0.18);
  margin: 0;
}

.ph-fig img {
  position: absolute;
  left: 0;
  top: -22.5%;
  width: 100%;
  height: 145%;
  object-fit: cover;
  will-change: transform;
}

.ph-cap {
  position: absolute;
  right: 2px;
  bottom: -30px;
  font-family: var(--en);
  font-size: 10.5px;
  letter-spacing: 0.3em;
  color: var(--ink-dim);
}

@media (max-width: 900px) {
  .ph-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .ph-fig {
    aspect-ratio: 4/3;
    max-width: none;
  }
  .ph-cap {
    bottom: -26px;
  }
}
.ask-ai {
  position: fixed;
  right: clamp(18px, 2.2vw, 34px);
  bottom: clamp(18px, 2.2vw, 34px);
  z-index: 66;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease), visibility 0.55s;
  /* 閉じている間もパネル分のレイアウト領域を持つため、
     コンテナ自体は当たり判定を持たせない（スライダーのスワイプを塞ぐ） */
  pointer-events: none;
}

.ask-btn, .ask-panel {
  pointer-events: auto;
}

.ask-ai.is-on {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.menu-open .ask-ai {
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
}

.ask-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  background: rgba(251, 248, 241, 0.94);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  padding: 12px 21px 12px 17px;
  box-shadow: 0 10px 30px rgba(42, 42, 37, 0.15);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}

.ask-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(42, 42, 37, 0.22);
  background: #FBF8F1;
}

.ask-ico {
  display: block;
  width: 14px;
  height: 14px;
  color: var(--green);
  flex: 0 0 auto;
}

.ask-ico svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.ask-label {
  margin-right: -0.2em;
} /* letter-spacing の末尾アキを打ち消す */
.ask-panel {
  width: min(304px, 100vw - 36px);
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 20px 16px;
  box-shadow: 0 26px 64px rgba(42, 42, 37, 0.22);
  transform-origin: 100% 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.97);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
}

.ask-ai.is-open .ask-panel {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.ask-kicker {
  font-family: var(--en);
  font-size: 10px;
  letter-spacing: 0.34em;
  color: var(--ink-dim);
}

.ask-title {
  font-size: 14.5px;
  line-height: 1.75;
  letter-spacing: 0.04em;
  margin-top: 8px;
}

.ask-list {
  list-style: none;
  margin-top: 14px;
  border-top: 1px solid var(--line);
}

.ask-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 2px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  letter-spacing: 0.06em;
  transition: color 0.3s, padding 0.35s var(--ease);
}

.ask-list a:hover {
  color: var(--green);
  padding-left: 6px;
}

.ask-list .arr {
  font-family: var(--en);
  font-size: 12px;
  color: var(--ink-dim);
  transition: transform 0.35s var(--ease);
}

.ask-list a:hover .arr {
  transform: translateX(4px);
  color: var(--ink);
}

.ask-note {
  font-size: 10.5px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--ink-dim);
  margin-top: 12px;
}

@media (max-width: 900px) {
  .ask-ai {
    right: 14px;
    bottom: calc(84px + env(safe-area-inset-bottom));
  }
  .ask-btn {
    width: 50px;
    height: 50px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    gap: 0;
  }
  .ask-label {
    display: none;
  }
  .ask-ico {
    width: 17px;
    height: 17px;
  }
  .ask-panel {
    width: min(300px, 100vw - 28px);
  }
}
.sp-reserve {
  display: none;
}

@media (max-width: 900px) {
  .sp-reserve {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 65;
    transform: translateY(110%);
    transition: transform 0.5s var(--ease);
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(242, 237, 227, 0.92);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
  }
  .sp-reserve.is-on {
    transform: none;
  }
  .sp-reserve a {
    display: block;
    text-align: center;
    background: var(--green);
    color: #FBF8F1;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-indent: 0.3em;
    padding: 15px 10px;
    border-radius: 999px;
  }
}
.hero {
  position: relative;
  height: 100svh;
  overflow: hidden;
  background: var(--dark);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.hero-canvas.is-on {
  display: block;
}

.hero-cols {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-cols .col {
  position: relative;
  border-right: 1px solid rgba(246, 242, 232, 0.16);
}

.hero-cols .col:last-child {
  border-right: none;
}

.hero-cols .col .tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 23, 28, 0.28) 0%, rgba(20, 23, 28, 0.04) 42%, rgba(20, 23, 28, 0.36) 100%);
  transition: background 0.6s var(--ease);
}

.hero-cols:hover .col:not(:hover) .tint {
  background: linear-gradient(180deg, rgba(20, 23, 28, 0.5), rgba(20, 23, 28, 0.55));
}

.hero-cols .col .cap {
  position: absolute;
  left: 24px;
  bottom: 26px;
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: 0.38em;
  color: var(--ivory);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.hero-cols .col .cap i {
  display: block;
  font-style: normal;
  font-family: var(--jp);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.28em;
  color: rgba(246, 242, 232, 0.72);
  margin-top: 6px;
}

.hero-cols .col:hover .cap {
  opacity: 1;
  transform: none;
}

.shutter {
  position: absolute;
  inset: 0;
  background: var(--bg);
  transform-origin: top;
}

.hero-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
  z-index: 5;
  color: var(--ivory);
}

.hero-logo {
  font-family: var(--en);
  font-weight: 400;
  font-size: clamp(44px, 6.6vw, 96px);
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  line-height: 1;
  text-shadow: 0 2px 44px rgba(10, 12, 15, 0.5);
}

.hero-sub {
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: 0.6em;
  text-indent: 0.6em;
  margin-top: 22px;
  opacity: 0.9;
}

.hero-copy {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  margin-top: 30px;
  text-shadow: 0 1px 24px rgba(10, 12, 15, 0.55);
}

.hero-rule {
  width: 1px;
  height: 56px;
  background: rgba(246, 242, 232, 0.85);
  margin: 34px auto 0;
  transform: scaleY(0);
  transform-origin: top;
  box-shadow: 0 0 12px rgba(246, 242, 232, 0.35);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 6;
  font-family: var(--en);
  font-size: 10px;
  letter-spacing: 0.5em;
  color: rgba(246, 242, 232, 0.75);
}

.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 34px;
  background: rgba(246, 242, 232, 0.6);
  margin: 10px auto 0;
  animation: cue 2.4s var(--ease) infinite;
}

@keyframes cue {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  45% {
    transform: scaleY(1);
    transform-origin: top;
  }
  55% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.hero-sp {
  display: none;
}

@media (max-width: 900px) {
  .hero-cols, .hero-canvas, .hero-video {
    display: none;
  }
  .hero-sp {
    display: block;
    position: absolute;
    inset: 0;
  }
  .hero-sp video, .hero-sp .sp-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s var(--ease);
  }
  .hero-sp .is-show {
    opacity: 1;
  }
  .hero-sp .sp-tint {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 23, 28, 0.36), rgba(20, 23, 28, 0.08) 45%, rgba(20, 23, 28, 0.5));
  }
  .sp-meta {
    position: absolute;
    left: 22px;
    bottom: 64px;
    z-index: 6;
  }
  .sp-cap {
    font-family: var(--en);
    font-size: 11px;
    letter-spacing: 0.38em;
    color: var(--ivory);
  }
  .sp-cap i {
    display: block;
    font-style: normal;
    font-weight: 500;
    font-family: var(--jp);
    font-size: 10px;
    letter-spacing: 0.26em;
    color: rgba(246, 242, 232, 0.72);
    margin-top: 6px;
  }
  .sp-dots {
    position: absolute;
    right: 22px;
    bottom: 70px;
    z-index: 6;
    display: flex;
    gap: 8px;
  }
  .sp-dots b {
    width: 22px;
    height: 2px;
    background: rgba(246, 242, 232, 0.35);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
  }
  .sp-dots b.on::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--green);
  }
  .hero-logo {
    font-size: clamp(30px, 9vw, 42px);
    letter-spacing: 0.24em;
    text-indent: 0.24em;
  }
  .hero-sub {
    font-size: 10px;
    letter-spacing: 0.44em;
    text-indent: 0.44em;
  }
  .hero-copy {
    font-size: 12px;
    letter-spacing: 0.28em;
    text-indent: 0.28em;
    margin-top: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-cue::after {
    animation: none;
  }
}
.concept {
  background: var(--bg);
}

.c-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(44px, 6vw, 96px);
  align-items: center;
}

.c-figs {
  position: relative;
  min-height: 540px;
}

.figc {
  position: absolute;
  overflow: hidden;
  border-radius: 8px;
}

/* 枠は動かさない。内側の画像だけをスライドさせる（背景固定と同じ見え方）
   縦枠＝縦に大きく動かす。画像は枠より45%高く敷き、その余白ぶんだけ動かす */
.figc img {
  position: absolute;
  left: 0;
  top: -22.5%;
  width: 100%;
  height: 145%;
  object-fit: cover;
  will-change: transform;
}

.figc-a {
  width: 66%;
  aspect-ratio: 3/4;
  right: 0;
  top: 0;
  box-shadow: 0 30px 70px rgba(42, 42, 37, 0.18);
}

.figc-b {
  width: 44%;
  aspect-ratio: 4/5;
  left: 0;
  bottom: 0;
  box-shadow: 0 30px 70px rgba(42, 42, 37, 0.18);
}

.c-cap {
  position: absolute;
  left: 2px;
  bottom: -30px;
  font-family: var(--en);
  font-size: 10.5px;
  letter-spacing: 0.3em;
  color: var(--ink-dim);
}

@media (max-width: 900px) {
  .c-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .c-figs {
    min-height: 0;
    height: 420px;
  }
}
.band {
  position: relative;
  height: min(64svh, 600px);
  overflow: clip;
  background: #DCE6E4;
}

@media (max-width: 900px) {
  .band {
    height: min(52svh, 420px);
  }
}
.ambience {
  max-width: 1600px;
  margin: 0 auto;
  overflow: hidden;
  padding: clamp(96px, 13vw, 200px) clamp(20px, 3.5vw, 48px) 0;
}

.amb-group {
  display: flex;
}

.amb-g1 {
  align-items: flex-end;
  margin-bottom: clamp(120px, 18vw, 320px);
  padding-right: 2.4vw;
}

.amb-g1 .amb-item:nth-child(2) {
  margin-left: clamp(18px, 3.4vw, 56px);
}

.amb-g2 {
  justify-content: flex-end;
  padding-left: 2.4vw;
}

.amb-g2 .amb-item:nth-child(1) {
  margin-top: clamp(-170px, -9.5vw, -56px);
  margin-right: clamp(22px, 5vw, 80px);
}

/* 幅は item に持たせる（% の基準を確定させる）。figは常に item いっぱい */
.amb-item {
  display: flex;
  align-items: flex-start;
}

.amb-i1 {
  width: 60%;
}

.amb-i2 {
  width: 28%;
}

.amb-i3 {
  width: 34%;
}

.amb-i4 {
  width: 54%;
}

/* 登場エフェクトなし（最初から表示）。動くのは内側の画像のパララックスだけ */
.amb-fig {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0;
  background: #E4DDCE;
}

/* 枠は動かさない。内側の画像だけを上下にスライド（背景固定と同じ見え方）
   枠の高さの1.90倍を敷き、上下に45%ずつはみ出させる → data-plx は ±22 まで使える
   （22% × 190% = 41.8% ＜ 45%。総移動は枠の高さの約84%）
   この3つの数字（190% / -45% / ±22）と tools/build-photos.py の AMB=1.90 は必ず一緒に直す */
.amb-fig img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 190%;
  top: -45%;
  object-fit: cover;
  will-change: transform;
}

.amb-1 {
  aspect-ratio: 1030/900;
}

.amb-4 {
  aspect-ratio: 912/792;
}

.amb-2 {
  aspect-ratio: 476/767;
}

.amb-3 {
  aspect-ratio: 583/767;
}

.amb-2 {
  margin-bottom: clamp(-190px, -11vw, -56px);
}

@media (max-width: 900px) {
  .ambience {
    padding-top: clamp(70px, 16vw, 110px);
  }
  .amb-group {
    flex-direction: column;
  }
  .amb-g1 {
    margin-bottom: 26px;
    padding-right: 18px;
    align-items: stretch;
  }
  .amb-g1 .amb-item:nth-child(2) {
    margin: 26px 74px 0 38px;
  }
  .amb-g2 {
    padding-left: 18px;
    align-items: stretch;
  }
  .amb-g2 .amb-item:nth-child(1) {
    margin: 0 38px 26px 74px;
  }
  .amb-i1, .amb-i2, .amb-i3, .amb-i4 {
    width: auto;
  }
  .amb-2 {
    margin-bottom: 0;
  }
}
.scenes {
  background: var(--bg-card);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.scenes .sec-head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 70px);
}

.scenes .kicker {
  margin-bottom: 20px;
}

.stage-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(20px, 3.4vw, 56px);
  max-width: 1440px;
  margin: 0 auto;
}

/* ブロック自体はステージ側（右）に寄せる。見出しと数字は右揃えのまま＝短い要素なので
   2行の長さの差が「意図した段差」に見え、視線がステージへ向かう */
.meta-l {
  justify-self: end;
  text-align: right;
  max-width: 320px;
}

.stage-copy {
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 2.1;
  white-space: nowrap;
}

/* ⚠️ 本文だけは左揃え。3行以上の和文を右揃えにすると左端が毎行バラつき、
   最終行（「…ません。」など）が孤立して読みにくくなる（1400px幅では2行で目立たないが、
   1200px前後では最終行が100px以上内側から始まっていた） */
.stage-lead {
  font-size: 12.5px;
  color: var(--ink-dim);
  margin-top: 16px;
  line-height: 2.2;
  text-align: left;
}

.counter {
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--ink-dim);
  margin-top: 26px;
  display: block;
}

.counter b {
  color: var(--ink);
  font-weight: 400;
  font-size: 20px;
}

.stage-core {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 34px);
}

.stage {
  position: relative;
  height: min(66svh, 640px);
  aspect-ratio: 9/16;
}

.stage-frame {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #E2DACA;
  box-shadow: 0 34px 90px rgba(42, 42, 37, 0.2);
}

.stage-frame video, .stage-frame .stage-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s var(--ease);
}

.stage-frame .is-show {
  opacity: 1;
}

.stage-word {
  position: absolute;
  left: -0.48em;
  bottom: -0.26em;
  z-index: 2;
  font-family: var(--en);
  font-size: clamp(56px, 6.4vw, 96px);
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--ink);
  pointer-events: none;
  white-space: nowrap;
}

.stage-word span {
  display: inline-block;
}

.stage-jp {
  position: absolute;
  left: 4px;
  bottom: -46px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--green);
}

.side {
  width: clamp(120px, 12vw, 190px);
  aspect-ratio: 9/16;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: none;
  background: #E2DACA;
  padding: 0;
}

.side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) brightness(0.97);
  transform: scale(1.02);
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}

.side::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(242, 237, 227, 0.4);
  transition: background 0.5s var(--ease);
}

.side:hover img {
  transform: scale(1.07);
  filter: none;
}

.side:hover::after {
  background: rgba(242, 237, 227, 0.05);
}

.side .dir {
  position: absolute;
  z-index: 2;
  bottom: 12px;
  font-family: var(--en);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--ink);
  background: rgba(251, 248, 241, 0.9);
  padding: 6px 12px;
  border-radius: 999px;
}

.side-prev .dir {
  left: 12px;
}

.side-next .dir {
  right: 12px;
}

.meta-r {
  justify-self: start;
  max-width: 230px;
}

.next-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ink-dim);
}

.next-label b {
  color: var(--ink);
  font-family: var(--en);
  font-weight: 400;
  letter-spacing: 0.18em;
}

.snap-zone {
  display: none;
}

@media (max-width: 900px) {
  .stage-wrap {
    display: none;
  }
  .snap-zone {
    display: block;
  }
  .snap {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 8px 22px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .snap::-webkit-scrollbar {
    display: none;
  }
  .snap .card {
    flex: 0 0 80vw;
    aspect-ratio: 9/14;
    scroll-snap-align: center;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: #E2DACA;
    box-shadow: 0 18px 44px rgba(42, 42, 37, 0.18);
  }
  .snap .card img, .snap .card video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .snap .card video {
    opacity: 0;
    transition: opacity 0.8s var(--ease);
  }
  .snap .card video.is-live {
    opacity: 1;
  }
  .snap .card .tag {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 2;
    font-family: var(--en);
    font-size: 11px;
    letter-spacing: 0.28em;
    color: var(--ink);
    background: rgba(251, 248, 241, 0.92);
    padding: 7px 14px;
    border-radius: 999px;
  }
  .sp-scene-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 0;
  }
  .sp-word {
    font-family: var(--en);
    font-size: 40px;
    letter-spacing: 0.05em;
    line-height: 1;
  }
  .sp-jp {
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.28em;
    color: var(--green);
    margin-top: 6px;
  }
  .sp-nav {
    display: flex;
    gap: 10px;
  }
  .sp-nav button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--bg);
    color: var(--ink);
    font-family: var(--en);
    font-size: 15px;
    cursor: pointer;
  }
}
.villas {
  background: var(--bg);
}

.v-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: end;
  margin-bottom: clamp(36px, 4vw, 56px);
}

.spec-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.spec-chips span {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  background: var(--bg-card);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.spec-chips span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.v-slider {
  position: relative;
}

.v-viewport {
  overflow: hidden;
  margin: 0 calc(50% - 50vw);
  padding: 0 clamp(22px, 4vw, 48px);
  cursor: grab;
  touch-action: pan-y;
}

.v-viewport.is-drag {
  cursor: grabbing;
}

.v-track {
  display: flex;
  gap: clamp(16px, 1.8vw, 26px);
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.v-card .v-img {
  transform: translateZ(0);
}

.v-ctrl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 26px;
}

.v-count {
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--ink-dim);
}

.v-count b {
  color: var(--ink);
  font-weight: 400;
  font-size: 20px;
}

.v-hint {
  font-family: var(--en);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--ink-dim);
  display: flex;
  align-items: center;
  gap: 12px;
}

.v-hint::before, .v-hint::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--line);
}

.v-nav {
  display: flex;
  gap: 10px;
}

.v-nav button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg-card);
  color: var(--ink);
  font-family: var(--en);
  font-size: 15px;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.v-nav button:hover {
  background: var(--green);
  border-color: var(--green);
  color: #FBF8F1;
}

.v-card {
  display: block;
  position: relative;
  flex: 0 0 clamp(260px, 25vw, 380px);
  user-select: none;
  -webkit-user-drag: none;
}

.v-card img {
  -webkit-user-drag: none;
}

.v-card.is-soon .v-img::after {
  background: linear-gradient(180deg, rgba(242, 237, 227, 0.35) 0%, rgba(20, 23, 28, 0.5) 100%);
}

.v-card.is-soon .v-img img {
  filter: saturate(0.35) brightness(1.02);
}

.v-card.is-soon .v-name small {
  color: rgba(246, 242, 232, 0.7);
}

.v-card .v-img {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/5;
  background: #E2DACA;
}

.v-card .v-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.8s var(--ease);
}

.v-card:hover .v-img img {
  transform: scale(1.08);
}

.v-card .v-img::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(20, 23, 28, 0.04) 38%, rgba(20, 23, 28, 0.34) 66%, rgba(20, 23, 28, 0.72));
  transition: opacity 0.5s var(--ease);
}

.v-tag {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--ink);
  background: rgba(251, 248, 241, 0.92);
  padding: 6px 13px;
  border-radius: 999px;
}

.v-name {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;
  color: var(--ivory);
  font-family: var(--en);
  font-size: 21px;
  letter-spacing: 0.14em;
}

.v-name small {
  display: block;
  font-family: var(--jp);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  margin-top: 6px;
  color: rgba(246, 242, 232, 0.85);
}

.v-arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(246, 242, 232, 0.7);
  color: var(--ivory);
  display: grid;
  place-items: center;
  font-family: var(--en);
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}

.v-card:hover .v-arrow {
  background: var(--green);
  border-color: var(--green);
  transform: translateX(3px);
}

.v-note {
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
}

@media (max-width: 900px) {
  .v-head {
    grid-template-columns: 1fr;
  }
  .v-card {
    flex: 0 0 78vw;
  }
  .v-viewport {
    padding: 0 18px;
  }
  .v-hint {
    display: none;
  }
}
.option {
  background: var(--bg-card);
  border-top: 1px solid var(--line);
}

.o-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(36px, 4vw, 56px);
}

.o-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.o-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(42, 42, 37, 0.14);
}

.o-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.o-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.o-card:hover .o-img img {
  transform: scale(1.06);
}

.o-body {
  padding: 28px 30px 32px;
}

.o-body h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.o-body h3 small {
  display: block;
  font-family: var(--en);
  font-weight: 400;
  font-size: 10.5px;
  letter-spacing: 0.3em;
  color: var(--green);
  margin-bottom: 10px;
}

.o-body p {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 2.2;
}

@media (max-width: 900px) {
  .o-grid {
    grid-template-columns: 1fr;
  }
}
.info {
  background: var(--bg);
}

.i-list {
  margin-top: clamp(28px, 3vw, 44px);
  border-top: 1px solid var(--line);
}

.i-row {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 6px;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease), padding 0.3s var(--ease);
}

.i-row:hover {
  background: var(--bg-card);
  padding-left: 16px;
}

.i-date {
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--green);
}

.i-title {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.i-row .arr {
  font-family: var(--en);
  color: var(--ink-dim);
  transition: transform 0.35s var(--ease), color 0.35s;
}

.i-row:hover .arr {
  transform: translateX(5px);
  color: var(--green);
}

@media (max-width: 900px) {
  .i-row {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 4px 16px;
    padding: 18px 4px;
  }
  .i-date {
    grid-row: 1;
  }
  .i-title {
    grid-row: 2;
    grid-column: 1;
  }
  .i-row .arr {
    grid-row: 1/3;
    align-self: center;
  }
}
.cta-band {
  position: relative;
  height: min(78svh, 660px);
  overflow: clip;
  display: grid;
  place-items: center;
  text-align: center;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 23, 28, 0.5), rgba(20, 23, 28, 0.62));
}

.cta-inner {
  position: relative;
  z-index: 2;
  color: var(--ivory);
  padding: 0 24px;
}

.cta-kicker {
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  color: rgba(246, 242, 232, 0.72);
}

.cta-title {
  font-size: clamp(22px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  margin-top: 22px;
  line-height: 1.9;
}

.cta-btn {
  display: inline-block;
  margin-top: 38px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  color: var(--ivory);
  border: 1px solid rgba(246, 242, 232, 0.75);
  border-radius: 999px;
  padding: 17px 52px;
  position: relative;
  overflow: hidden;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
}

.cta-btn span {
  position: relative;
  z-index: 1;
}

.cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green);
  transform: translateY(101%);
  transition: transform 0.45s var(--ease);
}

.cta-btn:hover {
  border-color: var(--green);
}

.cta-btn:hover::before {
  transform: none;
}

.vl {
  background: var(--bg-card);
  border-top: 1px solid var(--line);
}

.vl-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(40px, 5vw, 72px) clamp(20px, 2.6vw, 40px);
  align-items: start;
}

.vl-card:nth-child(3n+2) {
  margin-top: clamp(40px, 5vw, 80px);
} /* 中央列を下げて段差のリズムを作る */
.vl-card {
  display: block;
  position: relative;
}

.vl-img {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/5;
  background: #E2DACA;
}

.vl-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.8s var(--ease);
}

.vl-card:hover .vl-img img {
  transform: scale(1.07);
}

.vl-img::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(20, 23, 28, 0.02), rgba(20, 23, 28, 0.14));
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.vl-card:hover .vl-img::after {
  opacity: 1;
}

.vl-body {
  padding: 22px 4px 0;
}

.vl-idx {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--green);
}

.vl-idx::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.vl-name {
  margin-top: 14px;
  font-family: var(--en);
  font-size: clamp(19px, 1.6vw, 23px);
  letter-spacing: 0.1em;
  line-height: 1.4;
  color: var(--ink);
}

.vl-name small {
  display: block;
  font-family: var(--jp);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  color: var(--ink-dim);
  margin-top: 8px;
}

.vl-desc {
  margin-top: 14px;
  font-size: 13px;
  line-height: 2.1;
  color: var(--ink-soft);
}

.vl-feat {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  margin-top: 14px;
  list-style: none;
}

.vl-feat li {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 12px;
  background: var(--bg);
}

.vl-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  font-family: var(--en);
  font-size: 11.5px;
  letter-spacing: 0.26em;
  color: var(--green);
}

.vl-cta::after {
  content: "→";
  transition: transform 0.4s var(--ease);
}

.vl-card:hover .vl-cta::after {
  transform: translateX(6px);
}

.vl .v-note {
  margin-top: clamp(40px, 5vw, 64px);
}

.vl .v-note + .v-note {
  margin-top: 8px;
}

@media (max-width: 1100px) {
  .vl-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .vl-card:nth-child(3n+2) {
    margin-top: 0;
  }
  .vl-card:nth-child(2n) {
    margin-top: clamp(40px, 5vw, 80px);
  }
}
@media (max-width: 640px) {
  .vl-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .vl-card:nth-child(2n) {
    margin-top: 0;
  }
}
.info-list {
  padding-top: 0;
}

.y-group {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 0 24px;
  border-top: 1px solid var(--line);
}

.y-group .i-list {
  margin-top: 0;
  border-top: 0;
}

.y-group + .y-group {
  border-top: 0;
} /* 上のグループ最終行の下線と二重にならないように */
.y-label {
  font-family: var(--en);
  font-size: 30px;
  letter-spacing: 0.1em;
  color: var(--ink);
  line-height: 1;
  padding-top: 26px;
  position: sticky;
  top: calc(var(--head-h) + 20px);
  align-self: start;
}

.y-label small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.34em;
  color: var(--ink-dim);
  margin-top: 10px;
}

@media (max-width: 900px) {
  .y-group {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .y-label {
    position: static;
    padding: 22px 4px 0;
    font-size: 24px;
  }
  .y-label small {
    display: inline;
    margin-left: 12px;
  }
}
.post-inner {
  max-width: 760px;
  margin: 0 auto;
}

.page-head--post {
  padding-bottom: clamp(40px, 5vw, 64px);
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.post-meta time {
  font-family: var(--en);
  font-size: 12.5px;
  letter-spacing: 0.2em;
  color: var(--green);
}

.post-cat {
  font-family: var(--en);
  font-size: 9.5px;
  letter-spacing: 0.28em;
  color: var(--ink-dim);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 12px;
}

.post-title {
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

.post-sec {
  padding-top: 0;
}

.post-eyecatch {
  overflow: hidden;
  background: #E2DACA;
  margin: 0 0 clamp(36px, 5vw, 56px);
}

.post-eyecatch img {
  width: 100%;
  height: auto;
}

.post-body {
  font-size: 14.5px;
  line-height: 2.3;
  letter-spacing: 0.05em;
  color: var(--ink);
}

.post-body p + p {
  margin-top: 1.5em;
}

.post-body h2 {
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.8;
  margin: 2.6em 0 1em;
  padding-left: 18px;
  border-left: 2px solid var(--green);
}

.post-body ul {
  list-style: none;
  margin: 1.1em 0;
}

.post-body li {
  position: relative;
  padding-left: 20px;
  margin: 0.3em 0;
}

.post-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1em;
  width: 8px;
  height: 1px;
  background: var(--green);
}

.post-body a:not(.post-btn) {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--line);
  transition: text-decoration-color 0.3s;
}

.post-body a:not(.post-btn):hover {
  text-decoration-color: var(--green);
}

.post-body figure {
  margin: 2.2em 0;
  border-radius: 8px;
  overflow: hidden;
}

.post-body figcaption {
  font-size: 11px;
  color: var(--ink-dim);
  margin-top: 10px;
  letter-spacing: 0.08em;
}

.post-note {
  font-size: 12.5px;
  color: var(--ink-dim);
  border-top: 1px solid var(--line);
  padding-top: 1.2em;
  margin-top: 2.4em;
}

.post-spec {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 28px;
  margin: 1.8em 0;
  padding: 24px 28px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13.5px;
}

.post-spec dt {
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--green);
  padding-top: 0.4em;
}

.post-spec dd {
  color: var(--ink);
  margin: 0;
}

.post-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 1.6em;
  padding: 14px 30px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--ink);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.post-btn::after {
  content: "→";
  font-family: var(--en);
  transition: transform 0.4s var(--ease);
}

.post-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: #FBF8F1;
}

.post-btn:hover::after {
  transform: translateX(5px);
}

.post-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-top: clamp(56px, 7vw, 90px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.pn {
  display: block;
  min-width: 0;
}

.pn small {
  display: block;
  font-family: var(--en);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ink-dim);
  margin-bottom: 8px;
}

.pn .pn-t {
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--ink);
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s;
}

.pn:hover .pn-t {
  color: var(--green);
}

.pn-next {
  text-align: right;
}

.pn-empty {
  visibility: hidden;
}

.pn-list {
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--green);
  white-space: nowrap;
  padding: 12px 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.pn-list:hover {
  background: var(--green);
  border-color: var(--green);
  color: #FBF8F1;
}

@media (max-width: 900px) {
  .post-nav {
    grid-template-columns: 1fr 1fr;
  }
  .pn-list {
    grid-column: 1/3;
    justify-self: center;
    order: 3;
  }
  .post-spec {
    grid-template-columns: 1fr;
    gap: 4px 0;
    padding: 20px 22px;
  }
  .post-spec dt {
    padding-top: 0.8em;
  }
  .post-spec dt:first-child {
    padding-top: 0;
  }
}
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
}

[data-clip] {
  clip-path: inset(100% 0 0 0);
}

.no-motion [data-reveal] {
  opacity: 1;
  transform: none;
}

.no-motion [data-clip] {
  clip-path: none;
}

/*# sourceMappingURL=style.css.map */
