/* ============================================================
   お宿ひるた — "墨と生成" (Sumi & Kinari) 共通デザインシステム／藍トーン
   生成りの和紙地 × 墨インク × 弁柄一色。明朝体、ヘアライン罫線。
   ============================================================ */
:root {
  --washi: #f4efe2;
  --paper: #faf6ea;
  --washi-deep: #ece4cf;
  --ink: #26221b;
  --ink-soft: #5c5648;
  --ink-faint: #8b8371;
  --line: #ddd3ba;
  --line-dark: #c2b48f;
  --bengara: #3c5a78;      /* 朱 */
  --bengara-deep: #2b4557;
  --kin: #a9884e;          /* 金茶 */
  --sumi: #171511;
  --sumi-panel: #211e19;
  --serif: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --sans: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  --brush: "Yuji Syuku", "Shippori Mincho", serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--serif);
  background: var(--washi);
  color: var(--ink);
  line-height: 2;
  font-size: 15px;
  letter-spacing: 0.06em;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity 0.25s ease, color 0.25s ease, background 0.25s ease; }
a:hover { opacity: 0.72; }
ul, ol { list-style: none; }

/* ---------- utilities ---------- */
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 780px; margin: 0 auto; padding: 0 24px; }
.tnum { font-variant-numeric: tabular-nums; }

/* section label: EN small + JP heading */
.sec-label {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.34em;
  color: var(--bengara);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.sec-title {
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.7;
}
.sec-head { margin-bottom: 44px; }
.sec-head::after {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  background: var(--line-dark);
  margin-top: 26px;
}
.sec-head.center { text-align: center; }
.sec-head.center::after { margin-left: auto; margin-right: auto; }

.lead { color: var(--ink-soft); }
.note { font-size: 12.5px; color: var(--ink-faint); }

/* reveal on scroll — one restrained motion system */
.rv { opacity: 0; transform: translateY(18px); transition: opacity 0.9s ease, transform 0.9s ease; }
.rv.on { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* buttons */
.btn {
  display: inline-block;
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.18em;
  padding: 15px 38px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  text-align: center;
}
.btn:hover { background: var(--ink); color: var(--washi); opacity: 1; }
.btn-fill {
  background: var(--bengara);
  border-color: var(--bengara);
  color: #fff;
}
.btn-fill:hover { background: var(--bengara-deep); border-color: var(--bengara-deep); color: #fff; }
.btn-ghost-light { border-color: rgba(255,255,255,0.55); color: #fff; }
.btn-ghost-light:hover { background: #fff; color: var(--sumi); }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  transition: background 0.35s ease, box-shadow 0.35s ease, height 0.35s ease;
}
.site-header.solid {
  background: rgba(253, 252, 249, 0.94);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--line);
  height: 64px;
}
.brand { display: flex; align-items: baseline; gap: 14px; }
.brand a { align-items: center; }
/* 2026-08 レビュー#2: ヘッダーは現行サイトと同じ画像ロゴを使う。
   素材が白抜き1色のため、明るい背景のヘッダーでは墨色に転換して視認性を保つ。 */
.brand .brand-logo { display: block; height: 42px; width: auto; }
.site-header.solid .brand-logo,
.site-header.on-plain .brand-logo { filter: brightness(0); opacity: 0.88; }
.brand a { display: flex; align-items: baseline; gap: 14px; }
.brand .brand-name {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #fff;
  transition: color 0.35s ease;
}
.brand .brand-sub {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.26em;
  color: rgba(255,255,255,0.75);
  transition: color 0.35s ease;
}
.site-header.solid .brand-name, .site-header.on-plain .brand-name { color: var(--ink); }
.site-header.solid .brand-sub, .site-header.on-plain .brand-sub { color: var(--ink-faint); }

.gnav { display: flex; align-items: center; gap: 30px; }
.gnav a {
  font-size: 13.5px;
  letter-spacing: 0.16em;
  color: #fff;
  position: relative;
  padding: 6px 0;
  transition: color 0.35s ease;
}
.site-header.solid .gnav a, .site-header.on-plain .gnav a { color: var(--ink); }
.gnav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transition: right 0.3s ease;
}
.gnav a:hover { opacity: 1; }
.gnav a:hover::after { right: 0; }
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .cta-book {
  font-size: 13px;
  letter-spacing: 0.14em;
  background: var(--bengara);
  color: #fff;
  padding: 11px 22px;
}
.header-cta .cta-book:hover { background: var(--bengara-deep); opacity: 1; }
.header-cta .cta-book small { display: block; font-size: 9px; letter-spacing: 0.12em; opacity: 0.85; font-family: var(--sans); }

/* hamburger */
.menu-btn {
  display: none;
  background: none;
  border: none;
  width: 44px; height: 44px;
  cursor: pointer;
  position: relative;
  z-index: 130;
}
.menu-btn i, .menu-btn i::before, .menu-btn i::after {
  content: "";
  display: block;
  width: 26px; height: 1px;
  background: #fff;
  position: absolute;
  left: 9px;
  transition: all 0.3s ease;
}
.site-header.solid .menu-btn i, .site-header.solid .menu-btn i::before, .site-header.solid .menu-btn i::after,
.site-header.on-plain .menu-btn i, .site-header.on-plain .menu-btn i::before, .site-header.on-plain .menu-btn i::after { background: var(--ink); }
.menu-btn i { top: 22px; }
.menu-btn i::before { left: 0; top: -8px; }
.menu-btn i::after { left: 0; top: 8px; }
body.menu-open .menu-btn i { background: transparent !important; }
body.menu-open .menu-btn i::before { transform: rotate(45deg); top: 0; background: #fff; }
body.menu-open .menu-btn i::after { transform: rotate(-45deg); top: 0; background: #fff; }

.drawer {
  position: fixed;
  inset: 0;
  background: rgba(18, 16, 12, 0.96);
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
body.menu-open .drawer { opacity: 1; visibility: visible; }
.drawer nav { text-align: center; }
.drawer a { color: #fff; display: block; font-size: 17px; letter-spacing: 0.24em; padding: 13px 0; }
.drawer .drawer-cta { margin-top: 26px; }
.drawer .drawer-cta a { display: inline-block; border: 1px solid rgba(255,255,255,0.5); padding: 13px 44px; font-size: 14px; }
.drawer .drawer-tel { margin-top: 20px; color: rgba(255,255,255,0.7); font-size: 13px; letter-spacing: 0.12em; }

@media (max-width: 1023px) {
  .gnav, .header-cta { display: none; }
  .menu-btn { display: block; }
}
@media (max-width: 640px) {
  .brand .brand-logo { height: 30px; }
  .brand .brand-sub { display: none; }
}

/* ---------- hero (top) ---------- */
.hero {
  position: relative;
  height: 92vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--sumi);
}
.hero-slides, .hero-slides li { position: absolute; inset: 0; }
.hero-slides li { opacity: 0; transition: opacity 2.2s ease; }
.hero-slides li.show { opacity: 1; }
.hero-slides img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,9,7,0.42) 0%, rgba(10,9,7,0.06) 34%, rgba(10,9,7,0.0) 55%, rgba(10,9,7,0.38) 100%);
  pointer-events: none;
}
/* 2026-08 レビュー#2: 縦組みの題字がヘッダー右上の予約ボタン（.header-cta）に
   食い込んでいた。題字は上下中央に置かれるため、縦幅の短いPC（例 1440x700）や
   ハンバーガー表示の幅では上端がヘッダー（高さ76px）の帯に重なる。
   ヘッダー高さ＋余白ぶん下から始め、さらに文字サイズにvh上限を足して
   短い画面では自動で縮むようにする（文言は変更しない）。 */
.hero-copy {
  position: absolute;
  top: 96px;
  bottom: 0;
  right: clamp(28px, 7vw, 110px);
  z-index: 2;
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  color: #fff;
  text-shadow: 0 1px 22px rgba(0,0,0,0.45);
}
.hero-copy .hero-main {
  font-size: clamp(20px, min(3vw, 3.4vh), 32px);
  font-weight: 500;
  letter-spacing: 0.26em;
  line-height: 2.1;
  max-height: 88%;
}
.hero-copy .hero-tag {
  font-size: clamp(12px, min(1.3vw, 1.5vh), 14px);
  letter-spacing: 0.34em;
  color: rgba(255,255,255,0.88);
  max-height: 82%;
}
.hero-foot {
  position: absolute;
  left: clamp(24px, 5vw, 64px);
  bottom: 42px;
  z-index: 2;
  color: #fff;
  font-size: 13.5px;
  letter-spacing: 0.12em;
}
.hero-foot a { color: #fff; border-bottom: 1px solid rgba(255,255,255,0.4); padding-bottom: 2px; }
.hero-foot .tel { font-size: 17px; letter-spacing: 0.14em; }
.hero-scroll {
  position: absolute;
  right: 40px;
  bottom: 0;
  z-index: 2;
  color: rgba(255,255,255,0.8);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  writing-mode: vertical-rl;
  padding-bottom: 76px;
}
.hero-scroll::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  width: 1px; height: 64px;
  background: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(255,255,255,0));
  animation: scrollline 2.6s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollline {
  0% { transform: scaleY(0); opacity: 0; }
  35% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* sub page hero */
.page-hero {
  position: relative;
  height: 46vh;
  min-height: 320px;
  overflow: hidden;
  background: var(--sumi);
}
.page-hero img { width: 100%; height: 100%; object-fit: cover; opacity: 0.88; }
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,9,7,0.45), rgba(10,9,7,0.12) 45%, rgba(10,9,7,0.3));
}
.page-hero .page-hero-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.page-hero .page-title-en {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  margin-bottom: 14px;
}
.page-hero h1 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  text-shadow: 0 1px 18px rgba(0,0,0,0.4);
}
.page-hero .page-lead {
  margin-top: 16px;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.9);
}

/* breadcrumb */
.breadcrumb {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 24px;
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.08em;
}
.breadcrumb li + li::before { content: "／"; margin-right: 6px; color: var(--line-dark); }
.breadcrumb a { color: var(--ink-soft); }

/* ---------- top: sections ---------- */
section.band { padding: 96px 0; }
section.band-tight { padding: 72px 0; }
.band-paper { background: var(--paper); }
.band-deep { background: var(--washi-deep); }

/* notice ribbon */
.notice-bar {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.notice-bar .wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 13.5px;
}
.notice-bar .tag {
  flex-shrink: 0;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--bengara);
  border: 1px solid var(--bengara);
  padding: 3px 10px;
}

/* concept */
.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}
.concept-copy h2 {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 2.2;
  margin-bottom: 30px;
}
.concept-copy p { color: var(--ink-soft); margin-bottom: 1.6em; }
.concept-img { position: relative; }
.concept-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; box-shadow: 24px 24px 0 var(--washi-deep); }

/* pillars: editorial alternating rows */
.pillar {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  margin-bottom: clamp(56px, 8vw, 104px);
}
.pillar:last-child { margin-bottom: 0; }
.pillar.flip .pillar-img { order: 2; }
.pillar-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.pillar-body .p-num {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--bengara);
  display: block;
  margin-bottom: 12px;
}
.pillar-body h3 {
  font-size: clamp(21px, 2.4vw, 26px);
  font-weight: 500;
  letter-spacing: 0.16em;
  margin-bottom: 20px;
  line-height: 1.9;
}
.pillar-body p { color: var(--ink-soft); margin-bottom: 1.4em; }
.pillar-body .more {
  font-size: 13.5px;
  letter-spacing: 0.2em;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}

/* room strip on top */
.room-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.room-strip a {
  background: var(--paper);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.room-strip img { aspect-ratio: 1 / 0.75; object-fit: cover; width: 100%; transition: transform 0.6s ease; }
.room-strip a:hover img { transform: scale(1.05); }
.room-strip a:hover { opacity: 1; }
.room-strip .rs-name {
  display: block;
  text-align: center;
  padding: 12px 4px 14px;
  font-size: 13.5px;
  letter-spacing: 0.12em;
}
.room-strip .rs-name small { display: block; font-size: 10.5px; color: var(--ink-faint); letter-spacing: 0.14em; }

/* how to spend (時間軸) */
.spend-list { position: relative; margin-top: 8px; }
.spend-list::before {
  content: "";
  position: absolute;
  left: 87px;
  top: 8px; bottom: 8px;
  width: 1px;
  background: var(--line-dark);
}
.spend-item {
  display: grid;
  grid-template-columns: 72px 32px 1fr;
  gap: 0;
  align-items: baseline;
  padding: 17px 0;
}
.spend-item .sp-time {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--bengara);
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.spend-item .sp-dot { position: relative; align-self: center; }
.spend-item .sp-dot::before {
  content: "";
  position: absolute;
  left: 12px; top: 50%;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--washi);
  border: 1px solid var(--bengara);
  transform: translateY(-50%);
}
.spend-item h4 { font-size: 15.5px; font-weight: 600; letter-spacing: 0.12em; margin-bottom: 4px; }
.spend-item p { font-size: 13.5px; color: var(--ink-soft); }

/* bestrate (dark band) */
.band-sumi {
  background: var(--sumi);
  color: #efece4;
  padding: 88px 0;
}
.band-sumi .sec-label { color: #c99e6a; }
.band-sumi .sec-title { color: #f6f4ef; }
.band-sumi .sec-head::after { background: rgba(255,255,255,0.25); }
.band-sumi p { color: rgba(240, 236, 226, 0.8); }
.recommend-box {
  margin-top: 40px;
  background: var(--paper);
  color: var(--ink);
  padding: clamp(20px, 4vw, 44px);
}
.recommend-box a { color: var(--bengara); }

/* news */
.news-list { border-top: 1px solid var(--line); }
.news-list li { border-bottom: 1px solid var(--line); }
.news-list a {
  display: flex;
  gap: 26px;
  align-items: baseline;
  padding: 19px 6px;
}
.news-list .date {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.08em;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}
.news-list .title { font-size: 14px; }
@media (max-width: 640px) {
  .news-list a { flex-direction: column; gap: 4px; }
}

/* access digest + faq digest */
.digest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.digest-grid h3 { font-size: 19px; font-weight: 500; letter-spacing: 0.16em; margin-bottom: 18px; }
.route-mini { border-top: 1px solid var(--line); }
.route-mini li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 13px 4px;
  font-size: 13.5px;
}
.route-mini .rt { color: var(--ink-soft); }
.route-mini .tm { font-variant-numeric: tabular-nums; white-space: nowrap; }
.faq-mini dt { font-weight: 600; font-size: 14px; padding: 14px 4px 2px; letter-spacing: 0.08em; }
.faq-mini dt::before { content: "Q. "; color: var(--bengara); font-family: var(--sans); font-weight: 500; }
.faq-mini dd { font-size: 13.5px; color: var(--ink-soft); padding: 0 4px 14px; border-bottom: 1px solid var(--line); }
.digest-grid .more-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 13px;
  letter-spacing: 0.2em;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
}

/* banner (ippe) */
.bnr-band { background: var(--sumi); padding: 34px 0; }
.bnr-band img { margin: 0 auto; }

/* group */
.group-band { background: var(--washi-deep); padding: 80px 0 88px; }
.group-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 190px;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: thin;
}
.group-scroll a { flex-shrink: 0; }
.group-scroll img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.group-scroll h3 {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 10px;
  color: var(--ink-soft);
}

/* ---------- foot reservation menu ---------- */
.foot-reserve { background: var(--paper); border-top: 1px solid var(--line); padding: 64px 0; }
/* 2026-08 レビュー#3: 7本の配置を本館（honkan/css/site.css）と同じにする。
   従来の repeat(auto-fit, minmax(200px, 1fr)) は 1440px 幅で 5列＋2 に折り返し、
   2行目の右側3セルぶん（実測 650px）にコンテナ背景がそのまま露出して
   右下が塗り残しに見えていた（DANQOO・amane と同じ症状）。列数を固定して解消する。
   ※ ひるたの site.css は本ファイルから生成されるため、ひるたにも同じ配置が入る。 */
.foot-reserve .btn-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-top: 8px;
}
.foot-reserve .btn-grid a {
  border: 1px solid var(--line-dark);
  padding: 0 8px;
  min-height: 56px;
  display: flex;
  /* 本館のボタンは1行だが別亭・ひるたは副題 <span> を持つため縦積みにする */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  background: var(--washi);
}
.foot-reserve .btn-grid a span { display: block; font-size: 11px; color: var(--ink-faint); }
.foot-reserve .btn-grid a.primary {
  background: var(--sumi);
  border-color: var(--sumi);
  color: #fff;
}
.foot-reserve .btn-grid a.primary span { color: rgba(255,255,255,0.65); }
.foot-reserve .btn-grid a:hover { opacity: 1; border-color: var(--ink); }
@media (max-width: 1100px) {
  .foot-reserve .btn-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .foot-reserve .btn-grid a { font-size: 13px; letter-spacing: 0.08em; }
}
@media (max-width: 680px) {
  .foot-reserve .btn-grid { grid-template-columns: repeat(2, 1fr); }
}
.foot-reserve .reserve-note { text-align: center; margin-bottom: 26px; }
.foot-reserve .reserve-note .tel-big {
  font-size: 26px;
  letter-spacing: 0.1em;
  font-variant-numeric: tabular-nums;
}
.foot-reserve .reserve-note .tel-big a { border-bottom: none; }
.foot-reserve .reserve-note p { font-size: 12.5px; color: var(--ink-faint); }

/* ---------- footer ---------- */
.site-footer { background: var(--sumi); color: #d8d3c6; padding: 72px 0 40px; }
.site-footer .f-brand { text-align: center; margin-bottom: 30px; }
.site-footer .f-brand .f-name { font-size: 22px; letter-spacing: 0.3em; color: #fff; display: block; }
.site-footer .f-brand .f-sub { font-family: var(--sans); font-size: 10px; letter-spacing: 0.3em; color: #9c968a; display: block; margin-top: 8px; text-transform: uppercase; }
.site-footer address { font-style: normal; text-align: center; font-size: 13.5px; line-height: 2.1; color: #b5afa2; }
.site-footer .f-nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 26px; margin: 34px 0 6px; }
.site-footer .f-nav a { font-size: 13px; letter-spacing: 0.14em; color: #d8d3c6; }
.site-footer .sns { display: flex; justify-content: center; gap: 22px; margin: 26px 0 34px; }
.site-footer .sns a { font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em; color: #9c968a; border-bottom: 1px solid #4b463c; padding-bottom: 2px; }
.site-footer small { display: block; text-align: center; font-size: 11px; color: #7c766a; letter-spacing: 0.1em; }
.to-top {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 46px; height: 46px;
  border: 1px solid var(--line-dark);
  background: rgba(253,252,249,0.9);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.1em;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 90;
}
.to-top.show { opacity: 1; visibility: visible; }

/* ---------- room index ---------- */
.room-intro { max-width: 780px; margin: 0 auto 72px; text-align: left; }
.room-intro p { color: var(--ink-soft); margin-bottom: 1.5em; }
.type-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin: 72px 0 36px;
  border-bottom: 1px solid var(--line-dark);
  padding-bottom: 16px;
}
.type-head h3 { font-size: 21px; font-weight: 500; letter-spacing: 0.16em; }
.type-head .t-note { font-size: 12.5px; color: var(--ink-faint); }
.room-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 52px) clamp(24px, 3vw, 44px);
}
.room-card { background: var(--paper); border: 1px solid var(--line); display: flex; flex-direction: column; }
.room-card .rc-imgwrap { position: relative; overflow: hidden; }
.room-card .rc-imgwrap img { aspect-ratio: 16/10; object-fit: cover; width: 100%; transition: transform 0.6s ease; }
.room-card:hover .rc-imgwrap img { transform: scale(1.04); }
.room-card .rc-new {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--bengara);
  color: #fff;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.16em;
  padding: 4px 10px;
}
.room-card .rc-body { padding: 26px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.room-card h3 { font-size: 22px; font-weight: 500; letter-spacing: 0.14em; }
.room-card h3 small { font-size: 13px; color: var(--ink-faint); margin-left: 10px; letter-spacing: 0.1em; }
.room-card .rc-spec {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--bengara);
  margin: 8px 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-variant-numeric: tabular-nums;
}
.room-card .rc-desc { font-size: 13.5px; color: var(--ink-soft); flex: 1; }
.room-card .rc-btns { display: flex; gap: 10px; margin-top: 22px; }
.room-card .rc-btns a {
  flex: 1;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.12em;
  padding: 12px 6px;
  border: 1px solid var(--ink);
}
.room-card .rc-btns a.rc-reserve { background: var(--ink); color: var(--washi); }
.room-card .rc-btns a.rc-reserve:hover { background: var(--bengara); border-color: var(--bengara); opacity: 1; }
.room-card .rc-btns a:hover { opacity: 1; background: var(--washi-deep); }
.room-card .rc-btns a.rc-reserve:hover { background: var(--bengara); }

/* ---------- room detail ---------- */
.room-hero { padding: 140px 0 0; }
.room-title-block { text-align: center; margin-bottom: 44px; }
.room-title-block .r-kana { font-size: 13px; color: var(--ink-faint); letter-spacing: 0.3em; display: block; margin-bottom: 10px; }
.room-title-block h1 { font-size: clamp(30px, 4.4vw, 42px); font-weight: 500; letter-spacing: 0.24em; }
.room-title-block .r-spec {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--bengara);
  letter-spacing: 0.12em;
  margin-top: 14px;
  font-variant-numeric: tabular-nums;
}
.room-title-block .r-new { display: inline-block; margin-top: 12px; font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em; color: #fff; background: var(--bengara); padding: 4px 12px; }

/* gallery: 1 large + thumbs */
.rgal { position: relative; }
.rgal-main { position: relative; overflow: hidden; }
.rgal-main img {
  width: 100%;
  aspect-ratio: 16/8.6;
  object-fit: cover;
  display: none;
}
.rgal-main img.show { display: block; }
.rgal-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 8px; }
.rgal-thumbs button { border: none; padding: 0; cursor: pointer; background: none; opacity: 0.55; transition: opacity 0.25s; }
.rgal-thumbs button.cur, .rgal-thumbs button:hover { opacity: 1; }
.rgal-thumbs img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }

.room-desc { max-width: 780px; margin: 44px auto 0; text-align: center; color: var(--ink-soft); }

/* spec table */
.spec-list { border-top: 1px solid var(--line-dark); margin-top: 8px; }
.spec-list li {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 16px 4px;
  font-size: 14px;
}
.spec-list li strong { font-weight: 600; color: var(--ink); letter-spacing: 0.1em; }
.spec-list li div { color: var(--ink-soft); }
@media (max-width: 640px) {
  .spec-list li { grid-template-columns: 1fr; gap: 2px; }
}
.amenity-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
  margin-top: 56px;
}
.amenity-grid figure figcaption {
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-faint);
  margin-top: 10px;
  letter-spacing: 0.14em;
}
.amenity-grid dl dt {
  font-weight: 600;
  letter-spacing: 0.12em;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
  margin-bottom: 10px;
  margin-top: 26px;
  font-size: 14.5px;
}
.amenity-grid dl dt:first-child { margin-top: 0; }
.amenity-grid dl dd { font-size: 13.5px; color: var(--ink-soft); }

/* onsen band on room page */
.onsen-band { background: var(--washi-deep); }
.onsen-grid {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.onsen-grid img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.onsen-grid h3 { font-size: 22px; font-weight: 500; letter-spacing: 0.16em; margin-bottom: 20px; }
.onsen-grid p { color: var(--ink-soft); margin-bottom: 1.3em; font-size: 14px; }

/* room cta */
.room-cta { text-align: center; }
.room-cta .btn { min-width: 300px; margin: 6px 8px; }

/* prev / next */
.room-pn {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 72px;
}
.room-pn a {
  flex: 1;
  padding: 22px 18px;
  font-size: 13.5px;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}
.room-pn a + a { border-left: 1px solid var(--line); text-align: right; }
.room-pn a span { display: block; font-family: var(--sans); font-size: 10px; letter-spacing: 0.24em; color: var(--ink-faint); margin-bottom: 4px; }

/* other rooms strip */
.other-rooms { padding-top: 72px; }
.other-rooms .room-strip { grid-template-columns: repeat(5, 1fr); }

/* ---------- cuisine ---------- */
.cuisine-lead { text-align: center; max-width: 780px; margin: 0 auto; }
.cuisine-lead p { color: var(--ink-soft); margin-bottom: 1.5em; }
.meal-times {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.meal-times li {
  border: 1px solid var(--line-dark);
  padding: 12px 26px;
  font-size: 13.5px;
  background: var(--paper);
  letter-spacing: 0.08em;
}
.meal-times li strong { color: var(--bengara); font-weight: 600; margin-right: 10px; }
.photo-quad { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.photo-quad img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }
.secret-item {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.secret-item:last-child { margin-bottom: 0; }
.secret-item.flip .si-img { order: 2; }
.secret-item img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.secret-item .si-num { font-family: var(--sans); font-size: 11px; letter-spacing: 0.28em; color: var(--bengara); display: block; margin-bottom: 10px; }
.secret-item h3 { font-size: 21px; font-weight: 500; letter-spacing: 0.16em; margin-bottom: 16px; }
.secret-item p { color: var(--ink-soft); font-size: 14px; margin-bottom: 1.2em; }

/* ---------- public/esthe ---------- */
.facility-item {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  margin-bottom: clamp(48px, 6vw, 88px);
}
.facility-item img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.facility-item h2 { font-size: 22px; font-weight: 500; letter-spacing: 0.16em; margin-bottom: 16px; }
.facility-item h3 { font-size: 17px; font-weight: 600; letter-spacing: 0.12em; margin-bottom: 12px; }
.facility-item p { color: var(--ink-soft); font-size: 14px; margin-bottom: 1.2em; }

.esthe-quote {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(28px, 5vw, 56px);
  text-align: center;
  color: var(--ink-soft);
  font-size: 14px;
}
.esthe-quote p { margin-bottom: 1.6em; }
.esthe-quote p:last-child { margin-bottom: 0; }
.menu-block { border-top: 1px solid var(--line-dark); margin-top: 8px; }
.menu-item { border-bottom: 1px solid var(--line); padding: 34px 4px; }
.menu-item h3 { font-size: 18px; font-weight: 600; letter-spacing: 0.12em; margin-bottom: 12px; }
.menu-item h4 { font-size: 15px; font-weight: 600; letter-spacing: 0.1em; margin: 18px 0 6px; }
.menu-item p { font-size: 13.5px; color: var(--ink-soft); }
.price-row { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 14px; }
.price-row span {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}
.price-row i { font-style: normal; color: var(--ink); font-weight: 500; margin-left: 8px; }

/* ---------- access ---------- */
.map-frame { border: 1px solid var(--line); }
.map-frame iframe { display: block; width: 100%; height: 420px; border: 0; }
.addr-block { text-align: center; margin: 36px 0 0; }
.addr-block .a-name { font-size: 19px; font-weight: 600; letter-spacing: 0.2em; }
.addr-block p { color: var(--ink-soft); font-size: 14px; }
.route-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 44px; flex-wrap: wrap; }
.route-tabs a {
  border: 1px solid var(--line-dark);
  padding: 11px 26px;
  font-size: 13.5px;
  letter-spacing: 0.1em;
  background: var(--paper);
}
.route-tabs a:hover { border-color: var(--ink); opacity: 1; }
.route-sec { margin-bottom: 72px; }
.route-sec h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
  padding-left: 14px;
  border-left: 2px solid var(--bengara);
}
.route-sec .rs-sub { font-size: 13px; color: var(--ink-faint); margin-bottom: 24px; padding-left: 16px; }
.route-table { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.route-line { background: var(--paper); border: 1px solid var(--line); padding: 24px 22px; }
.route-line .rl-from { font-weight: 600; font-size: 15px; letter-spacing: 0.1em; }
.route-line .rl-time { font-family: var(--sans); font-size: 12px; color: var(--bengara); letter-spacing: 0.08em; margin-left: 8px; }
.route-line ol { margin-top: 12px; }
.route-line ol li {
  font-size: 13px;
  color: var(--ink-soft);
  padding-left: 16px;
  position: relative;
  padding-top: 3px;
  padding-bottom: 3px;
}
.route-line ol li::before {
  content: "";
  position: absolute;
  left: 4px; top: 12px;
  width: 5px; height: 5px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  background: var(--washi);
}
.route-line ol li.via {
  font-size: 11.5px;
  color: var(--ink-faint);
  padding-left: 24px;
}
.route-line ol li.via::before { display: none; }
.route-line ol li.goal { color: var(--bengara); font-weight: 600; }
.route-line ol li.goal::before { border-color: var(--bengara); background: var(--bengara); }
.route-imgs img { margin-bottom: 18px; border: 1px solid var(--line); }
.walk-note { background: var(--paper); border: 1px solid var(--line); padding: 26px 28px; margin-top: 24px; font-size: 14px; color: var(--ink-soft); }
.walk-note strong { color: var(--ink); display: block; margin-bottom: 6px; letter-spacing: 0.1em; }

/* ---------- faq ---------- */
.faq-full { border-top: 1px solid var(--line-dark); }
.faq-full details { border-bottom: 1px solid var(--line); }
.faq-full summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 40px 22px 4px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  position: relative;
}
.faq-full summary::-webkit-details-marker { display: none; }
.faq-full summary::before { content: "Q."; color: var(--bengara); font-family: var(--sans); margin-right: 12px; }
.faq-full summary::after {
  content: "";
  position: absolute;
  right: 12px; top: 50%;
  width: 9px; height: 9px;
  border-right: 1px solid var(--ink-faint);
  border-bottom: 1px solid var(--ink-faint);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.25s ease;
}
.faq-full details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq-full .faq-a {
  padding: 0 4px 24px 4px;
  color: var(--ink-soft);
  font-size: 14px;
}
.faq-full .faq-a::before { content: "A."; color: var(--ink-faint); font-family: var(--sans); margin-right: 12px; }

/* ---------- sightseeing ---------- */
.sight-lead { max-width: 780px; margin: 0 auto; text-align: left; }
.sight-lead p { color: var(--ink-soft); margin-bottom: 1.5em; }
.season-strip {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 44px auto 0;
  border: 1px solid var(--line-dark);
  max-width: 720px;
  background: var(--paper);
}
.season-strip li { flex: 1; text-align: center; padding: 16px 6px; border-left: 1px solid var(--line); }
.season-strip li:first-child { border-left: none; }
.season-strip .ss-season { font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.2em; color: var(--bengara); display: block; margin-bottom: 4px; }
.season-strip .ss-what { font-size: 13px; letter-spacing: 0.06em; }
.spot-feature {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  margin-bottom: 56px;
}
.spot-feature h3 { font-size: 21px; font-weight: 500; letter-spacing: 0.14em; margin-bottom: 14px; }
.spot-feature p { color: var(--ink-soft); font-size: 14px; margin-bottom: 1.2em; }
.spot-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px 24px; }
.spot-card { background: var(--paper); border: 1px solid var(--line); }
.spot-card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.spot-card .sc-body { padding: 22px 24px 24px; }
.spot-card h3 { font-size: 17px; font-weight: 600; letter-spacing: 0.1em; margin-bottom: 10px; }
.spot-card p { font-size: 13px; color: var(--ink-soft); margin-bottom: 8px; }
.spot-card .sc-meta { font-size: 12px; color: var(--ink-faint); border-top: 1px solid var(--line); padding-top: 10px; margin-top: 12px; }
.spot-card .sc-meta a { color: var(--bengara); border-bottom: 1px solid currentColor; }

/* ---------- english ---------- */
.en body { letter-spacing: 0.02em; }
.en-hero-copy { max-width: 780px; margin: 0 auto; text-align: center; }
.en-section h2 { font-size: 26px; letter-spacing: 0.14em; font-weight: 500; margin-bottom: 18px; }
.overview-table { width: 100%; border-collapse: collapse; border-top: 1px solid var(--line-dark); }
.overview-table th, .overview-table td {
  border-bottom: 1px solid var(--line);
  padding: 18px 10px;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}
.overview-table th { width: 180px; font-weight: 600; letter-spacing: 0.08em; white-space: nowrap; }
.overview-table td { color: var(--ink-soft); }
@media (max-width: 640px) {
  .overview-table th { display: block; width: auto; border-bottom: none; padding-bottom: 0; }
  .overview-table td { display: block; padding-top: 4px; }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  section.band { padding: 68px 0; }
  .concept-grid, .digest-grid, .onsen-grid, .amenity-grid,
  .pillar, .secret-item, .facility-item, .spot-feature { grid-template-columns: 1fr; }
  .pillar.flip .pillar-img, .secret-item.flip .si-img { order: 0; }
  .room-cards { grid-template-columns: 1fr; }
  .room-strip, .other-rooms .room-strip { grid-template-columns: repeat(2, 1fr); }
  .photo-quad { grid-template-columns: repeat(2, 1fr); }
  .hero-copy { right: 24px; }
  .season-strip { flex-wrap: wrap; }
  .season-strip li { flex-basis: 50%; border-top: 1px solid var(--line); }
  .spend-list::before { left: 79px; }
}

/* ============================================================
   和スキン — コテコテの日本の和（朱・金茶・和紙・青海波・筆文字）
   ============================================================ */

/* 和紙の質感（微細ノイズ） */
body {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.45 0 0 0 0 0.38 0 0 0 0 0.22 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}

/* 筆文字ラベル 「─ 客室 ─」 */
.sec-label {
  font-family: var(--brush);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: none;
  color: var(--bengara);
  display: flex;
  align-items: center;
  gap: 14px;
}
.sec-label::before, .sec-label::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--line-dark);
}
.sec-head.center .sec-label { justify-content: center; }
.band-sumi .sec-label { color: #c99e6a; }
.band-sumi .sec-label::before, .band-sumi .sec-label::after { background: rgba(201, 158, 106, 0.4); }

/* 見出し下は 朱と金茶の二重罫 */
.sec-head::after {
  width: 64px;
  height: 5px;
  background: none;
  border-top: 1px solid var(--bengara);
  border-bottom: 1px solid var(--kin);
}
.band-sumi .sec-head::after { border-top-color: #c99e6a; border-bottom-color: rgba(201,158,106,0.45); }

/* 二重枠のボタン（額装風） */
.btn {
  background: var(--paper);
  outline: 1px solid rgba(38, 34, 27, 0.35);
  outline-offset: 3px;
}
.btn:hover { outline-color: var(--ink); }
.btn-fill {
  background: linear-gradient(180deg, #46708e, #33566e);
  border-color: #33566e;
  color: #fff;
  outline: 1px solid rgba(60, 90, 120, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 2px 8px rgba(43, 69, 87, 0.25);
}
.btn-fill:hover { background: linear-gradient(180deg, #3d647f, #2b4557); outline-color: #2b4557; }

/* 漆調の予約ボタン */
.header-cta .cta-book {
  background: linear-gradient(180deg, #46708e, #33566e);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 1px 6px rgba(0, 0, 0, 0.25);
}
.header-cta .cta-book:hover { background: linear-gradient(180deg, #3d647f, #2b4557); }
.foot-reserve .btn-grid a.primary {
  background: linear-gradient(180deg, #262119, #171511);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* 落款印 */
.hanko {
  writing-mode: vertical-rl;
  font-family: var(--brush);
  background: var(--bengara);
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.22em;
  padding: 12px 8px 10px;
  border-radius: 2px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  align-self: flex-start;
  margin-top: 6px;
}

/* 青海波（明） */
.band-deep, .group-band {
  background-color: var(--washi-deep);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='20'%3E%3Cg fill='%23ece4cf' stroke='%23d3c6a4' stroke-width='1'%3E%3Ccircle cx='20' cy='20' r='19'/%3E%3Ccircle cx='20' cy='20' r='13'/%3E%3Ccircle cx='20' cy='20' r='7'/%3E%3Ccircle cx='0' cy='30' r='19'/%3E%3Ccircle cx='0' cy='30' r='13'/%3E%3Ccircle cx='0' cy='30' r='7'/%3E%3Ccircle cx='40' cy='30' r='19'/%3E%3Ccircle cx='40' cy='30' r='13'/%3E%3Ccircle cx='40' cy='30' r='7'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 40px 20px;
}

/* 青海波（暗・金茶の線） */
.band-sumi, .site-footer {
  background-color: var(--sumi);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='20'%3E%3Cg fill='%23171511' stroke='%23make' stroke-width='1'%3E%3C/g%3E%3C/svg%3E");
}
.band-sumi, .site-footer {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='20'%3E%3Cg fill='%23171511' stroke='%23352b1c' stroke-width='1'%3E%3Ccircle cx='20' cy='20' r='19'/%3E%3Ccircle cx='20' cy='20' r='13'/%3E%3Ccircle cx='20' cy='20' r='7'/%3E%3Ccircle cx='0' cy='30' r='19'/%3E%3Ccircle cx='0' cy='30' r='13'/%3E%3Ccircle cx='0' cy='30' r='7'/%3E%3Ccircle cx='40' cy='30' r='19'/%3E%3Ccircle cx='40' cy='30' r='13'/%3E%3Ccircle cx='40' cy='30' r='7'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 40px 20px;
}

/* 見出しの飾り ◆ */
.type-head h3::before, .route-sec h3 { position: relative; }
.type-head h3::before {
  content: "◆";
  color: var(--bengara);
  font-size: 11px;
  margin-right: 12px;
  vertical-align: 2px;
}
.pillar-body .p-num, .secret-item .si-num { font-family: var(--brush); font-size: 15px; letter-spacing: 0.24em; }
.spend-item .sp-time { font-family: var(--serif); font-weight: 600; }
.page-hero .page-title-en {
  font-family: var(--brush);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: none;
}

/* 客室カード: 二重の額縁 */
.room-card {
  border: 1px solid var(--line-dark);
  box-shadow: 0 0 0 4px var(--paper), 0 0 0 5px var(--line);
}
.room-card .rc-new { font-family: var(--brush); letter-spacing: 0.1em; font-size: 11px; }

/* 客室名の脇に朱の縦点 */
.room-title-block h1 { position: relative; display: inline-block; }
.room-title-block .r-kana { font-family: var(--brush); letter-spacing: 0.4em; color: var(--bengara); }

/* お知らせ帯・パンくずも和紙に */
.notice-bar .tag { font-family: var(--brush); font-size: 12px; }
.breadcrumb { background: var(--washi); }

/* ヒーローの題字まわり */
.hero-copy .hero-main { font-weight: 600; }
.hero-scroll { font-family: var(--serif); letter-spacing: 0.4em; }

/* フッター飾り */
.site-footer .f-brand .f-sub { letter-spacing: 0.22em; }
.site-footer .f-nav a:hover { color: #c99e6a; opacity: 1; }

/* 季節帯・FAQ の和飾り */
.season-strip .ss-season { font-family: var(--brush); font-size: 12px; color: var(--bengara); }
.faq-full summary::before, .faq-mini dt::before { font-family: var(--brush); }
.faq-full .faq-a::before { font-family: var(--brush); }

/* 罫線色をやや濃く（帳面らしく） */
.spec-list { border-top: 2px solid var(--ink); }
.overview-table { border-top: 2px solid var(--ink); }
.menu-block { border-top: 2px solid var(--ink); }

/* 落款印はヒーロー題字の左下（書の落款位置）へ */
.hero-copy .hanko {
  align-self: flex-end;
  margin: 0 0 11vh;
}

/* 489banおすすめプラン差し込み（recommendjs）のカード化 */
/* [C-7] 列数を repeat(3, 1fr) で固定していたため、489ban が返すプランが4件だと
   4件目だけが単独で次の行に回り込んでいた（1440/1280px 実測）。
   件数は 489ban 側の設定で変わるので、幅に応じて列数が決まる auto-fit にする。
   min 200px は本文カラム（.wrap 1120px − .recommend-box の内側余白）で
   4列が収まる上限値。3件なら auto-fit が空トラックを畳むので従来どおり3列で並ぶ。 */
#recommendScript {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
  align-items: stretch;
}
#recommendScript .PlanView {
  background: var(--washi);
  border: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
#recommendScript .picture, #recommendScript .main_picture { margin: 0; }
#recommendScript .picture img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
#recommendScript .explan {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
#recommendScript .plan { line-height: 1.9; }
#recommendScript .plan a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
}
#recommendScript .plan a:hover { color: var(--bengara); opacity: 1; }
#recommendScript .comment { font-size: 12.5px; color: var(--ink-soft); }
/* [2026-08-22] 「詳細/ご予約」の下揃え — 入れ子に依存しない当て方に変更。
   これまでは .PlanView → .explan → .planlist と flex を繋いで margin-top:auto で
   落としていたが、489ban のマークアップは実物を確認できない（予約エンジンへの
   自動アクセス禁止／docs/ai-access-guardrails.md §1）。カードの器は揃うのに
   ボタンだけ揃わない状態が残ったため、途中の要素が何であっても成立するよう
   .planlist をカードの下端に絶対配置する。要件は「.planlist が .PlanView の
   子孫であること」だけ。カードの下端にボタン1つ分の領域を空けて重なりを防ぐ。 */
#recommendScript .PlanView { position: relative; padding-bottom: 78px; }
#recommendScript .planlist {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  margin-top: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
@media (max-width: 900px) {
  #recommendScript .PlanView { padding-bottom: 74px; }
  #recommendScript .planlist { left: 16px; right: 16px; bottom: 18px; }
}
#recommendScript .planlist_header { display: none; }
/* [2026-08-23] カードが縦に無駄に長い件。
   489ban が返す説明文はプランごとに長さがまちまちで、1枚だけ長い説明があると
   グリッドの引き伸ばしで全4枚がその高さに揃い、短いカードに200〜260pxの空白が残る
   （ダミーで実測）。プラン名と説明文の行数を固定して、どのカードでも文字ブロックの
   高さが同じになるようにする。四角の大きさは揃えたまま、余白だけが消える。
   はみ出した分は末尾に「…」が付く。プラン名の全文は詳細ページで読める。 */
#recommendScript .plan,
#recommendScript .comment {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#recommendScript .plan { -webkit-line-clamp: 3; }
#recommendScript .comment { -webkit-line-clamp: 2; }
@media (max-width: 900px) {
  /* 1列では引き伸ばしが起きないので、説明文は省略せず出す */
  #recommendScript .comment { -webkit-line-clamp: 4; }
}

/* [2026-08-22] 「詳細/ご予約」を下端で揃える。489ban のマークアップは .PlanView が
   直接の子で来る場合と、ラッパーに包まれて来る場合がある。後者だとグリッドが伸ばすのは
   ラッパーの方で、.PlanView は自然高のままになり .planlist の margin-top:auto が効かない。
   #recommendScript の直下には 489ban の <script> も居るので、:has() で
   「.PlanView を直接持つ要素」だけに絞る。float/inline-block を当てられた場合にも
   引き伸ばしが効くよう明示的に打ち消しておく。 */
/* [2026-08-22] カードの高さ揃え — ラッパーの深さに依存しない当て方。
   489ban は .PlanView をラッパーに包んで返すことがあり、深さも分からない
   （実マークアップは確認できない／docs/ai-access-guardrails.md §1）。
   「.PlanView を内側に持つ要素」＝ラッパーの全階層を、伸びる縦フレックスにして
   グリッドの引き伸ばしを .PlanView まで伝える。#recommendScript 直下には 489ban の
   <script> も居るが、.PlanView を含まないので一致しない（display を与えると
   スクリプトが可視化されてしまうため、要素種別で選んではいけない）。 */
#recommendScript *:has(.PlanView) {
  /* 489ban が要素に直接 style="float:left;display:inline-block" を書いてくる場合が
     あり、そのときは通常の宣言では勝てないので !important で打ち消す。 */
  display: flex !important;
  flex-direction: column !important;
  align-self: stretch !important;
  float: none !important;
  min-width: 0;
}
#recommendScript *:has(.PlanView) > * { flex: 1 1 auto; }
#recommendScript > .PlanView { align-self: stretch !important; float: none !important; }


#recommendScript .planlist ul { display: block; }
#recommendScript .planlist li a {
  display: block;
  text-align: center;
  border: 1px solid var(--bengara);
  color: var(--bengara);
  font-size: 13px;
  letter-spacing: 0.16em;
  padding: 10px 8px;
}
#recommendScript .planlist li a:hover { background: var(--bengara); color: #fff; opacity: 1; }
/* [C-7] タブレット幅は4列を置くと1枚あたりが細くなりすぎるため2列。
   4件なら 2+2 で割り切れ、ここでも1枚だけの回り込みが起きない。 */
@media (max-width: 1023px) {
  #recommendScript { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  #recommendScript { grid-template-columns: 1fr; }
}

/* お知らせ → グループマガジン一覧への導線（2026-08 レビュー反映） */
.sec-more { margin-top: 22px; text-align: center; }
.sec-more a {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.14em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}

/* ============================================================
   客室「選ぶのが楽しい」— 2026-08 レビュー反映
   十室の違いが名前だけでは伝わらないため、選ぶ軸を先に示し、
   各室カードにも手がかり（タイプ／広さ／定員／湯の趣）を添える。
   ============================================================ */
.choose-axes {
  max-width: 860px;
  margin: 0 auto 44px;
  border-top: 1px solid var(--line);
}
.choose-axes li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 18px;
  padding: 15px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.choose-axes li span {
  flex: 0 0 13em;
  font-size: 13.5px;
  color: var(--bengara);
  letter-spacing: 0.1em;
}
.choose-axes li em {
  font-style: normal;
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
}
@media (max-width: 640px) {
  .choose-axes li span { flex: 0 0 100%; }
}

.room-strip-rich { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 900px) { .room-strip-rich { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .room-strip-rich { grid-template-columns: repeat(2, 1fr); } }
.room-strip-rich .rs-hint {
  display: block;
  margin-top: 6px;
  font-family: var(--sans);
  font-size: 10.5px;
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
}

/* ============================================================
   おこもり（朝夕お部屋食 × 全室露天風呂）— 2026-08 追記
   「一歩も外に出ずに完結する一夜」に含まれるものを並べ、
   その末尾に静かに料金の起点（または空室状況への導線）を置く。
   ============================================================ */
.okomori-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 52px;
  align-items: center;
}
.okomori-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.okomori-list { border-top: 1px solid var(--line); }
.okomori-list li {
  padding: 18px 2px;
  border-bottom: 1px solid var(--line);
}
.okomori-list .ok-name {
  display: block;
  font-size: 15.5px;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}
.okomori-list .ok-name::before {
  content: "―";
  color: var(--bengara);
  margin-right: 10px;
}
.okomori-list .ok-desc {
  display: block;
  font-size: 13.5px;
  line-height: 1.95;
  color: var(--ink-soft);
}
.okomori-close {
  text-align: center;
  margin-top: 40px;
  font-size: 15px;
  letter-spacing: 0.14em;
  color: var(--ink);
}
/* 料金の起点 — 声を張らず、罫線の内側に静かに置く */
.okomori-foot {
  max-width: 520px;
  margin: 34px auto 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.okomori-price { font-size: 15px; letter-spacing: 0.1em; }
.okomori-price span {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.2em;
  color: var(--ink-faint);
  margin-right: 14px;
}
.okomori-price strong {
  font-weight: 500;
  font-size: 21px;
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
}
.okomori-note { font-size: 12px; color: var(--ink-faint); margin-top: 8px; }
.okomori-ask { font-size: 13.5px; color: var(--ink-soft); }
.okomori-cta { margin-top: 20px; }
@media (max-width: 860px) {
  .okomori-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ============================================================
   ひとり旅（全館共通施策）— 2026-08 追記
   大人だけの宿というトーンを保ったまま、
   「誰にも会わずに完結する一夜」を別亭ならではの切り口として示す。
   ============================================================ */
.solo-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.solo-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.solo-body .sec-title { margin-bottom: 22px; }
.solo-body .lead { margin-bottom: 26px; }
.solo-points { border-top: 1px solid var(--line); }
.solo-points li { padding: 15px 2px; border-bottom: 1px solid var(--line); }
.solo-points .sp-name {
  display: block;
  font-size: 14.5px;
  letter-spacing: 0.12em;
  color: var(--bengara);
  margin-bottom: 3px;
}
.solo-points .sp-desc { display: block; font-size: 13px; line-height: 1.95; color: var(--ink-soft); }
@media (max-width: 860px) {
  .solo-grid { grid-template-columns: 1fr; gap: 28px; }
  .solo-img img { aspect-ratio: 4 / 3; }
}

/* ひとり旅ページ：四つの愉しみ */
.solo-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.solo-card { background: var(--paper); padding: 34px 32px; }
.solo-card h3 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.solo-card h3::before {
  content: "";
  display: block;
  width: 26px;
  height: 1px;
  background: var(--bengara);
  margin-bottom: 14px;
}
.solo-card p { font-size: 13.5px; line-height: 2; color: var(--ink-soft); }
@media (max-width: 700px) {
  .solo-cards { grid-template-columns: 1fr; }
  .solo-card { padding: 26px 22px; }
}

/* 二名定員のお部屋だけを並べる用（ひとり旅ページ） */
.room-strip-three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .room-strip-three { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .room-strip-three { grid-template-columns: repeat(2, 1fr); } }

/* 2026-08 レビュー#2: エステページの写真3点（さざね版に合わせる） */
.esthe-photos { display: flex; flex-wrap: wrap; gap: 14px; list-style: none; margin: 40px 0 0; padding: 0; }
.esthe-photos li { flex: 1 1 0; min-width: 0; }
.esthe-photos img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
@media (max-width: 767px) {
  .esthe-photos { gap: 10px; }
  .esthe-photos li { flex: 1 1 100%; }
}

/* 2026-08 レビュー#2: 原寸1000pxの図版・写真が .wrap（内寸1072px）の中で
   左に寄って見えるため中央に置く。館内図はさらに一回り小さく。 */
.fig-center img { margin-left: auto; margin-right: auto; }
.fig-floormap img { max-width: 680px; }
/* 2026-08 レビュー#3: SPで館内図がビューポートを超えて横スクロールが出ていた
   （390px で 680px のまま描画され scrollWidth 704 > 390）。上限を画面幅に従わせる。 */
@media (max-width: 700px) { .fig-floormap img { max-width: 100%; } }

/* 2026-08 レビュー#3: /public/esthe.html の OCEAN ロゴ（本館と同じ実装）。
   別亭にはロゴが無かったため本館・さざねと同じ h01.jpg を中央寄せで追加する。
   幅は さざね renew.css / 本館 site.css の .esthe-logo と同一（320px / SP 236px）。
   ※ ひるたの site.css は本ファイルを元に生成される。ひるた側は build_hiruta.py の
     CSS_EXTRA が同名ルールを後から上書きするため（margin-bottom 30px / SP 22px）、
     ひるたの見た目は本追加では変わらない。 */
.esthe-logo { max-width: 320px; margin: 0 auto 40px; }
.esthe-logo img { display: block; width: 100%; height: auto; }
@media (max-width: 640px) {
  .esthe-logo { max-width: 236px; margin-bottom: 28px; }
}

/* [2026-08-23 確認シート A-15〜A-17] 年齢のご利用条件はファーストビューに置く。
   FAQ や予約プランの奥にしか無いと、予約後に判明してトラブルになる。 */
.hero-note {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.8;
  opacity: 0.86;
}
@media (max-width: 600px) { .hero-note { font-size: 11px; margin-top: 10px; } }


/* ============================================================
   ひるた調整 — 差し色を弁柄朱から海の藍へ。
   小さな海辺の宿らしく、飾りをひかえめに柔らかく。
   ============================================================ */
.hanko { box-shadow: 0 1px 6px rgba(0, 0, 0, 0.25); }
.room-card, .spot-card, .route-line, .esthe-quote { border-radius: 2px; }
.btn, .header-cta .cta-book, .foot-reserve .btn-grid a { border-radius: 2px; }
.hero-copy .hero-main { font-weight: 500; }

/* ============================================================
   2026-08 レビュー#3（ひるた追加分）
   ============================================================ */

/* [1] ヘッダーロゴ — 本番と同じ /files/common/logo.png を使う。
   素材は 140x140 の正方形（白抜き1色）。別亭の横長ロゴ用の 42px 指定のままだと
   正方形が小さく潰れるため、等倍（140px）を超えない範囲で少し大きく取る。
   本番サイトも追従ヘッダーで 60px / 50px に縮めて出しており、その流儀に近い。 */
.brand .brand-logo { height: 56px; width: 56px; }
.site-header.solid .brand-logo { height: 46px; width: 46px; }
@media (max-width: 640px) {
  .brand .brand-logo { height: 42px; width: 42px; }
}

/* [3] 「ひるたのこころ」の左右の写真の大きさを揃える。
   原因は画像の実寸差（4枚とも 2000x1125 で同一）ではなく .pillar のグリッド。
   列は 7fr 5fr 固定で、.flip は .pillar-img を order:2 で右へ送るだけなので、
   偶数行の写真だけが狭い 5fr 側に入り 583px→417px と細くなっていた。
   列を左右等分にして、写真も本文も左右で同じ幅に揃える。
   （flip 側だけ列比を入れ替える案も試したが、狭くなった本文カラムで
     「厳選の地魚をお部屋で味わ／う。」と見出しが1文字だけ折り返すため採らない） */
.pillar { grid-template-columns: 1fr 1fr; }
@media (max-width: 900px) {
  .pillar { grid-template-columns: 1fr; }
}

/* [7][9] 図版・写真の中央寄せ。
   img は display:block なので、原寸が本文カラムより狭いと左に寄る。
   館内図（1000x600）は原寸だと大きいので最大幅も絞る。 */
.figure-center { margin-left: auto; margin-right: auto; }
.figure-center img { margin-left: auto; margin-right: auto; }
.figure-floorplan { max-width: 720px; }

/* ヒーローを持たないページ（エステ）はパンくずが position:fixed のヘッダーに
   潜り込んでいた。ロゴを画像にして高さが増えた分、罫線がロゴを横切って見えるため、
   本文の開始位置をヘッダーの高さぶん下げる（合計の余白は従来と同じ）。 */
main.under-header { padding-top: 76px; }

/* [8] エステサロン「OCEAN」ページ導入部 — さざね /public/esthe.html と同じ設計。
   ロゴを見出しの上へ／見出しは小さめ／見出しと本文の間隔は広め／
   任意改行は狭い画面で解除。数値はさざね renew.css と揃えている。 */
.esthe-logo { max-width: 320px; margin: 0 auto 30px; }
.esthe-logo img { width: 100%; height: auto; }
.esthe-title { font-size: clamp(16.5px, 1.9vw, 21px); line-height: 2.2; letter-spacing: 0.08em; }
.esthe-catch {
  text-align: center;
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.1em;
}
.esthe-intro .esthe-catch + .esthe-quote { margin-top: clamp(40px, 5vw, 64px); }
/* 本文の1行がケース内に収まらず1文字だけ折り返していたので内側余白を詰める */
.esthe-intro .esthe-quote { padding-left: clamp(20px, 2.4vw, 34px); padding-right: clamp(20px, 2.4vw, 34px); }
@media (max-width: 640px) {
  .esthe-logo { max-width: 236px; margin-bottom: 22px; }
  /* 狭い画面では任意改行を解除し、自然な折返しに任せる */
  .esthe-intro br.opt { display: none; }
}

/* [10] SP キービジュアル。落款印は .hero-copy の下端（margin-bottom:11vh）に
   置かれるため、幅の狭い画面では左下の Tel./English Page（.hero-foot）と
   縦にも横にも重なっていた（390x844 実測で 10px 重なり）。
   題字カラムの下端を持ち上げて、落款が導線に被らないようにする。 */
@media (max-width: 700px) {
  .hero-copy { bottom: 150px; }
  .hero-copy .hanko { margin-bottom: 0; }
}

/* [ひるた3] 交通案内 — 本館・別亭と同じルート表（.route-table / .route-line）に揃えた。
   ルート図の画像は既定では畳んでおき、「ルート図を画像で見る」で展開／再クリックで
   折りたたむ（<details> のアコーディオン）。本館・別亭は同じ体裁をインラインstyleで
   当てているが、ひるたでは開閉マーカーの向きも制御したいのでクラスに切り出す。 */
.route-figs { margin-top: 20px; }
.route-figs > summary {
  cursor: pointer;
  font-size: 13px;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.route-figs > summary::-webkit-details-marker { display: none; }
.route-figs > summary::before {
  content: "＋";
  font-size: 11px;
  line-height: 1;
  color: var(--bengara);
}
.route-figs[open] > summary::before { content: "－"; }
.route-figs > summary:hover { color: var(--ink); }
.route-figs .route-imgs { margin-top: 16px; }
.route-figs .route-imgs img { width: 100%; height: auto; }
.route-figs .route-imgs img:last-child { margin-bottom: 0; }
