/* ===== SENN Hotel Group — Demo 1 v2 ===== */
/* ふふ参考マップ + minn参考カード + ニュースセクション追加 */

:root {
  --color-bg: #F5F0EB;
  --color-bg-dark: #1A1A1A;
  --color-text: #1A1A1A;
  --color-text-light: #6B6560;
  --color-text-inverse: #F5F0EB;
  --color-accent: #B22234;
  --color-accent-dark: #8B1A28;
  --color-border: #E0DBD5;
  --color-card: #FFFFFF;
  --color-surface: #EDE8E2;
  --color-wood: #8B7355;

  --font-display: 'Zen Old Mincho', serif;
  --font-heading-en: 'Cormorant Garamond', serif;
  --font-body: 'Noto Serif JP', serif;
  --font-ui: 'Noto Sans JP', sans-serif;

  --max-width: 1200px;
  --max-width-wide: 1320px;
  --color-accent-on-dark: #D96B74;
  --section-padding: clamp(80px, 12vh, 140px);
}

/* ===== リセット ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overscroll-behavior: none;
  overflow-x: clip;
}
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.9;
  font-size: 17px;
  overflow-x: clip;
  overscroll-behavior: none;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea {
  font-family: var(--font-ui);
  font-size: 14px;
  border: none;
  outline: none;
  background: none;
}
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* ===== ローダー ===== */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  /* フェイルセーフ: JS が読めない/失敗しても 4.5s で必ず消える */
  animation: loaderFailsafe 0.8s ease 4.5s forwards;
}
#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-logo { text-align: center; }
.loader-img {
  width: 360px;
  height: auto;
  aspect-ratio: 866 / 670;
  animation: loaderFade 2s ease forwards;
}
@keyframes loaderFade {
  0% { opacity: 0; transform: scale(0.9); }
  30% { opacity: 1; transform: scale(1); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes loaderFailsafe {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}

/* ===== ナビゲーション ===== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
#header.scrolled {
  background: rgba(245, 240, 235, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--color-border);
}
.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-img { height: 80px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--color-text);
  position: relative;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--color-accent); }
.nav-lang { font-family: var(--font-ui); font-size: 12px; color: var(--color-text-light); }
.lang-btn { color: var(--color-text-light); cursor: pointer; transition: color 0.3s; }
.lang-btn.active { color: var(--color-text); font-weight: 500; }
.lang-btn:hover { color: var(--color-accent); }
.nav-lang-divider { margin: 0 4px; }
.nav-cta {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 10px 24px;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  transition: all 0.3s ease;
}
.nav-cta:hover { background: var(--color-accent); color: var(--color-text-inverse); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 12px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}
.nav-hamburger span { width: 24px; height: 1.5px; background: var(--color-text); transition: all 0.3s ease; }
.nav-hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* モバイルメニュー */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu-link { font-family: var(--font-display); font-size: 24px; color: var(--color-text); }
.mobile-menu-lang { font-family: var(--font-ui); font-size: 14px; color: var(--color-text-light); }
.mobile-menu-cta {
  font-family: var(--font-ui);
  font-size: 16px;
  padding: 14px 40px;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
}

/* ===== ヒーロー ===== */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 600px) {
  .hero { height: 85vh; min-height: 500px; }
  .hero-video { object-position: 55% center; }
  .hero-title { letter-spacing: 0.06em; }
}
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,26,0.3) 0%, rgba(26,26,26,0.5) 50%, rgba(26,26,26,0.7) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; color: var(--color-text-inverse); }
.hero-eyebrow {
  font-family: var(--font-heading-en);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.5em;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 0.5s ease forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 100px);
  font-weight: 400;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 0.8s ease forwards;
}
.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 1.1s ease forwards;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1s 1.4s ease forwards;
}
.hero-stat { text-align: center; }
.hero-stat-number { display: block; font-family: var(--font-heading-en); font-size: 36px; font-weight: 300; letter-spacing: 0.05em; }
.hero-stat-label { font-family: var(--font-ui); font-size: 11px; font-weight: 400; letter-spacing: 0.1em; opacity: 0.7; }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.5); }
.hero-cta {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 18px 56px;
  background: var(--color-accent);
  border: 1px solid var(--color-accent);
  color: var(--color-text-inverse);
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeUp 1s 1.6s ease forwards;
}
.hero-cta:hover { background: var(--color-accent-dark); border-color: var(--color-accent-dark); }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-text-inverse);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 2s ease forwards;
}
.hero-scroll span { font-family: var(--font-heading-en); font-size: 11px; letter-spacing: 0.2em; margin-right: -0.2em; }
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ===== 実績バー ===== */
.trust-bar {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 36px 0;
}
.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.trust-message {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-text);
}
.trust-stats {
  display: flex;
  align-items: center;
  gap: 64px;
}
.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}
.trust-number {
  font-family: var(--font-ui);
  font-size: 46px;
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.01em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.trust-label {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--color-text-light);
  text-transform: uppercase;
}
.trust-badges {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.trust-badge {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--color-text-light);
  text-transform: uppercase;
}
.trust-badge-accent {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
/* ===== トラストバー（Inspirato風・和ライン画アイコン / PC横並び・スマホ横流れ）===== */
.trust-stats { display: flex; justify-content: center; width: 100%; }
.trust-track { display: flex; align-items: flex-start; justify-content: center; gap: clamp(30px, 6vw, 84px); }
.trust-stat { display: flex; flex-direction: column; align-items: center; gap: 12px; flex: 0 0 auto; text-align: center; }
.trust-stat::after { content: none !important; }
.trust-ic { color: var(--color-text); opacity: 0.82; line-height: 0; }
.trust-ic svg, .trust-ic img { width: 46px; height: 46px; display: block; object-fit: contain; }
.trust-number { font-size: 38px; line-height: 1; }
.trust-number-text { font-size: 21px; letter-spacing: 0.04em; white-space: nowrap; }
.trust-star { color: var(--color-accent); font-size: 0.46em; margin-left: 5px; vertical-align: 0.34em; }
.trust-plus { font-size: 0.6em; vertical-align: super; color: var(--color-text-light); margin-left: 1px; }
.trust-label { letter-spacing: 0.1em; }
.trust-dup { display: none; }
@media (max-width: 700px) {
  .trust-stats { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
  .trust-track { width: max-content; justify-content: flex-start; gap: 46px; animation: trustflow 22s linear infinite; }
  .trust-dup { display: flex; }
  .trust-ic svg, .trust-ic img { width: 40px; height: 40px; }
  .trust-number { font-size: 32px !important; }
  .trust-number-text { font-size: 19px !important; }
}
@keyframes trustflow { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .trust-track { animation: none; } }
@media (max-width: 900px) {
  .trust-bar-inner { flex-wrap: wrap; gap: 24px; justify-content: center; }
}
@media (max-width: 600px) {
  .trust-bar { padding: 28px 0; }
  .trust-bar-inner { gap: 20px; }
  .trust-stats { gap: 40px; }
  .trust-number { font-size: 36px; }
  .trust-badges { flex-wrap: wrap; justify-content: center; }
}

/* ===== セクション共通 ===== */
.section-eyebrow {
  font-family: var(--font-heading-en);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.38em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.section-subtitle {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--color-text-light);
  margin-bottom: 48px;
}

/* ===== 哲学（スクロール体験） ===== */
.phil-experience { background: var(--color-bg-dark); overflow-x: clip; }

/* 導入テキスト */
.phil-intro {
  padding: clamp(100px, 15vh, 160px) 0 clamp(60px, 10vh, 100px);
  text-align: left;
}
.phil-intro-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--color-text-inverse);
  margin-bottom: 40px;
}
.phil-intro-lead {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 400;
  line-height: 2.2;
  color: rgba(245, 240, 235, 0.85);
  margin-bottom: 24px;
}
.phil-intro-body {
  font-size: 17px;
  line-height: 2.2;
  color: rgba(245, 240, 235, 0.6);
  max-width: 38ch;
  margin-bottom: 32px;
}
.phil-intro-author {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}
.phil-author-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.phil-intro-sig {
  font-family: var(--font-ui);
  font-style: normal;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(245, 240, 235, 0.72);
}
.pc-br { display: inline; }
.sp-br { display: none; }

/* ピン固定スクロール */
.phil-scroll-wrap {
  position: relative;
  height: 400vh;
}
.phil-scroll-sticky {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
/* JSが区間内だけ fixed にピン留め: iOS の position:sticky はスクロール(合成スレッド)に対し位置をメインスレッドで再計算するため慣性中に全画面ピンが毎フレーム微小にズレて震える。区間内 fixed はビューポート固定の合成レイヤーになり震えが原理的に消える */
.phil-scroll-sticky.is-pinned {
  position: fixed;
  top: 0;
}
/* 区間を抜けたら最下部へ置いて自然に流す(入口/出口とも画面上の位置は連続=段差なし) */
.phil-scroll-sticky.is-after {
  position: absolute;
  top: auto;
  bottom: 0;
}

/* 背景写真 */
.phil-bg-layer {
  position: absolute;
  inset: 0;
}
.phil-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
  will-change: opacity;        /* 全画面背景4枚のクロスフェードをGPU合成層に固定し、メインスレッド再ペイント由来の微ジャンクを排除（見た目不変） */
  backface-visibility: hidden;
}
.phil-bg-img.active { opacity: 1; }
.phil-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.5);
  pointer-events: none;
}

/* テキストオーバーレイ */
.phil-text-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 clamp(40px, 8vw, 120px);
}
.phil-slide {
  position: absolute;
  opacity: 0;
  transition: opacity 0.6s ease;
  max-width: 600px;
  will-change: opacity;  /* テキストは縦移動させず opacity のみで入替（切替時の縦バウンド＝ガクつきを排除） */
}
.phil-slide.active {
  opacity: 1;
}
.phil-slide-num {
  font-family: var(--font-heading-en);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--color-accent);
  display: block;
  margin-bottom: 20px;
}
.phil-slide-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--color-text-inverse);
  margin-bottom: 20px;
  line-height: 1.5;
}
.phil-slide-desc {
  font-size: clamp(15px, 1.8vw, 19px);
  line-height: 2;
  color: rgba(245, 240, 235, 0.7);
}

/* プログレスドット */
.phil-progress {
  position: absolute;
  right: clamp(24px, 4vw, 60px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.phil-progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245, 240, 235, 0.3);
  transition: all 0.4s ease;
  cursor: pointer;
}
.phil-progress-dot.active {
  background: var(--color-accent);
  box-shadow: 0 0 12px rgba(178, 34, 52, 0.5);
}

@media (max-width: 600px) {
  .phil-intro { text-align: left; padding: 80px 0 60px; }
  .phil-intro-title { font-size: clamp(32px, 8vw, 48px); letter-spacing: 0.04em; }
  .phil-intro-lead { font-size: 16px; line-height: 1.9; word-break: keep-all; overflow-wrap: break-word; }
  .phil-intro-body { max-width: none; font-size: 15px; word-break: keep-all; overflow-wrap: break-word; }
  .pc-br { display: none; }
  .sp-br { display: inline; }
  .phil-scroll-wrap { height: 300vh; }
  .phil-text-layer { padding: 0 24px; align-items: flex-end; padding-bottom: 100px; }
  .phil-slide { max-width: calc(100% - 48px); }
  .phil-slide-title { font-size: 24px; letter-spacing: 0.04em; }
  .phil-slide-desc { word-break: keep-all; overflow-wrap: break-word; }
  .phil-progress { right: 16px; }
  .section-eyebrow { font-size: 14px; }
}

/* ===== 日本地図マップセクション ===== */
.map-section {
  padding: var(--section-padding) 0;
  background: var(--color-bg);
  contain: layout style;
  /* content-visibility:auto + intrinsic-size(600px推定)は実高と食い違い、
     スクロールで覗き込んだ瞬間に高さ補正→位置ジャンプ(過剰反応)を起こす。
     地図SVGアニメは静止画化で無効のため描画スキップの恩恵もほぼ無く撤去。 */
}
.map-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.map-heading {
  font-family: var(--font-display);
  font-size: clamp(26px, 4.5vw, 44px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.9;
  color: var(--color-text);
}
.map-sub {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--color-text-light);
  margin-top: 24px;
  line-height: 2;
}
.map-visual {
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.japan-map-img {
  width: 100%;
  max-width: 480px;
  height: auto;
}
.japan-map {
  width: 100%;
  max-width: 480px;
  height: auto;
  will-change: auto;
}
.map-islands path {
  transition: opacity 0.6s ease;
}
/* Freeway式3重パルスアニメーション */
@keyframes dotPulse {
  0%   { r: 2; opacity: 1; }
  50%  { r: 2.5; opacity: 0.9; }
  100% { r: 2; opacity: 1; }
}
@keyframes ringPulse {
  0%   { r: 3.5; opacity: 0.12; }
  50%  { r: 5; opacity: 0.06; }
  100% { r: 3.5; opacity: 0.12; }
}
@keyframes ringOuter {
  0%   { r: 5; opacity: 0; }
  50%  { r: 7; opacity: 0.08; }
  100% { r: 5; opacity: 0; }
}
.map-dot.active { animation: dotPulse 2.5s ease-in-out infinite; }
.map-dot-ring.active { animation: ringPulse 2.5s ease-in-out infinite; }
.map-dot-outer.active { animation: ringOuter 2.5s ease-in-out infinite; }
/* スタガー遅延 */
.map-loc:nth-child(2) .map-dot,
.map-loc:nth-child(2) .map-dot-ring,
.map-loc:nth-child(2) .map-dot-outer { animation-delay: 0.3s; }
.map-loc:nth-child(3) .map-dot,
.map-loc:nth-child(3) .map-dot-ring,
.map-loc:nth-child(3) .map-dot-outer { animation-delay: 0.6s; }

/* ===== 宿一覧（minn式カード） ===== */
.properties {
  padding: var(--section-padding) 0;
  background: #FFFFFF;
}
.properties-head {
  margin-bottom: clamp(32px, 4.5vh, 56px);
}

.property-collection {
  display: flex;
  flex-direction: column;
  gap: clamp(52px, 6.5vh, 88px);
}

/* 地域の章ラベル */
.property-chapter {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto -28px;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.chapter-jp {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--color-text);
}
.chapter-en {
  font-family: var(--font-heading-en);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.32em;
  color: var(--color-accent);
  text-transform: uppercase;
}

/* 1軒 = フルブリード左右交互（カード廃止） */
.property-feature {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(32px, 5.5vw, 84px);
}
.property-feature.reverse .property-feature-media {
  order: 2;
}
.pf-namelink {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}
.pf-namelink .property-feature-name {
  transition: color 0.3s ease;
}
.pf-namelink:hover .property-feature-name {
  color: var(--color-accent);
}
.property-feature-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-surface);
}
.property-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.property-feature-link:hover .property-feature-media img {
  transform: scale(1.045);
}

/* 各宿 写真の横スワイプギャラリー */
.pf-gallery {
  display: flex;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: auto; /* iOS慣性スクロールを切る: 指の強さで移動量が変わる/飛びすぎるのを防ぐ */
  scrollbar-width: none;
  touch-action: pan-y; /* 横スワイプはJSが1コマだけ動かす。ネイティブ横スクロールを渡さずJS初期化前の漏れも防ぐ */
  cursor: grab;
}
.pf-gallery::-webkit-scrollbar { display: none; }
.pf-gallery img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  scroll-snap-align: center;
}
/* ギャラリーはホバーズームしない（スワイプ優先） */
.property-feature-link:hover .pf-gallery img {
  transform: none;
}
.pf-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 2;
  pointer-events: none;
}
.pf-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.30), 0 1px 4px rgba(0, 0, 0, 0.42);
  transition: width 0.35s, background 0.35s;
}
.pf-dots span.active {
  width: 18px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.95);
}

.property-feature-text {
  padding: clamp(4px, 1vw, 16px) 0;
}
.property-feature-area {
  display: block;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
}
.property-feature-name {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.22;
  letter-spacing: 0.04em;
  margin: 14px 0 0;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 16px;
}
.property-feature-en {
  font-family: var(--font-heading-en);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.24em;
  color: var(--color-accent);
}
.property-feature-catch {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 400;
  line-height: 1.95;
  color: var(--color-text-light);
  margin: 22px 0 0;
  max-width: 32ch;
  text-wrap: balance;
}
.property-feature-meta {
  display: block;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  margin-top: 26px;
}
.property-feature-more {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-accent);
  text-decoration: none;
  margin-top: 30px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.property-feature-more:hover {
  transform: translateX(6px);
}

@media (max-width: 820px) {
  .property-collection { gap: clamp(60px, 9vh, 92px); }
  /* 写真は画面端までフルブリード、テキストだけ余白を持たせる */
  .property-feature {
    padding: 0;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .property-feature.reverse .property-feature-media { order: 0; }
  .property-feature-media { aspect-ratio: 16 / 9; }
  .property-feature-text { padding: 0 clamp(22px, 6vw, 28px); }
  .property-chapter { padding: 0 clamp(22px, 6vw, 28px); }
  .property-feature-area { font-size: 12px; }
  .property-feature-name { font-size: clamp(28px, 8vw, 40px); margin-top: 10px; }
  .property-feature-catch { margin-top: 14px; max-width: none; font-size: 16px; }
  .property-feature-meta { margin-top: 16px; }
  .property-feature-more { margin-top: 20px; }
}

/* ===== レビュー ===== */
.reviews {
  padding: clamp(80px, 12vh, 140px) 0;
  background: var(--color-bg-dark);
  text-align: center;
  overflow: hidden;
  overflow-x: clip;
}
.reviews .section-eyebrow { color: var(--color-accent-on-dark); }
.reviews .section-title { color: var(--color-text-inverse); }
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}
.reviews-score { font-family: var(--font-heading-en); font-size: 64px; font-weight: 300; color: var(--color-text-inverse); }
.reviews-stars { font-size: 22px; color: var(--color-accent-on-dark); }
.reviews-count { font-family: var(--font-ui); font-size: 14px; color: rgba(245,240,235,0.5); }
/* フルワイド1件スライダー */
.reviews-slider {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 800px;
  margin: 0 auto;
  overflow-x: clip;
}
.review-slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease;
  text-align: center;
}
.review-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  z-index: 2;
}
.review-quote {
  font-family: var(--font-heading-en);
  font-size: 120px;
  line-height: 0.6;
  color: rgba(178, 34, 52, 0.3);
  display: block;
  margin-bottom: 16px;
}
.review-text {
  font-family: var(--font-body);
  font-size: clamp(18px, 2.5vw, 26px);
  line-height: 2;
  color: rgba(245, 240, 235, 0.85);
  margin-bottom: 28px;
  text-wrap: balance;
  font-weight: 300;
}
.review-author { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.review-name { font-family: var(--font-ui); font-size: 15px; font-weight: 500; color: var(--color-text-inverse); }
.review-date { font-family: var(--font-ui); font-size: 13px; color: rgba(245,240,235,0.55); }
.reviews-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
}
.reviews-nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(245,240,235,0.25);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
  position: relative;
}
/* タップターゲット拡大（見えないが44px確保） */
.reviews-nav-dot::before {
  content: '';
  position: absolute;
  inset: -16px;
}
.reviews-nav-dot.active { background: var(--color-accent); }
@media (max-width: 600px) {
  .reviews-score { font-size: 48px; }
  .review-quote { font-size: 80px; }
}

/* ===== ご予約からチェックインまで ===== */
.checkin { padding: var(--section-padding) 0; background: var(--color-bg); }
.checkin .container { max-width: 840px; }
.checkin-flow { list-style: none; margin: 56px 0 0; padding: 0; }
.checkin-step { display: grid; grid-template-columns: 48px 1fr; gap: 26px; align-items: start; padding-bottom: 38px; position: relative; }
.checkin-step:last-child { padding-bottom: 0; }
.checkin-step::before { content: ""; position: absolute; left: 23px; top: 46px; bottom: -2px; width: 1px; background: var(--color-border); }
.checkin-step:last-child::before { display: none; }
.checkin-num { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 400; color: var(--color-accent); line-height: 1; text-align: center; position: relative; z-index: 1; }
.checkin-text { padding-top: 2px; }
.checkin-step-title { font-family: var(--font-display); font-size: 19px; font-weight: 500; color: var(--color-text); margin: 0 0 8px; letter-spacing: 0.04em; }
.checkin-step-desc { font-family: var(--font-body); font-size: 15px; line-height: 1.9; color: var(--color-text-light); margin: 0; font-weight: 300; }
@media (max-width: 600px) {
  .checkin-flow { margin-top: 36px; }
  .checkin-step { grid-template-columns: 36px 1fr; gap: 16px; padding-bottom: 30px; }
  .checkin-step::before { left: 17px; top: 38px; }
  .checkin-num { font-size: 25px; }
  .checkin-step-title { font-size: 17px; }
  .checkin-step-desc { font-size: 14px; line-height: 1.85; }
}

/* ===== お知らせ（ふふ参考） ===== */
.news-section {
  padding: var(--section-padding) 0;
  background: var(--color-bg);
}
.news-list {
  margin-top: 32px;
}
.news-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
  transition: opacity 0.3s ease;
}
.news-item:first-child {
  border-top: 1px solid var(--color-border);
}
.news-item:hover {
  opacity: 0.7;
}
.news-badge {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  padding: 4px 14px;
  background: var(--color-text);
  color: var(--color-text-inverse);
  flex-shrink: 0;
  letter-spacing: 0.05em;
}
.news-badge.badge-info {
  background: var(--color-wood);
}
.news-badge.badge-event {
  background: var(--color-accent);
}
.news-date {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--color-text-light);
  flex-shrink: 0;
  min-width: 90px;
}
.news-title {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.6;
}
.news-more {
  margin-top: 40px;
  text-align: center;
}
.news-more-link {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 400;
  padding: 14px 48px;
  border: 1px solid var(--color-text);
  color: var(--color-text);
  transition: all 0.3s ease;
}
.news-more-link:hover {
  background: var(--color-text);
  color: var(--color-text-inverse);
}

/* ===== 予約 ===== */
.booking {
  padding: var(--section-padding) 0;
  background: var(--color-bg-dark);
  color: var(--color-text-inverse);
  text-align: center;
}
.booking .section-eyebrow { color: rgba(255,255,255,0.5); }
.booking .section-subtitle { color: rgba(255,255,255,0.6); }
.booking-form { max-width: 900px; margin: 0 auto; width: 100%; }
.booking-form-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.booking-field { text-align: left; }
.booking-field label {
  display: block;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.booking-field select,
.booking-field input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--color-text-inverse);
  font-size: 14px;
  transition: border-color 0.3s ease;
}
.booking-field select:focus,
.booking-field input:focus { border-color: var(--color-accent); }
.booking-field select option { background: var(--color-bg-dark); color: #fff; }
.booking-submit {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 16px 60px;
  background: var(--color-accent);
  color: var(--color-text-inverse);
  cursor: pointer;
  transition: background 0.3s ease;
}
.booking-submit:hover { background: var(--color-accent-dark); }
/* 予約は専用ページへ誘導するCTAブロック（#contact内） */
.booking-cta-block { text-align: left; display: flex; flex-direction: column; align-items: flex-start; }
.booking-cta-text { font-family: var(--font-ui); font-size: 15px; line-height: 1.9; color: rgba(255,255,255,0.62); margin: 0 0 28px; }
.booking-cta-btn { display: inline-block; text-decoration: none; text-align: center; }

/* ===== お問い合わせ ===== */
.contact-unified {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
}
.form-section-label {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--color-text-inverse);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-field label {
  font-size: 14px;
}
@media (max-width: 900px) {
  .contact-unified { grid-template-columns: 1fr; gap: 48px; }
}
.contact-info p { font-size: 15px; color: var(--color-text-light); margin-bottom: 32px; }
.contact-details p { font-family: var(--font-ui); font-size: 14px; margin-bottom: 4px; }
.contact-field { margin-bottom: 20px; text-align: left; }
.contact-field label {
  display: block;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 14px;
  color: var(--color-text-inverse);
  transition: border-color 0.3s ease;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(255,255,255,0.5);
}
.contact-field input:focus,
.contact-field textarea:focus { border-color: var(--color-accent); }
.contact-field textarea { resize: vertical; }
.contact-submit {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 40px;
  background: var(--color-accent);
  color: var(--color-text-inverse);
  cursor: pointer;
  transition: background 0.3s ease;
}
.contact-submit:hover { background: var(--color-accent-dark); }

/* ===== フッター ===== */
.footer { padding: 60px 0 32px; background: var(--color-bg-dark); color: var(--color-text-inverse); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-logo-img { height: 64px; width: auto; filter: brightness(0) invert(1); margin-bottom: 12px; }
.footer-tagline { font-family: var(--font-display); font-size: 14px; color: rgba(255,255,255,0.5); }
.footer-links h4 {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.footer-links a:hover { color: #fff; }
.footer-bottom { padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom p { font-family: var(--font-ui); font-size: 13px; color: rgba(255,255,255,0.5); }

/* ===== レスポンシブ ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 48px; }
  .map-layout { grid-template-columns: minmax(0, 1fr); gap: 32px; text-align: center; }
  .map-visual { display: flex; justify-content: center; width: 100%; max-width: 100%; min-width: 0; padding: 0; }
  .japan-map-img { width: 100%; max-width: 460px; min-width: 0; flex: 0 1 auto; }
  .map-heading { font-size: clamp(24px, 5vw, 36px); }
  .map-sub br { display: none; }
  .map-sub { font-size: 13px; line-height: 1.85; }
  .japan-map { max-width: 360px; }
  .properties-list { grid-template-columns: 1fr; }
  .booking-form-row { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-stats { gap: 24px; }
  .hero-stat-number { font-size: 28px; }
  .reviews-summary { flex-direction: column; gap: 8px; }
  .news-item { flex-wrap: wrap; gap: 10px; }
  .news-badge { order: 1; }
  .news-date { order: 2; }
  .news-title { order: 3; width: 100%; }
}

@media (max-width: 600px) {
  .booking-form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat-divider { width: 40px; height: 1px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .property-thumbs { grid-template-columns: repeat(3, 1fr); gap: 1px; }
  .property-info { padding: 20px 16px; }
  .property-card-footer { flex-direction: column; gap: 12px; align-items: flex-start; }
  .property-cta-btn { width: 100%; text-align: center; }
}

/* ===== スクロールアニメーション ===== */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== モバイル監査修正（PDCA Round 1） ===== */
@media (max-width: 600px) {
  /* 1. ヒーロータイトル孤立文字防止 */
  .hero-title {
    font-size: clamp(36px, 9vw, 48px);
    letter-spacing: 0.06em;
    text-wrap: balance;
  }
  /* 2. ヒーローeyebrow 14px+letter-spacing縮小 */
  .hero-eyebrow {
    font-size: 14px;
    letter-spacing: 0.2em;
  }
  /* 2b. Scrollラベル */
  .hero-scroll span { font-size: 12px; }
  /* 3. ニュースセクションタイトル孤立文字防止 */
  #news .section-title {
    font-size: clamp(28px, 7vw, 36px);
    letter-spacing: 0.04em;
  }
  /* 4. ナビ高さ縮小 */
  .nav { height: 64px; }
  .nav-logo-img { height: 48px; }
  /* 5. 哲学プログレスドットタッチ拡大 */
  .phil-progress-dot {
    width: 12px;
    height: 12px;
  }
  .phil-progress-dot::before {
    content: '';
    position: absolute;
    inset: -16px;
  }
  /* 6. フィルターボタン44px確保 */
  .filter-btn {
    padding: 12px 20px;
    min-height: 44px;
  }
  /* 7. フッターリンクタッチ拡大 */
  .footer-links a {
    padding: 10px 0;
    margin-bottom: 0;
  }
  /* 8. モバイルメニュー言語リンク */
  .mobile-menu-lang a,
  .mobile-menu-lang .lang-btn {
    display: inline-block;
    min-width: 44px;
    min-height: 44px;
    line-height: 44px;
    text-align: center;
  }
  /* 9. 小さいフォントサイズ補正 */
  .property-name-en { font-size: 13px; }
  .property-detail-row { font-size: 14px; }
  /* 10. 送信ボタンフルワイド */
  .booking-submit,
  .contact-submit { width: 100%; }
  /* 11. ローダーロゴ余白確保 */
  .loader-img { width: min(280px, 80vw); }
  /* 12. レビュースライダーoverflow */
  .reviews-slider { overflow: hidden; }
  /* 13. 哲学スクロール距離短縮 */
  .phil-scroll-wrap { height: 250vh; }
  /* 14. 信頼バーフォント修正 */
  .trust-number { line-height: 1.1; }
  .trust-label { font-size: 14px; }
  .trust-badge { font-size: 14px; }
  /* 15. 日本語word-break修正（PDCA Round 2） */
  .property-desc { word-break: keep-all; overflow-wrap: break-word; }
  .review-text { word-break: keep-all; overflow-wrap: break-word; }
  .map-sub { text-wrap: balance; word-break: keep-all; }
  #contact .section-title { font-size: clamp(28px, 7.5vw, 36px); text-wrap: balance; word-break: keep-all; }
  /* 16. 13px→14px全修正 */
  .property-rating { font-size: 14px; }
  .property-cta-btn { font-size: 14px; }
  .news-badge { font-size: 14px; }
  .news-date { font-size: 14px; }
  .review-date { font-size: 14px; }
  .footer-links h4 { font-size: 14px; }
  .footer-links a { font-size: 14px; }
  .footer-bottom p { font-size: 14px; }
  /* 17. 哲学ドットposition修正 */
  .phil-progress-dot { position: relative; }
}

/* ===== 多言語タイポグラフィ修正（EN/zhTW QA） ===== */

/* --- EN: テキストバランス（orphan防止） --- */
@media (max-width: 600px) {
  /* EN trust message: "Building stays that last a / thousand years" → balance */
  html[lang="en"] .trust-message {
    text-wrap: balance;
    font-size: clamp(20px, 5.5vw, 24px);
  }

  /* EN hero subtitle: better wrap control */
  html[lang="en"] .hero-subtitle {
    text-wrap: balance;
    letter-spacing: 0.05em;
  }

  /* EN philosophy lead: orphan "a pond." → balance */
  html[lang="en"] .phil-intro-lead {
    text-wrap: balance;
  }

  /* EN philosophy body: orphan "above you." → balance */
  html[lang="en"] .phil-intro-body {
    text-wrap: balance;
  }

  /* EN reviews title: "What Our Guests / Say" → shrink to fit 1 line */
  html[lang="en"] .reviews .section-title {
    font-size: clamp(28px, 7.5vw, 36px);
    letter-spacing: 0.04em;
    text-wrap: balance;
  }

  /* EN phil slide 3 title: "Welcomed by the people / of this land" orphan → balance */
  html[lang="en"] .phil-slide-title {
    text-wrap: balance;
  }

  /* EN contact title: fits on 1 line, no issue */

  /* EN contact subtitle: orphan "you." → balance */
  html[lang="en"] .booking .section-subtitle {
    text-wrap: balance;
  }

  /* EN contact title: "Reservation & / Contact" wraps to 2 lines → balance */
  html[lang="en"] .booking .section-title {
    text-wrap: balance;
  }

  /* EN trust badge: prevent 2-line wrap */
  html[lang="en"] .trust-badge {
    white-space: nowrap;
  }
}

/* --- zhTW: 中文文字特有の修正 --- */
@media (max-width: 600px) {
  /* zhTW trust badge "超讚房東認證" wraps to 2 lines in badge → nowrap */
  html[lang="zh-TW"] .trust-badge {
    white-space: nowrap;
    padding: 8px 14px;
  }

  /* zhTW phil slide 3 title: "迎接你的，是這片土地的人" wraps to 2 lines → reduce font */
  html[lang="zh-TW"] .phil-slide-title {
    text-wrap: balance;
  }
}

/* ===== 暗背景アクセントの低コントラスト是正（理念スライド番号） ===== */
.phil-slide-num { color: var(--color-accent-on-dark); }

/* ===== タッチ端末: :hover の張り付き（ズーム/ズレ残り）を無効化してガチャつき防止 ===== */
@media (hover: none) {
  .property-feature-link:hover .property-feature-media img,
  .property-feature-media img {
    transform: none !important;
  }
  .property-feature-more:hover,
  .property-feature-more {
    transform: none !important;
  }
}

/* ===== prefers-reduced-motion: 動きに敏感な利用者に全アニメを強制しない（最終状態で即時固定） ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in { opacity: 1 !important; transform: none !important; }
  /* スナップ(位置固定)はアニメではないため reduced-motion でも維持＝PCでも1コマに止まる */
}

/* ===== ゲストの声: 専用ページへの導線 ===== */
.reviews-more { text-align: center; margin-top: clamp(32px, 5vh, 56px); }
.reviews-more-link {
  font-family: var(--font-ui);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--color-accent-on-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(217, 107, 116, 0.4);
  padding-bottom: 4px;
  transition: opacity 0.3s ease;
}
.reviews-more-link:hover { opacity: 0.7; }

/* ===== フォーム: ハニーポット（bot対策・非表示）===== */
.nf-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ===== フォーム送信完了メッセージ ===== */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
  padding: clamp(40px, 6vw, 64px) 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 240, 235, 0.14);
  border-radius: 6px;
  min-height: 220px;
  animation: formSuccessIn 0.5s ease both;
}
.form-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-size: 28px;
  line-height: 1;
}
.form-success-text {
  font-family: var(--font-jp, "Noto Serif JP", serif);
  font-size: clamp(15px, 2.4vw, 17px);
  line-height: 1.9;
  color: var(--color-paper, #F5F0EB);
  max-width: 30em;
}
@keyframes formSuccessIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== FAQ（よくあるご質問）===== */
.faq-section {
  background: var(--color-paper, #F5F0EB);
  color: var(--color-ink, #1A1A1A);
  padding: clamp(64px, 10vh, 120px) 0;
}
.faq-list { max-width: 760px; margin: clamp(32px, 5vh, 56px) auto 0; }
.faq-item { border-bottom: 1px solid rgba(26, 26, 26, 0.12); }
.faq-item:first-child { border-top: 1px solid rgba(26, 26, 26, 0.12); }
.faq-q {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-jp, "Noto Serif JP", serif);
  font-size: clamp(16px, 2.4vw, 18px);
  font-weight: 500;
  color: var(--color-ink, #1A1A1A);
  padding: 24px 46px 24px 4px;
  position: relative;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--color-accent, #B22234);
  border-bottom: 2px solid var(--color-accent, #B22234);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.25s ease;
}
.faq-item[open] .faq-q::after { transform: translateY(-30%) rotate(225deg); }
.faq-a {
  padding: 0 46px 26px 4px;
  font-family: var(--font-jp, "Noto Serif JP", serif);
  font-size: clamp(14px, 2vw, 15.5px);
  line-height: 1.95;
  color: rgba(26, 26, 26, 0.8);
}


/* 暗いヒーロー上ではナビを白に（スクロール前）: ホーム / 予約ページ */
body.home-page #header:not(.scrolled) .nav-link,
body.home-page #header:not(.scrolled) .nav-cta,
body.reserve-page #header:not(.scrolled) .nav-link,
body.reserve-page #header:not(.scrolled) .nav-cta { color: var(--color-text-inverse); }
body.home-page #header:not(.scrolled) .nav-cta,
body.reserve-page #header:not(.scrolled) .nav-cta { border-color: rgba(245,240,235,0.6); }
body.home-page #header:not(.scrolled) .nav-cta:hover,
body.reserve-page #header:not(.scrolled) .nav-cta:hover { background: var(--color-accent); border-color: var(--color-accent); color: var(--color-text-inverse); }
body.home-page #header:not(.scrolled) .nav-hamburger span,
body.reserve-page #header:not(.scrolled) .nav-hamburger span { background: var(--color-text-inverse); }


/* 理念セクション(暗背景#1A1A1A)のeyebrowは明るい赤で（赤×黒の低コントラスト回避・WCAG AA） */
.phil-experience .section-eyebrow { color: var(--color-accent-on-dark); }
/* 言語スイッチャーの密着解消（繁中한简が詰まる問題） */
.nav-lang .lang-btn, .mobile-menu-lang .lang-btn { padding: 0 3px; }

/* 暗ヒーロー上の白navに影（home/reserve） */
body.home-page #header:not(.scrolled) .nav-link, body.home-page #header:not(.scrolled) .nav-cta, body.reserve-page #header:not(.scrolled) .nav-link, body.reserve-page #header:not(.scrolled) .nav-cta { text-shadow: 0 1px 3px rgba(0,0,0,0.4); }

/* reserveページfade-in常時表示（observer未搭載で不可視→巨大余白を防ぐ） */
body.reserve-page .fade-in { opacity: 1 !important; transform: none !important; }
