/* ==========================================================================
   HOTEL EVE PLAZA 2026 — 案A「一日の光」
   季節の色は html[data-season] で切り替わる。琥珀色の --lamp だけは一年中同じ。
   ========================================================================== */

:root {
  --paper: #E5E8DF; --ink: #1B241E; --land: #2D5940; --mist: #8BAAA6; --night: #131E18;
  --lamp: #E3A13B; --on-dark: #F1F0EA;
  --gut: clamp(16px, 4vw, 56px);
  --f-display: "Archivo", "Arial Narrow", system-ui, sans-serif;
  --f-sans: "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, system-ui, sans-serif;
  --f-hand: "Klee One", "Zen Kaku Gothic New", sans-serif;
  --f-mono: "DM Mono", ui-monospace, Menlo, monospace;
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .5 0 0 0 0 .5 0 0 0 0 .5 0 0 0 .6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
html[data-season="spring"] { --paper: #ECEEE5; --ink: #1F2922; --land: #5E8A3E; --mist: #A9C2CF; --night: #1A2430; }
html[data-season="summer"] { --paper: #E5E8DF; --ink: #1B241E; --land: #2D5940; --mist: #8BAAA6; --night: #131E18; }
html[data-season="autumn"] { --paper: #EAE3D8; --ink: #2A221C; --land: #9A4726; --mist: #C29A4B; --night: #211812; }
html[data-season="winter"] { --paper: #ECF0F3; --ink: #161F2A; --land: #2A3F63; --mist: #AAB9C9; --night: #0F1827; }

/* ---------- base ---------- */
body.eve-new, body.eve-legacy { margin: 0; position: relative; background: var(--paper); color: var(--ink); font-family: var(--f-sans); -webkit-font-smoothing: antialiased; }
body.eve-new { font-size: 15px; line-height: 1.9; }
.eve-new *, .eve-new *::before, .eve-new *::after { box-sizing: border-box; }
.eve-new img { max-width: 100%; height: auto; display: block; }
.eve-new a { color: inherit; }
.eve-new h1, .eve-new h2, .eve-new h3, .eve-new p, .eve-new figure, .eve-new blockquote, .eve-new dl, .eve-new dd { margin: 0; }
:where(.site-head, .site-foot, .eve-new) :focus-visible { outline: 2px solid var(--lamp); outline-offset: 3px; }

.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--ink); color: var(--paper); padding: 8px 14px; text-decoration: none; }
.skip-link:focus { top: 12px; }

.mono { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; line-height: 1.7; }

.ph-wrap { position: relative; overflow: hidden; background: color-mix(in oklab, var(--night), var(--mist) 20%); }
.ph-wrap::after { content: ""; position: absolute; inset: 0; background-image: var(--grain); opacity: .16; mix-blend-mode: overlay; pointer-events: none; }
.ph { width: 100%; height: 100% !important; object-fit: cover; filter: saturate(.92) contrast(1.04) sepia(.06); }
.ph-empty { position: absolute; inset: 0; display: grid; place-items: center; color: color-mix(in oklab, var(--on-dark) 75%, transparent);
  background: repeating-linear-gradient(135deg, transparent 0 14px, color-mix(in oklab, var(--on-dark) 7%, transparent) 14px 15px); }

.btn-lamp, .btn-ink { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; font-family: var(--f-sans); font-weight: 700; font-size: 14px; line-height: 1.3; padding: 12px 20px; border-radius: 2px; white-space: nowrap; transition: filter .2s, background-color .2s; }
.btn-lamp { background: var(--lamp); color: #1E190F !important; }
.btn-lamp:hover { filter: brightness(1.07); }
.btn-ink { background: var(--ink); color: var(--paper) !important; }
.btn-ink:hover { background: color-mix(in oklab, var(--ink), var(--land) 40%); }
.link-line { font-weight: 700; text-decoration: none; border-bottom: 2px solid var(--lamp); padding-bottom: 2px; }

.season-preview { position: fixed; z-index: 99; left: 50%; bottom: 16px; transform: translateX(-50%); background: #1F2225; color: #F0F1EC; font-size: 13px; line-height: 1.5; padding: 10px 16px; border-radius: 6px; box-shadow: 0 6px 24px rgba(0,0,0,.25); max-width: calc(100% - 32px); }
.season-preview a { color: var(--lamp); margin-left: 8px; }

/* ---------- header ---------- */
/* メニューバーはスクロールしても上に固定。トップページは写真の上では透明、スクロールすると背景つき */
html { scroll-padding-top: calc(var(--head-h, 72px) + var(--wp-admin--admin-bar--height, 0px) + 12px); }
.site-head { position: sticky; top: var(--wp-admin--admin-bar--height, 0px); z-index: 40; display: flex; align-items: center; gap: 24px; padding: 16px var(--gut); background: var(--paper); color: var(--ink); border-bottom: 1px solid color-mix(in oklab, var(--ink) 12%, transparent); font-family: var(--f-sans); transition: background-color .3s ease, color .3s ease, padding .3s ease, box-shadow .3s ease; }
.site-head.is-overlay { position: fixed; left: 0; right: 0; background: transparent; color: var(--on-dark); border-bottom-color: transparent; }
.site-head.is-scrolled { padding-block: 10px; box-shadow: 0 6px 24px -12px rgba(0, 0, 0, .25); }
.site-head.is-overlay.is-scrolled { background: var(--paper); color: var(--ink); border-bottom-color: color-mix(in oklab, var(--ink) 12%, transparent); }
.site-logo { display: flex; flex-direction: column; text-decoration: none; color: inherit; font-family: var(--f-display); font-stretch: 62%; font-variation-settings: "wdth" 62; font-weight: 800; font-size: 27px; line-height: .86; letter-spacing: .02em; text-transform: uppercase; }
.site-logo small { font-size: 9.5px; font-weight: 500; letter-spacing: .42em; font-stretch: 100%; font-variation-settings: "wdth" 100; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 22px; }
.site-nav-list { list-style: none; margin: 0; padding: 0; display: flex; gap: clamp(14px, 1.4vw, 24px); font-size: 13.5px; font-weight: 500; white-space: nowrap; }
.site-nav-list a { color: inherit; text-decoration: none; padding-block: 4px; border-bottom: 2px solid transparent; }
.site-nav-list a:hover, .site-nav-list .current-menu-item > a { border-bottom-color: var(--lamp); }
.site-nav-extra { display: flex; align-items: center; gap: 18px; }
.site-lang { color: inherit; text-decoration: none; font-family: var(--f-mono); font-size: 12px; letter-spacing: .12em; }
.site-head-book, .site-menu-btn { display: none; }
.site-menu-btn { background: none; border: 0; color: inherit; width: 44px; height: 44px; padding: 0; cursor: pointer; place-items: center; }
.site-menu-icon, .site-menu-icon::before, .site-menu-icon::after { display: block; width: 22px; height: 2px; background: currentColor; transition: transform .25s, opacity .25s; }
.site-menu-icon { position: relative; }
.site-menu-icon::before, .site-menu-icon::after { content: ""; position: absolute; left: 0; }
.site-menu-icon::before { top: -7px; }
.site-menu-icon::after { top: 7px; }
.site-head.is-open .site-menu-icon { background: transparent; }
.site-head.is-open .site-menu-icon::before { transform: translateY(7px) rotate(45deg); }
.site-head.is-open .site-menu-icon::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .site-head { gap: 12px; }
  .site-head-book { display: inline-flex; margin-left: auto; padding: 10px 14px; font-size: 13px; }
  .site-menu-btn { display: grid; }
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 20px; padding: 24px var(--gut) 32px; background: var(--night); color: var(--on-dark); box-shadow: 0 16px 40px rgba(0,0,0,.25); max-height: calc(100vh - var(--head-h, 64px)); overflow-y: auto; }
  .site-head.is-open .site-nav { display: flex; }
  .site-head.is-open, .site-head.is-overlay.is-open { color: var(--on-dark); background: var(--night); }
  .site-nav-list { flex-direction: column; gap: 0; font-size: 17px; }
  .site-nav-list a { display: block; padding-block: 12px; border-bottom: 1px solid color-mix(in oklab, var(--on-dark) 14%, transparent); }
  .site-nav-extra { justify-content: space-between; }
}

/* ---------- hero ---------- */
.hero { position: relative; min-height: clamp(540px, 86vh, 920px); overflow: hidden; color: var(--on-dark); background: var(--night); display: grid; align-items: end; padding: 120px var(--gut) clamp(24px, 5vw, 60px); }
.hero .hero-ph { position: absolute; inset: 0; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8,12,10,.52) 0%, rgba(8,12,10,0) 26%, rgba(8,12,10,0) 44%, rgba(8,12,10,.76) 100%); }
.hero-in { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 24px; }
.hero-title { margin-top: .16em !important; font-family: var(--f-display); font-stretch: 62%; font-variation-settings: "wdth" 62; font-weight: 800; font-size: clamp(60px, min(12.6vw, 17vh), 200px); line-height: .86; text-transform: uppercase; letter-spacing: -.005em; }
.hero-line { margin-top: clamp(22px, 2.4vw, 36px) !important; font-size: clamp(16px, 1.6vw, 22px); font-weight: 500; letter-spacing: .06em; line-height: 1.6; }
.hero-facts { text-align: right; }
.hero-facts b { display: block; color: var(--lamp); font-weight: 500; }

/* ---------- brand ---------- */
.brand { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: 24px; row-gap: 24px; align-items: end; padding: clamp(72px, 11vw, 160px) var(--gut); }
.brand-kicker, .brand-title { grid-column: 1 / 9; }
.brand-title { font-size: clamp(28px, 4.3vw, 62px); line-height: 1.4; font-weight: 700; letter-spacing: .02em; text-wrap: balance; }
.brand-body { grid-column: 1 / 7; max-width: 34em; }
.brand-figure { grid-column: 9 / 13; grid-row: 1 / 4; }
.brand-figure .ph-wrap { aspect-ratio: 4 / 5; }
.eve-new figcaption { margin-top: 8px; opacity: .7; }

/* ---------- journey：朝 → 夜 ---------- */
.journey { display: grid; grid-template-columns: minmax(150px, 210px) minmax(0, 1fr); gap: clamp(24px, 4vw, 64px); padding: clamp(56px, 8vw, 120px) var(--gut); transition: background-color 1.2s ease, color 1.2s ease; }
.journey[data-tone="morning"] { background-color: var(--paper); color: var(--ink); }
.journey[data-tone="day"] { background-color: color-mix(in oklab, var(--paper), var(--mist) 40%); color: var(--ink); }
.journey[data-tone="evening"] { background-color: color-mix(in oklab, var(--land), var(--night) 45%); color: var(--on-dark); }
.journey[data-tone="night"] { background-color: var(--night); color: var(--on-dark); }
.journey-rail { position: sticky; top: calc(var(--head-h, 72px) + var(--wp-admin--admin-bar--height, 0px) + 20px); align-self: start; display: grid; gap: 18px; }
.journey-time { font-family: var(--f-display); font-stretch: 62%; font-variation-settings: "wdth" 62; font-weight: 700; font-size: 34px; line-height: 1; text-transform: uppercase; }
.journey-rail ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.journey-rail li { display: flex; align-items: center; gap: 10px; opacity: .42; transition: opacity .4s; }
.journey-rail li::before { content: ""; width: 0; height: 2px; background: currentColor; transition: width .4s; }
.journey-rail li[aria-current="step"] { opacity: 1; }
.journey-rail li[aria-current="step"]::before { width: 18px; }
.journey-chapters { display: grid; gap: clamp(96px, 14vw, 200px); min-width: 0; }
.chapter { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: 20px; align-items: start; }
.chapter-word { grid-column: 1 / -1; grid-row: 1; margin-bottom: clamp(16px, 2vw, 28px) !important; display: flex; flex-wrap: wrap; align-items: baseline; gap: .1em .3em; font-family: var(--f-display); font-stretch: 62%; font-variation-settings: "wdth" 62; font-weight: 800; font-size: clamp(58px, 10vw, 164px); line-height: .82; text-transform: uppercase; }
.chapter-word .n { font-family: var(--f-mono); font-size: 12px; font-weight: 400; letter-spacing: .1em; align-self: flex-start; margin-top: .6em; }
.chapter-word .jp { font-family: var(--f-sans); font-size: max(15px, .17em); font-weight: 700; letter-spacing: .14em; }
.chapter-main { grid-column: 1 / 9; grid-row: 2; }
.chapter-main .ph-wrap, .chapter-sub .ph-wrap { aspect-ratio: 3 / 2; }
.chapter-text { grid-column: 9 / 13; grid-row: 2; align-self: end; padding-bottom: 4px; }
.chapter-text h3 { margin-bottom: 14px !important; font-size: clamp(19px, 1.9vw, 27px); line-height: 1.6; font-weight: 700; text-wrap: balance; }
.chapter-text p { opacity: .86; }
.chapter-sub { grid-column: 4 / 9; grid-row: 3; margin-top: calc(-1 * clamp(40px, 7vw, 110px)) !important; position: relative; z-index: 1; }
.chapter:nth-child(even) .chapter-main { grid-column: 5 / 13; }
.chapter:nth-child(even) .chapter-text { grid-column: 1 / 5; }
.chapter:nth-child(even) .chapter-sub { grid-column: 5 / 10; }
.chapter-main figcaption { max-width: 34%; }
.chapter:nth-child(even) .chapter-main figcaption { margin-left: auto; text-align: right; }
.chapter[data-tone="night"] .chapter-main .ph-wrap { box-shadow: 0 0 140px -20px color-mix(in oklab, var(--lamp) 55%, transparent); }

/* ---------- voices ---------- */
.voices { background: var(--night); color: var(--on-dark); padding: 0 var(--gut) clamp(72px, 10vw, 140px); }
.voices-in { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(24px, 4vw, 64px); border-top: 1px solid color-mix(in oklab, var(--on-dark) 22%, transparent); padding-top: clamp(40px, 5vw, 64px); }
.voice blockquote { font-family: var(--f-hand); font-weight: 600; font-size: clamp(19px, 1.9vw, 25px); line-height: 1.75; }
.voice figcaption { margin-top: 14px; }

/* ---------- stay（トップ） ---------- */
.stay { padding: clamp(72px, 10vw, 140px) var(--gut) clamp(56px, 7vw, 96px); }
.stay-head { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 24px; align-items: end; margin-bottom: clamp(32px, 4vw, 56px); }
.stay-title, .page-title { font-family: var(--f-display); font-stretch: 62%; font-variation-settings: "wdth" 62; font-weight: 800; font-size: clamp(56px, 8vw, 120px); line-height: .85; text-transform: uppercase; }
.stay-title { grid-column: 1 / 6; }
.stay-title span, .page-title span, .updates-title span { display: block; font-family: var(--f-sans); font-stretch: 100%; font-variation-settings: "wdth" 100; font-size: 15px; font-weight: 700; letter-spacing: .14em; margin-top: 12px; text-transform: none; }
.stay-head p { grid-column: 6 / 12; max-width: 36em; }
.stay-more { margin-top: clamp(28px, 3vw, 44px) !important; text-align: right; }

.room-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(16px, 2vw, 28px); }
.room-grid.is-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.room-card-link { display: grid; gap: 8px; align-content: start; text-decoration: none; color: inherit; }
.room-card-ph { aspect-ratio: 4 / 3; margin-bottom: 8px; }
.room-card-ph .ph { transition: transform .9s cubic-bezier(.2,.7,.2,1); }
.room-card-link:hover .ph { transform: scale(1.035); }
.room-card-en { opacity: .7; }
.room-card-name { font-size: 18px; line-height: 1.5; font-weight: 700; }
.room-card-lead { font-size: 14px; line-height: 1.8; }
.room-card-meta { opacity: .72; }
.room-card-more { margin-top: 6px; font-weight: 700; font-size: 14px; justify-self: start; border-bottom: 2px solid var(--lamp); }

/* ---------- plans / news ---------- */
.updates { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(32px, 6vw, 96px); padding: clamp(40px, 6vw, 80px) var(--gut) clamp(72px, 10vw, 130px); border-top: 1px solid color-mix(in oklab, var(--ink) 16%, transparent); margin-inline: var(--gut); padding-inline: 0; }
.updates-col { display: grid; gap: 20px; align-content: start; justify-items: start; }
.updates-title { font-family: var(--f-display); font-stretch: 62%; font-variation-settings: "wdth" 62; font-weight: 800; font-size: clamp(40px, 5vw, 64px); line-height: .85; text-transform: uppercase; }
.updates-list { list-style: none; margin: 0; padding: 0; width: 100%; }
.updates-list li { border-bottom: 1px solid color-mix(in oklab, var(--ink) 14%, transparent); }
.updates-list a { display: grid; gap: 4px; padding-block: 16px; text-decoration: none; }
.updates-list a:hover .updates-name { text-decoration: underline; text-decoration-color: var(--lamp); text-underline-offset: 4px; }
.updates-list .mono { opacity: .7; text-transform: none; }
.updates-name { font-weight: 700; line-height: 1.6; }

/* ---------- facilities：大浴場・乾燥室 ---------- */
.facilities { background: color-mix(in oklab, var(--land), var(--night) 45%); color: var(--on-dark); padding: clamp(72px, 10vw, 140px) var(--gut); }
.facilities-head { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 12px 24px; align-items: end; margin-bottom: clamp(36px, 5vw, 64px); }
.facilities-head .mono { grid-column: 1 / -1; color: var(--lamp); }
.facilities-head h2 { grid-column: 1 / 8; font-size: clamp(26px, 3.6vw, 48px); line-height: 1.45; font-weight: 700; text-wrap: balance; }
.facilities-lead { grid-column: 8 / 13; opacity: .86; }
.facilities-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(24px, 4vw, 56px); }
.facility { display: grid; gap: 18px; align-content: start; }
.facility:nth-child(even) { margin-top: clamp(0px, 8vw, 120px); }
.facility-ph { aspect-ratio: 4 / 3; }
.facility-text { display: grid; gap: 8px; max-width: 34em; }
.facility-text h3 { font-size: clamp(20px, 2vw, 26px); font-weight: 700; line-height: 1.5; }
.facility-lead { color: var(--lamp); font-weight: 700; }
.facility-text p:not(.facility-lead) { opacity: .84; font-size: 14.5px; }

/* ---------- 関連施設：胡座屋 ---------- */
.related { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 24px; align-items: center; padding: clamp(64px, 9vw, 130px) var(--gut); }
.related--dark { background: var(--night); color: var(--on-dark); }
.related--light { background: color-mix(in oklab, var(--paper), var(--ink) 5%); color: var(--ink); }
.related-figure { grid-column: 1 / 8; margin: 0; }
.related-ph { aspect-ratio: 3 / 2; }
.related--dark .related-ph { box-shadow: 0 0 160px -30px color-mix(in oklab, var(--lamp) 60%, transparent); }
.related-text { grid-column: 8 / 13; display: grid; gap: 16px; justify-items: start; }
.related-kicker { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; opacity: .9; }
.related-badge { font-family: var(--f-sans); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: none; padding: 3px 10px; border: 1px solid currentColor; border-radius: 2px; }
.related-text h2 { font-size: clamp(24px, 2.8vw, 38px); line-height: 1.45; font-weight: 700; text-wrap: balance; }
.related-name { font-family: var(--f-display); font-stretch: 62%; font-variation-settings: "wdth" 62; font-weight: 800; font-size: clamp(34px, 4vw, 54px); line-height: 1; color: var(--lamp); }
.related--light .related-name { color: color-mix(in oklab, var(--lamp), var(--ink) 35%); }
.related-name span { font-family: var(--f-sans); font-stretch: 100%; font-variation-settings: "wdth" 100; font-size: 14px; font-weight: 500; letter-spacing: .08em; color: currentColor; opacity: .8; margin-left: 4px; }
.related-text > p:not(.mono):not(.related-name) { font-size: 14.5px; line-height: 1.95; opacity: .88; }
.related-info { width: 100%; display: grid; gap: 0; border-top: 1px solid color-mix(in oklab, currentColor 20%, transparent); font-size: 13.5px; line-height: 1.7; }
.related-info > div { display: grid; grid-template-columns: 7em 1fr; gap: 12px; padding-block: 10px; border-bottom: 1px solid color-mix(in oklab, currentColor 20%, transparent); }
.related-info dt { font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em; opacity: .7; padding-top: 2px; }
.site-foot-related { margin: 14px 0 0; font-size: 12.5px; opacity: .85; }
.site-foot-related a { text-decoration: underline; text-decoration-color: var(--lamp); text-underline-offset: 3px; }

/* ---------- よくある質問の抜粋 ---------- */
.faq-teaser { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 20px 24px; padding: clamp(64px, 9vw, 120px) var(--gut); align-items: start; }
.faq-teaser-head { grid-column: 1 / 5; display: grid; gap: 14px; justify-items: start; position: sticky; top: calc(var(--head-h, 72px) + var(--wp-admin--admin-bar--height, 0px) + 20px); }
.faq-teaser-head h2 { font-size: clamp(24px, 2.8vw, 36px); line-height: 1.45; font-weight: 700; text-wrap: balance; }
.faq-teaser-head p:not(.mono) { font-size: 14.5px; opacity: .85; }
.faq-list { grid-column: 6 / 13; border-top: 2px solid currentColor; }
.faq-list details { border-bottom: 1px solid color-mix(in oklab, currentColor 18%, transparent); }
.faq-list summary { cursor: pointer; list-style: none; position: relative; padding: 18px 44px 18px 0; font-weight: 700; line-height: 1.6; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 6px; top: 13px; font-family: var(--f-mono); font-size: 22px; font-weight: 400; transition: transform .2s; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list .faq-a { padding: 0 44px 20px 0; font-size: 14.5px; line-height: 1.9; }
.faq-list .faq-a a { text-decoration: underline; text-decoration-color: var(--lamp); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.faq-teaser.is-dark { background: var(--night); color: var(--on-dark); }

/* ---------- book：灯り ---------- */
.book { background: var(--night); color: var(--on-dark); display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(24px, 5vw, 80px); align-items: center; padding: clamp(64px, 9vw, 130px) var(--gut); }
.book-ph { aspect-ratio: 1 / 1; box-shadow: 0 0 160px -30px color-mix(in oklab, var(--lamp) 60%, transparent); }
.book-text { display: grid; gap: 22px; justify-items: start; }
.book-text h2 { font-size: clamp(26px, 3.6vw, 50px); line-height: 1.5; font-weight: 700; text-wrap: balance; }
.book-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 24px; }
.book-facts { opacity: .7; }

/* ---------- footer ---------- */
.site-foot { background: var(--night); color: color-mix(in oklab, var(--on-dark) 86%, transparent); font-family: var(--f-sans); font-size: 14px; line-height: 1.8; border-top: 1px solid color-mix(in oklab, var(--on-dark) 12%, transparent); }
.site-foot a { color: inherit; }
.site-foot-main { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 4fr) minmax(0, 4fr); gap: 32px; padding: clamp(48px, 6vw, 80px) var(--gut); }
.site-foot-logo { margin: 0 0 8px; font-family: var(--f-display); font-stretch: 62%; font-variation-settings: "wdth" 62; font-weight: 800; font-size: 44px; line-height: .86; text-transform: uppercase; color: var(--on-dark); display: flex; flex-direction: column; }
.site-foot-logo small { font-size: 11px; font-weight: 500; letter-spacing: .42em; font-stretch: 100%; font-variation-settings: "wdth" 100; }
.site-foot address { font-style: normal; margin-bottom: 12px; }
.site-foot-contact, .site-foot-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.site-foot-list { margin-bottom: 20px; }
.site-foot-list.is-sub { font-size: 12.5px; opacity: .75; }
.site-foot-list a, .site-foot-contact a { text-decoration: none; }
.site-foot-list a:hover, .site-foot-contact a:hover { text-decoration: underline; text-decoration-color: var(--lamp); }
.site-foot-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; padding: 18px var(--gut); border-top: 1px solid color-mix(in oklab, var(--on-dark) 12%, transparent); opacity: .7; }

/* ---------- 客室一覧 ---------- */
.page-head { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 20px 24px; align-items: end; padding: clamp(48px, 7vw, 110px) var(--gut) clamp(40px, 5vw, 72px); }
.crumbs { grid-column: 1 / -1; opacity: .7; }
.crumbs a { text-decoration: none; }
.page-title { grid-column: 1 / 7; }
.page-lead { grid-column: 7 / 13; max-width: 36em; }
.room-index { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.room-index a { text-decoration: none; font-size: 13.5px; font-weight: 500; padding: 8px 14px; border: 1px solid color-mix(in oklab, var(--ink) 30%, transparent); border-radius: 999px; }
.room-index a:hover { border-color: var(--ink); }

.room-row { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 24px; align-items: center; padding: clamp(32px, 5vw, 64px) var(--gut); }
.room-row-ph { grid-column: 1 / 8; display: block; }
.room-row-ph .ph-wrap { aspect-ratio: 3 / 2; }
.room-row-text { grid-column: 8 / 13; display: grid; gap: 14px; justify-items: start; }
.room-row:nth-of-type(even) .room-row-ph { grid-column: 6 / 13; order: 2; }
.room-row:nth-of-type(even) .room-row-text { grid-column: 1 / 6; grid-row: 1; }
.room-row-text h2 { font-size: clamp(24px, 2.6vw, 34px); line-height: 1.4; font-weight: 700; }
.room-row-text h2 a { text-decoration: none; }
.room-row-lead { font-weight: 700; }
.room-row-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 22px; margin-top: 6px; }
.tags { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.tags li { font-size: 12px; line-height: 1.4; padding: 5px 10px; background: color-mix(in oklab, var(--ink) 8%, transparent); border-radius: 2px; }
.specs { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 1px; width: 100%; background: color-mix(in oklab, var(--ink) 14%, transparent); border-block: 1px solid color-mix(in oklab, var(--ink) 14%, transparent); }
.specs > div { background: var(--paper); padding: 12px 14px 12px 0; }
.specs dt { font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; opacity: .7; }
.specs dd { font-weight: 700; font-variant-numeric: tabular-nums; }

.section-title { font-size: clamp(22px, 2.4vw, 32px); line-height: 1.45; font-weight: 700; margin-bottom: clamp(20px, 3vw, 36px) !important; }
.compare { padding: clamp(56px, 8vw, 110px) var(--gut); }
.compare-scroll { overflow-x: auto; }
.compare-table { width: 100%; min-width: 640px; border-collapse: collapse; font-size: 14px; line-height: 1.6; }
.compare-table th, .compare-table td { text-align: left; vertical-align: top; padding: 14px 16px 14px 0; border-bottom: 1px solid color-mix(in oklab, var(--ink) 14%, transparent); }
.compare-table thead th { font-weight: 700; border-bottom: 2px solid var(--ink); }
.compare-table thead a { text-decoration: none; }
.compare-table tbody th { font-family: var(--f-mono); font-size: 11.5px; font-weight: 400; letter-spacing: .08em; opacity: .75; width: 12em; }
.compare-table td { font-variant-numeric: tabular-nums; }

/* ---------- 客室の詳細 ---------- */
.room-hero { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 24px; padding: clamp(40px, 6vw, 90px) var(--gut) 0; }
.room-hero-text { grid-column: 1 / -1; display: grid; gap: 14px; justify-items: start; }
.room-hero-en { font-family: var(--f-display); font-stretch: 62%; font-variation-settings: "wdth" 62; font-weight: 800; font-size: clamp(56px, 10vw, 156px); line-height: .88; text-transform: uppercase; margin-block: 8px .14em !important; }
.room-hero-name { font-size: clamp(22px, 2.6vw, 34px); line-height: 1.45; font-weight: 700; }
.room-hero-lead { font-size: clamp(16px, 1.5vw, 19px); font-weight: 500; }
.room-hero-ph { grid-column: 1 / -1; aspect-ratio: 16 / 8; margin-top: clamp(16px, 2vw, 32px); }
.room-body { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 24px; padding: clamp(48px, 7vw, 100px) var(--gut); align-items: start; }
.room-desc { grid-column: 1 / 8; max-width: 38em; display: grid; gap: 1.2em; font-size: 15.5px; line-height: 2; }
.room-side { grid-column: 9 / 13; position: sticky; top: calc(var(--head-h, 72px) + var(--wp-admin--admin-bar--height, 0px) + 20px); display: grid; gap: 18px; justify-items: start; }
.room-side .btn-lamp { width: 100%; }
.room-gallery { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 20px; padding: 0 var(--gut) clamp(72px, 10vw, 130px); align-items: start; }
.room-gallery-item .ph-wrap { aspect-ratio: 3 / 2; }
.room-gallery-item.is-0 { grid-column: 1 / 9; }
.room-gallery-item.is-1 { grid-column: 9 / 13; margin-top: clamp(40px, 8vw, 140px) !important; }
.room-gallery-item.is-1 .ph-wrap { aspect-ratio: 4 / 5; }
.room-gallery-item.is-2 { grid-column: 2 / 7; }
.room-gallery-item.is-3 { grid-column: 7 / 13; }
.other-rooms { padding: clamp(72px, 10vw, 130px) var(--gut); }

/* ---------- 下層ページ共通 ---------- */
.hero-h1 { margin: 0; font: inherit; }
.hero-kicker, .hero-title { display: block; }
.page-head.has-image .page-head-ph { grid-column: 1 / -1; aspect-ratio: 21 / 9; margin-top: clamp(16px, 2vw, 32px); }
.sub-page > .page-index { margin: 0 var(--gut) clamp(8px, 2vw, 24px); }

.prose { padding: clamp(40px, 6vw, 88px) var(--gut); max-width: calc(780px + 2 * var(--gut)); font-size: 15.5px; line-height: 2; }
.prose > * + * { margin-top: 1.1em !important; }
.prose h2 { margin-top: 2.6em !important; font-size: clamp(22px, 2.4vw, 30px); line-height: 1.5; font-weight: 700; text-wrap: balance; }
.prose h2::before { content: ""; display: block; width: 28px; height: 3px; background: var(--lamp); margin-bottom: 14px; }
.prose > h2:first-child { margin-top: 0 !important; }
.prose h3 { margin-top: 2em !important; font-size: 18px; line-height: 1.6; font-weight: 700; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: .35em; }
.prose a:not(.btn-lamp):not(.btn-ink) { text-decoration: underline; text-decoration-color: var(--lamp); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.prose strong { font-weight: 700; }
.prose img { width: 100%; height: auto; }
.prose figure figcaption { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .06em; }
.prose table { width: 100%; border-collapse: collapse; font-size: 14.5px; line-height: 1.7; display: block; overflow-x: auto; }
.prose th, .prose td { text-align: left; vertical-align: top; padding: 12px 16px 12px 0; border-bottom: 1px solid color-mix(in oklab, var(--ink) 14%, transparent); }
.prose th { white-space: nowrap; font-weight: 700; }
.prose .note { font-size: 13px; opacity: .75; }
.prose details { border-bottom: 1px solid color-mix(in oklab, var(--ink) 16%, transparent); padding-block: 4px; }
.prose details + details { margin-top: 0 !important; }
.prose summary { cursor: pointer; list-style: none; position: relative; padding: 16px 40px 16px 0; font-weight: 700; line-height: 1.6; }
.prose summary::-webkit-details-marker { display: none; }
.prose summary::after { content: "+"; position: absolute; right: 4px; top: 12px; font-family: var(--f-mono); font-size: 22px; font-weight: 400; transition: transform .2s; }
.prose details[open] summary::after { transform: rotate(45deg); }
.prose details > :not(summary) { margin: 0 0 18px; }
.prose .season-block { margin-top: 2.6em !important; padding-top: 28px; border-top: 1px solid color-mix(in oklab, var(--ink) 16%, transparent); }
.prose .season-block .mono { color: color-mix(in oklab, var(--land), var(--ink) 20%); }
.link-list ul { list-style: none; padding: 0; display: grid; gap: 10px; }
@media (min-width: 1100px) {
  .prose { margin-left: clamp(0px, 14vw, 260px); }
}

.access-facts { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 24px; padding: 0 var(--gut); align-items: start; }
.access-dl { grid-column: 1 / 6; grid-template-columns: 1fr; }
.access-dl > div { display: grid; grid-template-columns: 8em 1fr; gap: 12px; }
.access-map { grid-column: 6 / 13; display: grid; gap: 12px; justify-items: start; }
.access-map iframe { width: 100%; aspect-ratio: 4 / 3; border: 0; background: color-mix(in oklab, var(--paper), var(--ink) 8%); }

.plan-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(16px, 3vw, 40px); padding: 0 var(--gut); }
.plan-list.is-empty { grid-template-columns: 1fr; justify-items: start; gap: 16px; }
.plan-card { display: grid; gap: 12px; align-content: start; justify-items: start; padding-top: 20px; border-top: 2px solid var(--ink); }
.plan-term { opacity: .72; text-transform: none; }
.plan-title { font-size: clamp(17px, 1.6vw, 20px); line-height: 1.6; font-weight: 700; }
.plan-body { font-size: 14.5px; }

.facility-row { }
.facility-body > * + * { margin-top: .8em !important; }
.guide-cards { padding: 0 var(--gut) clamp(56px, 7vw, 96px); }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .room-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .hero-in { grid-template-columns: 1fr; }
  .hero-facts { text-align: left; }
  .brand > *, .stay-head > *, .facilities-head > *, .page-head > *, .room-row > *, .room-hero > *, .room-body > * { grid-column: 1 / -1 !important; grid-row: auto !important; order: 0 !important; }
  .brand-figure .ph-wrap { aspect-ratio: 3 / 2; }
  .journey { grid-template-columns: minmax(0, 1fr); }
  .journey-rail { top: calc(var(--head-h, 64px) + var(--wp-admin--admin-bar--height, 0px)); z-index: 5; margin-inline: calc(-1 * var(--gut)); padding: 10px var(--gut); background-color: inherit; grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: 14px; }
  .journey-time { font-size: 22px; }
  .journey-rail ol { display: flex; overflow-x: auto; gap: 14px; white-space: nowrap; scrollbar-width: none; }
  .journey-rail ol::-webkit-scrollbar { display: none; }
  .chapter .chapter-main, .chapter .chapter-text, .chapter:nth-child(even) .chapter-main, .chapter:nth-child(even) .chapter-text { grid-column: 1 / -1; }
  .chapter .chapter-text, .chapter:nth-child(even) .chapter-text { grid-row: 3; padding-top: 20px; }
  .chapter .chapter-sub, .chapter:nth-child(even) .chapter-sub { grid-column: 5 / 13; grid-row: 4; margin-top: 24px !important; }
  .chapter-main figcaption, .chapter:nth-child(even) .chapter-main figcaption { max-width: none; margin-left: 0; text-align: left; }
  .voices-in, .updates, .facilities-list, .book, .site-foot-main, .room-grid.is-three { grid-template-columns: minmax(0, 1fr); }
  .facility:nth-child(even) { margin-top: 0; }
  .book-ph { aspect-ratio: 3 / 2; }
  .stay-more { text-align: left; }
  .room-side { position: static; }
  .access-dl, .access-map { grid-column: 1 / -1; }
  .faq-teaser-head, .faq-list { grid-column: 1 / -1; position: static; }
  .related-figure, .related-text { grid-column: 1 / -1; }
  .plan-list { grid-template-columns: minmax(0, 1fr); }
  .page-head.has-image .page-head-ph { aspect-ratio: 4 / 3; }
  .room-hero-ph { aspect-ratio: 4 / 3; }
  .room-gallery-item { grid-column: 1 / -1 !important; margin-top: 0 !important; }
  .room-gallery-item.is-1 .ph-wrap { aspect-ratio: 3 / 2; }
}
@media (max-width: 600px) {
  .room-grid { grid-template-columns: minmax(0, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
  .journey, .journey-rail li, .journey-rail li::before, .room-card-ph .ph { transition: none; }
  .room-card-link:hover .ph { transform: none; }
}
