/* =========================================================
   湖のペンション ほとりや スポット版（架空・1ページ構成）
   スタンダード版 /samples/yado/ のトークン・素材をそのまま流用
   トークン⑦：静けさ・湖（青鼠×生成り×淡金）
   見出し：Noto Serif JP／本文：Zen Kaku Gothic New／英字：Cormorant Garamond
   JSなしで動く1ページ構成（ヒーローはCSSアニメーションのみでスライド）
   ========================================================= */
: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配慮） */
  --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;
  padding-bottom: 0;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

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: 0; z-index: 49;
  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: 68px; 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.14rem; color: var(--main-deep); white-space: nowrap; }
.logo-sub { font-size: .66rem; color: var(--muted); letter-spacing: .1em; }
.nav { display: flex; align-items: center; gap: 18px; font-size: .82rem; font-weight: 500; color: #45525a; }
.nav a:hover { color: var(--accent-ink); }
.header-cta { flex: 0 0 auto; }
.header-cta .btn { min-height: 42px; padding: 5px 20px; gap: 2px; }
.header-cta .btn .num { font-size: .98rem; letter-spacing: .02em; }
.header-cta .btn .small { font-size: .6rem; }
@media (max-width: 980px) { .nav { display: none; } }

/* === ボタン（サンプルのため動作しない span） === */
.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;
  cursor: not-allowed;
}
.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枚スライド＋ゆっくりズーム・CSSのみ／JS不要）
   ========================================================= */
.hero { position: relative; width: 100%; height: clamp(560px, 74vh, 780px); height: clamp(560px, 74svh, 780px); overflow: hidden; background: var(--main-deep); }
.hero-image {
  position: absolute; inset: 0;
  background-size: cover; background-position: center center; background-repeat: no-repeat;
  opacity: 0;
  animation: hero-cycle 24s infinite, hero-zoom 24s infinite;
  transform-origin: center center;
  will-change: opacity, transform;
}
.hero-image.slide-1 { background-image: url('images/hero-lake-pc.jpg'); animation-delay: 0s; }
.hero-image.slide-2 { background-image: url('images/hero-room-pc.jpg'); animation-delay: 8s; }
.hero-image.slide-3 { background-image: url('images/hero-dinner-pc.jpg'); animation-delay: 16s; }
@keyframes hero-cycle { 0% {opacity:1;} 28% {opacity:1;} 34% {opacity:0;} 94% {opacity:0;} 100% {opacity:1;} }
@keyframes hero-zoom { 0% {transform:scale(1.04);} 50% {transform:scale(1.13);} 100% {transform:scale(1.04);} }
@keyframes hero-zoom-mobile { 0% {transform:scale(1.1);} 50% {transform:scale(1.18);} 100% {transform:scale(1.1);} }
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(24, 34, 40, .5), rgba(24, 34, 40, .22) 48%, rgba(24, 34, 40, .08) 75%),
              linear-gradient(0deg, rgba(24,34,40,.5) 0%, rgba(24,34,40,.05) 40%);
}
.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: .78rem; 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.5rem, 3.4vw, 2.5rem); 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: 16px 0 26px; max-width: 520px;
  font-size: clamp(.9rem, 1.4vw, 1.02rem); line-height: 2.05;
  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: .78rem; color: #e5e0d3; text-shadow: 0 1px 8px rgba(16,24,29,.65); }

@media (max-width: 800px) {
  .hero { height: clamp(560px, 92vh, 760px); height: clamp(560px, 92svh, 760px); }
  .hero-image.slide-1 { background-image: url('images/hero-lake-sp.jpg'); }
  .hero-image.slide-2 { background-image: url('images/hero-room-sp.jpg'); }
  .hero-image.slide-3 { background-image: url('images/hero-dinner-sp.jpg'); }
  .hero-image { animation: hero-cycle 24s infinite, hero-zoom-mobile 24s infinite; }
  /* スマホは下部固定バー(.mobile-cta)が常時表示のため、ヒーロー内の重複ボタンは非表示 */
  .hero .hero-btns { display: none; }
  /* テキストを上寄せ（鈴木さん指示・2026-07-24）。中央寄せだと文字ブロックの上下に空きができすぎる */
  .hero-content { align-content: start; padding-top: 28px; max-width: calc(100% - 32px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-image { animation: none; opacity: 1; transform: none; }
  .hero-image.slide-2, .hero-image.slide-3 { display: none; }
}

/* === セクション共通 === */
.section { padding: 74px 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 40px; 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 h2 { margin: 0; font-size: clamp(1.4rem, 3vw, 1.9rem); color: var(--main-deep); line-height: 1.55; }
.section-head p { margin: 14px auto 0; color: var(--muted); font-size: .94rem; }

/* === こんな方に（悩み） === */
.worry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: 980px; margin: 0 auto; }
.worry-item {
  display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 16px; font-size: .9rem; font-weight: 500; color: var(--main-deep);
  box-shadow: 0 6px 20px rgba(43, 56, 64, .05);
  transition: transform .18s ease, box-shadow .18s ease;
}
.worry-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.worry-item .ic { width: 38px; height: 38px; }
@media (max-width: 800px) { .worry-grid { grid-template-columns: repeat(2, 1fr); } }

/* === 自己紹介（選ばれる理由より前に配置） === */
.profile-section { background: var(--bg-deep); }
.profile-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; align-items: center; max-width: 900px; margin: 0 auto; }
.profile-grid .ph { aspect-ratio: 4 / 3.4; border-radius: var(--radius); box-shadow: var(--shadow); }
.profile-copy .name { margin: 0 0 14px; color: var(--accent-ink); font-weight: 700; font-size: 1.02rem; }
.profile-copy .name small { color: var(--muted); font-weight: 500; font-size: .78rem; margin-left: 8px; display: block; margin-top: 2px; }
.profile-copy p { margin: 0 0 12px; color: #46525a; font-size: .95rem; }
@media (max-width: 800px) { .profile-grid { grid-template-columns: 1fr; text-align: center; } }

/* === 選ばれる理由 === */
.point-grid { display: grid; gap: 46px; max-width: 1000px; margin: 0 auto; }
.point-item { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.point-item.rev { direction: rtl; }
.point-item.rev > * { direction: ltr; }
@media (max-width: 800px) { .point-item, .point-item.rev { grid-template-columns: 1fr; direction: ltr; gap: 16px; } }
.point-item .ph { aspect-ratio: 5 / 4; border-radius: var(--radius); box-shadow: var(--shadow); }
.point-text { position: relative; }
.point-text .num { font-family: var(--font-serif); color: var(--accent); font-size: 2.6rem; line-height: 1; opacity: .85; display: block; margin-bottom: 4px; }
.point-text h3 { margin: 0 0 12px; font-size: clamp(1.2rem, 2.2vw, 1.44rem); color: var(--main-deep); line-height: 1.6; }
.point-text p { margin: 0; color: #46525a; font-size: .94rem; }
.trust-row { max-width: 960px; margin: 42px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 800px) { .trust-row { grid-template-columns: repeat(2, 1fr); } }
.trust-chip {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px 12px; text-align: center; box-shadow: 0 6px 18px rgba(43,56,64,.05);
}
.trust-chip .ico { width: 28px; height: 28px; margin: 0 auto 8px; }
.trust-chip .t { display: block; font-size: .82rem; font-weight: 700; color: var(--main-deep); }
.trust-chip .d { display: block; font-size: .72rem; color: var(--muted); margin-top: 4px; line-height: 1.6; }

/* === 料金の目安 === */
.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: .86rem; padding-left: 1.2em; }
.table-note li { margin-bottom: 4px; }

/* === ご予約の流れ === */
.flow-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1000px; margin: 0 auto; }
@media (max-width: 900px) { .flow-steps { grid-template-columns: repeat(2, 1fr); } }
.flow-step {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px 18px; box-shadow: 0 6px 18px rgba(43,56,64,.05); position: relative;
}
.flow-step .num { font-family: var(--font-serif); color: var(--accent-ink); font-size: 1.6rem; line-height: 1; margin-bottom: 8px; display: block; font-weight: 700; }
.flow-step h3 { margin: 0 0 6px; font-size: .98rem; color: var(--main-deep); }
.flow-step p { margin: 0; font-size: .82rem; color: var(--muted); line-height: 1.8; }

/* === お部屋・お食事の紹介（写真カード） === */
.spot-svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .spot-svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .spot-svc-grid { grid-template-columns: 1fr; } }
.spot-svc-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);
  transition: transform .18s ease, box-shadow .18s ease;
}
.spot-svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.spot-svc-card .ph { aspect-ratio: 4 / 3; }
.spot-svc-card .body { padding: 18px 20px 20px; }
.spot-svc-card .tag {
  display: inline-block; margin-bottom: 8px; font-size: .68rem; font-weight: 700; letter-spacing: .04em;
  color: #fff; background: var(--main); border-radius: 999px; padding: 3px 12px;
}
.spot-svc-card h3 { margin: 0; font-size: 1.02rem; color: var(--main-deep); }

/* === 中盤CTA帯 === */
.cta-band {
  background: linear-gradient(120deg, var(--main) 0%, var(--main-deep) 100%);
  color: #f4f2ec; padding: 60px 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.35rem, 3vw, 1.8rem); }
.cta-band > .container > p { margin: 0 0 26px; 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: 16px 0 0; font-size: .84rem; opacity: .9; }

/* === お問い合わせ === */
.contact-section { background: var(--main-deep); color: #f4f2ec; text-align: center; }
.contact-section .en { color: #d9c99a; }
.contact-section h2 { color: #f7f5ef; }
.contact-section .intro { max-width: 620px; margin: 0 auto 30px; color: rgba(244,242,236,.88); font-size: .94rem; }
.contact-grid { max-width: 420px; margin: 0 auto; display: grid; gap: 18px; }
.contact-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(244,242,236,.18); border-radius: var(--radius);
  padding: 28px 22px;
}
.contact-card h3 { margin: 0 0 14px; font-size: .98rem; color: #fff; }
.contact-card .big-num { font-family: var(--font-serif); font-size: clamp(1.5rem, 4vw, 1.9rem); color: #fff; letter-spacing: .03em; }
.contact-card .hours { margin: 8px 0 0; font-size: .8rem; color: rgba(244,242,236,.72); }
.contact-card .btn-outline { background: transparent; color: #f4f2ec; border-color: rgba(244, 242, 236, .5); width: 100%; }
.contact-note { margin: 22px auto 0; max-width: 620px; font-size: .78rem; color: rgba(244,242,236,.6); }

/* === スタンダード版への導線 === */
.spot-standard-link { background: var(--main-deep); padding: 44px 20px; text-align: center; border-top: 1px solid rgba(244,242,236,.14); }
.spot-standard-link p { max-width: 640px; margin: 0 auto 18px; color: rgba(244,242,236,.9); font-size: .92rem; line-height: 2.0; }
.spot-standard-link a {
  display: inline-block; padding: 13px 30px; border: 1.5px solid rgba(244,242,236,.6);
  border-radius: 999px; color: #fff; font-weight: 700; letter-spacing: .05em;
  transition: background .2s, color .2s;
}
.spot-standard-link a:hover { background: #fff; color: var(--main-deep); }

/* === フッター === */
.site-footer { background: var(--main-deep); color: rgba(244, 242, 236, .9); padding: 44px 0 28px; }
.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; flex-wrap: wrap;
  padding-bottom: 24px; border-bottom: 1px solid rgba(244, 242, 236, .18);
}
.footer-logo { font-family: var(--font-serif); font-weight: 500; font-size: 1.2rem; margin-bottom: 8px; color: #f7f5ef; }
.footer-info { font-size: .86rem; line-height: 2; }
.footer-nav { display: grid; gap: 8px; font-size: .88rem; font-weight: 500; }
.footer-nav a:hover { color: #d9c99a; }
.sample-disclaimer { margin: 22px 0 0; font-size: .78rem; line-height: 1.9; color: rgba(244, 242, 236, .66); }
.footer-credit { margin-top: 16px; padding-top: 14px; 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;
  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);
}
.mobile-cta .btn { min-height: 44px; padding: 4px 8px; border-radius: 999px; font-size: .9rem; gap: 0; }
.mobile-cta .btn .small { font-size: .6rem; }
.mobile-cta .btn-phone .num { font-size: 1rem; }

@media (max-width: 800px) {
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
  .mobile-cta { display: grid; }
  .header-cta { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
