/* =========================================================
   湖のペンション ほとりや（架空・スタンダード5ページ）共有スタイル
   トークン⑦：静けさ・湖（青鼠×生成り×淡金）
   見出し：Noto Serif JP／本文：Zen Kaku Gothic New／英字：Cormorant Garamond
   ========================================================= */
:root {
  --bg:         #f6f5f1;   /* 生成り背景 */
  --bg-card:    #ffffff;
  --bg-deep:    #ebeae3;   /* tint帯 */
  --ink:        #272e33;
  --muted:      #626d72;
  --main:       #3a4a52;   /* 青鼠 */
  --main-soft:  #5b6e77;
  --main-deep:  #2b3840;
  --main-pale:  #e2e7e9;
  --accent:     #b39a63;   /* 淡金（点と線のみ・面で使わない） */
  --accent-ink: #85703f;   /* 淡金の文字用（AA配慮） */
  --line-green: #06C755;   /* LINE公式緑・固定 */
  --border:     #ddddd3;
  --radius: 10px;
  --shadow: 0 14px 38px rgba(43, 56, 64, .10);
  --font-serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-body: "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  --font-en: "Cormorant Garamond", "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.85;
  background: var(--bg);
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
main { display: block; }

h1, h2, h3, .logo-name { font-family: var(--font-serif); font-weight: 500; letter-spacing: .05em; }

/* === 写真枠 === */
.ph { position: relative; background: var(--main-pale); overflow: hidden; display: block; margin: 0; }
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* === サンプルバー === */
.sample-banner {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--main-deep);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .04em;
}

/* === ヘッダー === */
.site-header {
  position: sticky; top: var(--sample-bar-h, 37px); z-index: 50;
  background: rgba(250, 249, 245, .95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.header-inner {
  width: min(1080px, calc(100% - 36px));
  min-height: 72px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.logo { display: flex; flex-direction: column; line-height: 1.35; padding: 8px 0; }
.logo-name { font-size: 1.24rem; color: var(--main-deep); white-space: nowrap; }
.logo-sub { font-size: .68rem; color: var(--muted); letter-spacing: .1em; }
.nav { display: flex; align-items: center; gap: 20px; font-size: .9rem; font-weight: 500; color: #45525a; }
.nav a:hover { color: var(--accent-ink); }
.nav a.current { color: var(--accent-ink); border-bottom: 2px solid var(--accent); padding-bottom: 2px; }
.header-cta { flex: 0 0 auto; }
.header-cta .btn { min-height: 44px; padding: 6px 22px; gap: 2px; }
.header-cta .btn .num { font-size: 1.06rem; letter-spacing: .02em; }
.header-cta .btn .small { font-size: .64rem; }

/* === ハンバーガー === */
.menu-toggle {
  display: none; width: 46px; height: 46px;
  border: 0; border-radius: 10px;
  background: var(--main-pale); color: var(--main-deep);
  position: relative; flex: 0 0 auto;
}
.menu-toggle span {
  position: absolute; left: 13px; width: 20px; height: 2px; border-radius: 999px;
  background: currentColor; transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle span:nth-child(1) { top: 16px; }
.menu-toggle span:nth-child(2) { top: 22px; }
.menu-toggle span:nth-child(3) { top: 28px; }
.menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* === ボタン === */
.btn {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  min-height: 48px; padding: 10px 28px;
  border-radius: 999px; border: 1px solid transparent;
  font-weight: 700; line-height: 1.35; text-align: center;
}
.btn-phone { background: var(--main); color: #fff; box-shadow: 0 10px 24px rgba(58, 74, 82, .30); }
.btn-phone .num { font-size: 1.3rem; letter-spacing: .03em; white-space: nowrap; font-family: var(--font-serif); }
.btn-phone .small { font-size: .68rem; font-weight: 500; opacity: .92; }
.btn-outline { background: rgba(255,255,255,.92); color: var(--main-deep); border-color: var(--border); }
.btn-outline .small { font-size: .68rem; font-weight: 500; color: var(--muted); }

/* === ヒーロー（3枚スライド＋ゆっくりズーム・フルスクリーン） === */
.hero {
  position: relative; overflow: hidden;
  min-height: 500px;
  height: calc(100vh - var(--chrome-h, 110px));   /* サンプルバー＋ヘッダーの実高さ（JSで同期） */
  height: calc(100svh - var(--chrome-h, 110px));
  background: var(--main-deep);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slides .hero-slide {
  position: absolute; inset: 0; margin: 0;
  opacity: 0; transition: opacity 1.6s ease;
}
.hero-slides .hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slides .hero-slide.is-active { opacity: 1; }
.hero-slides .hero-slide.is-active img { animation: heroZoom 8.5s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(24, 34, 40, .48), rgba(24, 34, 40, .22) 48%, rgba(24, 34, 40, .04) 75%);
}
.hero-content {
  position: absolute; inset: 0; z-index: 2;
  width: min(1080px, calc(100% - 36px)); margin: 0 auto;
  display: grid; align-content: center; justify-items: start;
}
.hero-area {
  margin: 0 0 16px; padding: 5px 16px; border-radius: 999px;
  background: rgba(250, 249, 245, .92); color: var(--main-deep);
  font-size: .8rem; font-weight: 700; letter-spacing: .08em;
}
.hero .en {
  display: block; margin: 0 0 6px;
  font-family: var(--font-en); font-style: italic; font-weight: 400;
  font-size: 1rem; letter-spacing: .3em; color: #e8dcc0;
  text-shadow: 0 1px 10px rgba(16, 24, 29, .6);
}
.hero h1 {
  margin: 0; max-width: 720px;
  font-size: clamp(1.6rem, 3.4vw, 2.7rem); line-height: 1.6;
  color: #f7f5ef;
  text-shadow: 0 2px 20px rgba(16, 24, 29, .7), 0 1px 4px rgba(16, 24, 29, .65);
}
.hero .lead {
  margin: 18px 0 28px; max-width: 520px;
  font-size: clamp(.95rem, 1.4vw, 1.05rem); line-height: 2.1;
  color: #eee9dd; text-shadow: 0 1px 12px rgba(16, 24, 29, .6);
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin: 14px 0 0; font-size: .8rem; color: #e5e0d3; text-shadow: 0 1px 8px rgba(16,24,29,.65); }

/* ヒーローのふわっと表示 */
.hero-content > * { opacity: 0; transform: translateY(14px); animation: heroIn .7s ease forwards; }
.hero-content > *:nth-child(2) { animation-delay: .12s; }
.hero-content > *:nth-child(3) { animation-delay: .24s; }
.hero-content > *:nth-child(4) { animation-delay: .36s; }
.hero-content > *:nth-child(5) { animation-delay: .44s; }
.hero-content > *:nth-child(6) { animation-delay: .5s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* === 下層ページヘッダー === */
.page-header {
  background: linear-gradient(120deg, var(--main) 0%, var(--main-deep) 100%);
  color: #f4f2ec; padding: 54px 0 46px; position: relative; overflow: hidden;
}
.page-header::after {
  content: ""; position: absolute; right: -60px; top: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(244, 242, 236, .06);
}
.page-header .inner { width: min(1080px, calc(100% - 36px)); margin: 0 auto; position: relative; z-index: 1; }
.page-header h1 { margin: 0; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.page-header .en {
  display: block; margin-bottom: 6px;
  font-family: var(--font-en); font-style: italic; font-weight: 400;
  font-size: .95rem; letter-spacing: .3em; color: #d9c99a;
}
.page-header p { margin: 10px 0 0; font-size: .95rem; opacity: .92; max-width: 640px; }
.breadcrumb {
  width: min(1080px, calc(100% - 36px)); margin: 14px auto 0;
  font-size: .78rem; color: var(--muted);
}
.breadcrumb a { text-decoration: underline; text-underline-offset: 3px; }
.breadcrumb a:hover { color: var(--accent-ink); }

/* === セクション共通 === */
.section { padding: 78px 0; position: relative; }
.section.tint { background: var(--bg-deep); }
.section.white { background: var(--bg-card); }
.container { width: min(1080px, calc(100% - 36px)); margin: 0 auto; }
.section-head { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.section-head .en {
  display: block; margin-bottom: 8px;
  font-family: var(--font-en); font-style: italic; font-weight: 400;
  font-size: .95rem; letter-spacing: .3em; color: var(--accent-ink);
}
.section-head .en:has(.ico) { display: inline-flex; align-items: center; gap: 8px; }
.section-head .en .ico { width: 24px; height: 24px; flex: 0 0 auto; }
.section-head h2 { margin: 0; font-size: clamp(1.5rem, 3vw, 2rem); color: var(--main-deep); line-height: 1.55; }
.section-head p { margin: 14px auto 0; color: var(--muted); font-size: .95rem; }
.more-link { text-align: center; margin-top: 36px; }
.more-link a {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--accent-ink);
  border-bottom: 1px solid var(--accent); padding-bottom: 4px;
}
.more-link a:hover { opacity: .8; }

/* === お知らせ・空室状況 === */
.vacancy-box {
  max-width: 820px; margin: 0 auto 26px;
  background: var(--bg-card); border: 1px solid var(--accent); border-radius: var(--radius);
  padding: 18px 24px; display: flex; gap: 14px; align-items: baseline;
  box-shadow: 0 6px 20px rgba(43, 56, 64, .05);
}
.vacancy-box .label {
  flex: 0 0 auto; font-size: .74rem; font-weight: 700; letter-spacing: .06em;
  color: #fff; background: var(--main); border-radius: 999px; padding: 4px 14px;
}
.vacancy-box p { margin: 0; font-size: .94rem; font-weight: 500; color: var(--main-deep); }
.news-list { max-width: 820px; margin: 0 auto; }
.news-item {
  display: grid; grid-template-columns: 120px auto 1fr; gap: 14px;
  padding: 15px 8px; border-bottom: 1px solid var(--border); align-items: baseline;
}
.news-item time { color: var(--muted); font-size: .88rem; white-space: nowrap; font-family: var(--font-serif); }
.news-item .cat {
  font-size: .7rem; font-weight: 700; color: var(--accent-ink);
  background: #f0e9d8; border-radius: 999px; padding: 3px 12px; white-space: nowrap;
  justify-self: start;
}
.news-item .txt { font-size: .95rem; color: #3d4950; }
.news-note { max-width: 820px; margin: 18px auto 0; color: var(--muted); font-size: .85rem; }

/* === 宿の紹介 === */
.about-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
.about-copy h2 { margin: 0 0 18px; font-size: clamp(1.4rem, 2.6vw, 1.9rem); color: var(--main-deep); line-height: 1.7; }
.about-copy .en {
  display: block; margin-bottom: 8px;
  font-family: var(--font-en); font-style: italic;
  font-size: .95rem; letter-spacing: .3em; color: var(--accent-ink);
}
.about-copy p { margin: 0 0 14px; color: #46525a; font-size: .96rem; }
.about-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-photos .ph { aspect-ratio: 4 / 3; border-radius: var(--radius); box-shadow: 0 8px 26px rgba(43, 56, 64, .08); }
.about-photos .ph:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
.about-photos figcaption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 8px 14px; font-size: .76rem; color: #fff; background: linear-gradient(transparent, rgba(24, 34, 40, .68)); }

/* === ダイジェスト3枚カード === */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.photo-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 8px 26px rgba(43, 56, 64, .07);
  display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.photo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.photo-card .ph { aspect-ratio: 4 / 3; }
.photo-card .body { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.photo-card .en {
  font-family: var(--font-en); font-style: italic;
  font-size: .85rem; letter-spacing: .26em; color: var(--accent-ink); margin-bottom: 4px;
}
.photo-card .en:has(.ico) { display: inline-flex; align-items: center; gap: 8px; }
.photo-card .en .ico { width: 22px; height: 22px; flex: 0 0 auto; }
.photo-card h3 { margin: 0 0 8px; font-size: 1.14rem; color: var(--main-deep); }
.photo-card p { margin: 0; color: var(--muted); font-size: .92rem; }
.photo-card .card-link { margin-top: 14px; font-weight: 700; font-size: .88rem; color: var(--accent-ink); }

/* === ごあいさつ === */
.greeting { display: grid; grid-template-columns: .85fr 1.15fr; gap: 44px; align-items: center; }
.greeting .ph { aspect-ratio: 4 / 3.4; border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.greeting-copy .en {
  display: block; margin-bottom: 8px;
  font-family: var(--font-en); font-style: italic;
  font-size: .95rem; letter-spacing: .3em; color: var(--accent-ink);
}
.greeting-copy h2 { margin: 0 0 8px; font-size: clamp(1.4rem, 2.4vw, 1.8rem); color: var(--main-deep); }
.greeting-copy .name { margin: 0 0 16px; color: var(--accent-ink); font-weight: 700; font-size: 1.05rem; }
.greeting-copy .name small { color: var(--muted); font-weight: 500; font-size: .8rem; margin-left: 8px; }
.greeting-copy p { margin: 0 0 12px; color: #46525a; font-size: .96rem; }

/* === 客室カード === */
.room-list { display: grid; gap: 26px; }
.room-card {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 0;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 8px 26px rgba(43, 56, 64, .07);
}
.room-card .ph { min-height: 260px; }
.room-card .body { padding: 30px 32px; display: flex; flex-direction: column; justify-content: center; }
.room-card .room-type {
  align-self: flex-start; font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  color: #fff; background: var(--main); border-radius: 999px; padding: 4px 14px; margin-bottom: 12px;
}
.room-card h3 { margin: 0 0 10px; font-size: 1.24rem; color: var(--main-deep); }
.room-card p { margin: 0 0 8px; color: var(--muted); font-size: .93rem; }
.room-card .spec { margin: 12px 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.room-card .spec li {
  font-size: .78rem; font-weight: 500; color: var(--main-deep);
  background: var(--main-pale); border-radius: 999px; padding: 4px 14px;
}
.room-card.rev .ph { order: 2; }
.room-detail-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 860px; margin: 40px auto 0; }
.room-detail-photos .ph { aspect-ratio: 4 / 3; border-radius: var(--radius); box-shadow: 0 8px 26px rgba(43, 56, 64, .07); }
.room-detail-photos figcaption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 8px 14px; font-size: .76rem; color: #fff; background: linear-gradient(transparent, rgba(24, 34, 40, .68)); }

/* === 館内写真 === */
.facility-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.facility-grid .ph { aspect-ratio: 4 / 3; border-radius: var(--radius); box-shadow: 0 8px 26px rgba(43, 56, 64, .07); }
.facility-grid figcaption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 8px 14px; font-size: .76rem; color: #fff; background: linear-gradient(transparent, rgba(24, 34, 40, .68)); }

/* === 設備チップ === */
.equip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; max-width: 920px; margin: 0 auto; }
.equip-item {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 14px 16px; font-weight: 500; font-size: .9rem; color: #3d4950; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.equip-item .ico { width: 34px; height: 34px; flex: 0 0 auto; }

/* === 線アイコン共通（単色線画・背景生成りになじむ透過PNG） === */
.ico { display: block; object-fit: contain; }
/* セクション見出しの英字脇に小アイコン */
.section-head .ico { display: inline-block; vertical-align: middle; margin-right: 8px; }
/* お知らせ・料理見出しの見出し脇アイコン */
.head-with-ico { display: inline-flex; align-items: center; gap: 10px; }
.equip-note { max-width: 920px; margin: 16px auto 0; text-align: center; color: var(--muted); font-size: .85rem; }

/* === 料金表 === */
.price-table-wrap {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: 0 8px 26px rgba(43, 56, 64, .07); overflow: hidden; max-width: 760px; margin: 0 auto;
}
table { width: 100%; border-collapse: collapse; }
th, td { padding: 18px 22px; text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; font-size: .95rem; }
th { font-weight: 500; color: var(--main-deep); }
thead th { background: var(--main-pale); font-size: .86rem; }
tr:last-child td, tr:last-child th { border-bottom: 0; }
td.num { text-align: right; font-weight: 700; color: var(--main-deep); white-space: nowrap; font-family: var(--font-serif); font-size: 1.1rem; }
td.num small { font-size: .72rem; color: var(--muted); font-family: var(--font-body); font-weight: 500; }
.table-note { max-width: 760px; margin: 16px auto 0; color: var(--muted); font-size: .88rem; padding-left: 1.2em; }
.table-note li { margin-bottom: 4px; }

/* === お料理ページ === */
.dining-feature { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
.dining-feature .ph { aspect-ratio: 16 / 10; border-radius: var(--radius); box-shadow: var(--shadow); }
.dining-feature.rev .ph { order: 2; }
.dining-copy .en {
  display: flex; align-items: center; gap: 8px; margin-bottom: 8px;
  font-family: var(--font-en); font-style: italic;
  font-size: .95rem; letter-spacing: .3em; color: var(--accent-ink);
}
.dining-copy .en .ico { width: 24px; height: 24px; flex: 0 0 auto; }
.dining-copy h2 { margin: 0 0 14px; font-size: clamp(1.4rem, 2.6vw, 1.8rem); color: var(--main-deep); }
.dining-copy p { margin: 0 0 12px; color: #46525a; font-size: .95rem; }
.dish-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.dish-grid .ph { aspect-ratio: 4 / 3; border-radius: var(--radius); box-shadow: 0 8px 26px rgba(43, 56, 64, .07); }
.dish-grid figcaption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 8px 14px; font-size: .76rem; color: #fff; background: linear-gradient(transparent, rgba(24, 34, 40, .68)); }

/* === 四季カード === */
.season-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.season-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 8px 26px rgba(43, 56, 64, .07);
}
.season-card .ph { aspect-ratio: 16 / 9; }
.season-card .body { padding: 22px 24px 24px; }
.season-card .season-tag {
  display: inline-block; margin-bottom: 8px;
  font-family: var(--font-en); font-style: italic;
  font-size: .88rem; letter-spacing: .22em; color: var(--accent-ink);
}
.season-card h3 { margin: 0 0 8px; font-size: 1.14rem; color: var(--main-deep); display: flex; align-items: center; gap: 10px; }
.season-card h3 .ico { width: 28px; height: 28px; flex: 0 0 auto; }
.season-card p { margin: 0; color: var(--muted); font-size: .92rem; }

/* === 周辺のたのしみ === */
.spot-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 920px; margin: 0 auto; }
.spot-item {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px 18px; font-size: .92rem; color: #3d4950;
}
.spot-item strong { display: flex; align-items: center; gap: 8px; font-family: var(--font-serif); font-weight: 500; color: var(--main-deep); font-size: 1.02rem; margin-bottom: 4px; }
.spot-item strong .ico { width: 26px; height: 26px; flex: 0 0 auto; }

/* === アクセス情報 === */
.access-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.access-layout .ph { aspect-ratio: 16 / 10; border-radius: var(--radius); box-shadow: var(--shadow); }
.access-copy h3 { margin: 0 0 10px; font-size: 1.24rem; color: var(--main-deep); }
.access-copy p { margin: 0 0 10px; color: #46525a; font-size: .94rem; }
.access-note {
  margin-top: 14px; padding: 12px 18px; border-radius: var(--radius);
  background: #f0e9d8; color: var(--main-deep); font-size: .88rem;
}
.map-wrap { margin-top: 14px; aspect-ratio: 16/7; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 720px) { .map-wrap { aspect-ratio: 4/3; } }

/* === ご予約ページ === */
.reserve-lead { max-width: 720px; margin: 0 auto 40px; text-align: center; color: #46525a; font-size: .96rem; }
.tel-card {
  max-width: 680px; margin: 0 auto;
  background: var(--bg-card); border: 1px solid var(--accent); border-radius: var(--radius);
  padding: 36px 30px; text-align: center; box-shadow: 0 8px 26px rgba(43, 56, 64, .07);
}
.tel-card .en {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 4px;
  font-family: var(--font-en); font-style: italic;
  font-size: .9rem; letter-spacing: .28em; color: var(--accent-ink);
}
.tel-card .en .ico { width: 24px; height: 24px; flex: 0 0 auto; }
.tel-card h3 { margin: 0 0 12px; font-size: 1.2rem; color: var(--main-deep); }
.tel-card .big-num {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 5vw, 2.4rem);
  color: var(--main-deep); letter-spacing: .04em; white-space: nowrap; line-height: 1.3;
}
.tel-card p { margin: 8px 0 0; color: var(--muted); font-size: .88rem; }

/* === FAQ === */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }
details {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; box-shadow: 0 6px 20px rgba(43, 56, 64, .05);
}
summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 22px; font-weight: 700; color: var(--main-deep);
}
summary::-webkit-details-marker { display: none; }
summary .q { display: flex; gap: 12px; align-items: baseline; }
summary .q::before { content: "Q"; color: var(--accent-ink); font-family: var(--font-serif); font-size: 1.1rem; flex: 0 0 auto; }
summary::after {
  content: "+"; width: 30px; height: 30px; flex: 0 0 auto;
  display: grid; place-items: center; border-radius: 999px;
  background: var(--main-pale); color: var(--main-deep); line-height: 1; font-weight: 700;
}
details[open] summary::after { content: "−"; }
.answer { padding: 0 22px 20px; color: var(--muted); font-size: .94rem; }
.answer::before { content: "A． "; color: var(--accent-ink); font-weight: 700; }

/* === 大CTA帯 === */
.cta-band {
  background: linear-gradient(120deg, var(--main) 0%, var(--main-deep) 100%);
  color: #f4f2ec; padding: 66px 0; text-align: center;
  border-top: 1px solid var(--accent);
}
.cta-band .en {
  display: block; margin-bottom: 8px;
  font-family: var(--font-en); font-style: italic;
  font-size: .95rem; letter-spacing: .3em; color: #d9c99a;
}
.cta-band h2 { margin: 0 0 12px; font-size: clamp(1.4rem, 3vw, 1.9rem); }
.cta-band > .container > p { margin: 0 0 28px; opacity: .94; font-size: .95rem; }
.cta-band .btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-band .btn-phone { background: #fff; color: var(--main-deep); box-shadow: 0 10px 24px rgba(16, 24, 29, .3); }
.cta-band .btn-outline { background: transparent; color: #f4f2ec; border-color: rgba(244, 242, 236, .5); }
.cta-band .btn-outline .small { color: rgba(244, 242, 236, .8); }
.cta-band .fallback { margin: 18px 0 0; font-size: .85rem; opacity: .9; }

/* スクロール出現 */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* === フッター === */
.site-footer { background: var(--main-deep); color: rgba(244, 242, 236, .9); padding: 48px 0 30px; }
.footer-inner { width: min(1080px, calc(100% - 36px)); margin: 0 auto; }
.footer-top {
  display: flex; justify-content: space-between; gap: 30px; align-items: flex-start;
  padding-bottom: 26px; border-bottom: 1px solid rgba(244, 242, 236, .18);
}
.footer-logo { font-family: var(--font-serif); font-weight: 500; font-size: 1.25rem; margin-bottom: 8px; color: #f7f5ef; }
.footer-info { font-size: .88rem; line-height: 2; }
.footer-nav { display: grid; gap: 8px; font-size: .9rem; font-weight: 500; }
.footer-nav a:hover { color: #d9c99a; }
.sample-disclaimer {
  margin: 24px 0 0; font-size: .78rem; line-height: 1.9; color: rgba(244, 242, 236, .66);
}
.footer-credit { margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(244, 242, 236, .14); font-size: .8rem; color: rgba(244, 242, 236, .72); }
.footer-credit a { text-decoration: underline; text-underline-offset: 3px; }

/* === スマホ下部固定CTAバー === */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  display: none; grid-template-columns: 1fr; gap: 8px;
  height: calc(56px + env(safe-area-inset-bottom));
  padding: 6px 10px calc(6px + env(safe-area-inset-bottom));
  background: rgba(250, 249, 245, .97);
  border-top: 1px solid var(--border);
  box-shadow: 0 -10px 26px rgba(43, 56, 64, .14);
  transition: transform .25s ease;
}
.mobile-cta.is-hidden { transform: translateY(110%); }
.mobile-cta .btn { min-height: 44px; padding: 4px 8px; border-radius: 999px; font-size: .92rem; gap: 0; }
.mobile-cta .btn .small { font-size: .62rem; }
.mobile-cta .btn-phone .num { font-size: 1rem; }
/* === モーダル（サンプル説明） === */
.modal {
  position: fixed; inset: 0; z-index: 80;
  display: none; place-items: center; padding: 20px;
  background: rgba(24, 34, 40, .55);
}
.modal.is-open { display: grid; }
.modal-panel {
  background: var(--bg-card); border-radius: 14px; max-width: 420px; width: 100%;
  padding: 30px 28px 26px; text-align: center; box-shadow: 0 24px 60px rgba(16, 24, 29, .3);
}
.modal-panel h2 { margin: 0 0 12px; font-size: 1.1rem; color: var(--main-deep); }
.modal-panel p { margin: 0 0 20px; font-size: .9rem; color: #46525a; }
.modal-close {
  min-height: 44px; padding: 8px 32px; border: 0; border-radius: 999px;
  background: var(--main); color: #fff; font-weight: 700;
}

/* === 動きの抑制 === */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-content > * { animation: none; opacity: 1; transform: none; }
  .hero-slides .hero-slide { transition: none; }
  .hero-slides .hero-slide.is-active img { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .photo-card { transition: none; }
  .mobile-cta { transition: none; }
}

/* === レスポンシブ === */
@media (max-width: 980px) {
  .card-grid, .dish-grid, .facility-grid { grid-template-columns: repeat(2, 1fr); }
  .spot-list { grid-template-columns: repeat(2, 1fr); }
  .equip-grid { grid-template-columns: repeat(3, 1fr); }
  .nav { gap: 12px; font-size: .84rem; }
}

@media (max-width: 800px) {
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .nav {
    position: fixed; left: 0; right: 0; top: 0; bottom: auto; z-index: 45;
    display: grid; gap: 0; padding: calc(var(--chrome-h, 109px) + 8px) 22px 24px;
    background: rgb(250, 249, 245);
    border-bottom: 1px solid var(--border); box-shadow: 0 20px 40px rgba(43, 56, 64, .18);
    transform: translateY(-105%); opacity: 0; pointer-events: none;
    transition: transform .24s ease, opacity .24s ease;
    font-size: 1rem;
  }
  .menu-open .nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
  /* メニュー展開中はoverflow:hiddenでstickyが効かなくなるため、バーとヘッダーをfixedで前面に固定 */
  body.menu-open .sample-banner { position: fixed; top: 0; left: 0; right: 0; }
  body.menu-open .site-header { position: fixed; top: var(--sample-bar-h, 37px); left: 0; right: 0; }
  /* ドロワー（.nav z-index:45）より、ロゴと閉じるボタンを前面に */
  .logo, .menu-toggle { position: relative; z-index: 46; }
  .nav a { padding: 14px 4px; min-height: 44px; display: flex; align-items: center; border-bottom: 1px solid var(--border); }
  .nav a.current { border-bottom: 1px solid var(--border); color: var(--accent-ink); }
  .header-inner { min-height: 64px; }

  /* スマホヒーロー：最小テキスト・上寄せ。CTAは固定バーへ（design-rules §2.4） */
  .hero {
    min-height: 560px;
    height: calc(100vh - var(--chrome-h, 102px));
    height: calc(100svh - var(--chrome-h, 102px));
  }
  .hero::after { background: linear-gradient(180deg, rgba(24, 34, 40, .48), rgba(24, 34, 40, .24) 48%, rgba(24, 34, 40, .06)); }
  .hero-content { align-content: start; padding-top: 28px; max-width: calc(100% - 32px); }
  .hero h1 { font-size: clamp(1.45rem, 6.4vw, 1.85rem); }
  .hero .lead { font-size: .93rem; margin: 14px 0 0; }
  .hero-btns, .hero-note { display: none; }

  .section { padding: 48px 0; }
  .section-head { margin-bottom: 30px; }
  .card-grid, .dish-grid, .facility-grid { grid-template-columns: 1fr; }
  .spot-list { grid-template-columns: 1fr; }
  .equip-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .equip-item { font-size: .84rem; padding: 12px 10px; }
  .about-layout, .access-layout { grid-template-columns: 1fr; gap: 26px; }
  .greeting { grid-template-columns: 1fr; gap: 26px; }
  .greeting .ph { max-width: 360px; margin: 0 auto; }
  .room-card { grid-template-columns: 1fr; }
  .room-card .ph { min-height: 0; aspect-ratio: 4 / 3; }
  .room-card.rev .ph { order: 0; }
  .room-card .body { padding: 24px 22px; }
  .room-detail-photos { grid-template-columns: 1fr; }
  .dining-feature { grid-template-columns: 1fr; gap: 24px; }
  .dining-feature.rev .ph { order: 0; }
  .season-grid { grid-template-columns: 1fr; }
  .vacancy-box { flex-direction: column; gap: 8px; padding: 16px 18px; }
  .news-item { grid-template-columns: 1fr; gap: 4px; padding: 14px 4px; }
  .footer-top { display: grid; gap: 22px; }
  th, td { padding: 14px 14px; font-size: .9rem; }
  .mobile-cta { display: grid; }
}

@media (max-width: 430px) {
  .logo-name { font-size: 1.02rem; }
  .hero-area { font-size: .72rem; }
  .sample-banner { font-size: .66rem; padding: 6px 8px; }
  .btn-phone .num { font-size: 1.16rem; }
  .tel-card .big-num { font-size: 1.7rem; }
}
