/* ===== Reset / Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== Scroll Reveal Animation ===== */
/* JS 有効時のみ初期非表示にする（JS 無効環境では常に表示） */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
  will-change: opacity, transform;
}

.js .reveal.reveal-left  { transform: translateX(-32px); }
.js .reveal.reveal-right { transform: translateX(32px); }
.js .reveal.reveal-zoom  { transform: scale(0.96); }

.js .reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* 連続要素のスタガード遅延 */
.js .reveal.delay-1 { transition-delay: 0.12s; }
.js .reveal.delay-2 { transition-delay: 0.24s; }
.js .reveal.delay-3 { transition-delay: 0.36s; }
.js .reveal.delay-4 { transition-delay: 0.48s; }
.js .reveal.delay-5 { transition-delay: 0.60s; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

:root {
  --bg-dark: #14151a;
  --bg-darker: #0e0f12;
  --bg-section: #181a1f;
  --bg-cream: #f3ede2;
  --text-main: #ffffff;
  /* --text-sub: #b9b9bb; */
  --text-sub: #ffffff;
  --text-mute: #8a8a8c;
  --gold: #c8a45c;
  --serif: "Cormorant Garamond", "Times New Roman", "Yu Mincho", "游明朝", "Hiragino Mincho ProN", serif;
  --jp-serif: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", "游ゴシック", Meiryo, sans-serif;
}

html,
body {
  background: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  /* SPで横スクロール（右端の余白）を防ぐ */
  overflow-x: hidden;
  max-width: 100%;
}

html {
  scroll-padding-top: 88px;
}

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

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.wide {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* image blocks (real photos via <img class="ph">) */
.ph {
  background: linear-gradient(135deg, #2a2c33 0%, #1c1e23 100%);
  width: 100%;
  display: block;
  object-fit: cover;
}

.sp-only {
  display: none !important;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  background: rgba(18, 20, 24, 0.55);
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  width: 175px;
  height: 45px;
}

.brand-jp {
  font-family: var(--jp-serif);
  font-size: 22px;
  letter-spacing: .15em;
  color: #fff;
}

.brand-en {
  font-size: 9px;
  letter-spacing: .55em;
  margin-top: 6px;
  color: #d8d8da;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 16px;
  letter-spacing: .15em;
}

.nav a {
  color: #fff;
  font-size: 14px;
}

.nav .lang {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d8d8da;
  cursor: pointer;
}

.lang-switcher {
  position: relative;
}

.lang-switcher summary {
  list-style: none;
}

.lang-switcher summary::-webkit-details-marker {
  display: none;
}

.nav .lang .lang-icon {
  width: 18px;
  height: 18px;
}

.nav .lang .lang-caret {
  width: 10px;
  height: 6px;
}

.lang-switcher[open] .lang-caret {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 92px;
  padding: 8px 0;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(14, 16, 22, 0.95);
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  list-style: none;
  z-index: 70;
}

.lang-menu li {
  margin: 0;
  padding: 0;
}

.nav .lang-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 12px;
  letter-spacing: .16em;
  color: #e8e8ea;
  text-align: left;
}

.nav .lang-menu a[aria-current="page"] {
  color: #fff;
}

.nav .lang-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-invite {
  border: 1px solid #fff;
  padding: 10px 28px;
  font-size: 16px;
  letter-spacing: .2em;
  color: #fff;
  background: transparent;
}

/* ===== Hamburger toggle (mobile only) ===== */
.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  z-index: 60;
}

.nav-toggle-bar {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1.5px;
  background: #fff;
  transition: transform .3s ease, opacity .2s ease, top .3s ease;
}

.nav-toggle-bar:nth-child(1) { top: 14px; }
.nav-toggle-bar:nth-child(2) { top: 21px; }
.nav-toggle-bar:nth-child(3) { top: 28px; }

.is-nav-open .nav-toggle-bar:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.is-nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.is-nav-open .nav-toggle-bar:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  /* height: 920px; */
  height: 100vh;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .35) 0%, rgba(0, 0, 0, .05) 100%),
    url("assets/home/takamiya_exterior_night.webp") center/cover no-repeat,
    linear-gradient(180deg, #1a1d27 0%, #0d0f15 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-copy h1 {
  font-family: var(--jp-serif);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.6;
  letter-spacing: .08em;
}

.hero-copy h1 .small {
  font-size: 26px;
  display: block;
  margin-bottom: 6px;
}

.hero-tag {
  margin-top: 30px;
  font-size: 14px;
  letter-spacing: .45em;
  /* color: #cfcfd0; */
}

/* ===== Location Intro (light section) ===== */
.loc-intro {
  background:
    /* linear-gradient(180deg, rgba(231,227,218,.92), rgba(231,227,218,.82)), */
    url("assets/home/takamiya_bg_map_texture.webp") center/cover no-repeat;
  background-color: #e7e3da;
  color: #2a2a2a;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  height: 100vh;
}

.loc-intro::after {
  content: "";
  position: absolute;
  right: -10%;
  top: 10%;
  width: 70%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 255, 255, .6) 0%, rgba(255, 255, 255, 0) 60%);
  opacity: .5;
}

.loc-intro .label {
  font-size: 14px;
  letter-spacing: .35em;
  color: #6b6b6b;
  margin-bottom: 20px;
}

.loc-intro h2 {
  font-family: var(--jp-serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.loc-intro p {
  font-size: 16px;
  color: #231815;
  line-height: 2;
  max-width: 420px;
}

/* ===== Hero LDK (full wide image placeholder) ===== */
.hero-ldk {
  height: 720px;
}

.hero-ldk .ph {
  height: 100%;
}

/* ===== CONCEPT ===== */
.section {
  padding: 140px 0;
}

.section-title-en {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 48px;
  letter-spacing: .35em;
  text-align: center;
  color: #fff;
  line-height: 1.2;
}

.section-title-jp {
  font-family: var(--jp-serif);
  text-align: center;
  font-size: 28px;
  margin-top: 28px;
  color: #fff;
  letter-spacing: .1em;
}

.section-lead {
  text-align: center;
  font-size: 16px;
  color: var(--text-sub);
  line-height: 2;
  margin-top: 15px;
}

.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  margin-top: 140px;
}

.concept-card .ph {
  aspect-ratio: 3 / 4;
  width: 100%;
  object-fit: cover;
}

.concept-card .caption {
  margin-top: 18px;
  font-size: 16px;
  color: var(--text-sub);
  line-height: 1.9;
}

/* ===== Fireplace wide ===== */
.fireplace-wide {
  padding: 0 0 200px;
}

.fireplace-wide .ph {
  height: 540px;
  max-width: 1280px;
  margin: 0 auto;
}

.fireplace-wide .caption {
  max-width: 1280px;
  margin: 16px auto 0;
  /* padding: 0 40px; */
  font-size: 16px;
  color: var(--text-sub);
}

/* ===== RESIDENCE EXPERIENCE ===== */
.residence-exp .sub {
  text-align: center;
  font-size: 14px;
  letter-spacing: .4em;
  /* color: var(--text-mute); */
  margin-top: 14px;
}

/* ===== Subsection title (left aligned) ===== */
.sub-section {
  padding: 200px 0 130px;
}

.sub-section .wide {
  max-width: 1280px;
}

.sub-title-en {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: .2em;
  color: #fff;
  margin-bottom: 36px;
}

.sub-headline {
  font-family: var(--jp-serif);
  font-size: 28px;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 15px;
}

.sub-lead {
  font-size: 16px;
  color: var(--text-sub);
  line-height: 2;
  margin-bottom: 14px;
}

.sub-meta {
  font-size: 14px;
  color: var(--text-sub);
  letter-spacing: .1em;
  margin-bottom: 60px;
}

/* GARAGE & ENTRANCE */
.garage .tall {
  aspect-ratio: 14 / 17;
  object-fit: cover;
  max-width: 700px;
  margin: 140px auto 0;
}

.garage .tall-cap {
  /* max-width: 640px; */
  margin: 18px auto 140px;
  font-size: 16px;
  color: var(--text-sub);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

#living-room .two-col {
  gap: 18%;
}

.two-col .ph {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

#living-room .two-col .ph {
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
}

.two-col .caption {
  margin-top: 14px;
  font-size: 16px;
  color: var(--text-sub);
}


.btn-outline {
  display: inline-block;
  border: 1px solid #fff;
  padding: 14px 40px;
  font-size: 16px;
  letter-spacing: .2em;
  color: #fff;
  margin: 140px auto 0;
}

.btn-wrap {
  text-align: center;
}

/* LIVING ROOM big image */
.full-image {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.full-image .ph {
  height: 480px;
}

.full-image .caption {
  margin-top: 14px;
  font-size: 16px;
  color: var(--text-sub);
}

.wide-spaced {
  /* margin-top: 60px; */
}

/* DINING & KITCHEN small image */
.center-image .ph {
  max-width: 900px;
  margin: 140px auto 0;
  /* height: 480px; */
}

.center-image .caption {
  max-width: 900px;
  margin: 14px auto 0;
  font-size: 16px;
  color: var(--text-sub);
}

/* two-image with text */
.img-text-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: end;
  margin-top: 140px;
}

.img-text-grid .ph {
  aspect-ratio: 723 / 337;
}

.img-text-grid p {
  font-size: 16px;
  color: var(--text-sub);
  line-height: 2;
}

.img-text-grid-wide-right {
  grid-template-columns: 1fr 1.2fr;
}

/* BATH thumbnails */
.bath-main-image {
  /* height: 420px; */
}

.full-image:has(.bath-main-image) {
  margin-top: 140px;
}

.bath-grid .ph {
  /* height: 360px; */
  aspect-ratio: 1.1 / 1
}

.bath-grid-spaced {
  margin-top: 140px;
}

.note-img {
  text-align: right;
  font-size: 14px;
  /* color: var(--text-mute); */
  margin-top: 8px;
}

/* ARCHITECTURE */
.architecture .sub-jp {
  text-align: center;
  font-size: 16px;
  color: var(--text-sub);
  margin-top: 14px;
  font-family: var(--jp-serif);
  letter-spacing: .1em;
}

.architecture .sub-en {
  text-align: center;
  font-size: 16px;
  letter-spacing: .1em;
  /* color: var(--text-mute); */
  margin-top: 30px;
}

.arch-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
  margin-top: 80px;
  align-items: center;
}

.arch-row.reverse {
  grid-template-columns: 1fr 1.5fr;
}

.arch-row .ph {
  width: 100%;
}

.arch-row .label {
  font-size: 11px;
  letter-spacing: .25em;
  /* color: var(--gold); */
  margin-bottom: 10px;
}

.arch-row h3 {
  font-family: var(--jp-serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.arch-row p {
  font-size: 16px;
  color: var(--text-sub);
  line-height: 2;
  margin-bottom: 14px;
}

.arch-two-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.arch-two-img-compact {
  margin-top: 20px;
  /* max-width: 540px; */
}

.arch-row-spaced {
  margin-top: 140px;
}

.arch-thumb-small {
  /* height: 200px; */
}

.arch-thumb-medium {
  height: 300px;
}

/* LOCATION wide image + section */
.city-image {
  height: 750px;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, .35)), url("assets/home/takamiya_location_cityview.webp");
  background-size: cover;
  background-position: center;
}

.city-image-gradient {
  /* background-image: linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, .45)), url("assets/home/takamiya_location_cityview.webp"); */
  background-image: url("assets/home/takamiya_location_cityview.webp");
  background-size: cover;
  background-position: center;
}

.location-block {
  background: linear-gradient(180deg, #1a2c43 0%, #14151a 100%);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.location-block::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: url("assets/home/takamiya_location_cityview.webp") center/cover no-repeat;
  filter: blur(8px) brightness(0.9);
  transform: scale(1.08);
  z-index: -2;
}

/* ===== LOCATION セクション シーケンス演出 ===== */
/* 1. スクロール到達時は鮮明な背景が見える → 2. ぼかしがかかる → 3. テキストが順に現れる */
.js .location-block::before {
  filter: blur(0) brightness(1);
  transform: scale(1);
  transition: filter 0.6s ease-out 0.2s, transform 2s ease-out 0.2s;
}

.js .location-block.is-revealed::before {
  filter: blur(8px) brightness(0.9);
  transform: scale(1.08);
}

.js .location-block > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.js .location-block.is-revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* 各子要素の出現タイミング（背景ぼかしの後に順次） */
.js .location-block.is-revealed > *:nth-child(1) { transition-delay: 0.6s; }
.js .location-block.is-revealed > *:nth-child(2) { transition-delay: 0.8s; }
.js .location-block.is-revealed > *:nth-child(3) { transition-delay: 1.0s; }
.js .location-block.is-revealed > *:nth-child(4) { transition-delay: 1.2s; }
.js .location-block.is-revealed > *:nth-child(5) { transition-delay: 1.4s; }
.js .location-block.is-revealed > *:nth-child(6) { transition-delay: 1.6s; }

@media (prefers-reduced-motion: reduce) {
  .js .location-block::before {
    filter: blur(8px) brightness(0.9) !important;
    transform: scale(1.08) !important;
    transition: none !important;
  }
  .js .location-block > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}



.location-block h2 {
  color: #fff;
}

.location-block .sub-jp {
  text-align: center;
  font-family: var(--jp-serif);
  font-size: 28px;
  margin-top: 60px;
  color: #fff;
}

.location-block .lead {
  text-align: center;
  font-size: 16px;
  color: var(--text-sub);
  margin-top: 60px;
  line-height: 2;
}

.map-wrap {
  position: relative;
  max-width: 900px;
  margin: 140px auto 40px;
  /* padding: 0 40px; */
}

.map-wrap .map {
  width: 100%;
  height: 100%;
  aspect-ratio: 9 / 7;
  display: block;
  /* モノクロ化（コントラスト・明度を少し調整して落ち着いた印象に） */
  filter: grayscale(100%) contrast(1.05) brightness(1.02);
  /* background: #f1efe8 url("assets/home/takamiya_map_fukuoka.webp") center/cover no-repeat; */
}

/* 地図中央に立てるカスタムピン（クリック透過で地図操作を妨げない） */
/* .map-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 48px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 48'><path fill='%23c0392b' stroke='white' stroke-width='2' d='M18 2c-8.3 0-15 6.5-15 14.6 0 11 15 28.4 15 28.4s15-17.4 15-28.4C33 8.5 26.3 2 18 2z'/><circle cx='18' cy='16' r='5' fill='white'/></svg>") no-repeat center/contain;
  transform: translate(-50%, -100%);
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.35));
} */

/* iframeへの操作（ドラッグ/ズーム/クリック）を全て遮断し、クリックでGoogle Mapsを新規タブで開く */
.map-wrap .map-lock {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
  cursor: pointer;
  /* ピン自体（中央付近）はクリックを地図リンクとして受け取らせるため、ピンより下のレイヤーに */
}

/* ホバー時に表示するヒント */
.map-wrap .map-open-hint {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 4;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.08em;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.map-wrap:hover .map-open-hint,
.map-wrap:focus-within .map-open-hint {
  opacity: 1;
  transform: translateY(0);
}

.access-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #f3ede2;
  color: #2c2a26;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 30px 0;
}

.access-pills .pill {
  padding: 0;
  text-align: center;
  border-right: 1px solid #d9d3c4;
  font-size: 16px;
}

.access-pills .pill:last-child {
  border-right: none;
}

.access-pills .pill .lbl {
  color: #6a6a6a;
  font-size: 16px;
  margin-bottom: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.access-pills .pill .lbl .pill-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.access-pills .pill .val {
  color: var(--gold);
  font-size: 36px;
  font-family: var(--serif);
  font-weight: 700;
}

.access-pills .pill .val small {
  font-size: 16px;
  color: #6a6a6a;
}

.info-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1280px;
  margin: 70px auto 0;
  padding: 0 40px;
}

.info-cols h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: .25em;
  color: #fff;
  margin-bottom: 14px;
  /* border-bottom: 1px solid rgba(255, 255, 255, .3); */
}

.info-cols p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.9;
    padding-bottom: 10px;
}

.info-cols > div {
    border-bottom: 1px solid rgba(255, 255, 255, .3);

}

/* PLAN (cream bg) */
.plan {
  background: #fff;
  color: #2c2a26;
  padding: 200px 0;
}

.plan h2 {
  color: #2c2a26;
}

.plan-title {
  color: #2c2a26;
}

.plan-tabs {
  max-width: 1280px;
  margin: 60px auto 0;
  padding: 0 40px;
}

.floor-tabs {
  display: flex;
  gap: 60px;
  font-family: var(--serif);
  font-size: 32px;
  letter-spacing: .2em;
  margin-bottom: 30px;
}

.floor-tabs .floor-tab {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  letter-spacing: inherit;
  color: inherit;
  cursor: pointer;
}

.floor-tabs .active {
  border-bottom: 2px solid #2c2a26;
  padding-bottom: 4px;
}

.floor-tabs .inactive {
  color: #aaa;
}

.room-tabs {
  display: flex;
  gap: 24px;
  font-size: 12px;
  letter-spacing: .15em;
  /* padding-bottom: 14px; */
  /* border-bottom: 1px solid #d6cfbf;*/
  margin-bottom: 30px; 
  flex-wrap: wrap;
}

.room-tabs .room-tab {
  background: none;
  border: 0;
  padding: 0 5px 2px;
  font: inherit;
  letter-spacing: inherit;
  color: #999;
  cursor: pointer;
}

.room-tabs .active {
  color: #2c2a26;
  font-weight: 700;
  border-bottom: 1px solid #2c2a26;
  padding: 0 5px 2px;
}

.room-tabs span {
  color: #999;
}

.plan-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

.plan-grid .floor-plan {
  /* background: #fff url("assets/home/takamiya_floorplan_1f.webp") center/contain no-repeat;
  height: 360px;
  border: 1px solid #e6dfcf; */
}

.plan-grid .room-img {
}

/* PROPERTY OVERVIEW */
.overview {
  padding: 200px 0;
}

.overview .sub-jp {
  text-align: center;
  font-size: 16px;
  letter-spacing: .2em;
  color: var(--text-sub);
  margin-top: 14px;
}

.overview-table {
  max-width: 540px;
  margin: 60px auto 0;
  padding: 0 40px;
}

.overview-table dl {
  display: grid;
  grid-template-columns: 160px 1fr;
}

.overview-table dt {
  font-size: 16px;
  color: var(--text-sub);
  padding: 18px 0;
  border-bottom: 1px solid #2a2c32;
}

.overview-table dd {
  font-size: 16px;
  color: #fff;
  padding: 18px 0;
  border-bottom: 1px solid #2a2c32;
}

.overview-table dd small {
  display: block;
  /* color: var(--text-mute); */
  font-size: 13px;
  margin-top: 4px;
}

/* INVITATION (form on image bg) */
.invitation {
  padding: 200px 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .25)),
    url("assets/home/takamiya_entrance_night.webp") center/cover no-repeat,
    linear-gradient(135deg, #3a2c1a 0%, #1a1410 100%);
  /* background:
    url("assets/home/takamiya_entrance_night.webp") center/cover no-repeat; */
  text-align: center;
}

.invitation .title-en {
  color: #fff;
}

.invitation-sub-en {
  text-align: center;
  font-size: 14px;
  letter-spacing: .2em;
  color: #ddd;
  margin-top: 14px;
}

.invitation .desc {
  font-size: 16px;
  color: #eee;
  margin-top: 60px;
  line-height: 2;
}

.form-card {
  max-width: 720px;
  margin: 60px auto 0;
  background: #fff;
  color: #2c2a26;
  padding: 60px 60px 50px;
  text-align: left;
}

.field {
  margin-bottom: 28px;
}

.field .req {
  display: inline-block;
  background: #2c2a26;
  color: #fff;
  font-size: 10px;
  padding: 2px 8px;
  margin-right: 8px;
  letter-spacing: .1em;
}

.field .opt {
  display: inline-block;
  background: #b6b0a4;
  color: #fff;
  font-size: 10px;
  padding: 2px 8px;
  margin-right: 8px;
  letter-spacing: .1em;
}

.field .lbl {
  font-size: 16px;
  letter-spacing: .1em;
  color: #2c2a26;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 10px;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #c8c1b3;
  font-size: 16px;
  padding: 10px 0;
  background: transparent;
  font-family: inherit;
  color: #2c2a26;
}

.field .field-extra-line {
  margin-top: 10px;
}

.field textarea {
  min-height: 60px;
  resize: vertical;
}

.field .opts label {
  display: block;
  font-size: 16px;
  margin-top: 8px;
  cursor: pointer;
}

.field .prev-button {
  padding: 8px 12px;
  margin: 8px 0;
}

.privacy {
  text-align: center;
  font-size: 16px;
  margin: 30px 0 20px;
}

.submit {
  display: block;
  margin: 0 auto;
  background: #2c2a26;
  color: #fff;
  border: none;
  padding: 16px 60px;
  font-size: 16px;
  letter-spacing: .25em;
  cursor: pointer;
}

/* Footer */
.site-footer {
  background: #14151a;
  padding: 80px 0 50px;
}

.site-footer .brand-jp {
  font-size: 26px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: end;
  padding-bottom: 50px;
}

.footer-info {
  margin-top: 36px;
}

.footer-info .row {
  display: grid;
  grid-template-columns: 80px 1fr;
  font-size: 16px;
  padding: 5px 0;
  border-bottom: 1px solid #2a2c32;
}

.footer-info .row dt {
  color: var(--text-mute);
}

.footer-info .row dd {
  color: #fff;
  text-align: right;
}

.footer-right {
  text-align: right;
}

.footer-right .wrapper {
  text-align: center;
  max-width: 450px;
  margin-left: auto;
}

.footer-right .lead {
  font-size: 16px;
  color: var(--text-sub);
  line-height: 2;
}

.footer-right .hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  border: 1px solid #fff;
  padding: 14px 30px;
  font-size: 16px;
  letter-spacing: .2em;
  text-align: center;
}

.footer-right .hp-btn::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M13 16H2C0.9 16 0 15.1 0 14V3C0 1.9 0.9 1 2 1H7.5C7.9 1 8.25 1.35 8.25 1.75S7.9 2.5 7.5 2.5H2C1.7 2.5 1.5 2.7 1.5 3V14C1.5 14.3 1.7 14.5 2 14.5H13C13.3 14.5 13.5 14.3 13.5 14V8.5C13.5 8.1 13.85 7.75 14.25 7.75S15 8.1 15 8.5V14C15 15.1 14.1 16 13 16Z' fill='black'/><path d='M16 0.7C16 0.3 15.7 0 15.3 0H10.5C10.1 0 9.8 0.3 9.8 0.7S10.1 1.4 10.5 1.4H13.6L7 7.95C6.7 8.25 6.7 8.7 7 9C7.15 9.1 7.35 9.2 7.55 9.2S7.95 9.1 8.05 9L14.6 2.45V5.5C14.6 5.9 14.9 6.2 15.3 6.2S16 5.9 16 5.5V0.7Z' fill='black'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M13 16H2C0.9 16 0 15.1 0 14V3C0 1.9 0.9 1 2 1H7.5C7.9 1 8.25 1.35 8.25 1.75S7.9 2.5 7.5 2.5H2C1.7 2.5 1.5 2.7 1.5 3V14C1.5 14.3 1.7 14.5 2 14.5H13C13.3 14.5 13.5 14.3 13.5 14V8.5C13.5 8.1 13.85 7.75 14.25 7.75S15 8.1 15 8.5V14C15 15.1 14.1 16 13 16Z' fill='black'/><path d='M16 0.7C16 0.3 15.7 0 15.3 0H10.5C10.1 0 9.8 0.3 9.8 0.7S10.1 1.4 10.5 1.4H13.6L7 7.95C6.7 8.25 6.7 8.7 7 9C7.15 9.1 7.35 9.2 7.55 9.2S7.95 9.1 8.05 9L14.6 2.45V5.5C14.6 5.9 14.9 6.2 15.3 6.2S16 5.9 16 5.5V0.7Z' fill='black'/></svg>") no-repeat center / contain;
}

.footer-nav {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 40px 0;
  /* border-top: 1px solid #2a2c32; */
  font-size: 11px;
  letter-spacing: .25em;
}

.copyright {
  text-align: right;
  font-size: 11px;
  color: var(--text-mute);
  margin-top: 30px;
}



/* ===== Responsive ===== */
@media (max-width: 1280px) {
  .site-header {
    padding: 20px 32px;
  }

  .nav {
    gap: 18px;
    letter-spacing: .1em;
  }
}

@media (max-width: 1080px) {
  .site-header {
    align-items: flex-start;
    gap: 24px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 680px;
    row-gap: 12px;
  }

  /* .hero {
    height: 760px;
  } */

  .hero-ldk {
    height: 560px;
  }

  .section,
  .plan,
  .overview {
    padding: 110px 0;
  }

  .sub-section {
    padding: 140px 0 100px;
  }

  .fireplace-wide {
    padding: 0 0 140px;
  }

  .fireplace-wide .ph {
    height: 460px;
  }

  .concept-grid {
    gap: 60px;
    margin-top: 100px;
  }

  .arch-row,
  .arch-row.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
  }

  .arch-row-spaced {
    margin-top: 100px;
  }

  .wide-spaced {
    margin-top: 48px;
  }

  .full-image:has(.bath-main-image) {
    margin-top: 80px;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {

  html {
    scroll-padding-top: 0;
  }

  .container,
  .wide,
  .full-image,
  .plan-tabs,
  /* .map-wrap, */
  .info-cols,
  .overview-table {
    padding-left: 24px;
    padding-right: 24px;
  }

  .section,
  .plan,
  .overview {
    padding: 90px 0;
  }

  .sub-section {
    padding: 100px 0 90px;
  }

  .fireplace-wide {
    padding: 0 0 100px;
  }

  .concept-grid {
    gap: 40px;
  }

  .arch-row,
  .arch-row.reverse {
    gap: 32px;
    margin-top: 48px;
  }

  .arch-row-spaced {
    margin-top: 80px;
  }

  .wide-spaced {
    margin-top: 40px;
  }

  .full-image:has(.bath-main-image) {
    margin-top: 56px;
  }

  .site-header {
    position: fixed;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: rgba(18, 20, 24, 0.55);
    backdrop-filter: blur(8px) saturate(140%);
    -webkit-backdrop-filter: blur(8px) saturate(140%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-header.is-nav-open {
    background: rgba(18, 20, 24, 0.78);
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 0;
    padding: 110px 36px 60px;
    background: rgba(18, 20, 24, 0.62);
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
    font-size: 14px;
    letter-spacing: .32em;
    max-width: none;
    width: 100%;
    z-index: 55;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .35s ease, transform .35s ease, visibility .35s;
    overflow-y: auto;
  }

  .is-nav-open .nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    height: 100vh;
  }

  .nav a {
    display: block;
    padding: 22px 0;
    font-family: var(--serif);
    font-size: 14px;
    letter-spacing: .32em;
    color: #fff;
    text-align: right;
  }

  .nav .lang {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding: 14px 0;
    font-size: 13px;
    letter-spacing: .2em;
    color: #d8d8da;
  }

  .lang-switcher {
    align-self: flex-end;
  }

  .lang-menu {
    position: static;
    margin-top: 10px;
    min-width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.03);
  }

  .nav .lang-menu a {
    padding: 12px 0;
    font-size: 12px;
    letter-spacing: .24em;
    text-align: right;
  }

  .nav .btn-invite {
    align-self: flex-end;
    margin-top: 22px;
    padding: 16px 44px;
    font-family: var(--serif);
    font-size: 13px;
    letter-spacing: .32em;
    color: #fff;
    border: 1px solid #fff;
    background: transparent;
  }

  /* .hero {
    height: 640px;
    padding: 0 24px;
  } */

  .hero-copy h1 {
    font-size: 30px;
    line-height: 1.8;
  }

  .hero-copy h1 .small {
    font-size: 22px;
  }

  .hero-tag {
    letter-spacing: .28em;
    line-height: 1.8;
  }

  .loc-intro {
    padding: 100px 0;
  }

  .section-title-en {
    font-size: 28px;
    letter-spacing: .24em;
    /* line-height: 1.5; */
  }

  .section-title-jp,
  .location-block .sub-jp {
    font-size: 17px;
  }

  .section-lead,
  .location-block .lead {
    text-align: center;
    font-size: 14px;
    margin-top: 24px;
  }

  .concept-card .caption {
    font-size: 14px;
  }

  .concept-grid,
  .two-col,
  .img-text-grid,
  .img-text-grid-wide-right,
  .plan-grid,
  .info-cols,
  .footer-top {
    grid-template-columns: 1fr;
  }

  /* SP: ワインセラーブロックは画像→テキストの順に逆転 */
  .img-text-grid-wide-right > img {
    order: 1;
  }
  .img-text-grid-wide-right > p {
    order: 2;
  }

  /* SP: アクセスピルは横3列のまま、コンパクト表示 */
  .access-pills {
    grid-template-columns: repeat(3, 1fr);
    padding: 20px 0;
  }

  .access-pills .pill {
    padding: 0 8px;
  }

  .access-pills .pill .lbl {
    flex-direction: column;
    gap: 6px;
    font-size: 11px;
    line-height: 1.4;
    text-align: center;
  }

  .access-pills .pill .lbl .pill-icon {
    width: 28px;
    height: 28px;
  }

  .access-pills .pill .val {
    font-size: 22px;
  }

  .access-pills .pill .val small {
    font-size: 10px;
  }

  #living-room .two-col {
    gap: 40px;
  }

  .concept-grid {
    margin-top: 56px;
  }

  .concept-card .ph,
  .full-image .ph,
  .center-image .ph,
  .bath-grid .ph,
  .arch-row .ph,
  .plan-grid .floor-plan,
  .plan-grid .room-img {
    /* height: 320px; */
  }

  .hero-ldk,
  .fireplace-wide .ph,
  .city-image {
    height: 540px;
  }

  .garage .tall {
    /* height: 460px; */
  }

  .sub-title-en {
    font-size: 20px;
    letter-spacing: .22em;
    line-height: 1.5;
  }

  .sub-headline {
    font-size: 21px;
  }

  .access-pills {
    margin-top: 24px;
  }

  .room-tabs {
    flex-wrap: wrap;
    gap: 12px 18px;
    line-height: 1.6;
  }

  .form-card {
    margin-left: 24px;
    margin-right: 24px;
    padding: 44px 28px 40px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .overview-table dl {
    grid-template-columns: 1fr;
  }

  .overview-table dt {
    padding-bottom: 4px;
    border-bottom: none;
  }

  .overview-table dd {
    padding-top: 0;
  }

  .copyright {
    text-align: left;
  }

  .footer-right .lead {
    text-align: left;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }
  /* SP: あらゆる要素のはみ出しを防止 */
  html,
  body {
    overflow-x: hidden;
    width: 100%;
  }
  img,
  iframe,
  video {
    max-width: 100%;
  }

  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: block !important;
  }

  .container,
  .wide,
  .plan-tabs,
  /* .map-wrap, */
  .info-cols,
  .overview-table {
    padding-left: 18px;
    padding-right: 18px;
  }
  .brand {
    width: 120px;
    height: 30px;
  }

  /* SP: \u753b\u50cf\u30bb\u30af\u30b7\u30e7\u30f3\u306f\u30a8\u30c3\u30b8\u30c8\u30a5\u30a8\u30c3\u30b8 */
  .full-image,
  .center-image,
  .hero-ldk,
  .fireplace-wide .ph {
    padding-left: 0;
    padding-right: 0;
    max-width: none;
    width: 100%;
  }

  .fireplace-wide .caption {
    padding-left: 18px;
    padding-right: 18px;
  }

  #living-room .full-image .caption,
  .full-image .caption {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-header {
    padding: 18px;
  }

  .brand-jp {
    font-size: 20px;
  }

  .brand-en {
    letter-spacing: .42em;
  }

  /* .hero {
    height: 560px;
    padding: 0 18px;
  } */

  .hero-copy h1 {
    font-size: 25px;
    letter-spacing: .04em;
  }

  .hero-copy h1 .small {
    font-size: 19px;
  }

  .hero-tag {
    font-size: 10px;
    letter-spacing: .18em;
  }

  .loc-intro {
    background: url("assets/home/takamiya_bg_map_texture_sp.webp") center/cover no-repeat;
    padding: 50% 0;
    /* height: 90vh; */
  }
  .loc-intro::after {
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }

  .loc-intro h2 {
    font-size: 24px;
  }

  .loc-intro p {
    font-size: 14px;
  }

  .section,
  .plan,
  .overview,
  .location-block {
    padding: 90px 0;
  }

  .sub-section {
    padding: 80px 0 72px;
  }

  .fireplace-wide {
    padding: 0 0 80px;
  }

  .concept-grid {
    gap: 32px;
    margin-top: 48px;
  }

  .arch-row,
  .arch-row.reverse {
    gap: 24px;
    margin-top: 80px;
  }

  /* SP: 「厳選された木材」(.arch-row.reverse) は画像→テキストの順に逆転 */
  .arch-row.reverse > div:first-child {
    order: 2;
  }
  .arch-row.reverse > div:last-child {
    order: 1;
  }

  .arch-row-spaced {
    margin-top: 60px;
  }

  .wide-spaced {
    margin-top: 32px;
  }

  .full-image:has(.bath-main-image) {
    margin-top: 40px;
  }

  .section-title-en {
    font-size: 28px;
    letter-spacing: .3em;
  }

  .residence-exp .section-title-en {
    font-size: 28px;
    line-height: 1.2;
  }

  .section-title-jp,
  .location-block .sub-jp {
    font-size: 18px;
    line-height: 1.8;
  }

  .section-lead br,
  .sub-lead br,
  .location-block .lead br,
  .caption br,
  .tall-cap br {
    /* display: none; */
  }

  .sub-title-en {
    font-size: 18px;
    letter-spacing: .16em;
  }

  .sub-headline,
  .arch-row h3 {
    font-size: 20px;
  }

  .hero-ldk,
  .fireplace-wide .ph,
  .city-image {
    /* height: 300px; */
  }

  .concept-card .ph,
  .full-image .ph,
  .center-image .ph,
  .img-text-grid .ph,
  .bath-main-image,
  .bath-grid .ph,
  .arch-row .ph,
  .plan-grid .floor-plan,
  .plan-grid .room-img,
  .map-wrap .map {
    /* height: 260px; */
  }

  .garage .tall {
    /* height: 340px; */
  }

  .arch-two-img {
    /* grid-template-columns: 1fr; */
  }

  .arch-thumb-small,
  .arch-thumb-medium {
    /* height: 220px; */
  }

  .floor-tabs {
    font-size: 20px;
  }

  .form-card {
    margin-left: 18px;
    margin-right: 18px;
    padding: 34px 20px 32px;
  }

  .field .lbl {
    display: inline-block;
    margin-top: 8px;
    line-height: 1.6;
  }

  .submit {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
    letter-spacing: .12em;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .residence-exp .sub {
    letter-spacing: .12em;
  }
}

@media (max-width: 420px) {
  .hero-copy h1 {
    font-size: 22px;
  }

  .sub-title-en {
    letter-spacing: .1em;
  }

  .two-col {
    gap: 60px;
  }

  .two-col .ph {
    aspect-ratio: 1 / 1;
  }

  .btn-outline {
    padding: 14px 0;
    font-size: 14px;
    width: 100%;
  }

  #living-room .two-col .ph {
    aspect-ratio: 1 / 1;
  }

  .center-image .ph {
    aspect-ratio: 2 / 3;
  }

  .center-image .caption {
    padding-left: 18px;
    padding-right: 18px;
  }
  .img-text-grid {
    gap: 20px;
  }
  .img-text-grid .ph {
    aspect-ratio: 1.2 / 1;
  }

  .map-wrap .map {
    aspect-ratio: 7 / 9;
  }

  .room-img {
    margin-inline: -18px;
  }

  .room-img-el {
    aspect-ratio: 16 / 9;
  }

  .architecture .sub-en {
    font-size: 14px;
    letter-spacing: .01em;
  }

  .arch-row .ph.arch-featured-article {
    aspect-ratio: 1.2 / 1;
  }

  .arch-row .ph.arch-thumb-small {
    aspect-ratio: 2 / 3;
  }

  .location-block {
    padding-top: 200px;
  }

  .invitation-sub-en {
    letter-spacing: .1em;
  }

  .invitation .desc {
    font-size: 14px;
  }
}
/* ===== ARCHITECTURE - 厳選された木材: 右側のみフルブリード（PC向け） ===== */
@media (min-width: 1081px) and (max-width: 1600px) {
  .architecture .arch-row {
    margin-left: calc(50% - 50vw);
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
  }

  .architecture .arch-row > div:first-child {
    padding-left: 0;
  }

  .architecture .arch-row.reverse {
    margin-left: 0;
    margin-right: calc(50% - 50vw);
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
    gap: 60px;
    align-items: center;
  }

  .architecture .arch-row.reverse > div:last-child {
    padding-right: 0;
  }

  /* BATH & WELLNESS メイン画像: 左側のみフルブリード */
  .full-image:has(.bath-main-image) {
    max-width: none;
    width: auto;
    margin-left: 0;
    margin-right: max(40px, calc(50vw - 600px));
    margin-top: 140px;
    padding-left: 0;
    padding-right: 0;
  }

  .full-image:has(.bath-main-image) .bath-main-image {
    width: 100%;
  }

  /* BATH & WELLNESS パウダールーム画像: 右側のみフルブリード */
  .wide:has(.bath-grid) > .img-text-grid {
    margin-right: calc(50% - 50vw);
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
    align-items: end;
  }

  /* LIVING ROOM 暖炉画像: 横幅いっぱい */
  #living-room .full-image {
    max-width: none;
    padding: 0;
    margin: 0 auto 60px;

  }

  #living-room .full-image .caption {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px 0;
    /* text-align: center; */
  }
}
