/* ======================================================
   TDR GO — 共通デザインシステム
   ====================================================== */

/* ── CSS 変数 ── */
:root {
  --content-width: 1200px;
  --sticky-header-height: 74px;
  --primary:       #4f86c8;
  --primary-light: #8fc6ef;
  --primary-pale:  #dff0fb;
  --primary-ultra: #f5fbff;
  /* ヘッダー再設計トークン */
  --b:             #3D7DC8;
  --p:             #F0609E;
  /* コンテンツ・デザインシステム トークン (FAQ Design 準拠) */
  --ink:           #1F2E40;
  --ink2:          #3C5168;
  --body-text:     #4A6076;
  --line2:         #EAF1F8;
  --tint:          #F1F6FB;
  --hb-h:          92px;   /* 追従ヘッダーの高さ(PC) */
  --land:          #ef4f9a;
  --land-soft:     #fff0f7;
  --sea:           #059ca6;
  --sea-soft:      #eefcfc;
  --text-main:     #1a2a3a;
  --text-sub:      #557996;
  --text-muted:    #8aaec6;
  --bg:            #f4fbff;
  --card-bg:       #ffffff;
  --border:        #d7eaf5;
  --green:         #2dbf7f;
  --yellow:        #e8a000;
  --red:           #e84040;
  --shadow:        0 2px 12px rgba(42,127,193,0.09);
  --shadow-md:     0 4px 20px rgba(42,127,193,0.14);
  --radius:        14px;
  --radius-sm:     8px;
  --page-gutter:   16px;
  --content-gap:   22px;
  --section-gap:   20px;
  --sidebar-gap:   18px;
  --card-pad:      20px;
  --card-pad-wide: 22px;
  --sidebar-width: 340px;
  /* 待ち時間カラー */
  --wc-green:  #dff7ea; --wc-yellow: #fff2bf;
  --wc-red:    #ffd7d7; --wc-red2:   #e85b5b; --wc-red3: #981b1b;
  --wc-purple: #9b5de5; --wc-grey:   #d6e3ed;
}
/* 共通 待ち時間凡例 */
.wait-legend { display:flex; flex-wrap:wrap; align-items:center; gap:6px 10px; font-size:11px; color:var(--text-sub); margin-bottom:10px; }
.wait-legend-label { font-weight:700; color:var(--text-sub); white-space:nowrap; }
.wait-legend-item { display:flex; align-items:center; gap:4px; white-space:nowrap; }
.wait-legend-dot { width:12px; height:12px; border-radius:3px; flex-shrink:0; border:1px solid rgba(0,0,0,.08); }

/* 混雑予想・待ち時間 共通のアトラクション集計ヘッダー */
.tw-wait-summary {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  margin-bottom: 10px;
}
.tw-wait-summary-title {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-main);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}
.tw-wait-summary-description {
  margin-top: 3px;
  color: var(--text-sub);
  font-size: 11px;
  line-height: 1.5;
}
.tw-wait-summary-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 6px;
  margin-top: 5px;
}
.tw-wait-summary-pill {
  padding: 3px 8px;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: #fff;
  color: var(--primary);
  font-size: 10.5px;
  font-weight: 800;
  white-space: nowrap;
}
.tw-wait-summary-pill--popular {
  border-color: #ffc0d9;
  background: #fff0f6;
  color: #bd3c73;
}
.tw-wait-summary-pill--general {
  border-color: #a8dfc0;
  background: #effbf4;
  color: #18744a;
}
.tw-wait-summary + .wait-area-block {
  margin-top: 0;
}
@media (min-width: 781px) {
  .tw-wait-summary-title { font-size: 18px; }
  .tw-wait-summary-description { font-size: 13px; }
  .tw-wait-summary-pill { font-size: 12.5px; }
}

/* ── リセット ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--bg);
  color: var(--text-main);
  min-height: 100vh;
  padding-top: var(--hb-h);   /* 追従(fixed)ヘッダー分の余白 */
}

/* ── HEADER (クリーンライン再設計) ── */
header.hb {
  font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
  background: #fff;
}
.hb-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 0 #E6EEF5;
  transition: box-shadow .2s;
}
/* メインの追従ユニットは画面上端に固定(PC/SP共通でスクロール追従) */
header.hb > .hb-sticky {
  position: fixed;
  left: 0;
  right: 0;
}
.hb-top {
  height: 4px;
  background: linear-gradient(90deg, var(--b), var(--p));
}
.hb-row1 {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 12px 28px;
}
.hb-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}
.hb-logo-img {
  display: block;
  height: 64px;
  width: auto;
  max-width: min(360px, calc(100vw - 96px));
  object-fit: contain;
}
/* PCナビ */
.hb-nav {
  display: flex;
  gap: 6px;
  margin-left: auto;
}
.hb-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 16px;
  font-size: 14.5px;
  font-weight: 700;
  color: #51637A;
  position: relative;
  text-decoration: none;
  transition: color .15s;
}
.hb-item svg { color: #93A8BC; transition: color .15s; flex: 0 0 auto; }
.hb-item::after {
  content: '';
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: -1px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--b), var(--p));
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .22s ease, opacity .18s ease;
}
.hb-item:hover, .hb-item:hover svg { color: var(--b); }
.hb-item.act, .hb-item.act svg { color: var(--b); }
.hb-item:hover::after,
.hb-item:focus-visible::after,
.hb-item.act::after {
  opacity: 1;
  transform: scaleX(1);
}

/* PCではSP専用要素を隠す */
.hb-spbtn,
.hb-sptabs,
.hb-menu { display: none; }

/* ── HEADER: SP (< 1024px) ── */
@media (max-width: 1023px) {
  :root { --hb-h: 78px; }   /* SPの追従バー高さ */
  .hb-nav { display: none; }
  .hb-sticky { box-shadow: none; }
  .hb-sticky.stuck { box-shadow: 0 6px 18px rgba(34,56,78,.12); }
  .hb-row1 { gap: 8px; padding: 11px 14px; }
  .hb-logo-img { height: 52px; max-width: calc(100vw - 80px); }

  /* ハンバーガー / 閉じるボタン */
  .hb-spbtn {
    display: grid;
    place-items: center;
    margin-left: auto;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid #E2EBF3;
    background: #fff;
    color: #4A6076;
    cursor: pointer;
    transition: background .15s, color .15s;
    flex: 0 0 auto;
  }
  .hb-spbtn:hover { background: #F4F8FC; }
  .hb-spbtn.act {
    background: linear-gradient(120deg, color-mix(in oklab, var(--b) 12%, #fff), color-mix(in oklab, var(--p) 12%, #fff));
    border-color: color-mix(in oklab, var(--p) 40%, #fff);
    color: var(--b);
  }

  /* 横スクロールタブ列 */
  .hb-sptabs {
    display: flex;
    gap: 2px;
    padding: 0 8px;
    background: #fff;
    overflow-x: auto;
    scrollbar-width: none;
    box-shadow: 0 1px 0 #E6EEF5;
    -webkit-mask-image: linear-gradient(90deg, #000 88%, transparent);
            mask-image: linear-gradient(90deg, #000 88%, transparent);
  }
  .hb-sptabs::-webkit-scrollbar { display: none; }
  .hb-tab {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 11px 12px 13px;
    font-size: 13px;
    font-weight: 700;
    color: #5A6E83;
    position: relative;
    text-decoration: none;
  }
  .hb-tab svg { color: #9AAEC2; flex: 0 0 auto; }
  .hb-tab::after {
    content: '';
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 0;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(90deg, var(--b), var(--p));
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .22s ease, opacity .18s ease;
  }
  .hb-tab.act, .hb-tab.act svg { color: var(--b); }
  .hb-tab:hover::after,
  .hb-tab:focus-visible::after,
  .hb-tab.act::after {
    opacity: 1;
    transform: scaleX(1);
  }

  /* 全画面ドロップメニュー */
  .hb-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s;
    overflow-y: auto;
  }
  .hb-menu.on { opacity: 1; pointer-events: auto; }
  .hb-menu .hb-sticky { box-shadow: none; }
  .hb-menu-body {
    flex: 1 1 auto;
    padding: 14px 16px 18px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #EAF2FB, #F2F7FC);
    border-top: 1px solid #E3EDF6;
  }
  .hb-menu-cap {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    color: #7E93A9;
    padding: 2px 6px 8px;
  }
  .hb-menu-cap.sub { margin-top: 18px; }
  .hb-mnav {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(34,56,78,.07);
    border: 1px solid #EAF1F8;
  }
  .hb-mrow {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    color: #2A3B4F;
    opacity: 0;
    transform: translateY(10px);
  }
  .hb-mnav .hb-mrow + .hb-mrow { border-top: 1px solid #EDF2F8; }
  .hb-menu.on .hb-mrow {
    opacity: 1;
    transform: none;
    transition: opacity .34s, transform .34s;
    transition-delay: calc(60ms + var(--i) * 45ms);
  }
  .hb-mico {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: #EFF5FB;
    color: var(--b);
    flex: 0 0 auto;
  }
  .hb-mlabel { flex: 1 1 auto; }
  .hb-mrow.act { color: var(--b); }
  .hb-mrow.act .hb-mico { background: linear-gradient(120deg, var(--b), var(--p)); color: #fff; }
  .hb-mnow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--b), var(--p));
  }
  .hb-mchev { color: #C2D2E2; display: grid; place-items: center; }
  .hb-mrow.act .hb-mchev { color: var(--b); }

  /* 攻略記事ピックアップ */
  .hb-picks { display: grid; gap: 10px; opacity: 0; transform: translateY(10px); }
  .hb-menu.on .hb-picks {
    opacity: 1;
    transform: none;
    transition: opacity .34s, transform .34s;
    transition-delay: calc(60ms + var(--i) * 45ms);
  }
  .hb-pick {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #EAF1F8;
    box-shadow: 0 4px 14px rgba(34,56,78,.05);
    text-decoration: none;
  }
  .hb-pick-thumb {
    width: 96px;
    height: 62px;
    flex: 0 0 auto;
    object-fit: cover;
    border-radius: 12px;
  }
  .hb-pick-thumb--empty { background: linear-gradient(120deg, #E2ECF6, #EFF5FB); }
  .hb-pick-text { min-width: 0; }
  .hb-pick-meta { font-size: 11px; font-weight: 700; color: var(--b); margin-bottom: 4px; }
  .hb-pick-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #2A3B4F;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .hb-mfoot {
    margin-top: auto;
    text-align: center;
    font-size: 10.5px;
    color: #9FB2C5;
    padding-top: 18px;
    opacity: 0;
  }
  .hb-menu.on .hb-mfoot {
    opacity: 1;
    transition: opacity .34s;
    transition-delay: calc(60ms + var(--i) * 45ms);
  }
  body.hb-menu-open { overflow: hidden; }
}

/* ── パーク切替 ── */
.park-switcher {
  width: 100%;
  max-width: var(--content-width);
  margin: 16px auto var(--content-gap);
  padding: 0 var(--page-gutter);
  display: flex;
  gap: 0;
  align-items: stretch;
}
.page-wrap > .park-switcher,
main > .park-switcher {
  width: 100%;            /* H1(ヒーロー)と同じ全幅に揃える */
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0;
}
.park-btn {
  flex: 1;
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid #dcecf5;
  border-right-width: 0;
  border-radius: 0;
  background: rgba(255,255,255,0.82);
  color: var(--text-sub);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 3px 14px rgba(79,134,200,0.08);
}
.park-btn:first-child {
  border-radius: 14px 0 0 14px;
}
.park-btn:last-child {
  border-right-width: 1px;
  border-radius: 0 14px 14px 0;
}
.park-btn-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-ultra);
  flex-shrink: 0;
}
.park-btn[data-park="land"] {
  color: var(--land);
}
.park-btn[data-park="sea"] {
  color: var(--sea);
}
.park-btn.active {
  position: relative;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 5px 18px rgba(79,134,200,0.18);
  z-index: 1;
}
.park-btn[data-park="land"].active {
  background: linear-gradient(135deg, #ff6fb0 0%, var(--land) 100%);
}
.park-btn[data-park="sea"].active {
  background: linear-gradient(135deg, #12bac2 0%, var(--sea) 100%);
}
.park-btn.active .park-btn-icon {
  background: rgba(255,255,255,0.22);
}
.park-btn:not(.active):hover {
  background: #fff;
  z-index: 1;
}
.park-btn[data-park="land"]:not(.active):hover {
  background: var(--land-soft);
  border-color: #ffd1e6;
}
.park-btn[data-park="sea"]:not(.active):hover {
  background: var(--sea-soft);
  border-color: #c4eeee;
}

@media (max-width: 640px) {
  .park-switcher {
    position: sticky;
    top: var(--hb-h);
    z-index: 80;
    width: 100%;
    max-width: 100%;
    margin: 12px auto 18px;
    padding: 0 12px;
    overflow: hidden;
    filter: drop-shadow(0 8px 16px rgba(79,134,200,.12));
  }
  .page-wrap > .park-switcher,
  main > .park-switcher {
    width: 100%;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
  }
  .park-btn {
    flex: 1 1 0;
    padding: 11px 8px;
    font-size: 11px;
    gap: 6px;
  }
  .park-btn-icon {
    width: 24px;
    height: 24px;
  }
  .park-btn-label {
    flex: 1;
    min-width: 0;
    text-align: center;
    overflow-wrap: anywhere;
    line-height: 1.25;
  }
}

@media (max-width: 420px) {
  .park-btn-icon {
    display: none;
  }
}

/* ── 注意バナー ── */
.tw-page-hero {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: var(--content-gap);
}
.tw-page-hero-top {
  padding: 24px var(--card-pad-wide);
  border-top: 4px solid var(--primary);
  background: linear-gradient(180deg, #fff, var(--primary-ultra));
}
.tw-page-hero-kicker {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.tw-page-hero-eyebrow {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.8px;
  margin: 0;
}
.tw-pr-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 3px 8px;
  border: 1px solid #E5EEF7;
  border-radius: 999px;
  background: #F8FBFE;
  color: #7A8DA2;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .04em;
  vertical-align: middle;
}
.tw-page-hero h1 {
  font-size: 26px;
  line-height: 1.35;
  letter-spacing: 0;
  margin: 0 0 10px;
  color: var(--text-main);
}
.tw-page-hero p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-sub);
  max-width: 800px;
  margin: 0;
}
.tw-page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px var(--card-pad-wide) 20px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.tw-page-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--primary-ultra);
  border: 1px solid var(--border);
  color: var(--primary);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  transition: 0.15s;
}
.tw-page-hero-chip:hover {
  background: var(--primary-pale);
}
.tw-section-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 900;
  color: var(--text-main);
}
.tw-section-heading::before {
  content: '';
  width: 4px;
  height: 20px;
  border-radius: 999px;
  background: var(--primary);
  flex-shrink: 0;
}
.section[id],
.section-card[id],
.ks-section[id],
.tw-section-heading[id],
.day-detail[id],
.tw-anchor-target[id] {
  scroll-margin-top: 150px;
}
.tw-anchor-target {
  display: block;
  height: 1px;
  margin-top: -1px;
}
@media (max-width: 640px) {
  .tw-page-hero-top {
    padding: 16px;
  }
  .tw-page-hero h1 {
    font-size: 22px;
  }
  .tw-page-hero-actions {
    padding: 12px 16px 16px;
  }
  .tw-section-heading {
    font-size: 18px;
    margin-bottom: 12px;
  }
}

/* ── 一般ページ本文見出し(h2/h3/h4)は content.css に集約 ── */

/* ── 共通レイアウト ── */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--sidebar-width);
  gap: var(--content-gap);
  align-items: start;
}
.left-col,
.right-col {
  min-width: 0;
}
.right-col {
  display: flex;
  flex-direction: column;
  gap: var(--sidebar-gap);
}
@media (min-width: 781px) {
  .right-col {
    position: static;
  }
}
@media (max-width: 780px) {
  .two-col {
    /* minmax(0,1fr) で、左カラム内の横長要素によるはみ出し（横スクロール）を防ぐ */
    grid-template-columns: minmax(0, 1fr);
  }
}

/* メインカラムのパーク状況(開園情報/イベント/休止) — 1カラム */
.main-park-status {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--section-gap);
  margin-top: var(--section-gap);
  align-items: start;
}

/* ── 共通サイドバー ── */
.section-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: var(--card-pad);
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}
.section-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}
.section-title {
  font-size: 19px;
  line-height: 1.45;
  font-weight: 900;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.section-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 16px;
  background: var(--primary);
  border-radius: 2px;
  flex-shrink: 0;
}
.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #eaf2fa;
  font-size: 12px;
}
.info-row:last-child {
  border-bottom: 0;
}
.info-label {
  color: var(--text-sub);
  line-height: 1.45;
}
.info-val {
  font-family: 'Nunito', 'Noto Sans JP', sans-serif;
  font-weight: 900;
  color: var(--text-main);
  text-align: right;
}
.info-val.green {
  color: var(--green);
}
.info-val.orange {
  color: var(--yellow);
}
.hours-note {
  display: inline-flex;
  align-items: center;
  margin-left: 5px;
  padding: 2px 6px;
  border-radius: 999px;
  background: #fff1dc;
  color: #b35c00;
  font-size: 10px;
  font-weight: 800;
}
.event-item,
.susp-item {
  display: flex;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #eaf2fa;
}
.event-item:last-child,
.susp-item:last-child {
  border-bottom: 0;
}
.event-thumb,
.susp-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.event-info,
.susp-info {
  min-width: 0;
}
.event-period-badge,
.susp-reason {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  margin-bottom: 6px;
}
.event-period-badge.ongoing {
  background: #e7f9ef;
  color: #158451;
}
.event-period-badge.upcoming {
  background: #eef6ff;
  color: var(--primary);
}
.event-name,
.susp-name {
  font-size: 13px;
  line-height: 1.45;
  font-weight: 900;
  color: var(--text-main);
}
.event-dates,
.event-desc,
.susp-area,
.susp-period {
  font-size: 11px;
  line-height: 1.55;
  color: var(--text-sub);
  margin-top: 3px;
}
.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 5px;
}
.event-tag {
  display: inline-flex;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--primary-ultra);
  color: var(--primary);
  font-size: 10px;
  font-weight: 800;
}
.susp-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 12px;
}
.susp-tab {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--text-sub);
  cursor: pointer;
  font: inherit;
  font-size: 10.5px;
  font-weight: 800;
  padding: 5px 8px;
}
.susp-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.susp-icon-wrap.planned {
  background: #eef6ff;
}
.susp-icon-wrap.emergency {
  background: #fff1e8;
}
.susp-icon-wrap.seasonal {
  background: #eefcfc;
}
.susp-reason.planned {
  background: #eef6ff;
  color: var(--primary);
}
.susp-reason.emergency {
  background: #fff1e8;
  color: #c06020;
}
.susp-reason.seasonal {
  background: #eefcfc;
  color: var(--sea);
}

/* ── サイドバー共通CTA ── */
.tw-main-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  flex: 0 0 auto;
  gap: 10px;
  padding: 16px;
  border: 1px solid #d4e8f6;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(247,252,255,.96)),
    linear-gradient(90deg, #eef8ff, #fff5fa);
  box-shadow: var(--shadow);
}
.tw-main-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-top: 3px solid #8cc5ef;
  pointer-events: none;
}
.tw-main-cta-badge {
  position: relative;
  z-index: 1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 14px;
  background: #edf7ff;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
}
.tw-main-cta-visual {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 38px;
  line-height: 1;
  opacity: .14;
  pointer-events: none;
}
.tw-main-cta h2 {
  position: relative;
  z-index: 1;
  margin: 4px 52px 0 0;
  color: var(--text-main);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 900;
}
.tw-main-cta p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text-sub);
  font-size: 12px;
  line-height: 1.7;
  font-weight: 700;
}
.tw-main-cta-link {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 14px 10px;
  border: 1px solid;
  border-radius: 14px;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.tw-main-cta-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(42,123,194,.12);
}
.tw-main-cta-link--forecast {
  background: #f7fcff;
  border-color: #cde5f7;
  color: var(--primary);
}
.tw-main-cta-link--realtime {
  background: #fff7fb;
  border-color: #f6cadd;
  color: var(--land);
}
.tw-hotel-cta {
  border-color: #dbeada;
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(248,255,247,.96)),
    linear-gradient(90deg, #f0fff0, #fff4ea);
}
.tw-hotel-cta::before {
  border-top-color: #84d68b;
}
.tw-hotel-cta .tw-main-cta-badge,
.tw-hotel-cta .tw-main-cta-foot {
  background: #effbf0;
  color: #138a2e;
}
.tw-hotel-cta-link--rakuten {
  background: #f4fff4;
  border-color: #a8e8a8;
  color: #00a000;
}
.tw-hotel-cta-link--jalan {
  background: #fff7ef;
  border-color: #ffc69c;
  color: #e45d00;
}
.tw-hotel-cta-link--rakuten .tw-main-cta-icon {
  color: #00a000;
}
.tw-hotel-cta-link--jalan .tw-main-cta-icon {
  color: #e45d00;
}
.tw-main-cta--inline {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}
.tw-main-cta--inline .tw-main-cta-badge,
.tw-main-cta--inline h2,
.tw-main-cta--inline p {
  grid-column: 1 / -1;
}
.tw-main-cta-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(42,123,194,.12);
  font-size: 20px;
}
.tw-main-cta-text {
  min-width: 0;
}
.tw-main-cta-text strong,
.tw-main-cta-text small {
  display: block;
}
.tw-main-cta-text strong {
  font-size: 14px;
  line-height: 1.35;
  font-weight: 900;
  overflow-wrap: anywhere;
}
.tw-main-cta-text small {
  margin-top: 2px;
  color: var(--text-sub);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 700;
}
.tw-main-cta-arrow {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,.76);
  font-size: 24px;
  line-height: 1;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
}
.tw-main-cta-foot {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-top: 2px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #f1f8fd;
  color: var(--primary);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 900;
}
.tw-main-cta-foot span + span {
  padding-left: 10px;
  border-left: 1px solid #c7dfef;
}
@media (max-width: 420px) {
  .tw-main-cta {
    padding: 14px;
  }
  .tw-main-cta--inline {
    grid-template-columns: 1fr;
  }
  .tw-main-cta h2 {
    font-size: 18px;
  }
  .tw-main-cta-link {
    grid-template-columns: 34px minmax(0, 1fr) 20px;
    gap: 8px;
    padding-top: 13px;
    padding-bottom: 13px;
  }
  .tw-main-cta-icon {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }
}

.tools-title {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.stay-cta {
  display: grid;
  gap: 8px;
  background: linear-gradient(180deg, #fff, var(--primary-ultra));
}
.stay-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--primary);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
}
.stay-cta a[href*="rakuten"] {
  background: #f0fff0;
  border-color: #a8e8a8;
  color: #00b900;
}
.stay-cta a[href*="jalan"] {
  background: #fff4ea;
  border-color: #ffc69c;
  color: #ff6600;
}
.stay-cta a[href*="rakuten"]:hover {
  background: #00b900;
  border-color: #00b900;
  color: #fff;
}
.stay-cta a[href*="jalan"]:hover {
  background: #ff6600;
  border-color: #ff6600;
  color: #fff;
}

.notice-banner {
  background: linear-gradient(90deg, #fff8e0, #fff3cc);
  border: 1px solid #ffd070;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 16px;
  font-size: 11.5px;
  color: #8a6000;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.notice {
  background: #fff8e6;
  border: 1px solid #f0d080;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 12px;
  color: #6a4f10;
  margin-bottom: 14px;
}

/* ── FOOTER BANNERS ── */
.footer-banners {
  border-top: 1px solid var(--border);
  background: var(--bg-sub, #f4f8fb);
  padding: 32px 16px;
}
.footer-banners-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: var(--content-width);
  margin: 0 auto;
}
.footer-banner-item {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.10);
  transition: transform .18s, box-shadow .18s;
}
.footer-banner-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,.16);
}
.footer-banner-item img {
  display: block;
  width: 100%;
  height: auto;          /* 画像本来の縦横比(2:1)を保持・トリミングなし */
}
@media (max-width: 900px) {
  .footer-banners-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .footer-banners-inner {
    grid-template-columns: 1fr;
  }
}

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 24px 16px;
  font-size: 11px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  max-width: var(--content-width);
  margin: 0 auto;
  line-height: 1.8;
}
footer a {
  color: var(--primary-light);
  text-decoration: none;
}
.footer-policy-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin-bottom: 8px;
}
.footer-policy-links a {
  color: var(--text-main);
  font-weight: 700;
}
.footer-policy-links a:hover {
  color: var(--primary);
}
.footer-copyright {
  color: var(--text-muted);
}

.tw-back-to-top {
  position: fixed;
  right: max(18px, calc((100vw - var(--content-width)) / 2 - 58px));
  bottom: 22px;
  z-index: 90;
  width: 52px;
  height: 52px;
  padding: 7px 6px 5px;
  border: 1px solid #b9d9ef;
  border-radius: 50%;
  background: rgba(255,255,255,.96);
  color: var(--primary);
  box-shadow: 0 5px 18px rgba(31,91,138,.2);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .18s, transform .18s, visibility .18s, background .18s;
}
.tw-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.tw-back-to-top:hover {
  background: var(--primary);
  color: #fff;
}
.tw-back-to-top:focus-visible {
  outline: 3px solid color-mix(in srgb,var(--primary) 30%,transparent);
  outline-offset: 3px;
}
.tw-back-to-top span {
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(45deg) translate(2px,2px);
}
.tw-back-to-top b {
  font-family: 'Nunito', sans-serif;
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0;
}
@media (max-width: 780px) {
  .tw-back-to-top {
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
  }
}

/* ── PC 可読性調整 ── */
@media (min-width: 781px) {
  .two-col {
    width: calc(100% + (var(--page-gutter) * 2));
    margin-right: calc(var(--page-gutter) * -1);
    margin-left: calc(var(--page-gutter) * -1);
    padding-right: var(--page-gutter);
    padding-left: var(--page-gutter);
  }
  body {
    font-size: 18px;
  }
  .park-btn {
    font-size: 15px;
  }
  .tw-page-hero-eyebrow {
    font-size: 13px;
  }
  .tw-page-hero h1 {
    font-size: 32px;
  }
  .tw-page-hero p {
    font-size: 16px;
  }
  .tw-page-hero-chip,
  .stay-cta a,
  .notice,
  .notice-banner {
    font-size: 14px;
  }
  .tw-section-heading,
  .section-title {
    font-size: 22px;
  }
  body .section p,
  body .section li,
  body .ks-section p,
  body .ks-section li,
  body .tw-entry-content {
    font-size: 16px;
  }
  body .lead,
  body .toc-list a,
  body .quicklinks a,
  body .mini-item,
  body .callout,
  body .warn,
  body .checklist-item,
  body .info-row {
    font-size: 14px;
  }
  .event-name,
  .susp-name,
  .tw-main-cta-text strong {
    font-size: 15px;
  }
  .event-dates,
  .event-desc,
  .susp-area,
  .susp-period,
  .tw-main-cta p,
  .tw-main-cta-text small,
  .tools-title {
    font-size: 13px;
  }
  footer {
    font-size: 13px;
  }
}

/* ── 共通アニメーション ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── ページコンテンツ（デフォルト page.php 用） ── */
.tw-page-content { max-width: var(--content-width); margin: 0 auto; padding: 24px var(--page-gutter) 48px; }
.tw-page-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: var(--card-pad-wide);
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.tw-page-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}
.tw-page-inner h1 {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .01em;
  margin: 0 0 24px;
  color: var(--text-main);
}
.tw-page-inner > .tw-pr-badge {
  margin: 0 0 10px;
}
.tw-entry-content {
  font-size: 14px;
  line-height: 1.8;
  color: var(--body-text);
}

.tdr-park-map-card {
  padding: 10px;
}
.tdr-park-map-card[hidden] {
  display: none !important;
}
.tdr-park-map-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-sm) + 2px);
}
@media (max-width: 680px) {
  .tdr-park-map-card {
    padding: 7px;
  }
  .tdr-park-map-card img {
    border-radius: var(--radius-sm);
  }
}

.tw-entry-content > *:first-child { margin-top: 0; }
.tw-entry-content > *:last-child { margin-bottom: 0; }
.tw-entry-content p,
.tw-entry-content .wp-block-paragraph {
  margin: 0 0 16px;
  color: var(--body-text);
  line-height: 1.85;
}
.tw-entry-content a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
.tw-entry-content a:hover { text-decoration: underline; }
.tw-entry-content hr {
  margin: 24px 0;
  border: 0;
  border-top: 1px solid var(--border);
}
@media (max-width: 560px) {
  .tw-page-content {
    padding-top: 18px;
    padding-bottom: 36px;
  }
  .tw-page-inner {
    padding: 18px 16px 20px;
  }
  .tw-page-inner h1 {
    font-size: 27px;
    margin-bottom: 20px;
  }
}

/* ───────── グローバルナビ サブメニュー（追加） ───────── */
/* PC: ホバー/フォーカスでドロップダウン */
.hb-navcell { position: relative; display: flex; }
.hb-caret { display: grid; place-items: center; color: #B6C8DA; margin-left: 1px; transform: rotate(90deg); transition: transform .25s, color .15s; }
.hb-navcell:hover .hb-item, .hb-navcell:focus-within .hb-item,
.hb-navcell:hover .hb-item svg, .hb-navcell:focus-within .hb-item svg { color: var(--b); }
.hb-navcell:hover .hb-caret, .hb-navcell:focus-within .hb-caret { transform: rotate(-90deg); color: var(--b); }
/* top:100% + padding-top でアイテムとカードの隙間をブリッジ（ホバーが途切れないように） */
.hb-drop { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(6px);
  z-index: 40; min-width: 286px; padding-top: 12px; opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s; }
.hb-navcell:hover .hb-drop, .hb-navcell:focus-within .hb-drop { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.hb-drop::before { content: ''; position: absolute; top: 6px; left: 50%; width: 14px; height: 14px;
  transform: translateX(-50%) rotate(45deg); background: #fff; border-left: 1px solid #E2EBF3; border-top: 1px solid #E2EBF3; border-radius: 3px 0 0 0; }
.hb-drop-card { position: relative; background: #fff; border: 1px solid #E2EBF3; border-radius: 16px;
  box-shadow: 0 20px 48px rgba(34,56,78,.16), 0 4px 10px rgba(34,56,78,.06); padding: 10px; }
.hb-drop-cap { font-size: 10.5px; font-weight: 800; letter-spacing: .12em; color: #8AA0B6; padding: 6px 10px 8px; }
.hb-drop-item { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 12px; text-decoration: none; transition: background .15s; }
.hb-drop-item:hover { background: #F1F6FB; }
.hb-drop-ico { flex: 0 0 auto; width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center; background: #EFF5FB; color: var(--b); transition: background .15s, color .15s; }
.hb-drop-item:hover .hb-drop-ico { background: linear-gradient(120deg, var(--b), var(--p)); color: #fff; }
.hb-drop-text { display: flex; flex-direction: column; flex: 1 1 auto; min-width: 0; }
.hb-drop-name { font-size: 14px; font-weight: 800; color: #1F2E40; line-height: 1.3; }
.hb-drop-desc { font-size: 12px; font-weight: 600; color: #8AA0B6; margin-top: 2px; }
.hb-drop-go { color: #C2D2E2; display: grid; place-items: center; transition: transform .15s, color .15s; }
.hb-drop-item:hover .hb-drop-go { color: var(--b); transform: translateX(2px); }

/* SP: ドロワー内アコーディオン */
.hb-mgroup > .hb-mrow { cursor: pointer; }
.hb-mchev.rot { transition: transform .28s, color .15s; }
.hb-mgroup.open > .hb-mrow .hb-mchev.rot { transform: rotate(90deg); color: var(--b); }
.hb-msub { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.hb-mgroup.open > .hb-msub { grid-template-rows: 1fr; }
.hb-msub-inner { overflow: hidden; }
.hb-msub-item { display: flex; align-items: center; gap: 12px; padding: 11px 14px 11px 22px; background: #F6F9FD; text-decoration: none; }
.hb-msub-item + .hb-msub-item { border-top: 1px solid #EAF1F8; }
.hb-msub-dot { flex: 0 0 auto; width: 8px; height: 8px; border-radius: 2px; transform: rotate(45deg); background: linear-gradient(135deg, var(--b), var(--p)); margin: 0 8px 0 6px; }
.hb-msub-text { display: flex; flex-direction: column; flex: 1 1 auto; min-width: 0; }
.hb-msub-name { font-size: 14px; font-weight: 800; color: #2A3B4F; line-height: 1.35; }
.hb-msub-desc { font-size: 12px; font-weight: 600; color: #8AA0B6; margin-top: 1px; }

/* SPドロワー: サブメニューは開閉せず常時展開（is-static） */
.hb-mgroup.is-static > .hb-msub { grid-template-rows: 1fr; }
.hb-mgroup.is-static > .hb-mrow .hb-mchev { display: none; }
/* サブ項目も他の行と同じ入場アニメ（--i で順次フェードイン） */
.hb-msub-item { opacity: 0; transform: translateY(10px); }
.hb-menu.on .hb-msub-item { opacity: 1; transform: none; transition: opacity .34s, transform .34s; transition-delay: calc(60ms + var(--i) * 45ms); }

/* ───── 「ホテルをココでチェック！」内のグレード別おすすめホテル（全ページ共通コンポーネント） ─────
   tw_render_hotel_check_box() / tw_render_featured_hotels_by_grade() の表示用。
   forecast / realtime / stats / mochimono / stay など stay.css 非読込ページでも使えるよう base.css に集約。 */
.tw-featured-hotels .hotel-group--disney   { --hotel-accent: #6d37b3; --hotel-accent-soft: #f0ebf7; }
.tw-featured-hotels .hotel-group--official { --hotel-accent: #dd0350; --hotel-accent-soft: #fce6ee; }
.tw-featured-hotels .hotel-group--partner  { --hotel-accent: #2073b6; --hotel-accent-soft: #e9f1f8; }
.tw-featured-hotels .hotel-group--neighbor { --hotel-accent: #16895f; --hotel-accent-soft: #e8f8f0; }

.tw-featured-hotels {
  position: relative;
  z-index: 1;
  /* tw-main-cta--inline は2カラムグリッドのため、全幅に伸ばす */
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tw-featured-hotels .hotel-feature-card {
  display: grid;
  grid-template-columns: minmax(130px, 38%) 1fr;
  gap: 13px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm, 12px);
  background: #fff;
  /* 4枚の高さをそろえる（ホテル名・特徴文の行数差を吸収） */
  min-height: 172px;
}
.tw-featured-hotels .hotel-feature-photo {
  position: relative;
  min-height: 130px;
  overflow: hidden;
  border-radius: var(--radius-sm, 12px);
  background: #eaf2fa;
}
.tw-featured-hotels .hotel-feature-photo img { width: 100%; height: 100%; min-height: 130px; display: block; object-fit: cover; }
/* 引用クレジット（写真の右下） */
.tw-featured-hotels .hotel-feature-credit {
  position: absolute; right: 6px; bottom: 6px;
  padding: 2px 6px; border-radius: 50px;
  background: rgba(255, 255, 255, .88); color: var(--text-muted);
  font-size: 9px; font-weight: 700;
}
.tw-featured-hotels .hotel-feature-body { min-width: 0; display: flex; flex-direction: column; justify-content: center; }
/* 名前・特徴文は2行ぶんの高さで固定し、行数差で高さがばらつかないようにする */
.tw-featured-hotels .hotel-feature-body h3 {
  margin: 0 0 7px; color: var(--text-main); font-size: 15px; line-height: 1.35; font-weight: 900;
  min-height: 2.7em;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden;
}
.tw-featured-hotels .hotel-feature-body p {
  margin: 0 0 12px; color: var(--text-sub); font-size: 12px; line-height: 1.65; font-weight: 700;
  min-height: 3.3em;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden;
}

/* グレードを示すタグ（写真の左上にオーバーレイ表示）
   forecast.css の .hotel-feature-photo span { right:6px; bottom:6px } が
   このタグ(span)に合成されて写真全体へ引き伸ばされるのを防ぐため、right/bottom/サイズを明示的に解除する。 */
.tw-featured-hotels .tw-featured-grade-chip {
  position: absolute; top: 8px; left: 8px; right: auto; bottom: auto;
  width: auto; height: auto;
  z-index: 1;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 11px; font-weight: 800;
  color: #fff;
  background: var(--hotel-accent, var(--primary));
  box-shadow: 0 2px 6px rgba(0, 0, 0, .28);
}

.tw-featured-hotels .hotel-feature-buttons { margin-top: auto; display: flex; flex-wrap: wrap; gap: 8px; }
.tw-featured-hotels .hotel-booking-btn {
  flex: 1 1 150px;
  display: flex; align-items: center; justify-content: center;
  min-height: 36px; padding: 9px 12px;
  border-radius: 999px; text-decoration: none;
  font-size: 12px; font-weight: 900; transition: .15s;
}
.tw-featured-hotels .hotel-booking-btn--rakuten { background: #f0fff0; border: 1px solid #a8e8a8; color: #00b900; }
.tw-featured-hotels .hotel-booking-btn--rakuten:hover { background: #00b900; border-color: #00b900; color: #fff; }
.tw-featured-hotels .hotel-booking-btn--jalan { background: #fff4ea; border: 1px solid #ffc69c; color: #ff6600; }
.tw-featured-hotels .hotel-booking-btn--jalan:hover { background: #ff6600; border-color: #ff6600; color: #fff; }

/* 狭い画面では写真を上・本文を下に積む（forecast 同様）。ベース定義より後に置いて確実に上書き */
@media (max-width: 560px) {
  .tw-featured-hotels .hotel-feature-card { grid-template-columns: 1fr; }
  .tw-featured-hotels .hotel-feature-photo,
  .tw-featured-hotels .hotel-feature-photo img { min-height: 170px; }
}

/* ホテルカードの目安料金ボックス（全ページ共通: stay 系の hotel-price-box をここへ集約） */
.hotel-price-box {
  margin: 0 0 12px;
  padding: 9px 10px;
  border-radius: 14px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--b) 8%, #fff), color-mix(in srgb, var(--p) 6%, #fff));
  border: 1px solid color-mix(in srgb, var(--b) 15%, #fff);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
}
.hotel-price-title {
  margin: 0;
  font-size: 11.5px;
  font-weight: 900;
  color: var(--text-sub);
  letter-spacing: .02em;
  line-height: 1.25;
}
.hotel-price-title span,
.hotel-price-title small {
  display: block;
  white-space: nowrap;
}
.hotel-price-title small {
  margin-top: 2px;
  font-size: 9.5px;
  line-height: 1.2;
  color: var(--text-muted);
  letter-spacing: 0;
}
.hotel-price-value {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  min-height: 30px;
  padding: 6px 9px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(255, 255, 255, .9);
}
.hotel-price-value strong {
  min-width: 0;
  font-size: 15px;
  font-weight: 900;
  color: var(--b);
  line-height: 1.35;
  text-align: right;
}
.hotel-price-value.is-fallback strong { font-size: 12px; color: var(--text-sub); }

/* 「ホテルをココでチェック！」ボックスの下余白（stay.css 非読込ページでも他コンテンツと同じ余白にする） */
.tw-main-cta.stay-inline-hotel-cta { margin-bottom: var(--section-gap); }

/* ボックス末尾の「泊まるページへ」リンク（説明文＋ボタン） */
.tw-featured-foot {
  grid-column: 1 / -1;
  margin-top: 2px;
  padding-top: 12px;
  border-top: 1px dashed color-mix(in srgb, var(--b) 22%, var(--border));
  text-align: center;
}
.tw-featured-foot p {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-sub);
}
.tw-featured-stay-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--b), var(--p));
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 16px color-mix(in srgb, var(--b) 28%, transparent);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.tw-featured-stay-link::after { content: '→'; font-weight: 900; }
.tw-featured-stay-link:hover { transform: translateY(-1px); filter: brightness(1.04); box-shadow: 0 9px 20px color-mix(in srgb, var(--b) 34%, transparent); }

/* ─────────────────────────────────────────
   お問い合わせフォーム
───────────────────────────────────────── */
.contact-flow {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.contact-flow li {
  flex: 1;
  text-align: center;
  padding: 10px 6px;
  border-radius: var(--radius-sm);
  background: var(--primary-ultra);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 13px;
}
.contact-flow li.is-current {
  background: var(--primary);
  color: #fff;
}
.contact-form { max-width: 640px; }
.contact-form-row {
  margin: 0 0 20px;
}
.contact-form-label {
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-form-label .require {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 8px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  vertical-align: middle;
}
.contact-form-field input[type="text"],
.contact-form-field input[type="email"],
.contact-form-field textarea {
  width: 100%;
  max-width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  color: var(--text-main);
  background: var(--card-bg);
}
.contact-form-field textarea { resize: vertical; }
.contact-form-privacy {
  margin: 24px 0;
  padding: 14px 16px;
  background: var(--primary-ultra);
  border-radius: var(--radius-sm);
}
.contact-form-privacy p { margin: 0 0 8px; font-size: 13px; }
.contact-form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.contact-form-actions input[type="submit"],
.contact-form-actions input[type="button"] {
  padding: 12px 28px;
  border: none;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}
.contact-form-actions input.gray {
  background: var(--primary-ultra);
  color: var(--text-main);
}
.contact-form-actions input:hover { filter: brightness(1.06); }
.mwform-error-message,
.error {
  color: var(--red);
  font-size: 12.5px;
  margin: 4px 0 0;
  display: block;
}

/* ハニーポット(ボット対策)。人間には見えないが、フォーム構造には残す */
.tw-contact-guard {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
