/* =====================================================
   SENDAI PORTAL — 杜の都の総合ナビ
   deep green × cream × gold / editorial serif
   v2: photo hero, live news, spot guide, life guide
   ===================================================== */

:root {
  --green-deep: #0e2b1f;
  --green: #174633;
  --green-soft: #2f6a4d;
  --moss: #4a8265;
  --cream: #f6f3ea;
  --cream-dark: #ece5d4;
  --paper: #fbf9f3;
  --gold: #b8934a;
  --gold-light: #d9bc7d;
  --copper: #a0563b;
  --blue-gray: #5b7a8c;
  --ink: #20201a;
  --ink-soft: #5c5b50;
  --ink-faint: #8b897c;
  --white: #fdfcf9;
  --serif: "Shippori Mincho", serif;
  --sans: "Zen Kaku Gothic New", sans-serif;
  --en: "Cormorant Garamond", serif;
  --shadow-sm: 0 2px 12px rgba(32, 32, 26, 0.07);
  --shadow-md: 0 10px 30px rgba(32, 32, 26, 0.12);
  --shadow-lg: 0 22px 60px rgba(14, 43, 31, 0.22);
  --radius: 10px;
  --radius-lg: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.85;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img, svg, iframe { max-width: 100%; display: block; }
button { font-family: inherit; }

::selection { background: var(--gold); color: var(--green-deep); }

/* カスタムスクロールバー */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--green-soft), var(--green));
  border-radius: 6px;
  border: 3px solid var(--cream-dark);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 110px 0; position: relative; }
.section--green { background: var(--green-deep); color: var(--cream); }
.section--cream { background: var(--cream-dark); }
.section--paper { background: var(--paper); }
.sp-only { display: none; }

/* 和紙風テクスチャ（緑セクション） */
.section--green::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}
.section--green > .container,
.section--green > .container-wide { position: relative; z-index: 1; }

/* ---------- 読み込みプログレスバー ---------- */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  z-index: 200;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  box-shadow: 0 0 12px rgba(184, 147, 74, 0.6);
  transition: width 0.1s linear;
}

/* ---------- 見出し ---------- */
.section-head { margin-bottom: 60px; text-align: center; position: relative; }
.section-head__num {
  font-family: var(--en);
  font-size: clamp(64px, 9vw, 110px);
  font-weight: 500;
  line-height: 1;
  position: absolute;
  left: 50%;
  top: -0.42em;
  transform: translateX(-50%);
  color: transparent;
  -webkit-text-stroke: 1px rgba(184, 147, 74, 0.32);
  pointer-events: none;
  user-select: none;
}
.section-head--light .section-head__num { -webkit-text-stroke-color: rgba(217, 188, 125, 0.3); }
.section-head__en {
  font-family: var(--en);
  font-size: 15px;
  letter-spacing: 0.38em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
}
.section-head__ja {
  font-family: var(--serif);
  font-size: clamp(27px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: 0.1em;
  position: relative;
}
.section-head__ja::after {
  content: "";
  display: block;
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 22px auto 0;
}
.section-head--light .section-head__ja { color: var(--cream); }
.section-head__note {
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
}
.section-head--light .section-head__note { color: rgba(246, 243, 234, 0.72); }

/* ---------- ヘッダー ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.header.is-scrolled {
  background: rgba(246, 243, 234, 0.92);
  box-shadow: 0 1px 0 rgba(32, 32, 26, 0.08), 0 8px 30px rgba(32, 32, 26, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 13px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo__mark {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--green-soft), var(--green-deep));
  color: var(--cream);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 700;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1.5px var(--gold-light), 0 4px 14px rgba(14, 43, 31, 0.35);
  position: relative;
  overflow: hidden;
}
.logo__mark::after {
  content: "";
  position: absolute;
  inset: -60% auto auto -60%;
  width: 90%; height: 220%;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.22) 50%, transparent 60%);
  transform: rotate(8deg) translateX(0);
  transition: transform 0.7s;
}
.logo:hover .logo__mark::after { transform: rotate(8deg) translateX(240%); }
.logo__text { display: flex; flex-direction: column; line-height: 1.3; }
.logo__ja { font-family: var(--serif); font-weight: 700; font-size: 18px; letter-spacing: 0.12em; color: var(--cream); transition: color 0.4s; }
.logo__en { font-family: var(--en); font-size: 11px; letter-spacing: 0.3em; color: var(--gold-light); }
.header.is-scrolled .logo__ja { color: var(--ink); }

.gnav__list { display: flex; gap: 2px; flex-wrap: wrap; }
.gnav__list a {
  display: block;
  padding: 8px 13px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--cream);
  position: relative;
  transition: color 0.4s;
  white-space: nowrap;
}
.header.is-scrolled .gnav__list a { color: var(--ink); }
.gnav__list a::after {
  content: "";
  position: absolute;
  left: 13px; right: 13px; bottom: 3px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.gnav__list a:hover::after { transform: scaleX(1); }

.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px; height: 46px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 11px;
  z-index: 101;
}
.menu-btn span {
  display: block;
  height: 2px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s, background 0.4s;
  border-radius: 2px;
}
.header.is-scrolled .menu-btn span { background: var(--ink); }
.menu-btn.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-btn.is-open span:nth-child(2) { opacity: 0; }
.menu-btn.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- ヒーロー ---------- */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--cream);
  overflow: hidden;
}
.hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 18s ease-out forwards;
  transition: filter 1.4s ease;
}
@keyframes heroZoom {
  from { transform: scale(1.12); }
  to { transform: scale(1.02); }
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(14, 43, 31, 0.62) 0%, rgba(14, 43, 31, 0.32) 34%, rgba(14, 43, 31, 0.42) 66%, rgba(9, 30, 21, 0.86) 100%),
    radial-gradient(ellipse 120% 70% at 50% 118%, rgba(9, 30, 21, 0.75) 0%, transparent 55%);
  transition: filter 1.4s ease;
}
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.45;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
}
.hero__leaves {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
/* 季節の色調（写真とオーバーレイにまとめて効く） */
.hero--spring .hero__photo img { filter: hue-rotate(-14deg) saturate(1.06) brightness(1.1); }
.hero--spring .hero__bg { filter: hue-rotate(-18deg) brightness(1.12); }
.hero--summer .hero__photo img { filter: none; }
.hero--autumn .hero__photo img { filter: hue-rotate(-38deg) saturate(1.12) brightness(0.98); }
.hero--autumn .hero__bg { filter: hue-rotate(-45deg); }
.hero--winter .hero__photo img { filter: saturate(0.35) brightness(0.82) hue-rotate(12deg); }
.hero--winter .hero__bg { filter: saturate(0.5) brightness(0.85); }

.hero__content {
  position: relative;
  z-index: 4;
  padding: 140px 24px 130px;
  max-width: 860px;
}
.hero__en {
  font-family: var(--en);
  font-size: 14px;
  letter-spacing: 0.52em;
  color: var(--gold-light);
  margin-bottom: 26px;
  animation: fadeUp 0.9s 0.1s both;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(36px, 6.6vw, 68px);
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.45;
  margin-bottom: 22px;
  text-shadow: 0 2px 30px rgba(9, 30, 21, 0.75);
  animation: fadeUp 0.9s 0.3s both;
}
.hero__lead {
  font-size: clamp(14px, 1.8vw, 17px);
  letter-spacing: 0.16em;
  color: rgba(246, 243, 234, 0.9);
  margin-bottom: 42px;
  text-shadow: 0 1px 14px rgba(9, 30, 21, 0.8);
  animation: fadeUp 0.9s 0.5s both;
}
.hero__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  animation: fadeUp 0.9s 0.7s both;
}
.hero__nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--cream);
  background: rgba(14, 43, 31, 0.45);
  border: 1px solid rgba(217, 188, 125, 0.55);
  border-radius: 999px;
  padding: 9px 22px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.3s, color 0.3s, transform 0.25s, border-color 0.3s;
}
.hero__nav a::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-light);
  transition: background 0.3s;
}
.hero__nav a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-deep);
  transform: translateY(-3px);
}
.hero__nav a:hover::before { background: var(--green-deep); }

.hero__scroll {
  position: absolute;
  bottom: 74px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: rgba(246, 243, 234, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 4;
}
.hero__scroll span {
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, transparent, var(--gold-light));
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 季節切り替えスイッチ */
.season-switch {
  position: absolute;
  right: 28px;
  bottom: 78px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
}
.season-switch__label {
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(217, 188, 125, 0.9);
  margin-right: 4px;
}
.season-switch button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(217, 188, 125, 0.55);
  background: rgba(9, 30, 21, 0.4);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.2s;
}
.season-switch button:hover { transform: translateY(-2px); border-color: var(--gold-light); }
.season-switch button.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-deep);
}

/* ヒーロー写真クレジット */
.hero__credit {
  position: absolute;
  left: 20px;
  bottom: 78px;
  z-index: 4;
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: rgba(246, 243, 234, 0.55);
}
.hero__credit a { text-decoration: underline; text-underline-offset: 2px; }
.hero__credit a:hover { color: var(--gold-light); }

/* ---------- ニュースティッカー ---------- */
.ticker {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 6;
  display: flex;
  align-items: stretch;
  background: rgba(9, 30, 21, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(217, 188, 125, 0.3);
  min-height: 46px;
}
.ticker__label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  background: linear-gradient(135deg, var(--gold), #a07c35);
  color: var(--green-deep);
  font-family: var(--en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  white-space: nowrap;
}
.ticker__label::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green-deep);
  animation: blink 1.6s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
.ticker__viewport { flex: 1; overflow: hidden; display: flex; align-items: center; }
.ticker__track {
  display: flex;
  gap: 64px;
  padding-left: 100%;
  white-space: nowrap;
  animation: tickerMove 46s linear infinite;
  will-change: transform;
}
.ticker__viewport:hover .ticker__track { animation-play-state: paused; }
@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
.ticker__track a {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(246, 243, 234, 0.92);
  transition: color 0.3s;
}
.ticker__track a:hover { color: var(--gold-light); }
.ticker__track .src {
  font-size: 11px;
  color: var(--gold-light);
  border: 1px solid rgba(217, 188, 125, 0.45);
  border-radius: 3px;
  padding: 1px 7px;
  margin-right: 9px;
}

/* ---------- ローカルニュース（RSS紹介） ---------- */
.news__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.news-source {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.35s, transform 0.35s;
}
.news-source:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.news-source__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 26px;
  border-bottom: 2px solid var(--cream-dark);
}
.news-source__name { display: flex; flex-direction: column; gap: 2px; }
.news-source__name strong {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.news-source__name small {
  font-size: 11.5px;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
}
.news-source__badge {
  flex-shrink: 0;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--green);
  background: rgba(47, 106, 77, 0.1);
  border: 1px solid rgba(47, 106, 77, 0.3);
  border-radius: 999px;
  padding: 3px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.news-source__badge::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-soft);
  animation: blink 1.8s infinite;
}
.news-source__list { flex: 1; padding: 8px 6px; }
.news-source__list li { border-bottom: 1px dashed rgba(32, 32, 26, 0.1); }
.news-source__list li:last-child { border-bottom: none; }
.news-source__list a {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 13px 20px;
  border-radius: 8px;
  transition: background 0.25s;
}
.news-source__list a:hover { background: rgba(184, 147, 74, 0.08); }
.news-source__list time {
  font-family: var(--en);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.news-source__list .t {
  font-size: 14px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-source__list a:hover .t { color: var(--green-soft); }
.news-source__foot {
  padding: 16px 26px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.news-source__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--green);
  transition: color 0.3s, gap 0.3s;
}
.news-source__more::after { content: "→"; transition: transform 0.3s; }
.news-source__more:hover { color: var(--gold); gap: 12px; }
.news-source__err {
  padding: 18px 22px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.8;
}
/* スケルトンローディング */
.skeleton { padding: 14px 20px; display: grid; gap: 10px; }
.skeleton span {
  display: block;
  height: 13px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--cream-dark) 25%, #f5f1e6 50%, var(--cream-dark) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
.skeleton span:nth-child(2n) { width: 72%; }
@keyframes shimmer {
  from { background-position: 200% 0; }
  to { background-position: -200% 0; }
}
.news__policy {
  margin-top: 30px;
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  line-height: 2;
}
.news__policy a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.news__policy a:hover { color: var(--gold); }

/* ---------- 数字で見る仙台 ---------- */
.about__lead {
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(15px, 2vw, 18px);
  letter-spacing: 0.1em;
  line-height: 2.3;
  color: rgba(246, 243, 234, 0.9);
  margin-bottom: 64px;
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat {
  padding: 38px 14px 32px;
  border: 1px solid rgba(217, 188, 125, 0.3);
  border-radius: var(--radius);
  background: rgba(246, 243, 234, 0.03);
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s, transform 0.35s, background 0.35s;
}
.stat:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  background: rgba(246, 243, 234, 0.06);
}
.stat::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.stat__num {
  display: inline;
  font-family: var(--en);
  font-size: clamp(46px, 5vw, 62px);
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.stat__unit {
  display: inline;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--gold-light);
  margin-left: 4px;
}
.stat__label {
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(246, 243, 234, 0.82);
}
.about__src {
  margin-top: 34px;
  text-align: center;
  font-size: 11.5px;
  letter-spacing: 0.05em;
  color: rgba(246, 243, 234, 0.55);
}
.about__src a { text-decoration: underline; text-underline-offset: 3px; }
.about__src a:hover { color: var(--gold-light); }

/* ---------- 観光スポット図鑑 ---------- */
.spots__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.spot-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
}
.spot-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.spot-card__img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.spot-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.spot-card:hover .spot-card__img img { transform: scale(1.07); }
.spot-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(14, 43, 31, 0.55) 100%);
}
.spot-card__area {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: rgba(9, 30, 21, 0.85);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 4px 13px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}
.spot-card__credit {
  position: absolute;
  right: 10px; bottom: 8px;
  z-index: 2;
  font-size: 9.5px;
  color: rgba(246, 243, 234, 0.75);
  letter-spacing: 0.03em;
}
.spot-card__credit a:hover { color: var(--gold-light); }
.spot-card__body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.spot-card__body h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.spot-card__body h3 small {
  display: block;
  font-family: var(--en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin-top: 3px;
}
.spot-card__desc {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.9;
  margin: 12px 0 16px;
  flex: 1;
}
.spot-card__data {
  display: grid;
  gap: 6px;
  font-size: 12.5px;
  border-top: 1px dashed rgba(32, 32, 26, 0.15);
  padding-top: 14px;
  margin-bottom: 18px;
}
.spot-card__data div { display: flex; gap: 10px; }
.spot-card__data dt {
  flex-shrink: 0;
  width: 58px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.04em;
}
.spot-card__data dd { color: var(--ink-soft); }
.spot-card__links { display: flex; gap: 10px; flex-wrap: wrap; }
.spot-card__links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  border-radius: 999px;
  transition: background 0.3s, color 0.3s, transform 0.25s;
}
.spot-card__links a:hover { transform: translateY(-2px); }
.spot-card__links .lnk-map {
  background: var(--green);
  color: var(--cream);
}
.spot-card__links .lnk-map:hover { background: var(--gold); color: var(--green-deep); }
.spot-card__links .lnk-web {
  border: 1.5px solid var(--green);
  color: var(--green);
}
.spot-card__links .lnk-web:hover { background: var(--green); color: var(--cream); }
.spots__note {
  margin-top: 34px;
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 2;
}

/* ---------- 地図 ---------- */
.map__frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(184, 147, 74, 0.35);
}
.map__frame iframe {
  width: 100%;
  height: 480px;
  border: 0;
  filter: saturate(0.92);
}
.map__note {
  margin-top: 20px;
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 2;
}

/* ---------- グルメ ---------- */
.gourmet__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.gourmet-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
}
.gourmet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.gourmet-card__img {
  position: absolute;
  inset: 0;
}
.gourmet-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.gourmet-card:hover .gourmet-card__img img { transform: scale(1.07); }
.gourmet-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 43, 31, 0.05) 30%, rgba(9, 30, 21, 0.88) 100%);
}
.gourmet-card--plain {
  background: linear-gradient(160deg, var(--green-soft), var(--green-deep));
}
.gourmet-card__body {
  position: relative;
  z-index: 2;
  padding: 26px 26px 24px;
  color: var(--cream);
}
.gourmet-card__body h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-shadow: 0 1px 10px rgba(9, 30, 21, 0.6);
}
.gourmet-card__body h3 small {
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: 0.26em;
  color: var(--gold-light);
  margin-left: 10px;
}
.gourmet-card__body p {
  font-size: 13px;
  line-height: 1.85;
  color: rgba(246, 243, 234, 0.9);
  margin-bottom: 12px;
}
.gourmet-card__tags { display: flex; flex-wrap: wrap; gap: 7px; }
.gourmet-card__tags span {
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--gold-light);
  border: 1px solid rgba(217, 188, 125, 0.5);
  border-radius: 999px;
  padding: 2px 11px;
}
.gourmet-card__credit {
  position: absolute;
  right: 10px; top: 8px;
  z-index: 2;
  font-size: 9.5px;
  color: rgba(246, 243, 234, 0.7);
}
.gourmet-card__credit a:hover { color: var(--gold-light); }

/* ---------- 特集 ---------- */
.feature__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.feature-card--wide { grid-column: span 2; }
.feature-card--wide a { display: grid; grid-template-columns: 1.15fr 1fr; }
.feature-card__img {
  position: relative;
  min-height: 220px;
  height: 100%;
  overflow: hidden;
}
.feature-card:not(.feature-card--wide) .feature-card__img { height: 215px; }
.feature-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.feature-card:hover .feature-card__img img { transform: scale(1.06); }
.feature-card__label {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: rgba(9, 30, 21, 0.88);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 4px 14px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}
.feature-card__body { padding: 26px 28px 30px; }
.feature-card__body time {
  font-family: var(--en);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.feature-card__body h3 {
  font-family: var(--serif);
  font-size: 17.5px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.03em;
  margin-top: 10px;
  transition: color 0.3s;
}
.feature-card--wide .feature-card__body h3 { font-size: 22px; }
.feature-card a:hover h3 { color: var(--green-soft); }
.feature-card__body p {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.9;
}

/* ---------- パノラマ帯 ---------- */
.panorama {
  position: relative;
  background: var(--green-deep);
}
.panorama img {
  width: 100%;
  height: clamp(180px, 26vw, 340px);
  object-fit: cover;
}
.panorama__caption {
  position: absolute;
  right: 16px;
  bottom: 10px;
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: rgba(246, 243, 234, 0.75);
  background: rgba(9, 30, 21, 0.55);
  border-radius: 4px;
  padding: 3px 10px;
  backdrop-filter: blur(4px);
}
.panorama__caption a { text-decoration: underline; text-underline-offset: 2px; }
.panorama__caption a:hover { color: var(--gold-light); }

/* ---------- 歳時記（イベント） ---------- */
.event__timeline {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
  position: relative;
}
.event-item {
  display: flex;
  gap: 26px;
  align-items: stretch;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.event-item::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
}
.event-item--spring::before { background: linear-gradient(#c98a96, #a35e6e); }
.event-item--summer::before { background: linear-gradient(#4c8a68, #2f6a4d); }
.event-item--autumn::before { background: linear-gradient(#c78e4d, #96602a); }
.event-item--winter::before { background: linear-gradient(#6d8ba3, #445e78); }
.event-item:hover { transform: translateX(8px); box-shadow: var(--shadow-md); }
.event-item__season {
  flex-shrink: 0;
  width: 66px;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  border-radius: 8px;
}
.event-item--spring .event-item__season { background: linear-gradient(160deg, #c98a96, #a35e6e); }
.event-item--summer .event-item__season { background: linear-gradient(160deg, #4c8a68, #2f6a4d); }
.event-item--autumn .event-item__season { background: linear-gradient(160deg, #c78e4d, #96602a); }
.event-item--winter .event-item__season { background: linear-gradient(160deg, #6d8ba3, #445e78); }
.event-item__body { flex: 1; }
.event-item__body h3 {
  font-family: var(--serif);
  font-size: 19.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 12px;
}
.event-item__date {
  font-family: var(--en);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.event-item__body p { font-size: 13.5px; color: var(--ink-soft); }
.event-item__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.06em;
}
.event-item__link::after { content: "↗"; font-size: 11px; }
.event-item__link:hover { color: var(--gold); }

/* ---------- 交通ナビ ---------- */
.access__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.access-card {
  background: rgba(246, 243, 234, 0.05);
  border: 1px solid rgba(217, 188, 125, 0.28);
  border-radius: var(--radius-lg);
  padding: 32px 34px;
  transition: background 0.35s, border-color 0.35s, transform 0.35s;
}
.access-card:hover {
  background: rgba(246, 243, 234, 0.09);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.access-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.access-card__icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(150deg, rgba(217, 188, 125, 0.2), rgba(184, 147, 74, 0.08));
  border: 1px solid rgba(217, 188, 125, 0.4);
  color: var(--gold-light);
}
.access-card__icon svg { width: 28px; height: 28px; }
.access-card__head h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--cream);
}
.access-card__head h3 small {
  display: block;
  font-family: var(--en);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-top: 2px;
}
.access-card p {
  font-size: 13.5px;
  color: rgba(246, 243, 234, 0.82);
  line-height: 1.95;
  margin-bottom: 14px;
}
.access-card__fare {
  display: grid;
  gap: 7px;
  border-top: 1px dashed rgba(217, 188, 125, 0.3);
  padding-top: 14px;
  font-size: 12.5px;
}
.access-card__fare div { display: flex; justify-content: space-between; gap: 12px; }
.access-card__fare dt { color: rgba(246, 243, 234, 0.75); }
.access-card__fare dd {
  font-family: var(--en);
  font-size: 14px;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.access-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-light);
}
.access-card__link::after { content: "↗"; font-size: 11px; }
.access-card__link:hover { color: var(--cream); }

/* ---------- 暮らしナビ ---------- */
.life__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.life-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 30px 26px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--green);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.life-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--gold);
}
.life-card__icon {
  width: 46px; height: 46px;
  margin-bottom: 16px;
  color: var(--green-soft);
}
.life-card h3 {
  font-family: var(--serif);
  font-size: 18.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  margin-bottom: 10px;
}
.life-card p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.9;
  margin-bottom: 14px;
  flex: 1;
}
.life-card__list { display: grid; gap: 8px; }
.life-card__list a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--green);
  transition: color 0.25s, gap 0.25s;
}
.life-card__list a::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.life-card__list a:hover { color: var(--gold); gap: 11px; }
.life-card__list .ext { font-size: 10px; color: var(--ink-faint); }

/* 緊急連絡先の強調 */
.life-card--emergency { border-top-color: var(--copper); }
.life-card--emergency:hover { border-top-color: #c0674a; }
.tel-big {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(160, 86, 59, 0.07);
  border: 1px solid rgba(160, 86, 59, 0.25);
  border-radius: 8px;
  margin-bottom: 8px;
  transition: background 0.25s, border-color 0.25s;
}
.tel-big:hover { background: rgba(160, 86, 59, 0.13); border-color: var(--copper); }
.tel-big strong {
  font-family: var(--en);
  font-size: 21px;
  font-weight: 600;
  color: var(--copper);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.tel-big span { font-size: 11.5px; color: var(--ink-soft); line-height: 1.5; }

/* ---------- エリアガイド ---------- */
.area__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.area-card {
  background: var(--white);
  border-radius: var(--radius);
  border-top: 3px solid var(--green);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.area-card::after {
  content: attr(data-en);
  position: absolute;
  right: 14px;
  bottom: 2px;
  font-family: var(--en);
  font-size: 52px;
  font-weight: 500;
  color: rgba(184, 147, 74, 0.1);
  letter-spacing: 0.05em;
  pointer-events: none;
  line-height: 1;
}
.area-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--gold);
}
.area-card h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.area-card h3 span {
  font-family: var(--en);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-left: 8px;
}
.area-card__pop {
  font-size: 11.5px;
  color: var(--ink-faint);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.area-card p { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 16px; }
.area-card ul { display: flex; flex-wrap: wrap; gap: 8px; }
.area-card ul li {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--green);
  background: rgba(23, 70, 51, 0.08);
  border-radius: 999px;
  padding: 3px 12px;
}

/* ---------- リンク集 ---------- */
.links__groups { display: grid; gap: 36px; }
.links-group h3 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.links-group h3::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(184, 147, 74, 0.5), transparent);
}
.links-group__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.links-group__chips a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: var(--white);
  border: 1px solid rgba(32, 32, 26, 0.12);
  border-radius: 999px;
  padding: 8px 18px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s, transform 0.25s, background 0.25s, color 0.25s;
}
.links-group__chips a::after { content: "↗"; font-size: 10px; color: var(--gold); }
.links-group__chips a:hover {
  border-color: var(--gold);
  background: var(--green);
  color: var(--cream);
  transform: translateY(-2px);
}
.links-group__chips a:hover::after { color: var(--gold-light); }

/* ---------- 情報の正確性（ポリシー） ---------- */
.policy__box {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(184, 147, 74, 0.4);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.policy__box::before {
  content: "FACT CHECK POLICY";
  position: absolute;
  top: -11px;
  left: 40px;
  background: var(--gold);
  color: var(--green-deep);
  font-family: var(--en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  padding: 3px 16px;
  border-radius: 3px;
}
.policy__box h3 {
  font-family: var(--serif);
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green);
  margin: 22px 0 8px;
}
.policy__box h3:first-of-type { margin-top: 0; }
.policy__box p, .policy__box li {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 2;
}
.policy__box ul { display: grid; gap: 4px; }
.policy__box ul li { padding-left: 18px; position: relative; }
.policy__box ul li::before {
  content: "";
  position: absolute;
  left: 2px; top: 0.85em;
  width: 7px; height: 2px;
  background: var(--gold);
}
.policy__box a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.policy__box a:hover { color: var(--gold); }
.policy__stamp {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px dashed rgba(32, 32, 26, 0.15);
  font-size: 12px;
  color: var(--ink-faint);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ---------- 汎用ボタン ---------- */
.more-wrap { text-align: center; margin-top: 48px; }
.more-btn {
  display: inline-block;
  font-family: var(--serif);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--green);
  border: 1.5px solid var(--green);
  padding: 13px 52px;
  border-radius: 999px;
  transition: background 0.3s, color 0.3s, transform 0.25s;
}
.more-btn:hover { background: var(--green); color: var(--cream); transform: translateY(-2px); }
.section--green .more-btn { color: var(--cream); border-color: var(--gold-light); }
.section--green .more-btn:hover { background: var(--gold); color: var(--green-deep); }

/* ---------- フッター ---------- */
.footer {
  background: linear-gradient(180deg, var(--green-deep), #081d14);
  color: var(--cream);
  padding: 70px 0 34px;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(217, 188, 125, 0.25);
}
.footer__brand { display: flex; gap: 16px; align-items: flex-start; max-width: 480px; }
.logo__mark--footer { flex-shrink: 0; }
.footer__site {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.footer__copy-lead { font-size: 12.5px; color: rgba(246, 243, 234, 0.65); line-height: 1.9; }
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 10px 32px;
  align-content: start;
}
.footer__nav a {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(246, 243, 234, 0.85);
  transition: color 0.3s;
}
.footer__nav a:hover { color: var(--gold-light); }
.footer__copyright {
  text-align: center;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  line-height: 2;
  color: rgba(246, 243, 234, 0.5);
  margin-top: 32px;
}
.footer__copyright a { text-decoration: underline; text-underline-offset: 2px; }
.footer__copyright a:hover { color: var(--gold-light); }

/* ---------- トップへ戻る ---------- */
.to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 90;
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(217, 188, 125, 0.6);
  background: rgba(14, 43, 31, 0.85);
  color: var(--gold-light);
  font-size: 18px;
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.35s, visibility 0.35s, transform 0.35s, background 0.3s;
  backdrop-filter: blur(6px);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold); color: var(--green-deep); }

/* ---------- スクロール表示アニメーション ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__photo img { animation: none; transform: none; }
  .ticker__track { animation: none; padding-left: 0; flex-wrap: wrap; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* ---------- レスポンシブ ---------- */
@media (max-width: 1080px) {
  .spots__grid { grid-template-columns: repeat(2, 1fr); }
  .gourmet__grid { grid-template-columns: repeat(2, 1fr); }
  .life__grid { grid-template-columns: repeat(2, 1fr); }
  .area__grid { grid-template-columns: repeat(2, 1fr); }
  .gnav__list a { padding: 8px 9px; font-size: 12.5px; }
}

@media (max-width: 860px) {
  .news__grid { grid-template-columns: 1fr; }
  .access__grid { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: repeat(2, 1fr); }
  .feature-card--wide a { grid-template-columns: 1fr; }
  .feature-card--wide .feature-card__img { height: 240px; }
}

@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .sp-only { display: inline; }

  .menu-btn { display: flex; }
  .gnav {
    position: fixed;
    inset: 0;
    background: rgba(9, 30, 21, 0.97);
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
    z-index: -1;
  }
  .gnav.is-open { opacity: 1; visibility: visible; z-index: 99; }
  .gnav__list { flex-direction: column; text-align: center; gap: 12px; }
  .gnav__list a { font-size: 18px; font-family: var(--serif); color: var(--cream) !important; }

  .hero { min-height: 100svh; }
  .hero__content { padding: 130px 20px 150px; }
  .hero__nav a { font-size: 12.5px; padding: 8px 17px; }
  .season-switch { right: 14px; bottom: 64px; gap: 6px; }
  .season-switch__label { display: none; }
  .season-switch button { width: 36px; height: 36px; font-size: 13.5px; }
  .hero__scroll { display: none; }
  .hero__credit { bottom: 110px; left: 14px; }
  .ticker__label { padding: 0 13px; font-size: 10.5px; }

  .spots__grid { grid-template-columns: 1fr; }
  .gourmet__grid { grid-template-columns: 1fr; }
  .life__grid { grid-template-columns: 1fr; }
  .area__grid { grid-template-columns: 1fr; }
  .feature__grid { grid-template-columns: 1fr; }
  .feature-card--wide { grid-column: span 1; }
  .about__stats { gap: 14px; }
  .stat { padding: 28px 10px 24px; }

  .event-item { flex-direction: column; gap: 14px; padding: 24px 22px; }
  .event-item__season { width: 54px; height: 54px; font-size: 21px; }
  .access-card { padding: 26px 24px; }
  .policy__box { padding: 36px 24px; }
  .policy__box::before { left: 20px; }
  .map__frame iframe { height: 360px; }
  .footer__nav { grid-template-columns: repeat(2, auto); }
  .to-top { right: 16px; bottom: 16px; width: 44px; height: 44px; }
}
