/* ==========================================================================
   top.css  —  案P トップページ専用
   セクション構成：
   01 Hero / 02 H1+Status / 03 News / 04 Reasons / 05 Slopes / 06 Activities
   07 Pricing+ServiceDays / 08 Dining / 09 Access / 10 Live CTA / 11 Instagram
   ========================================================================== */

main { padding-top: 0; }  /* ヒーローはフルブリード前提 */

/* ==========================================================================
   01. HERO  ——  section--full / 100vh / 雪の山×琵琶湖
   ========================================================================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: var(--c-ink);
  color: var(--c-snow);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("https://www.hakodateyama.com/winter/parts/images/index/slide_main25.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--c-ink);
}
/* 下半分フェード：上半分の画像は無傷、テキストエリアだけ可読性確保 */
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 38%,
    rgba(10, 29, 51, 0.45) 65%,
    rgba(10, 29, 51, 0.85) 100%
  );
  pointer-events: none;
}
/* 山シルエット（多層奥行き：実画像の手前にもう一段重ねる） */
.hero__mountain {
  position: absolute;
  inset: auto 0 0 0;
  height: 38%;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(10, 29, 51, 0.35) 0%,
      rgba(10, 29, 51, 0.85) 65%,
      var(--c-ink) 100%);
  clip-path: polygon(0 60%, 14% 32%, 22% 50%, 36% 18%, 48% 42%, 58% 22%, 72% 48%, 86% 28%, 100% 50%, 100% 100%, 0 100%);
  pointer-events: none;
}

/* 雪が降るアニメーション（HTML span 要素ベース） */
.hero__snow {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.hero__snow span {
  position: absolute;
  top: 0;
  left: var(--l, 50%);
  width: calc(7px * var(--s, 1));
  height: calc(7px * var(--s, 1));
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  filter: drop-shadow(0 1px 2px rgba(10, 29, 51, 0.55));
  animation: snowfall var(--d, 10s) linear infinite;
  animation-delay: var(--del, 0s);
  will-change: transform, opacity;
}
@keyframes snowfall {
  0%   { transform: translate3d(0, -10vh, 0); opacity: 0; }
  8%   { opacity: 1; }
  50%  { transform: translate3d(var(--x, 0), 50vh, 0); }
  92%  { opacity: 1; }
  100% { transform: translate3d(0, 110vh, 0); opacity: 0; }
}

.hero__inner {
  position: relative;
  z-index: 3;
  height: 100%;
  width: min(96%, 1760px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 3rem;
  padding-block: calc(var(--h-header) + 3rem) 4rem;
  /* 下フェードと併用：文字にも軽いシャドウで確実に読ませる */
  text-shadow: 0 2px 18px rgba(10, 29, 51, 0.55), 0 1px 4px rgba(10, 29, 51, 0.35);
}

.hero__copy {
  max-width: 820px;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  font-family: var(--f-garamond);
  font-style: italic;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.24em;
  color: var(--c-ice);
  text-transform: uppercase;
}
.hero__eyebrow::before {
  content: "";
  width: 56px;
  height: 1px;
  background: var(--c-ice);
}

.hero__title {
  font-family: var(--f-mincho);
  font-weight: 500;
  /* 装飾的見出し：4px刻み（40 → 72px）の範囲。CLAUDE.md ヒーロー装飾の例外に準拠 */
  font-size: clamp(2.5rem, 6.4vw, 4.5rem);
  line-height: 1.32;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  text-shadow: 0 2px 24px rgba(14, 27, 46, 0.45);
}
.hero__title .ja-line {
  display: block;
}
.hero__title .accent {
  color: var(--c-accent);
}

.hero__sub {
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: rgba(244, 247, 250, 0.92);
  text-shadow: 0 1px 12px rgba(14, 27, 46, 0.45);
}

.hero__season {
  /* 右側：縦書きの章番号と年度 */
  position: absolute;
  right: 2vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-family: var(--f-garamond);
  font-style: italic;
  color: var(--c-ice);
}
.hero__season .num-large {
  font-family: var(--f-garamond);
  font-weight: 400;
  font-size: clamp(2.5rem, 5.6vw, 4rem);
  line-height: 1;
  letter-spacing: 0.02em;
}
.hero__season .label {
  writing-mode: vertical-rl;
  font-family: var(--f-mincho);
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.5em;
  color: rgba(244, 247, 250, 0.65);
}

/* ヒーロー下部メタ */
.hero__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}
.hero__meta-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hero__meta-left .label {
  font-family: var(--f-garamond);
  font-style: italic;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  color: var(--c-ice);
  text-transform: uppercase;
}
.hero__meta-left .value {
  font-family: var(--f-num);
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  font-feature-settings: "tnum";
  color: var(--c-snow);
}

.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  font-family: var(--f-garamond);
  font-style: italic;
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  color: rgba(244, 247, 250, 0.72);
  text-transform: uppercase;
}
.hero__scroll .line {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, transparent, var(--c-ice));
  position: relative;
  overflow: hidden;
}
.hero__scroll .line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--c-snow), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

@media (max-width: 1023px) {
  .hero { min-height: 640px; }
  .hero__season { display: none; }
  .hero__meta { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 767px) {
  .hero { min-height: 600px; height: 92vh; }
  .hero__inner { padding-block: calc(var(--h-header) + 2rem) 2rem; }
  .hero__sub { font-size: 1rem; }
}

/* ==========================================================================
   02. STATUS  ——  section--bg / 暖色クリーム / 内側1280 / Magazine Split
   v5 Noto Sans 版を移植：写真左 + 情報右、本日のコンディション+稼働本数
   ========================================================================== */

.status {
  background: var(--c-warm-bg);
  color: var(--c-text);
  position: relative;
  overflow: hidden;
}
.status .container {
  position: relative;
  padding-block: var(--s-section-y);
}

/* ============================================
   Status Card — Magazine Split (Photo + Info)
   ============================================ */
.status-card {
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--r-card);
  overflow: hidden;
  display: grid;
  grid-template-columns: 400px 1fr;
  align-items: stretch;
  box-shadow: 0 16px 40px rgba(10, 29, 51, 0.06);
}

/* ---- photo column ---- */
.status-card__photo {
  display: flex;
  flex-direction: column;
  padding: 28px 0 28px 28px;
  gap: 14px;
  justify-content: center;
}
.status-card__photo-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #d8d4c8;
  overflow: hidden;
  border-radius: var(--r-card);
}
.status-card__photo-ph {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      #dcd8cc 0px,
      #dcd8cc 10px,
      #d2cebf 10px,
      #d2cebf 11px
    );
}
.status-card__photo-ph::after {
  content: "PHOTO · 4:3";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-garamond);
  font-style: italic;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  color: rgba(10, 29, 51, 0.35);
  background: rgba(255, 255, 255, 0.55);
  padding: 4px 12px;
}
.status-card__photo-caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 2px;
}
.status-card__photo-caption-title {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: var(--c-text);
}
.status-card__photo-caption-meta {
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--c-muted);
}

/* ---- info column ---- */
.status-card__info {
  padding: 28px 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: center;
}

/* head: date + title / pill + hours */
.status-card__head-block {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--c-line);
}
.status-card__head-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.status-card__date {
  font-family: var(--f-num);
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  color: var(--c-muted);
  font-variant-numeric: tabular-nums;
}
.status-card__title {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--c-text);
  margin: 0;
}
.status-card__title small {
  margin-left: 12px;
  font-family: var(--f-num);
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--c-muted);
}
.status-card__head-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}

/* OPEN pill */
.status-card__pill-open {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  background: rgba(107, 163, 124, 0.10);
  border: 1px solid rgba(107, 163, 124, 0.32);
  border-radius: var(--r-pill);
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 0.875rem;
  color: #3e6b4f;
  letter-spacing: 0.08em;
}
.status-card__pill-open .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6ba37c;
  box-shadow: 0 0 0 0 rgba(107, 163, 124, 0.55);
  animation: status-card-pulse 2.4s ease-out infinite;
}
@keyframes status-card-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(107, 163, 124, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(107, 163, 124, 0); }
  100% { box-shadow: 0 0 0 0 rgba(107, 163, 124, 0); }
}
.status-card__pill-open .en {
  font-family: var(--f-num);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  margin-left: 2px;
}
.status-card__hours {
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--c-muted);
  letter-spacing: 0.04em;
}
.status-card__hours strong {
  font-family: var(--f-num);
  font-weight: 500;
  color: var(--c-text);
  font-variant-numeric: tabular-nums;
  margin-left: 6px;
}

/* metric grid — 3 cells (frameless) */
.status-card__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.status-card__metric {
  padding: 4px 22px;
  border-right: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.status-card__metric:first-child { padding-left: 0; }
.status-card__metric:last-child { border-right: none; padding-right: 0; }
.status-card__metric-label {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--c-muted);
}
.status-card__metric-body {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.status-card__metric-num {
  font-family: var(--f-num);
  font-weight: 500;
  font-size: 1.75rem;
  letter-spacing: 0;
  color: var(--c-text);
  line-height: 1;
  font-feature-settings: "lnum", "tnum";
}
.status-card__metric-unit {
  font-family: var(--f-sans);
  font-size: 0.75rem;
  color: var(--c-muted);
}
.status-card__metric-weather {
  display: flex;
  align-items: center;
  gap: 8px;
}
.status-card__metric-weather svg {
  width: 22px;
  height: 22px;
  color: var(--c-ice-deep);
  flex-shrink: 0;
}
.status-card__metric-weather-name {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--c-text);
}
.status-card__metric-sub {
  font-family: var(--f-sans);
  font-size: 0.75rem;
  color: var(--c-muted);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

/* lift / slope rows with bars */
.status-card__counts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.status-card__count-link {
  padding: 16px 22px;
  border-right: 1px solid var(--c-line);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.status-card__count-link:first-child { padding-left: 0; }
.status-card__count-link:last-child { border-right: none; padding-right: 0; }
.status-card__count-link:hover {
  background: rgba(10, 29, 51, 0.025);
}
.status-card__count-label {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  color: var(--c-text);
}
.status-card__count-bar {
  height: 2px;
  background: var(--c-line);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}
.status-card__count-bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--ratio, 50%);
  background: var(--c-text);
  transition: width 0.4s ease;
}
.status-card__count-val {
  font-family: var(--f-num);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--c-text);
  font-feature-settings: "lnum";
}
.status-card__count-val em {
  font-style: normal;
  color: var(--c-muted);
  font-weight: 400;
  margin: 0 2px;
}
.status-card__count-arrow {
  font-family: var(--f-num);
  color: var(--c-muted);
  font-size: 1rem;
  transition: color 0.2s, transform 0.2s;
}
.status-card__count-link:hover .status-card__count-arrow {
  color: var(--c-accent);
  transform: translateX(4px);
}

/* footer: notice + road button */
.status-card__foot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: flex-end;
  padding-top: 2px;
}
.status-card__notice {
  font-family: var(--f-sans);
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--c-text);
  letter-spacing: 0.02em;
}
.status-card__notice-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--c-accent);
  letter-spacing: 0.10em;
  margin-bottom: 6px;
}
.status-card__notice-label::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--c-accent);
  display: inline-block;
}
.status-card__notice-body {
  display: block;
}

/* road info button (pill outlined) */
.status-card__road-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 16px;
  background: transparent;
  border: 1px solid rgba(10, 29, 51, 0.32);
  border-radius: var(--r-pill);
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  color: var(--c-text);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}
.status-card__road-btn svg {
  width: 16px;
  height: 16px;
  color: var(--c-text);
  flex-shrink: 0;
  transition: color 0.22s ease;
}
.status-card__road-btn .arrow {
  font-family: var(--f-num);
  font-size: 1rem;
  color: var(--c-muted);
  margin-left: 2px;
  transition: transform 0.22s ease, color 0.22s ease;
}
.status-card__road-btn:hover {
  background: var(--c-ink);
  border-color: var(--c-ink);
  color: #fff;
}
.status-card__road-btn:hover svg { color: #fff; }
.status-card__road-btn:hover .arrow { color: #fff; transform: translateX(3px); }

/* ---- responsive ---- */
@media (max-width: 1023px) {
  .status-card { grid-template-columns: 1fr; }
  .status-card__photo {
    padding: 20px 20px 0;
    gap: 12px;
    justify-content: flex-start;
  }
  .status-card__photo-frame { aspect-ratio: 16 / 9; }
  .status-card__info { padding: 22px 24px 24px; }
}
@media (max-width: 767px) {
  .status-card__photo { padding: 16px 16px 0; gap: 10px; }
  .status-card__info { padding: 20px 18px; gap: 18px; }

  /* head: stack title block and pill block */
  .status-card__head-block {
    flex-direction: column;
    gap: 12px;
    padding-bottom: 14px;
  }
  .status-card__head-right {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 14px;
    text-align: left;
  }
  .status-card__title { font-size: 1.125rem; line-height: 1.5; }
  .status-card__title small {
    display: block;
    margin-left: 0;
    margin-top: 2px;
  }

  /* metrics: keep 3 cols at tablet/phone-wide, switch to 1 col below */
  .status-card__metrics {
    grid-template-columns: repeat(3, 1fr);
    padding-block: 4px;
  }
  .status-card__metric { padding: 4px 12px; gap: 8px; }
  .status-card__metric:first-child { padding-left: 0; }
  .status-card__metric:last-child { padding-right: 0; }
  .status-card__metric-num { font-size: 1.5rem; }
  .status-card__metric-weather svg { width: 18px; height: 18px; }
  .status-card__metric-weather-name { font-size: 0.875rem; }
  .status-card__metric-sub { font-size: 0.625rem; }

  /* counts: 1 column stack */
  .status-card__counts { grid-template-columns: 1fr; }
  .status-card__count-link {
    border-right: none;
    border-bottom: 1px solid var(--c-line);
    padding: 12px 0;
    gap: 12px;
  }
  .status-card__count-link:last-child { border-bottom: none; }

  /* foot: stack, road button left-aligned content-width */
  .status-card__foot {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
  }
  .status-card__road-btn {
    justify-self: start;
  }
}
@media (max-width: 479px) {
  .status-card__info { padding: 18px 16px; gap: 16px; }

  /* metrics: keep 3 columns, just very compact */
  .status-card__metrics {
    grid-template-columns: repeat(3, 1fr);
  }
  .status-card__metric {
    padding: 4px 8px;
    gap: 6px;
  }
  .status-card__metric:first-child { padding-left: 0; }
  .status-card__metric:last-child { padding-right: 0; }
  .status-card__metric-label {
    font-size: 0.625rem;
    letter-spacing: 0.04em;
  }
  .status-card__metric-num { font-size: 1.25rem; }
  .status-card__metric-unit { font-size: 0.625rem; }
  /* weather: stack icon above name (narrow widths) */
  .status-card__metric-weather {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .status-card__metric-weather svg { width: 18px; height: 18px; }
  .status-card__metric-weather-name {
    font-size: 0.75rem;
    letter-spacing: 0.02em;
  }
  .status-card__metric-sub {
    font-size: 0.625rem;
    line-height: 1.5;
  }
}

/* ==========================================================================
   03. NEWS  ——  section--readable / 中央寄せ 880
   ========================================================================== */

.news {
  background: var(--c-paper);
  padding-block: 4rem;
}
.news__wrap {
  width: min(92%, 1080px);
  margin-inline: auto;
}
.news__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--c-line);
}
.news__head h2 {
  font-family: var(--f-garamond);
  font-style: italic;
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 0.24em;
  color: var(--c-ink);
  text-transform: uppercase;
}
.news__head .all {
  font-family: var(--f-sans);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--c-muted);
}
.news__head .all:hover { color: var(--c-accent); }

.news__list {
  display: flex;
  flex-direction: column;
}
.news__item {
  display: grid;
  grid-template-columns: 110px 90px 1fr;
  gap: 1.5rem;
  align-items: baseline;
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--c-line);
  transition: background 0.3s ease;
}
.news__item:hover { background: rgba(184, 207, 223, 0.08); }
.news__item .date {
  font-family: var(--f-num);
  font-weight: 500;
  font-feature-settings: "tnum";
  font-size: 0.875rem;
  color: var(--c-muted);
  letter-spacing: 0.02em;
}
.news__item .cat {
  font-family: var(--f-garamond);
  font-style: italic;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--c-accent);
  text-transform: uppercase;
}
.news__item .title {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--c-ink);
  line-height: 1.6;
}

@media (max-width: 767px) {
  .news__item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding-block: 1rem;
  }
  .news__item .date,
  .news__item .cat {
    display: inline-block;
    margin-right: 0.75rem;
  }
}

/* ==========================================================================
   04. REASONS  ——  section--bg / 雪色背景 / 内側1280 / 章番号01-03
   ========================================================================== */

.reasons {
  background: var(--c-snow);
  position: relative;
  overflow: hidden;
}
.reasons::before {
  content: "WHY HAKODATEYAMA";
  position: absolute;
  top: 6%;
  right: -4%;
  font-family: var(--f-garamond);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 1;
  color: rgba(108, 138, 168, 0.08);
  letter-spacing: -0.02em;
  pointer-events: none;
  white-space: nowrap;
}
.reasons .container { position: relative; }
.reasons__head {
  margin-bottom: 4.5rem;
  text-align: center;
}
.reasons__head .eyebrow {
  justify-content: center;
  margin-bottom: 1.25rem;
}
.reasons__head .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}
.reasons__head h2 {
  font-family: var(--f-mincho);
  font-weight: 500;
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  letter-spacing: 0.08em;
  color: var(--c-ink);
  line-height: 1.5;
}

.reasons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.reason-card {
  position: relative;
  padding: 3rem 2rem 2.5rem;
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reason-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -16px rgba(14, 27, 46, 0.18);
}
.reason-card__num {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-family: var(--f-garamond);
  font-style: italic;
  font-weight: 400;
  font-size: 4rem;
  /* ↑ スケール内 */
  line-height: 1;
  color: var(--c-accent);
  opacity: 0.42;
}
.reason-card__icon {
  width: 56px;
  height: 1px;
  background: var(--c-accent);
  margin-bottom: 2.25rem;
}
.reason-card__title {
  font-family: var(--f-mincho);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  line-height: 1.55;
  color: var(--c-ink);
  margin-bottom: 1.25rem;
}
.reason-card__title .em {
  background: linear-gradient(transparent 65%, rgba(200, 71, 45, 0.18) 65%);
}
.reason-card__body {
  font-family: var(--f-sans);
  font-size: 0.875rem;
  line-height: 2;
  color: var(--c-text);
  letter-spacing: 0.04em;
}
.reason-card__facts {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.reason-card__facts dt {
  font-family: var(--f-garamond);
  font-style: italic;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--c-muted);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.reason-card__facts dd {
  font-family: var(--f-num);
  font-weight: 500;
  font-feature-settings: "tnum";
  font-size: 1.125rem;
  color: var(--c-ink);
  letter-spacing: -0.01em;
}
.reason-card__facts dd .unit {
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: 0.75rem;
  margin-left: 0.18em;
  color: var(--c-muted);
}
.reason-card__facts > div { min-width: 80px; }

@media (max-width: 1023px) {
  .reasons__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .reason-card__num { font-size: 3rem; }
}

/* ==========================================================================
   04b. REASONS NUMBERS  ——  比較用 / 数字メイン3カラム
   ========================================================================== */

.reasons-numbers {
  background: var(--c-snow);
  position: relative;
  overflow: hidden;
}
.reasons-numbers::before {
  content: "WHY HAKODATEYAMA";
  position: absolute;
  top: 6%;
  right: -4%;
  font-family: var(--f-garamond);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 1;
  color: rgba(108, 138, 168, 0.08);
  letter-spacing: -0.02em;
  pointer-events: none;
  white-space: nowrap;
}
.reasons-numbers .container {
  display: block;
  position: relative;
}
.reasons-numbers__head {
  margin-bottom: 4rem;
  text-align: center;
}
.reasons-numbers__head h2 {
  font-family: var(--f-mincho);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: 0.06em;
  line-height: 1.4;
  color: var(--c-ink);
  margin-top: 0.5rem;
}

.reasons-numbers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.rn-item {
  padding: 4rem 2rem;
  text-align: center;
  border-right: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
}
.rn-item:last-child { border-right: 0; }
.rn-item__num {
  font-family: var(--f-garamond);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(3.5rem, 9vw, 6rem);
  line-height: 1;
  color: var(--c-accent);
  margin: 0 0 1.75rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.125em;
}
.rn-item__num .num {
  font-family: var(--f-garamond);
  font-style: italic;
  font-feature-settings: normal;
}
.rn-item__num .unit {
  font-size: 0.32em;
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--c-muted);
  font-weight: 500;
  margin-left: 0.25em;
}
.rn-item__title {
  font-family: var(--f-mincho);
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: var(--c-ink);
  margin: 0 0 1rem;
}
.rn-item__body {
  font-family: var(--f-sans);
  font-size: 0.875rem;
  line-height: 1.9;
  color: var(--c-muted);
  letter-spacing: 0.04em;
  margin: 0 0 1.5rem;
  text-align: left;
}
.rn-item__meta {
  font-family: var(--f-garamond);
  font-style: italic;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--c-ink-3);
  margin: auto 0 0;  /* flex: 親で position 最下部に押し下げ */
  padding-top: 1.25rem;
  border-top: 1px dashed var(--c-line);
  text-align: center;
}
.rn-item__meta em {
  font-family: var(--f-num);
  font-feature-settings: "tnum";
  font-style: normal;
  font-weight: 500;
  color: var(--c-accent);
  font-size: 1em;
  margin: 0 0.125em;
  letter-spacing: -0.01em;
}

@media (max-width: 1023px) {
  .reasons-numbers__grid {
    grid-template-columns: 1fr;
  }
  .rn-item {
    padding: 2.5rem 1.5rem;
    border-right: 0;
    border-bottom: 1px solid var(--c-line);
  }
  .rn-item:last-child { border-bottom: 0; }
}

/* ==========================================================================
   05. SLOPES  ——  section--wide / 1760 / 横長3カード
   ========================================================================== */

.slopes {
  background: var(--c-paper);
  padding-block: var(--s-section-y);
}
.slopes__head {
  width: min(92%, var(--s-container));
  margin: 0 auto;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--c-line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}
.slopes__head .left h2 {
  font-family: var(--f-mincho);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: 0.06em;
  line-height: 1.4;
  color: var(--c-ink);
  margin-top: 0.5rem;
}
.slopes__lead {
  font-family: var(--f-mincho);
  font-weight: 400;
  font-size: 1rem;
  line-height: 2;
  color: var(--c-muted);
  letter-spacing: 0.06em;
  margin: 0;
  padding-bottom: 0.5rem;
}

.slopes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: min(96%, var(--s-container-wide));
  margin-inline: auto;
}
.slope {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--c-ink-2);
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.slope:hover { transform: translateY(-4px); }
.slope__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.slope:hover .slope__bg { transform: scale(1.06); }
.slope--view .slope__bg {
  background:
    linear-gradient(180deg, rgba(14, 27, 46, 0) 35%, rgba(14, 27, 46, 0.78) 100%),
    url("https://images.unsplash.com/photo-1610479201125-a5c7f17370a8?q=80&w=1470&auto=format&fit=crop") center/cover no-repeat;
}
.slope--yahho .slope__bg {
  background:
    linear-gradient(180deg, rgba(14, 27, 46, 0) 35%, rgba(14, 27, 46, 0.78) 100%),
    url("https://images.unsplash.com/photo-1645133058323-d7dce1e23a1b?q=80&w=1470&auto=format&fit=crop") center/cover no-repeat;
}
.slope--three .slope__bg {
  background:
    linear-gradient(180deg, rgba(14, 27, 46, 0) 35%, rgba(14, 27, 46, 0.85) 100%),
    url("https://images.unsplash.com/photo-1609748515660-a98664c3a0bc?q=80&w=1374&auto=format&fit=crop") center/cover no-repeat;
}

.slope__label {
  position: absolute;
  top: 1.75rem;
  left: 1.75rem;
  font-family: var(--f-garamond);
  font-style: italic;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  color: var(--c-snow);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.slope__label .num-tag {
  font-family: var(--f-num);
  font-weight: 500;
  font-feature-settings: "tnum";
  font-size: 0.75rem;
  padding: 0.25rem 0.625rem;
  background: rgba(244, 247, 250, 0.16);
  border: 1px solid rgba(244, 247, 250, 0.28);
  letter-spacing: 0.04em;
}
.slope__inner {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2rem 1.75rem 2rem;
  color: var(--c-snow);
}
.slope__name {
  font-family: var(--f-mincho);
  font-weight: 500;
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin-bottom: 0.625rem;
}
.slope__name .en {
  display: block;
  font-family: var(--f-garamond);
  font-style: italic;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  opacity: 0.78;
  margin-top: 0.25rem;
}
.slope__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(244, 247, 250, 0.2);
}
.slope__levels {
  display: flex;
  gap: 0.5rem;
}
.slope__levels span {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.625rem;
  border: 1px solid rgba(244, 247, 250, 0.4);
}
.slope__desc {
  font-family: var(--f-sans);
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(244, 247, 250, 0.88);
  letter-spacing: 0.04em;
}
.slope__stats {
  display: flex;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  border: 0;
}
.slope__stats div {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.5rem;
}
.slope__stats dt {
  font-family: var(--f-garamond);
  font-style: italic;
  font-size: 0.625rem;
  letter-spacing: 0.24em;
  color: rgba(244, 247, 250, 0.6);
  text-transform: uppercase;
}
.slope__stats dd {
  font-family: var(--f-num);
  font-weight: 500;
  font-feature-settings: "tnum";
  font-size: 1rem;
  letter-spacing: -0.01em;
}
.slope__stats dd .unit {
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: 0.75rem;
  opacity: 0.7;
  margin-left: 0.18em;
}

@media (max-width: 1023px) {
  .slopes__head { grid-template-columns: 1fr; }
  .slopes__grid { grid-template-columns: repeat(2, 1fr); }
  .slopes__grid .slope:nth-child(3) { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
}
@media (max-width: 767px) {
  .slopes__grid { grid-template-columns: 1fr; }
  .slopes__grid .slope:nth-child(3) { aspect-ratio: 4 / 5; }
}

/* ==========================================================================
   06. ACTIVITIES  ——  section--wide / 5カードずらしグリッド
   ========================================================================== */

.activities {
  background: var(--c-snow);
  position: relative;
  overflow: hidden;
}
.activities::before {
  content: "ENJOY";
  position: absolute;
  bottom: 6%;
  left: 4%;
  font-family: var(--f-garamond);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 1;
  color: rgba(108, 138, 168, 0.08);
  letter-spacing: -0.02em;
  pointer-events: none;
  white-space: nowrap;
}
.activities .container {
  position: relative;
  width: min(92%, var(--s-container));
  margin: 0 auto 4rem;
}
.activities__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--c-line);
}
.activities__head .right p {
  font-family: var(--f-mincho);
  font-weight: 400;
  font-size: 1rem;
  line-height: 2;
  color: var(--c-muted);
  letter-spacing: 0.06em;
  margin: 0;
  padding-bottom: 0.5rem;
}

.activities__grid {
  width: min(96%, var(--s-container-wide));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 1fr;
  gap: 1.5rem;
}

/* 5カードずらしレイアウト：2-3配置 */
.act { position: relative; overflow: hidden; background: var(--c-ink-2); aspect-ratio: 4/3; }
/* Row 1: 異なる幅でも高さを揃えるため固定 height（aspect-ratio 解除）*/
.act:nth-child(1) { grid-column: span 7; aspect-ratio: auto; height: clamp(280px, 26vw, 440px); }
.act:nth-child(2) { grid-column: span 5; aspect-ratio: auto; height: clamp(280px, 26vw, 440px); }
/* Row 2: 3カード均等幅なので aspect-ratio 4/3 で OK（同幅 → 同高さ）*/
.act:nth-child(3) { grid-column: span 4; }
.act:nth-child(4) { grid-column: span 4; }
.act:nth-child(5) { grid-column: span 4; }

.act__bg {
  position: absolute;
  inset: 0;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  background-size: cover;
  background-position: center;
}
.act:hover .act__bg { transform: scale(1.06); }
.act::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(14, 27, 46, 0.85) 100%);
  pointer-events: none;
}

.act--ski .act__bg     { background: linear-gradient(135deg, #1c4068 0%, #7396b8 100%); }
.act--play .act__bg    { background: linear-gradient(135deg, #c5d4e2 0%, #f5f6fa 100%); }
.act--raft .act__bg    { background: linear-gradient(135deg, #d99a3a 0%, #f5e6da 100%); }
.act--snow .act__bg    { background: linear-gradient(135deg, #2c5a8c 0%, #c5d4e2 100%); }
.act--pet .act__bg     { background: linear-gradient(135deg, #2c5a8c 0%, #f5e6da 100%); }

.act__inner {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--c-snow);
}
.act__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  font-family: var(--f-garamond);
  font-style: italic;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  color: var(--c-ice);
  text-transform: uppercase;
}
.act__tag .num-mini {
  font-family: var(--f-num);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  opacity: 0.8;
}
.act__title {
  font-family: var(--f-mincho);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.act:nth-child(1) .act__title,
.act:nth-child(2) .act__title { font-size: 1.75rem; }
.act__price {
  font-family: var(--f-num);
  font-weight: 500;
  font-feature-settings: "tnum";
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  color: var(--c-snow);
  margin-top: 0.5rem;
}
.act__price .badge {
  display: inline-block;
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 0.75rem;
  padding: 0.25rem 0.625rem;
  background: var(--c-accent);
  border-radius: var(--r-pill);
  margin-left: 0.5rem;
  letter-spacing: 0.06em;
  color: var(--c-paper);
}
.act__price .label {
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: 0.75rem;
  margin-left: 0.5rem;
  color: rgba(244, 247, 250, 0.7);
  letter-spacing: 0.06em;
}

@media (max-width: 1023px) {
  .activities__head { grid-template-columns: 1fr; gap: 1.5rem; }
  .act:nth-child(1), .act:nth-child(2) { grid-column: span 12; aspect-ratio: 16/9; }
  .act:nth-child(3), .act:nth-child(4), .act:nth-child(5) { grid-column: span 6; }
  .act:nth-child(5) { grid-column: span 12; aspect-ratio: 16/8; }
}
@media (max-width: 767px) {
  .act { grid-column: span 12 !important; aspect-ratio: 4/3; }
  .act__title { font-size: 1.25rem !important; }
}

/* ==========================================================================
   08. DINING  ——  section--wide / 3カード
   ========================================================================== */

.dining {
  background: linear-gradient(180deg, var(--c-warm-bg) 0%, var(--c-warm-bg-2) 100%);
  padding-block: var(--s-section-y);
  position: relative;
  overflow: hidden;
}
.dining__head {
  width: min(92%, var(--s-container));
  margin: 0 auto;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--c-line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}
.dining__lead {
  font-family: var(--f-mincho);
  font-weight: 400;
  font-size: 1rem;
  line-height: 2;
  color: var(--c-muted);
  letter-spacing: 0.06em;
  margin: 0;
  padding-bottom: 0.5rem;
}
.dining__head h2 {
  font-family: var(--f-mincho);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.5rem);
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: var(--c-ink);
  margin-top: 0.75rem;
}

.dining__grid {
  width: min(96%, var(--s-container-wide));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.dish {
  background: var(--c-snow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.dish__img {
  aspect-ratio: 4/3;
  background: var(--c-ink-2);
  position: relative;
  overflow: hidden;
}
.dish__img::after {
  content: "";
  position: absolute;
  inset: 0;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.dish--mitani .dish__img { background: linear-gradient(135deg, #d99a3a 0%, #f5e6da 60%, #ffffff 100%); }
.dish--karamatsu .dish__img { background: linear-gradient(135deg, #2c5a8c 0%, #7396b8 60%, #c5d4e2 100%); }
.dish--lamp .dish__img { background: linear-gradient(135deg, #1c4068 0%, #2c5a8c 60%, #f5e6da 100%); }

.dish__body {
  padding: 2rem 1.75rem 2.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.dish__tag {
  font-family: var(--f-garamond);
  font-style: italic;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  color: var(--c-accent);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.dish__name {
  font-family: var(--f-mincho);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: var(--c-ink);
  margin-bottom: 0.5rem;
}
.dish__name .en {
  display: block;
  font-family: var(--f-garamond);
  font-style: italic;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  color: var(--c-muted);
  margin-top: 0.375rem;
}
.dish__seats {
  font-family: var(--f-num);
  font-weight: 500;
  font-feature-settings: "tnum";
  font-size: 0.875rem;
  color: var(--c-muted);
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}
.dish__seats .unit {
  font-family: var(--f-sans);
  font-weight: 400;
  margin-left: 0.18em;
}
.dish__desc {
  font-family: var(--f-sans);
  font-size: 0.875rem;
  line-height: 1.9;
  color: var(--c-text);
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
  flex: 1;
}
.dish__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.dish__features span {
  font-family: var(--f-sans);
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  letter-spacing: 0.06em;
  color: var(--c-ink-2);
}
.dish__note {
  margin-top: 1rem;
  font-family: var(--f-sans);
  font-size: 0.75rem;
  color: var(--c-muted);
  letter-spacing: 0.04em;
  line-height: 1.7;
}

@media (max-width: 1023px) {
  .dining__head { grid-template-columns: 1fr; }
  .dining__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   09. SPECIAL PAGES  ——  section--bg / 内側 1280 / 2バナー横並び
   インバウンド + ペットの差別化要素
   ========================================================================== */

.special-pages {
  background: linear-gradient(180deg, #eaf0f5 0%, #e2eaf2 100%);
  position: relative;
}
.special-pages .container {
  display: block;
}
.special-pages__head {
  text-align: center;
  margin-bottom: 3rem;
}
.special-pages__head h2 {
  font-family: var(--f-mincho);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: 0.06em;
  line-height: 1.4;
  color: var(--c-ink);
  margin-top: 0.5rem;
}
.special-pages__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.banner {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--c-paper);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 60px -28px rgba(14, 27, 46, 0.4);
}

/* 写真エリア（上） */
.banner__media {
  position: relative;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.banner--inbound .banner__media {
  background:
    radial-gradient(ellipse at 30% 70%, rgba(184, 207, 223, 0.18) 0%, transparent 55%),
    linear-gradient(135deg, var(--c-ink-3) 0%, var(--c-ink-2) 60%, var(--c-ink) 100%);
}
.banner--pet .banner__media {
  background:
    radial-gradient(ellipse at 70% 60%, rgba(233, 213, 181, 0.12) 0%, transparent 50%),
    linear-gradient(135deg, #5a4a3a 0%, #3c2e22 60%, #1f1812 100%);
}
.banner__media-label {
  font-family: var(--f-garamond);
  font-style: italic;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  color: rgba(253, 253, 250, 0.55);
  border: 1px dashed rgba(253, 253, 250, 0.28);
  padding: 0.5rem 1rem;
  text-transform: none;
  text-align: center;
  max-width: 80%;
  line-height: 1.5;
}
.banner__media::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 14px;
  height: 14px;
  border-top: 1px solid rgba(253, 253, 250, 0.25);
  border-left: 1px solid rgba(253, 253, 250, 0.25);
}
.banner__media::after {
  content: "";
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 14px;
  height: 14px;
  border-bottom: 1px solid rgba(253, 253, 250, 0.25);
  border-right: 1px solid rgba(253, 253, 250, 0.25);
}

/* 本文エリア（下） */
.banner__body {
  position: relative;
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 280px;
}
.banner--inbound .banner__body {
  background: linear-gradient(180deg, var(--c-ink-2) 0%, var(--c-ink) 100%);
}
.banner--pet .banner__body {
  background: linear-gradient(180deg, #3c2e22 0%, #2a1f17 100%);
}
.banner__tag {
  font-family: var(--f-garamond);
  font-style: italic;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  color: var(--c-warm);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}
.banner__title {
  font-family: var(--f-mincho);
  font-weight: 500;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: var(--c-paper);
  margin: 0 0 1.5rem;
}
.banner__features {
  list-style: none;
  margin: 0 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.banner__features li {
  font-family: var(--f-sans);
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(253, 253, 250, 0.88);
  letter-spacing: 0.04em;
  position: relative;
  padding-left: 1rem;
}
.banner__features li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--c-warm);
  font-family: var(--f-garamond);
}
.banner__features li strong {
  color: var(--c-warm);
  font-weight: 500;
}
.banner__features li .num {
  font-family: var(--f-num);
  font-feature-settings: "tnum";
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--c-paper);
  font-style: normal;
}
.banner__cta {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--f-mincho);
  font-weight: 500;
  font-size: 1rem;
  color: var(--c-paper);
  letter-spacing: 0.06em;
}
.banner__cta .arrow {
  width: 14px;
  height: 1px;
  background: var(--c-paper);
  position: relative;
  display: inline-block;
  transition: width 0.4s ease;
}
.banner__cta .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--c-paper);
  border-right: 1px solid var(--c-paper);
  transform: rotate(45deg);
}
.banner:hover .banner__cta .arrow {
  width: 22px;
}

@media (max-width: 1023px) {
  .special-pages__grid {
    grid-template-columns: 1fr;
  }
  .banner__body { padding: 2rem 1.5rem 1.75rem; }
}

/* ==========================================================================
   10. ACCESS  ——  section--bg / 紺地 / 内側 1280 / 案S風（地図 + 3ルート）
   ========================================================================== */

.access {
  background: var(--c-ink);
  color: var(--c-snow);
  position: relative;
  overflow: hidden;
}
.access::before {
  content: "ACCESS";
  position: absolute;
  top: 8%;
  right: 4%;
  font-family: var(--f-garamond);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 1;
  color: rgba(184, 207, 223, 0.06);
  letter-spacing: -0.02em;
  pointer-events: none;
}
.access .container {
  display: block;
  position: relative;
}
.access__head {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--c-line-on-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}
.access__lead {
  font-family: var(--f-mincho);
  font-weight: 400;
  font-size: 1rem;
  line-height: 2;
  color: rgba(244, 247, 250, 0.7);
  letter-spacing: 0.06em;
  margin: 0;
  padding-bottom: 0.5rem;
}
.access__head .eyebrow {
  color: var(--c-ice);
}
.access__head .eyebrow::before {
  background: var(--c-ice);
}
.access__head h2 {
  font-family: var(--f-mincho);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: 0.06em;
  line-height: 1.4;
  color: var(--c-snow);
  margin-top: 0.5rem;
}
.access__head h2 .num {
  font-family: var(--f-num);
  font-feature-settings: "tnum";
  font-weight: 500;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--c-paper);
  letter-spacing: -0.02em;
  font-style: normal;
  margin: 0 0.125em;
}

.access__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

/* 地図領域 */
.access__map {
  position: relative;
  background: rgba(184, 207, 223, 0.08);
  border: 1px solid var(--c-line-on-dark);
  min-height: 340px;
  overflow: hidden;
}
.access__map-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(111, 147, 173, 0.18) 0%, rgba(184, 207, 223, 0.05) 100%),
    radial-gradient(circle at 30% 65%, rgba(111, 147, 173, 0.28) 0%, transparent 55%);
}
.access__map-pin {
  position: absolute;
  top: 38%;
  left: 62%;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  z-index: 1;
}
.access__map-pin-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c-accent);
  position: relative;
  flex-shrink: 0;
}
.access__map-pin-dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--c-accent);
  opacity: 0.5;
  animation: access-pin-pulse 2s ease-out infinite;
}
@keyframes access-pin-pulse {
  0% { transform: scale(0.6); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}
.access__map-pin-label {
  font-family: var(--f-mincho);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  color: var(--c-snow);
  background: rgba(14, 27, 46, 0.78);
  padding: 0.25rem 0.625rem;
}

/* ルートリスト */
.access__routes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.access__route {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--c-line-on-dark);
  align-items: start;
}
.access__route:first-child { padding-top: 0; }
.access__route:last-child { border-bottom: 0; padding-bottom: 0; }
.access__route-icon {
  font-size: 0.625rem;
  color: var(--c-accent);
  margin-top: 0.625rem;
  line-height: 1;
}
.access__route-from {
  font-family: var(--f-garamond);
  font-style: italic;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  color: var(--c-ice);
  text-transform: uppercase;
  margin: 0 0 0.375rem;
}
.access__route-time {
  font-family: var(--f-mincho);
  font-weight: 500;
  margin: 0 0 0.375rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  color: var(--c-snow);
}
.access__route-time .num {
  font-family: var(--f-num);
  font-feature-settings: "tnum";
  font-weight: 500;
  font-size: 1.75rem;
  letter-spacing: -0.01em;
  font-style: normal;
}
.access__route-time span {
  font-family: var(--f-sans);
  font-size: 0.875rem;
  color: var(--c-ice);
}
.access__route-detail {
  font-family: var(--f-sans);
  font-size: 0.875rem;
  color: rgba(244, 247, 250, 0.65);
  letter-spacing: 0.02em;
  line-height: 1.7;
  margin: 0;
}

.access__footer {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--c-line-on-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.access__note {
  font-family: var(--f-sans);
  font-size: 0.875rem;
  color: rgba(244, 247, 250, 0.65);
  letter-spacing: 0.04em;
  margin: 0;
}

@media (max-width: 1023px) {
  .access__layout { grid-template-columns: 1fr; gap: 2rem; }
  .access__map { min-height: 240px; }
  .access__footer { flex-direction: column; align-items: stretch; text-align: center; }
}

/* ==========================================================================
   10. LIVE CTA  ——  section--full / フルブリード / 朱の差し色
   ========================================================================== */

.live-cta {
  background: var(--c-accent);
  color: var(--c-paper);
  padding-block: 5.5rem;
  position: relative;
  overflow: hidden;
}
.live-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 100% 0%, rgba(244, 247, 250, 0.16), transparent 60%),
    radial-gradient(ellipse 60% 100% at 0% 100%, rgba(14, 27, 46, 0.18), transparent 60%);
}
.live-cta .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.live-cta__copy .eyebrow { color: var(--c-paper); }
.live-cta__copy .eyebrow::before { background: var(--c-paper); }
.live-cta__copy h2 {
  font-family: var(--f-mincho);
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 2.5rem);  /* スケール内：32 → 40px */
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.live-cta__copy p {
  font-family: var(--f-sans);
  font-size: 1rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
  opacity: 0.92;
}
.live-cta__btns {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.live-cta .btn {
  background: var(--c-paper);
  color: var(--c-accent-2);
}
.live-cta .btn:hover {
  background: var(--c-ink);
  color: var(--c-paper);
  transform: translateY(-2px);
}
.live-cta .btn--ghost {
  background: transparent;
  color: var(--c-paper);
  border: 1px solid var(--c-paper);
}
.live-cta .btn--ghost:hover {
  background: var(--c-paper);
  color: var(--c-accent-2);
}

@media (max-width: 1023px) {
  .live-cta .container { grid-template-columns: 1fr; }
}

/* ==========================================================================
   11. INSTAGRAM  ——  section--full / 6枚グリッド
   ========================================================================== */

.insta {
  background: var(--c-paper);
  padding-block: var(--s-section-y);
}
.insta__head {
  width: min(92%, var(--s-container));
  margin: 0 auto 3rem;
  text-align: center;
}
.insta__head .handle {
  font-family: var(--f-garamond);
  font-style: italic;
  font-size: 1.125rem;
  letter-spacing: 0.16em;
  color: var(--c-accent);
  margin-bottom: 0.75rem;
}
.insta__head h2 {
  font-family: var(--f-mincho);
  font-weight: 500;
  font-size: clamp(1.75rem, 3.6vw, 2.25rem);
  letter-spacing: 0.06em;
  color: var(--c-ink);
}

.insta__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  width: 100%;
}
.insta__grid a {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--c-ink-2);
  display: block;
}
.insta__grid a > .img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.insta__grid a:hover > .img { transform: scale(1.08); }
.insta__grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 27, 46, 0);
  transition: background 0.4s ease;
}
.insta__grid a:hover::after { background: rgba(14, 27, 46, 0.32); }

.insta__grid a:nth-child(1) > .img { background: linear-gradient(135deg, #1c4068, #7396b8); }
.insta__grid a:nth-child(2) > .img { background: linear-gradient(135deg, #d99a3a, #f5e6da); }
.insta__grid a:nth-child(3) > .img { background: linear-gradient(135deg, #2c5a8c, #c5d4e2); }
.insta__grid a:nth-child(4) > .img { background: linear-gradient(135deg, #2c5a8c, #f5f6fa); }
.insta__grid a:nth-child(5) > .img { background: linear-gradient(135deg, #0a1d33, #2c5a8c); }
.insta__grid a:nth-child(6) > .img { background: linear-gradient(135deg, #7396b8, #f5e6da); }

@media (max-width: 1023px) {
  .insta__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
  .insta__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   .container 上書き（main.css の固定幅を base.css 方針の可変幅に戻す）
   main.css: width: var(--s-container) → 固定 1280px、画面狭時に横スクロール発生
   修正: base.css と同じ min(92%, 1280px) の可変幅に統一
   ========================================================================== */
.container {
  width: min(92%, var(--s-container));
  margin-inline: auto;
}
.container--wide {
  width: min(96%, var(--s-container-wide));
  margin-inline: auto;
}

/* ==========================================================================
   07. TICKET & DEALS — 料金統合セクション（旧 SERVICE DAYS + PRICING の代替）
   詳細は料金・チケットページに集約（素材：ウィンターサイト/デザイン/料金ページ_素材.html）
   ========================================================================== */

.proposal {
  background: var(--c-warm-bg);
}

/* ---- Shared CTA button ---- */
.proposal-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.5rem 0.875rem 1.25rem;
  background: var(--c-ink);
  color: #fff;
  border: 1px solid var(--c-ink);
  border-radius: var(--r-pill);
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background 0.22s, color 0.22s, transform 0.22s;
}
.proposal-btn .arrow {
  font-family: var(--f-num);
  font-style: normal;
  transition: transform 0.22s;
}
.proposal-btn:hover .arrow { transform: translateX(3px); }
.proposal-btn--ghost {
  background: transparent;
  color: var(--c-ink);
  border-color: rgba(10, 29, 51, 0.32);
}
.proposal-btn--ghost:hover { background: var(--c-ink); color: #fff; }

/* ==========================================================================
   OPTION A — 1セクション統合
   ========================================================================== */
.propa__hero {
  text-align: center;
  margin-bottom: 2.5rem;
}
.propa__title {
  font-family: var(--f-mincho);
  font-weight: 500;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: var(--c-ink);
  margin: 1rem 0 0;
}

.propa__price {
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--r-card);
  padding: 1.75rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 0;
  align-items: center;
  margin-bottom: 2rem;
}
.propa__price-block {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding-right: 1.75rem;
  border-right: 1px solid var(--c-line);
}
.propa__price-block:nth-child(2) {
  padding-left: 1.75rem;
}
.propa__price-label {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  color: var(--c-muted);
}
.propa__price-main {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  line-height: 1;
}
.propa__price-main .num {
  font-family: var(--f-num);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(2.25rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  color: var(--c-ink);
}
.propa__price-main i {
  font-family: var(--f-sans);
  font-style: normal;
  font-size: 1rem;
  color: var(--c-muted);
}
.propa__price-sub {
  font-family: var(--f-sans);
  font-size: 0.75rem;
  color: var(--c-muted);
  letter-spacing: 0.04em;
}
.propa__price-note {
  font-family: var(--f-sans);
  font-size: 0.75rem;
  line-height: 1.8;
  color: var(--c-muted);
  letter-spacing: 0.04em;
  margin: 0;
  padding-left: 1.75rem;
}

.propa__deals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.propa__deal {
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--r-card);
  padding: 1.5rem 1.5rem 1.625rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.propa__deal-tag {
  font-family: var(--f-garamond);
  font-style: italic;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  color: var(--c-accent);
  text-transform: uppercase;
}
.propa__deal-title {
  font-family: var(--f-mincho);
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  color: var(--c-ink);
  margin: 0;
}
.propa__deal-text {
  font-family: var(--f-sans);
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--c-muted);
  margin: 0;
  letter-spacing: 0.02em;
}

.propa__cta {
  text-align: center;
}


/* ---- responsive ---- */
@media (max-width: 1023px) {
  .propa__price { grid-template-columns: 1fr 1fr; gap: 0; }
  .propa__price-block:nth-child(2) { border-right: 0; padding-right: 0; }
  .propa__price-note {
    grid-column: 1 / -1;
    padding-left: 0;
    padding-top: 1.25rem;
    margin-top: 1.25rem;
    border-top: 1px solid var(--c-line);
  }
  .propa__deals { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
  .propa__price { grid-template-columns: 1fr; }
  .propa__price-block { border-right: 0; padding-right: 0; padding-left: 0; padding-bottom: 1.25rem; border-bottom: 1px solid var(--c-line); }
  .propa__price-block:nth-child(2) { padding-left: 0; padding-top: 1.25rem; padding-bottom: 1.25rem; }
  .propa__deals { grid-template-columns: 1fr; }
}
