/* ============================================================
   紀伊乃国屋別亭 — "墨と生成" (Sumi & Kinari)
   生成りの和紙地 × 墨インク × 弁柄一色。明朝体、ヘアライン罫線。
   ============================================================ */
:root {
  --washi: #f4efe2;
  --paper: #faf6ea;
  --washi-deep: #ece4cf;
  --ink: #26221b;
  --ink-soft: #5c5648;
  --ink-faint: #8b8371;
  --line: #ddd3ba;
  --line-dark: #c2b48f;
  --bengara: #9e2b22;      /* 朱 */
  --bengara-deep: #7d1f17;
  --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 { 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-name { font-size: 15px; white-space: nowrap; letter-spacing: 0.16em; }
  .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;
}
.hero-copy {
  position: absolute;
  top: 0;
  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, 3vw, 32px);
  font-weight: 500;
  letter-spacing: 0.26em;
  line-height: 2.1;
  max-height: 88%;
}
.hero-copy .hero-tag {
  font-size: clamp(12px, 1.3vw, 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 { 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 / 2.9; 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; }
.foot-reserve .btn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 8px;
}
.foot-reserve .btn-grid a {
  border: 1px solid var(--line-dark);
  padding: 16px 10px;
  text-align: center;
  font-size: 13.5px;
  letter-spacing: 0.1em;
  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); }
.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, #b23524, #8c2318);
  border-color: #8c2318;
  color: #fff;
  outline: 1px solid rgba(158, 43, 34, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 2px 8px rgba(125, 31, 23, 0.25);
}
.btn-fill:hover { background: linear-gradient(180deg, #a02c1c, #7d1f17); outline-color: #7d1f17; }

/* 漆調の予約ボタン */
.header-cta .cta-book {
  background: linear-gradient(180deg, #b23524, #8c2318);
  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, #a02c1c, #7d1f17); }
.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）のカード化 */
#recommendScript {
  display: grid;
  grid-template-columns: repeat(3, 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); }
#recommendScript .planlist { margin-top: auto; }
#recommendScript .planlist_header { display: none; }
#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; }
@media (max-width: 900px) {
  #recommendScript { grid-template-columns: 1fr; }
}
