/* ==========================================================================
   hokkaido-tw.com — Travel Site UI
   写真主導、ヴィヴィッド、実用的なトラベル予約サイト風
   ========================================================================== */

:root {
  --c-ink:      #1f2937;
  --c-ink-mid: #4b5563;
  --c-ink-sub: #6b7280;
  --c-line:    #e5e7eb;
  --c-bg:      #fafbfc;
  --c-card:    #ffffff;
  --c-red:     #e63946;     /* メインアクセント */
  --c-red-dk:  #c0263a;
  --c-orange:  #f97316;     /* セカンダリ */
  --c-blue:    #0066cc;     /* リンク・予約系 */
  --c-blue-dk: #004999;
  --c-navy:    #0c1839;     /* 濃紺フッター */
  --c-gold:    #fbbf24;     /* バッジ・星 */

  --shadow-sm: 0 1px 2px rgba(0,0,0,.04), 0 2px 6px rgba(0,0,0,.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08), 0 8px 24px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.12);

  --font-sans: "Noto Sans TC", "PingFang TC", "Hiragino Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-blue); text-decoration: none; transition: color .15s; }
a:hover { color: var(--c-red); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  background: #fff;
  box-shadow: var(--shadow-sm);
  position: sticky; top: 0; z-index: 100;
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px; gap: 20px; flex-wrap: wrap;
}
.site-logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--c-ink); text-decoration: none;
}
.site-logo__mark {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-red); color: #fff;
  font-weight: 800; font-size: 1.4rem;
  border-radius: 8px;
}
.site-logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.site-logo__main {
  font-weight: 700; font-size: 1.05rem; color: var(--c-ink);
}
.site-logo__sub {
  font-size: 0.68rem; color: var(--c-ink-sub);
  letter-spacing: 0.08em;
}
.site-nav { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.site-nav a {
  color: var(--c-ink-mid); font-size: 0.92rem;
  font-weight: 500; padding: 8px 14px;
  border-radius: 6px; transition: all .15s;
}
.site-nav a:hover { color: var(--c-red); background: #fff5f5; }
.site-nav__cta {
  background: var(--c-red); color: #fff !important;
  padding: 8px 18px !important;
}
.site-nav__cta:hover { background: var(--c-red-dk) !important; color: #fff !important; }

/* ==========================================================================
   Breadcrumb
   ========================================================================== */
.breadcrumb {
  background: #fff;
  padding: 12px 0; font-size: 0.82rem;
  border-bottom: 1px solid var(--c-line);
}
.breadcrumb ol { list-style: none; display: flex; gap: 6px; flex-wrap: wrap; }
.breadcrumb li { color: var(--c-ink-sub); }
.breadcrumb li:not(:last-child)::after {
  content: "›"; margin-left: 6px; color: var(--c-ink-sub);
}

/* ==========================================================================
   Main
   ========================================================================== */
.site-main { padding: 0 0 64px; }
section { margin: 56px 0; }
section:first-child { margin-top: 0; }

h1 {
  font-size: 2rem; font-weight: 700; color: var(--c-ink);
  line-height: 1.25; margin-bottom: 16px;
}
h2 {
  font-size: 1.55rem; font-weight: 700; color: var(--c-ink);
  margin-bottom: 8px; line-height: 1.3;
  display: flex; align-items: center; gap: 12px;
}
h2::before {
  content: ""; display: block;
  width: 5px; height: 24px; border-radius: 3px;
  background: var(--c-red);
}
h3 { font-size: 1.1rem; font-weight: 700; color: var(--c-ink); }

p { margin-bottom: 12px; }
.section-lead {
  color: var(--c-ink-mid); font-size: 0.94rem;
  margin: 0 0 24px; max-width: 720px;
}

/* ==========================================================================
   Hero — 写真背景 + 検索風オーバーレイ
   ========================================================================== */
.hero {
  position: relative;
  min-height: 480px;
  display: flex; align-items: center;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(12,24,57,.7) 0%, rgba(230,57,70,.5) 100%),
    /* デフォルト背景 - 写真は JS なしで body class で差し替え */
    radial-gradient(at 20% 30%, #1a4d8f 0%, transparent 50%),
    radial-gradient(at 80% 70%, #c0263a 0%, transparent 50%),
    linear-gradient(180deg, #0c1839 0%, #1a3158 100%);
  background-size: cover;
  background-position: center;
}
.hero__inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: 1200px; margin: 0 auto;
  padding: 56px 24px;
  text-align: center;
}
.hero__kicker {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  padding: 6px 16px; border-radius: 999px;
  font-size: 0.78rem; letter-spacing: 0.2em;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.25);
}
.hero__title {
  font-size: 3.4rem; font-weight: 900;
  line-height: 1.1; color: #fff;
  margin-bottom: 8px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
  letter-spacing: 0.02em;
}
.hero__title__year { display: none; }
.hero__lead {
  font-size: 1.05rem;
  max-width: 580px; margin: 24px auto 36px;
  color: rgba(255,255,255,.95);
  line-height: 1.8;
  text-shadow: 0 1px 8px rgba(0,0,0,.3);
}
.hero__stats {
  display: flex; justify-content: center; gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px 8px;
  max-width: 720px; margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.15);
}
.hero__stats > div {
  flex: 1; min-width: 100px;
  display: flex; flex-direction: column; align-items: center;
  padding: 8px 16px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.hero__stats > div:last-child { border-right: none; }
.hero__stats strong {
  font-size: 2rem; font-weight: 800; line-height: 1;
  color: #fff;
}
.hero__stats span {
  font-size: 0.75rem; opacity: 0.85; margin-top: 6px;
  letter-spacing: 0.05em; text-transform: uppercase;
  font-weight: 500;
}
.hero__cta { margin-top: 32px; }
.btn-primary {
  display: inline-block;
  background: var(--c-red); color: #fff !important;
  padding: 14px 36px;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none; border-radius: 8px;
  border: none; cursor: pointer;
  box-shadow: 0 4px 12px rgba(230,57,70,.4);
  transition: all .15s;
}
.btn-primary:hover {
  background: var(--c-red-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(230,57,70,.5);
  color: #fff !important;
}

/* ==========================================================================
   Area cards (Top) - 写真背景 + ラベルオーバーレイ
   ========================================================================== */
.area-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 8px;
}
.area-mini-card {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-red) 100%);
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.area-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  color: #fff;
}
.area-mini-card__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .4s;
}
.area-mini-card:hover .area-mini-card__bg { transform: scale(1.08); }
.area-mini-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.75) 100%);
}
.area-mini-card__content {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 20px;
  color: #fff;
}
.area-mini-card h3 {
  font-size: 1.5rem; font-weight: 800; color: #fff;
  margin-bottom: 6px; line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.area-mini-card__desc {
  display: none; /* 写真がメインなので説明文は非表示 */
}
.area-mini-card__stats {
  display: flex; gap: 12px; font-size: 0.78rem;
  color: rgba(255,255,255,.9); margin: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}

/* ==========================================================================
   Event Card - 写真付き旅行カード
   ========================================================================== */
.event-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.event-card {
  background: var(--c-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .15s, box-shadow .15s;
  display: flex; flex-direction: column;
}
.event-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.event-card__image {
  aspect-ratio: 16/10; overflow: hidden;
  background: #f3f4f6;
  position: relative;
}
.event-card__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.event-card:hover .event-card__image img { transform: scale(1.05); }
.event-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--c-red); color: #fff;
  padding: 4px 10px; border-radius: 4px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 6px rgba(230,57,70,.4);
}
.event-card__body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; }
.event-card__title {
  font-size: 1.05rem; font-weight: 700;
  color: var(--c-ink); line-height: 1.4;
  margin-bottom: 10px;
}
.event-card__meta {
  display: flex; gap: 12px; flex-wrap: wrap;
  font-size: 0.82rem; color: var(--c-ink-sub);
  margin-bottom: 10px;
}
.event-card__date {
  font-weight: 700; color: var(--c-red);
}
.event-card__area::before { content: "📍 "; }
.event-card__lead {
  font-size: 0.85rem; color: var(--c-ink-mid);
  margin: 0; line-height: 1.6;
}

/* ==========================================================================
   Facility Card - 写真付き観光スポット
   ========================================================================== */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.facility-card {
  background: var(--c-card);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform .15s, box-shadow .15s;
  display: flex; flex-direction: column;
}
.facility-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: inherit;
}
.facility-card__photo {
  aspect-ratio: 4/3; overflow: hidden;
  background: linear-gradient(135deg, #e0f2fe 0%, #fef3c7 100%);
  position: relative;
}
.facility-card__photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.facility-card:hover .facility-card__photo img { transform: scale(1.05); }
.facility-card__photo--empty {
  display: flex; align-items: center; justify-content: center;
  color: var(--c-ink-sub);
  font-size: 2.5rem; opacity: 0.4;
}
.facility-card__icon { display: none; }
.facility-card__body { padding: 14px 16px; flex: 1; }
.facility-card__area {
  display: inline-block;
  background: var(--c-blue); color: #fff;
  padding: 2px 8px; border-radius: 4px;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 6px; margin-right: 6px;
}
.facility-card__badge {
  display: inline-block;
  background: #fff; color: var(--c-ink-mid);
  padding: 2px 8px; border-radius: 4px;
  font-size: 0.7rem; font-weight: 500;
  border: 1px solid var(--c-line);
  margin-bottom: 6px;
}
.facility-card__name {
  font-size: 1rem; font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 6px; line-height: 1.4;
}
.facility-card__summary {
  font-size: 0.82rem; color: var(--c-ink-mid);
  margin: 0; line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==========================================================================
   Property Card
   ========================================================================== */
.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.property-card {
  background: var(--c-card);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none; color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform .15s, box-shadow .15s;
}
.property-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: inherit;
}
.property-card img { aspect-ratio: 4/3; object-fit: cover; }
.property-card h3 {
  font-size: 1rem; margin: 12px 14px 6px; color: var(--c-ink);
}
.property-card p {
  margin: 0 14px 6px;
  font-size: 0.9rem;
  color: var(--c-red);
  font-weight: 700;
}
.property-card p:last-child { margin-bottom: 14px; }
.property-card__rating {
  color: var(--c-ink) !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
}
.property-card__count {
  color: var(--c-ink-sub);
  font-size: 0.75rem;
  font-weight: 400;
}
.property-card__jpy {
  color: var(--c-ink-sub);
  font-size: 0.72rem;
  font-weight: 400;
  display: block;
  margin-top: 2px;
}
.property-affiliate-notice {
  margin-top: 18px;
  padding: 10px 14px;
  background: #fef9e7;
  border-left: 3px solid var(--c-gold);
  font-size: 0.78rem;
  color: var(--c-ink-mid);
  border-radius: 6px;
}

/* ==========================================================================
   Property detail
   ========================================================================== */
.property h1 { font-size: 1.8rem; margin-bottom: 6px; }
.property-location {
  color: var(--c-ink-sub); font-size: 0.92rem;
  margin-bottom: 20px;
}
.property-location::before { content: "📍 "; }
.property-gallery {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 6px; margin: 20px 0; border-radius: 12px; overflow: hidden;
}
.property-gallery img { aspect-ratio: 4/3; object-fit: cover; }
.property-gallery img:first-child { grid-row: span 2; aspect-ratio: auto; height: 100%; }
.property-key-info {
  display: flex; gap: 32px; flex-wrap: wrap;
  background: #fff5f5;
  padding: 18px 22px;
  margin: 20px 0;
  border-radius: 10px;
  border-left: 4px solid var(--c-red);
}
.property-key-info > div { display: flex; flex-direction: column; }
.property-key-info strong {
  display: block; font-size: 0.72rem;
  color: var(--c-ink-sub); margin-bottom: 4px;
  letter-spacing: 0.05em;
}
.property-key-info > div > *:last-child {
  font-size: 1.2rem; color: var(--c-red); font-weight: 800;
}
.property-amenities ul {
  list-style: none; display: flex; flex-wrap: wrap; gap: 8px;
}
.property-amenities li {
  background: #f3f4f6;
  color: var(--c-ink); padding: 6px 14px;
  border-radius: 16px;
  font-size: 0.82rem;
}
.cta { text-align: center; margin: 32px 0; }
.cta--booking {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  margin: 36px 0;
}
.cta--booking .btn-primary { min-width: 320px; }
.cta--booking .btn-secondary {
  display: inline-block;
  background: #fff;
  color: var(--c-navy) !important;
  border: 2px solid var(--c-navy);
  padding: 12px 30px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  min-width: 320px;
  transition: all .15s;
}
.cta--booking .btn-secondary:hover {
  background: var(--c-navy);
  color: #fff !important;
}
.cta--booking .btn-tertiary {
  display: inline-block;
  background: transparent;
  color: var(--c-ink-mid) !important;
  border: 1px solid var(--c-line);
  padding: 10px 28px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  min-width: 320px;
  transition: all .15s;
}
.cta--booking .btn-tertiary:hover {
  background: #fef3c7;
  border-color: var(--c-gold);
  color: var(--c-ink) !important;
}
.booking-note {
  font-size: 0.78rem;
  color: var(--c-ink-mid);
  background: #fef9e7;
  padding: 10px 16px;
  border-radius: 6px;
  line-height: 1.65;
  max-width: 580px;
  margin: 6px auto 0;
  border-left: 3px solid var(--c-gold);
  text-align: left;
}

/* ==========================================================================
   Area page
   ========================================================================== */
.area-hero { padding: 32px 0 16px; }
.area-hero h1 { font-size: 2rem; margin-bottom: 12px; }
.area-hero p {
  font-size: 0.98rem; color: var(--c-ink-mid);
  max-width: 720px; line-height: 1.85;
}

/* ==========================================================================
   Municipality list
   ========================================================================== */
.muni-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 10px;
}
.muni-item {
  background: var(--c-card);
  border-radius: 10px;
  padding: 14px 16px 16px;
  text-decoration: none; color: inherit;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all .15s;
  border-top: 3px solid var(--c-line);
}
.muni-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: inherit;
}
.muni-item--shi  { border-top-color: var(--c-red); }
.muni-item--cho  { border-top-color: var(--c-blue); }
.muni-item--mura { border-top-color: var(--c-gold); }
.muni-item__name {
  font-size: 1.05rem; font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 4px;
}
.muni-item__romaji {
  color: var(--c-ink-mid); font-size: 0.82rem;
  font-weight: 500;
}
.muni-item__kana {
  font-size: 0.72rem; color: var(--c-ink-sub);
  margin-top: 2px;
}
.muni-item__type {
  position: absolute; top: 12px; right: 12px;
  font-size: 0.68rem; color: #fff;
  background: var(--c-ink-sub);
  padding: 1px 7px; border-radius: 4px;
  font-weight: 600;
}
.muni-item--shi  .muni-item__type { background: var(--c-red); }
.muni-item--cho  .muni-item__type { background: var(--c-blue); }
.muni-item--mura .muni-item__type { background: var(--c-gold); color: var(--c-ink); }

/* Sub-prefecture sections */
.subpref-section { margin-bottom: 40px; }
.subpref-section > h2 {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
}
.subpref-romaji {
  font-size: 0.85rem; color: var(--c-ink-sub);
  font-weight: 500; letter-spacing: 0.05em;
}
.subpref-count {
  font-size: 0.72rem; background: var(--c-red); color: #fff;
  padding: 3px 12px; border-radius: 12px;
  font-weight: 600;
  margin-left: auto;
}

/* ==========================================================================
   Municipality detail page hero
   ========================================================================== */
.muni-hero {
  background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-blue-dk) 50%, var(--c-red) 100%);
  color: #fff;
  padding: 48px 32px;
  margin-bottom: 32px;
  border-radius: 16px;
  position: relative; overflow: hidden;
}
.muni-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.1) 0%, transparent 50%);
  z-index: 0;
}
.muni-hero > * { position: relative; z-index: 1; }
.muni-hero__breadcrumb {
  font-size: 0.82rem; color: rgba(255,255,255,.8);
  margin-bottom: 16px;
}
.muni-hero__title {
  font-size: 2.6rem; font-weight: 800;
  color: #fff; line-height: 1.15;
  text-shadow: 0 2px 10px rgba(0,0,0,.2);
}
.muni-hero__romaji {
  display: inline-block; margin-left: 8px;
  font-size: 1.1rem; font-weight: 500;
  color: var(--c-gold);
  letter-spacing: 0.08em;
}
.muni-hero__kana {
  font-size: 0.88rem; color: rgba(255,255,255,.85);
  margin: 16px 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.2);
  max-width: 480px;
}
.muni-hero__lead { font-size: 1rem; color: rgba(255,255,255,.95); margin-bottom: 12px; }
.muni-hero__link { font-size: 0.92rem; color: rgba(255,255,255,.9); margin: 0; }
.muni-hero__link a {
  color: var(--c-gold); font-weight: 600;
  border-bottom: 1px solid currentColor;
}
.muni-hero__link a:hover { color: #fff; }

/* Muni info table */
.muni-info-table {
  width: 100%; border-collapse: collapse;
  background: #fff;
  border-radius: 10px; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.muni-info-table th, .muni-info-table td {
  padding: 12px 18px;
  text-align: left; font-size: 0.92rem;
  border-bottom: 1px solid var(--c-line);
}
.muni-info-table th {
  background: #f9fafb; color: var(--c-ink-mid);
  width: 30%; font-weight: 600;
}
.muni-info-table tr:last-child th,
.muni-info-table tr:last-child td { border-bottom: none; }

.city-index-hero {
  background: #fff; padding: 32px;
  margin-bottom: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--c-red);
}
.city-index-hero h1 { margin-bottom: 12px; }
.city-index-hero p { font-size: 0.98rem; color: var(--c-ink-mid); margin: 0; }

/* ==========================================================================
   Site intro
   ========================================================================== */
.site-intro {
  background: linear-gradient(135deg, #f0f9ff 0%, #fff5f5 100%);
  padding: 40px 32px;
  margin-top: 48px;
  border-radius: 16px;
  border: 1px solid var(--c-line);
}
.site-intro h2 { margin-bottom: 16px; }
.site-intro p {
  font-size: 0.96rem; line-height: 1.85;
  color: var(--c-ink); margin-bottom: 12px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--c-navy);
  color: rgba(255,255,255,.8);
  padding: 48px 0 24px;
  margin-top: 64px;
  font-size: 0.88rem;
}
.site-footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.site-footer__logo {
  font-weight: 800; font-size: 1.2rem;
  color: #fff; margin-bottom: 6px;
}
.site-footer__tagline {
  color: rgba(255,255,255,.65); font-size: 0.85rem; margin: 0;
}
.site-footer__col h4 {
  font-size: 0.85rem; color: var(--c-gold);
  margin-bottom: 12px;
}
.site-footer__col ul { list-style: none; }
.site-footer__col li { margin-bottom: 6px; }
.site-footer__col a {
  color: rgba(255,255,255,.7); font-size: 0.88rem;
}
.site-footer__col a:hover { color: var(--c-gold); }
.affiliate-notice {
  background: rgba(0,0,0,.25); padding: 12px 16px;
  font-size: 0.78rem; color: rgba(255,255,255,.55);
  line-height: 1.6; margin-bottom: 12px;
  border-radius: 6px;
}
.site-footer__copyright {
  text-align: center; font-size: 0.78rem;
  color: rgba(255,255,255,.45);
}

/* ==========================================================================
   Feature Promo (Top page) — 編輯精選・台灣人帶路スタイル
   ========================================================================== */
.feature-promo {
  margin: 56px 0;
}
.feature-promo__link {
  display: block;
  background: linear-gradient(135deg, #ff6b8a 0%, #e63946 50%, #c0263a 100%);
  border-radius: 20px;
  padding: 40px 36px;
  color: #fff !important;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(230,57,70,.25);
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.feature-promo__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(230,57,70,.32);
  color: #fff !important;
}
.feature-promo__link::before {
  content: "✦";
  position: absolute;
  top: -40px; right: -20px;
  font-size: 280px;
  color: rgba(255,255,255,0.08);
  font-family: serif;
  line-height: 1;
}
.feature-promo__inner { position: relative; z-index: 1; }
.feature-promo__kicker {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.3);
}
.feature-promo__title {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0,0,0,.15);
}
.feature-promo__title::before { display: none; }
.feature-promo__lead {
  font-size: 0.98rem;
  max-width: 720px;
  color: rgba(255,255,255,0.95);
  line-height: 1.85;
  margin-bottom: 24px;
}
.feature-promo__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px 24px;
  margin-bottom: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.25);
}
.feature-promo__list li {
  display: flex; align-items: baseline; gap: 8px;
  font-size: 0.92rem;
}
.feature-promo__no {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.feature-promo__name {
  font-weight: 700;
  flex: 1;
}
.feature-promo__area {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
}
.feature-promo__cta {
  display: inline-block;
  background: #fff;
  color: var(--c-red) !important;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform .15s;
}
.feature-promo__link:hover .feature-promo__cta { transform: translateX(4px); color: var(--c-red) !important; }

/* ==========================================================================
   Feature Items Grid (Top page) — 物件カードと同サイズの小さいカード
   ========================================================================== */
.feature-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.feature-item-card {
  display: flex; flex-direction: column;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  transition: transform .15s, box-shadow .15s, grid-column .25s;
  border-top: 3px solid var(--c-red);
  position: relative;
}
.feature-item-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  color: inherit;
}
.feature-item-card.is-expanded {
  transform: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  grid-column: 1 / -1;
}
.feature-item-card__trigger {
  display: flex; flex-direction: column;
  background: none; border: 0; padding: 0;
  text-align: left;
  font: inherit; color: inherit;
  cursor: pointer;
  width: 100%;
}
.feature-item-card.has-video .feature-item-card__image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.25) 100%);
  pointer-events: none;
}
.feature-item-card__play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  pointer-events: none;
  opacity: 0.92;
  transition: opacity .15s, transform .15s;
}
.feature-item-card:hover .feature-item-card__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}
.feature-item-card__play svg {
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}
.feature-item-card__play-label {
  background: rgba(0,0,0,0.72);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.feature-item-card.is-expanded .feature-item-card__play {
  display: none;
}
/* 展開パネル */
.feature-item-card__video {
  padding: 0 14px 14px;
  background: #f7f8fa;
  border-top: 1px solid #e5e7eb;
}
.feature-item-card__video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 6px;
  overflow: hidden;
  margin: 12px 0 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.feature-item-card__video-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.feature-item-card__video-meta {
  display: flex; flex-direction: column; gap: 2px;
  font-size: 0.78rem;
  color: var(--c-ink-mid, #4b5563);
  margin: 4px 0 8px;
  line-height: 1.45;
}
.feature-item-card__video-title {
  font-weight: 600;
  color: var(--c-ink, #1a1a1a);
}
.feature-item-card__video-channel {
  color: var(--c-ink-sub, #6b7280);
  font-size: 0.72rem;
}
.feature-item-card__video-cta {
  margin: 6px 0 0;
  text-align: right;
  font-size: 0.85rem;
}
.feature-item-card__video-cta a {
  color: var(--c-navy);
  text-decoration: none;
  font-weight: 600;
}
.feature-item-card__video-cta a:hover { text-decoration: underline; }
.feature-item-card__video-cta--nopanel {
  padding: 0 14px 14px;
  margin: 0;
}
/* 展開時に縦並びにする (動画を大きく見せる) */
@media (min-width: 720px) {
  .feature-item-card.is-expanded .feature-item-card__trigger {
    flex-direction: row;
  }
  .feature-item-card.is-expanded .feature-item-card__image {
    width: 38%; aspect-ratio: 4/3; flex-shrink: 0;
  }
  .feature-item-card.is-expanded .feature-item-card__body {
    flex: 1;
  }
}
.feature-item-card--red   { border-top-color: var(--c-red); }
.feature-item-card--blue  { border-top-color: var(--c-navy-2, #1e3a8a); }
.feature-item-card--pink  { border-top-color: #ff5a8a; }
.feature-item-card--gold  { border-top-color: var(--c-gold); }
.feature-item-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  overflow: hidden;
}
.feature-item-card__image img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.feature-item-card__placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.6rem;
  background: linear-gradient(135deg, #fff5f5 0%, #fff9f0 50%, #f0f9ff 100%);
}
.feature-item-card__feature-tag {
  position: absolute;
  top: 8px; left: 8px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.feature-item-card__body {
  padding: 12px 14px 14px;
  display: flex; flex-direction: column; gap: 4px;
  flex: 1;
}
.feature-item-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-ink, #1a1a1a);
  margin: 0;
  line-height: 1.4;
}
.feature-item-card__title::before { display: none; }
.feature-item-card__meta {
  display: flex; gap: 8px; flex-wrap: wrap;
  font-size: 0.74rem; color: var(--c-ink-sub, #6b7280);
  margin: 2px 0 0;
}
.feature-item-card__tag {
  font-size: 0.78rem;
  color: var(--c-ink-mid, #4b5563);
  margin: 4px 0 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.features-section__more {
  text-align: center;
  margin-top: 28px;
  font-size: 0.95rem;
}
.features-section__more a {
  display: inline-block;
  padding: 10px 28px;
  background: var(--c-navy);
  color: #fff !important;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: background .15s;
}
.features-section__more a:hover {
  background: var(--c-red);
}

/* ==========================================================================
   Features Section (Top page) — 4特集グリッド
   ========================================================================== */
.features-section { margin: 64px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.feature-card {
  display: block;
  background: var(--c-card);
  border-radius: 16px;
  padding: 24px 26px 28px;
  text-decoration: none;
  color: var(--c-ink);
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
  border-top: 5px solid var(--c-red);
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  color: var(--c-ink);
}
.feature-card--red    { border-top-color: var(--c-red); }
.feature-card--blue   { border-top-color: var(--c-blue); }
.feature-card--pink   { border-top-color: #ff5a8a; }
.feature-card--gold   { border-top-color: var(--c-gold); }

.feature-card__kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  padding: 3px 10px;
  border-radius: 999px;
}
.feature-card--red  .feature-card__kicker { background: #fff5f5; color: var(--c-red); }
.feature-card--blue .feature-card__kicker { background: #e0f2fe; color: var(--c-blue-dk); }
.feature-card--pink .feature-card__kicker { background: #fff0f5; color: #c2185b; }
.feature-card--gold .feature-card__kicker { background: #fef9e7; color: #b45309; }

.feature-card__title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--c-ink);
  line-height: 1.3;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.feature-card__title::before { display: none; }
.feature-card__sub {
  font-size: 0.85rem;
  color: var(--c-ink-mid);
  margin-bottom: 16px;
  line-height: 1.55;
}
.feature-card__items {
  list-style: none;
  margin-bottom: 16px;
  padding-top: 12px;
  border-top: 1px dashed var(--c-line);
}
.feature-card__items li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  padding: 5px 0;
  color: var(--c-ink-mid);
}
.feature-card__no {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 700;
  color: var(--c-red);
  font-size: 0.85rem;
  min-width: 36px;
}
.feature-card--blue .feature-card__no { color: var(--c-blue); }
.feature-card--pink .feature-card__no { color: #c2185b; }
.feature-card--gold .feature-card__no { color: #b45309; }
.feature-card__items strong { color: var(--c-ink); font-weight: 700; }
.feature-card__area {
  margin-left: auto;
  font-size: 0.72rem;
  color: var(--c-ink-sub);
}
.feature-card__cta {
  display: inline-block;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--c-red);
  margin-top: 8px;
  transition: transform .15s;
}
.feature-card--blue .feature-card__cta { color: var(--c-blue); }
.feature-card--pink .feature-card__cta { color: #c2185b; }
.feature-card--gold .feature-card__cta { color: #b45309; }
.feature-card:hover .feature-card__cta { transform: translateX(4px); }

/* Features Index Page Hero */
.features-index-hero {
  text-align: center;
  padding: 56px 20px 40px;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #fff5f5 0%, #f0f9ff 100%);
  border-radius: 20px;
}
.features-index-hero h1 {
  font-size: 2.4rem;
  margin: 16px 0 12px;
}
.features-index-hero p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--c-ink-mid);
  font-size: 1rem;
  line-height: 1.85;
}

/* Feature theme color overrides for feature-article */
.feature-theme--blue .feature-badge { background: var(--c-blue); }
.feature-theme--pink .feature-badge { background: #ff5a8a; }
.feature-theme--gold .feature-badge { background: var(--c-gold); color: var(--c-ink); }
.feature-theme--blue .festival-item__header { border-left-color: var(--c-blue); background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%); }
.feature-theme--pink .festival-item__header { border-left-color: #ff5a8a; background: linear-gradient(135deg, #fff0f5 0%, #fff5fa 100%); }
.feature-theme--gold .festival-item__header { border-left-color: var(--c-gold); background: linear-gradient(135deg, #fef9e7 0%, #fff8e1 100%); }
.feature-theme--blue .festival-item__rank-no,
.feature-theme--blue .festival-item__category,
.feature-theme--blue .festival-item__tagline,
.feature-theme--blue .festival-item__h3 { color: var(--c-blue); }
.feature-theme--blue .festival-item__category,
.feature-theme--blue .festival-item__h3 { border-color: var(--c-blue); }
.feature-theme--pink .festival-item__rank-no,
.feature-theme--pink .festival-item__category,
.feature-theme--pink .festival-item__tagline,
.feature-theme--pink .festival-item__h3 { color: #c2185b; }
.feature-theme--pink .festival-item__category,
.feature-theme--pink .festival-item__h3 { border-color: #ff5a8a; }
.feature-theme--gold .festival-item__rank-no,
.feature-theme--gold .festival-item__category,
.feature-theme--gold .festival-item__tagline,
.feature-theme--gold .festival-item__h3 { color: #b45309; }
.feature-theme--gold .festival-item__category,
.feature-theme--gold .festival-item__h3 { border-color: var(--c-gold); }

/* ==========================================================================
   Klook Search Widget Section
   ========================================================================== */
.klook-search-section {
  margin: 48px 0;
  background: linear-gradient(135deg, #ff5722 0%, #f54141 50%, #c62828 100%);
  border-radius: 20px;
  padding: 36px 32px 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(245,65,65,.2);
}
.klook-search-section::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(255,255,255,.15) 0%, transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(255,255,255,.08) 0%, transparent 40%);
}
.klook-search__inner { position: relative; z-index: 1; }
.klook-search__pr {
  display: inline-block;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,.25);
}
.klook-search-section h2 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.klook-search-section h2::before { background: #fff; }
.klook-search-section .section-lead {
  color: rgba(255,255,255,.92);
  margin-bottom: 20px;
  max-width: none;
}
.klook-widget {
  background: #fff;
  border-radius: 12px;
  padding: 8px;
  min-height: 360px;
  overflow: hidden;
}
.klook-widget iframe { border-radius: 8px !important; }

/* Municipality features CTA grid */
.muni-features-cta {
  margin: 40px 0;
}
.muni-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.muni-feature-cta {
  display: flex; flex-direction: column; gap: 4px;
  background: var(--c-card);
  padding: 18px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--c-line);
  transition: transform .15s, box-shadow .15s;
}
.muni-feature-cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: inherit;
}
.muni-feature-cta--red    { border-top-color: var(--c-red); }
.muni-feature-cta--blue   { border-top-color: var(--c-blue); }
.muni-feature-cta--pink   { border-top-color: #ff5a8a; }
.muni-feature-cta--gold   { border-top-color: var(--c-gold); }
.muni-feature-cta__emoji  { font-size: 1.6rem; margin-bottom: 2px; }
.muni-feature-cta__title  { font-weight: 700; font-size: 1.05rem; color: var(--c-ink); }
.muni-feature-cta__sub    { font-size: 0.8rem; color: var(--c-ink-sub); line-height: 1.5; }

.muni-siblings { margin: 40px 0; }

/* Compact variant for area pages */
.klook-search-section--compact {
  margin: 32px 0;
  padding: 24px 24px 20px;
}
.klook-search-section--compact h2 { font-size: 1.4rem; margin-bottom: 6px; }
.klook-search-section--compact .section-lead {
  font-size: 0.92rem;
  margin-bottom: 14px;
}

/* Klook Dynamic Widget Section (/features/ index) */
.klook-dynamic-section {
  margin: 56px 0 0;
  background: linear-gradient(135deg, #fff8e1 0%, #fff5f5 100%);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid var(--c-line);
}
.klook-dynamic__head { margin-bottom: 16px; position: relative; }
.klook-dynamic__head h2 { font-size: 1.6rem; margin-bottom: 6px; }
.klook-dynamic-widget {
  margin-top: 16px;
  min-height: 480px;
  overflow: hidden;
}
.klook-dynamic-widget iframe {
  width: 100% !important;
  border-radius: 8px !important;
}

/* Klook Hotel Featured (single hotel) */
.klook-hotel-featured {
  margin: 56px 0;
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 2px solid var(--c-gold);
  position: relative;
  box-shadow: 0 4px 16px rgba(251,191,36,.15);
}
.klook-hotel-featured h2 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}
.klook-hotel-featured h2::before { background: var(--c-gold); }
.klook-hotel-featured .section-lead {
  color: var(--c-red);
  font-weight: 600;
  margin-bottom: 16px;
}
.klook-hotel-featured__widget {
  min-height: 200px;
  overflow: hidden;
}
.klook-hotel-featured__widget iframe {
  width: 100% !important;
  border-radius: 8px !important;
}

/* Klook Deals Widget Section */
.klook-deals-section {
  margin: 56px 0;
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid var(--c-line);
  position: relative;
}
.klook-deals__pr {
  position: absolute;
  top: 16px; right: 20px;
  background: #fbbf24;
  color: #1f2937;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
}
.klook-deals-section h2 {
  font-size: 1.55rem;
  margin-bottom: 8px;
}
.klook-deals-widget {
  margin-top: 20px;
  min-height: 480px;
  overflow: hidden;
}
.klook-deals-widget iframe {
  width: 100% !important;
  border-radius: 8px !important;
}

/* ==========================================================================
   Feature Article Page (特集ページ)
   ========================================================================== */
.feature-article { max-width: 880px; margin: 0 auto; }
.feature-hero {
  text-align: center;
  padding: 48px 20px 40px;
  border-bottom: 2px solid var(--c-line);
  margin-bottom: 56px;
}
.feature-badge {
  display: inline-block;
  background: #ff5a8a;
  color: #fff;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(255,90,138,.3);
}
.feature-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--c-ink);
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
.feature-title::before { display: none; }
.feature-title__sub {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--c-ink-mid);
  margin-top: 6px;
  letter-spacing: 0.03em;
}
.feature-lead {
  font-size: 1.02rem;
  color: var(--c-ink-mid);
  line-height: 2;
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: left;
}
.feature-toc {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
}
.feature-toc a {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 2px;
  align-items: center;
  background: #fff;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid var(--c-line);
  color: var(--c-ink);
  transition: all .15s;
  text-decoration: none;
}
.feature-toc a:hover {
  border-color: var(--c-red);
  transform: translateX(4px);
  color: var(--c-red);
}
.feature-toc__no {
  grid-row: 1 / 3;
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--c-red);
  align-self: center;
  white-space: nowrap;
}
.feature-toc__title {
  grid-column: 2;
  grid-row: 1;
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.4;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.feature-toc__area {
  grid-column: 2;
  grid-row: 2;
  font-size: 0.78rem;
  color: var(--c-ink-sub);
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* Festival Item */
.festival-item {
  margin-bottom: 64px;
  padding-bottom: 56px;
  border-bottom: 1px dashed var(--c-line);
}
.festival-item:last-of-type { border-bottom: none; }
.festival-item__hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 20px;
  background: #f3f4f6;
}
.festival-item__hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.festival-item__hero-attr {
  position: absolute;
  bottom: 8px; right: 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}
.festival-item__header {
  background: linear-gradient(135deg, #fff5f5 0%, #fff9f0 100%);
  padding: 28px 32px;
  border-radius: 16px;
  border-left: 6px solid var(--c-red);
  margin-bottom: 32px;
}
.festival-item__rank {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.festival-item__rank-no {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--c-red);
}
.festival-item__category {
  background: #fff;
  color: var(--c-red);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid var(--c-red);
}
.festival-item__title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-ink);
  line-height: 1.25;
  margin-bottom: 10px;
}
.festival-item__title::before { display: none; }
.festival-item__title-sub {
  display: block;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--c-ink-sub);
  margin-top: 6px;
  letter-spacing: 0.03em;
}
.festival-item__title-sub i {
  font-family: Georgia, serif;
  color: var(--c-ink-sub);
}
.festival-item__tagline {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-red);
  margin-bottom: 16px;
  line-height: 1.55;
}
.festival-item__meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  font-size: 0.92rem;
  color: var(--c-ink-mid);
  padding-top: 14px;
  border-top: 1px dashed rgba(0,0,0,.08);
}
.festival-item__meta-item strong { color: var(--c-ink); }
.festival-item__body { padding: 0 4px; }
.festival-item__h3 {
  font-size: 1.2rem;
  color: var(--c-ink);
  margin: 28px 0 12px;
  padding-left: 12px;
  border-left: 4px solid var(--c-red);
}
.festival-item__body p {
  font-size: 1rem;
  line-height: 2;
  color: var(--c-ink);
  margin-bottom: 16px;
}
.festival-item__highlight {
  background: #fef9e7;
  border-left: 4px solid var(--c-gold);
  padding: 18px 22px;
  margin: 24px 0;
  border-radius: 0 10px 10px 0;
}
.festival-item__highlight-label {
  display: inline-block;
  font-weight: 700;
  color: #b45309;
  margin-bottom: 6px;
  font-size: 0.92rem;
}
.festival-item__highlight p { margin-bottom: 0; }
.festival-item__actions {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px dashed var(--c-line);
}
.festival-item__btn {
  display: inline-block;
  background: var(--c-ink);
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all .15s;
}
.festival-item__btn:hover {
  background: var(--c-red);
  transform: translateX(4px);
}

/* PR / Affiliate */
.festival-item--pr {
  background: linear-gradient(180deg, #fff9e6 0%, transparent 12%);
  padding: 16px 16px 0;
  border-radius: 16px;
  border: 2px solid #fbbf24;
  margin-left: -16px;
  margin-right: -16px;
  position: relative;
}
.festival-item__pr-label {
  position: absolute;
  top: -12px; left: 20px;
  background: #fbbf24;
  color: #1f2937;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 6px rgba(251,191,36,.3);
}
.festival-item__banner {
  text-align: center;
  margin: 24px 0;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--c-line);
}
.festival-item__banner img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  margin: 0;
}
.festival-item__banner img[width="1"] {
  display: inline;
  margin: 0;
}
.festival-item__btn--affiliate {
  background: linear-gradient(135deg, #f97316 0%, #e63946 100%);
  font-size: 1rem;
  padding: 14px 32px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(230,57,70,.35);
}
.festival-item__btn--affiliate:hover {
  background: linear-gradient(135deg, #ea580c 0%, #c0263a 100%);
  transform: translateY(-2px) translateX(4px);
  box-shadow: 0 6px 16px rgba(230,57,70,.45);
}

.feature-conclusion {
  background: linear-gradient(135deg, #0c1839 0%, #1a3158 100%);
  color: #fff;
  padding: 40px 36px;
  border-radius: 16px;
  margin-top: 56px;
}
.feature-conclusion__title {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.feature-conclusion__title::before { background: var(--c-gold); }
.feature-conclusion p {
  color: rgba(255,255,255,.9);
  font-size: 1rem;
  line-height: 1.95;
  margin-bottom: 16px;
}
.feature-conclusion strong { color: var(--c-gold); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .site-footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .property-gallery { grid-template-columns: 1fr 1fr; }
  .property-gallery img:first-child { grid-row: auto; }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .site-main { padding: 0 0 48px; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.25rem; }
  .hero { min-height: 380px; }
  .hero__title { font-size: 2.2rem; }
  .hero__lead { font-size: 0.95rem; }
  .hero__stats strong { font-size: 1.5rem; }
  .hero__stats > div { padding: 4px 8px; border-right: none; }
  .area-card-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .area-mini-card h3 { font-size: 1.2rem; }
  .muni-hero { padding: 32px 20px; border-radius: 10px; }
  .muni-hero__title { font-size: 2rem; }
  .muni-hero__romaji { display: block; margin-left: 0; margin-top: 4px; font-size: 0.95rem; }
  .site-nav { gap: 4px; }
  .site-nav a { font-size: 0.82rem; padding: 6px 10px; }
  .property-gallery { grid-template-columns: 1fr; }
  .property-key-info { gap: 18px; padding: 16px; }
}

/* ====== 市町村ページ: 経路検索フォーム ====== */
.muni-routesearch {
  background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
  border: 1px solid #e0e7ff;
  border-radius: 12px;
  padding: 22px 24px;
  margin: 24px 0;
}
.muni-routesearch h2 {
  margin-top: 0;
}
.route-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
}
.route-form__row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.route-form__label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--c-ink, #1a1a1a);
}
.route-form__select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--c-ink, #1a1a1a);
  cursor: pointer;
}
.route-form__select:focus {
  outline: 2px solid var(--c-navy, #0a2540);
  border-color: var(--c-navy, #0a2540);
}
.route-form__modes {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2px;
}
.route-form__modes label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 6px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: #fff;
  transition: background .15s, border-color .15s;
}
.route-form__modes label:hover {
  background: #f1f5f9;
}
.route-form__modes input[type="radio"] {
  accent-color: var(--c-red, #d33);
}
.route-form__btn {
  background: var(--c-red, #d33);
  color: #fff;
  border: 0;
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s, transform .15s;
  align-self: flex-start;
}
.route-form__btn:hover {
  background: #b62828;
  transform: translateY(-1px);
}
.route-form__note {
  font-size: 0.78rem;
  color: var(--c-ink-sub, #6b7280);
  margin: 10px 0 0;
}
@media (min-width: 720px) {
  .route-form__row--modes {
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }
  .route-form__row--modes .route-form__label {
    flex-shrink: 0;
  }
}

/* ====== 市町村: 新千歳空港アクセステーブル ====== */
.muni-transport-cts {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 22px 24px;
  margin: 24px 0;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.transport-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.transport-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
  font-size: 0.94rem;
}
.transport-table thead th {
  background: #f1f5f9;
  color: var(--c-ink, #1a1a1a);
  font-weight: 700;
  text-align: left;
  padding: 10px 14px;
  border-bottom: 2px solid #cbd5e1;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
}
.transport-table tbody td {
  padding: 14px 14px;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: middle;
}
.transport-table tbody tr:last-child td {
  border-bottom: 0;
}
.transport-table tbody tr:hover {
  background: #fafbfc;
}
.transport-table td strong {
  color: var(--c-ink, #1a1a1a);
}
.transport-icon {
  display: inline-block;
  font-size: 1.3rem;
  margin-right: 6px;
  vertical-align: -2px;
}
.transport-na {
  color: var(--c-ink-sub, #6b7280);
  font-size: 0.86rem;
  font-style: italic;
}
.transport-note {
  font-size: 0.78rem;
  color: var(--c-ink-sub, #6b7280);
  margin: 12px 0 0;
  line-height: 1.55;
}
@media (max-width: 580px) {
  .transport-table {
    font-size: 0.86rem;
  }
  .transport-table thead th,
  .transport-table tbody td {
    padding: 10px 8px;
  }
}

/* 経路検索: 埋め込みマップ */
.route-map {
  margin-top: 18px;
  border-top: 1px solid #e0e7ff;
  padding-top: 18px;
}
.route-map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 8px;
  background: #f1f5f9;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.route-map__open {
  text-align: right;
  margin: 8px 0 0;
  font-size: 0.86rem;
}
.route-map__open a {
  color: var(--c-blue, #0066cc);
  text-decoration: none;
}
.route-map__open a:hover { text-decoration: underline; }
@media (max-width: 580px) {
  .route-map iframe { height: 320px; }
}

/* ====== Static pages (About / Privacy / Disclosure / Contact) ====== */
.static-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 8px 4px 24px;
}
.static-page h1 {
  font-size: 2rem;
  margin: 0 0 8px;
  font-weight: 800;
  color: var(--c-ink, #1a1a1a);
}
.static-page__updated {
  color: var(--c-ink-sub, #6b7280);
  font-size: 0.85rem;
  margin: 0 0 24px;
}
.static-page section {
  margin: 28px 0;
}
.static-page h2 {
  font-size: 1.25rem;
  margin: 0 0 12px;
  font-weight: 700;
}
.static-page p {
  font-size: 0.95rem;
  line-height: 1.78;
  color: var(--c-ink-mid, #4b5563);
  margin: 0 0 12px;
}
.static-page p:last-child { margin-bottom: 0; }
.static-page strong { color: var(--c-ink, #1a1a1a); }
.static-page a { color: var(--c-red, #d33); }
.static-page a:hover { text-decoration: underline; }
.static-page ul.bulleted,
.static-page ol.bulleted {
  padding-left: 22px;
  margin: 8px 0 16px;
}
.static-page ul.bulleted li,
.static-page ol.bulleted li {
  font-size: 0.94rem;
  margin: 6px 0;
  line-height: 1.7;
  color: var(--c-ink-mid, #4b5563);
}
.static-page code {
  background: #f1f5f9;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.86em;
}
.static-page .company-info {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 8px;
}
.static-page .company-info th,
.static-page .company-info td {
  padding: 10px 12px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
  vertical-align: top;
  font-size: 0.9rem;
}
.static-page .company-info th {
  background: #f8fafc;
  width: 30%;
  color: var(--c-ink, #1a1a1a);
  font-weight: 600;
}

/* Footer 追加列 */
.site-footer__company {
  font-size: 0.84rem;
  color: rgba(255,255,255,.82);
  margin: 12px 0 0;
  line-height: 1.6;
}
.site-footer__company strong { color: #fff; }
.site-footer__email { font-size: 0.78rem; color: rgba(255,255,255,.7); }

/* メールアドレス画像 (スパム対策) */
.email-img {
  display: inline-block;
  vertical-align: middle;
  height: 21px;
  width: 184px;
  user-select: none;
  -webkit-user-drag: none;
}
.email-img--footer {
  filter: invert(85%) brightness(2);
  height: 18px;
  width: auto;
}
.email-note {
  display: block;
  font-size: 0.74rem;
  color: var(--c-ink-sub, #6b7280);
  margin-top: 4px;
}

/* 経路検索: 注意書き */
.route-form__hint {
  background: #fffbeb;
  border-left: 3px solid #f59e0b;
  padding: 8px 12px;
  margin: 4px 0 0;
  font-size: 0.78rem;
  color: #78350f;
  line-height: 1.55;
  border-radius: 4px;
}
.route-form__hint strong {
  color: #78350f;
}

/* 経路検索: 結果テーブル */
.route-result {
  background: #fff;
  border: 1px solid #e0e7ff;
  border-left: 4px solid var(--c-red, #d33);
  border-radius: 10px;
  padding: 18px 22px;
  margin: 18px 0 0;
  box-shadow: 0 2px 6px rgba(0,0,0,.05);
}
.route-result__title {
  font-size: 1.1rem;
  margin: 0 0 4px;
  color: var(--c-ink, #1a1a1a);
}
.route-result__dest {
  color: var(--c-red, #d33);
}
.route-result__base {
  font-size: 0.84rem;
  color: var(--c-ink-sub, #6b7280);
  margin: 0 0 10px;
}
.route-result__note {
  font-size: 0.76rem;
  color: var(--c-ink-sub, #6b7280);
  margin: 12px 0 0;
  line-height: 1.55;
}
.route-result__note strong { color: var(--c-ink-mid, #4b5563); }

/* 経路途中の観光地カード */
.route-stops {
  margin: 18px 0 12px;
}
.route-stops__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 2px;
  color: var(--c-ink, #1a1a1a);
}
.route-stops__sub {
  font-size: 0.82rem;
  color: var(--c-ink-sub, #6b7280);
  margin: 0 0 10px;
}
.route-stops__scroll {
  overflow: visible;
  padding: 4px 0 8px;
}
.route-stops__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}
@media (max-width: 960px) {
  .route-stops__list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .route-stops__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.route-stop-card {
  width: 100%;
  height: 64px;
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
  transition: transform .15s, box-shadow .15s;
}
.route-stop-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0,0,0,.08);
}
.route-stop-card__photo {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  overflow: hidden;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}
.route-stop-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.route-stop-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: linear-gradient(135deg, #fff5f5, #f0f9ff);
}
.route-stop-card__body {
  flex: 1;
  min-width: 0;
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}
.route-stop-card__name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-ink, #1a1a1a);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.route-stop-card__meta {
  font-size: 0.66rem;
  color: var(--c-ink-sub, #6b7280);
}

/* (横スクロールバーは廃止 - グリッドレイアウトに変更済み) */

/* ====== 緊急聯絡 (市町村ページ + /emergency/) ====== */
.muni-emergency {
  background: linear-gradient(135deg, #fef2f2 0%, #fff7ed 100%);
  border: 1px solid #fecaca;
  border-radius: 12px;
  padding: 22px 24px;
  margin: 24px 0;
}
.emergency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 14px;
}
.emergency-grid--single {
  grid-template-columns: 1fr;
}
.emergency-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px 18px;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.emergency-card--urgent {
  border-left: 4px solid #dc2626;
  background: #fff5f5;
}
.emergency-card--taiwan {
  border-left: 4px solid #d33;
  background: #fefce8;
}
.emergency-card h3 {
  font-size: 0.98rem;
  margin: 0 0 10px;
  font-weight: 700;
  color: var(--c-ink, #1a1a1a);
}
.emergency-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}
.emergency-card ul li {
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 6px 0;
  color: var(--c-ink-mid, #4b5563);
}
.emergency-card strong { color: var(--c-ink, #1a1a1a); }
.emergency-tel {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 700;
  font-size: 1.02rem;
  color: #dc2626;
  letter-spacing: 0.02em;
}
.emergency-card__note {
  font-size: 0.78rem;
  color: var(--c-ink-sub, #6b7280);
  background: #f8fafc;
  border-radius: 4px;
  padding: 8px 10px;
  margin: 8px 0 0;
  line-height: 1.55;
}
.emergency-more {
  text-align: right;
  margin: 16px 0 0;
  font-size: 0.92rem;
}
.emergency-more a {
  color: #dc2626;
  font-weight: 600;
  text-decoration: none;
}
.emergency-more a:hover { text-decoration: underline; }

/* /emergency/ ページ */
.emergency-page .emergency-intro {
  background: #fffbeb;
  border-left: 4px solid #f59e0b;
  padding: 12px 16px;
  border-radius: 6px;
  margin: 12px 0 20px;
  font-size: 0.92rem;
  line-height: 1.7;
}
.emergency-info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 0.9rem;
}
.emergency-info-table th,
.emergency-info-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
  vertical-align: top;
}
.emergency-info-table th {
  background: #f8fafc;
  font-weight: 600;
  width: 32%;
  color: var(--c-ink, #1a1a1a);
}
.emergency-disclaimer {
  font-size: 0.78rem;
  color: var(--c-ink-sub, #6b7280);
  background: #f8fafc;
  padding: 10px 14px;
  border-radius: 6px;
  margin-top: 32px;
  line-height: 1.55;
}

/* footer の緊急リンクを目立たせる */
.site-footer__emergency {
  color: #fca5a5 !important;
  font-weight: 600;
}

/* 緊急聯絡: ローカル窓口セクション (市町村ページ専用) */
.emergency-local-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 18px 0 8px;
  color: var(--c-ink, #1a1a1a);
  padding-bottom: 6px;
  border-bottom: 1px solid #fecaca;
}
.emergency-local-title:first-of-type {
  margin-top: 8px;
}
.emergency-card--local {
  border-left: 4px solid #2563eb;
  background: #eff6ff;
}
.emergency-card--local h3 {
  color: #1e40af;
  font-size: 0.95rem;
}
.emergency-card__addr {
  color: var(--c-ink-sub, #6b7280) !important;
  font-size: 0.78rem !important;
  line-height: 1.5;
}

/* 中心都市バッジ (area.php) */
.muni-item--center {
  position: relative;
  border: 2px solid var(--c-red, #d33);
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}
.muni-item__center-badge {
  position: absolute;
  top: -8px;
  right: 8px;
  background: var(--c-red, #d33);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

/* ====== スリム化された Klook PR バナー ====== */
.klook-search-section--slim {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 8px;
  padding: 0;
  margin: 16px 0;
}
.klook-search__slim-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  color: #fff;
  flex-wrap: wrap;
}
.klook-search-section--slim .klook-search__pr {
  background: rgba(0,0,0,0.25);
  color: #fff;
  padding: 3px 9px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  flex-shrink: 0;
}
.klook-search__title {
  flex: 1;
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  min-width: 200px;
  line-height: 1.4;
}
.klook-search__cta {
  background: #fff;
  color: #d97706 !important;
  padding: 7px 18px;
  border-radius: 5px;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform .15s;
}
.klook-search__cta:hover {
  transform: translateY(-1px);
  color: #b45309 !important;
}

/* ====== 地域別お祭り横並びカード ====== */
.area-festivals {
  margin: 28px 0;
}
.area-festivals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 14px;
}
@media (min-width: 1000px) {
  .area-festivals-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 999px) and (min-width: 720px) {
  .area-festivals-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 719px) {
  .area-festivals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.area-festival-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-top: 4px solid var(--c-red, #d33);
  border-radius: 8px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
  transition: transform .15s, box-shadow .15s;
}
.area-festival-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.area-festival-card__head {
  margin-bottom: 8px;
}
.area-festival-card__month {
  display: inline-block;
  background: var(--c-red, #d33);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}
.area-festival-card__title {
  font-size: 0.94rem;
  font-weight: 700;
  margin: 0;
  color: var(--c-ink, #1a1a1a);
  line-height: 1.35;
}
.area-festival-card__ja {
  font-size: 0.7rem;
  color: var(--c-ink-sub, #6b7280);
  margin: 2px 0 0;
}
.area-festival-card__body {
  flex: 1;
  margin: 6px 0;
}
.area-festival-card__date,
.area-festival-card__venue {
  font-size: 0.76rem;
  margin: 4px 0;
  color: var(--c-ink-mid, #4b5563);
  line-height: 1.4;
}
.area-festival-card__summary {
  font-size: 0.78rem;
  color: var(--c-ink-mid, #4b5563);
  line-height: 1.55;
  margin: 8px 0 0;
}
.area-festival-card__link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-red, #d33) !important;
  text-decoration: none;
}
.area-festival-card__link:hover { text-decoration: underline; }

/* ====== ルート詳細 (駅・乗換站・経由地) ====== */
.route-steps {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-left: 4px solid #2563eb;
  border-radius: 8px;
  padding: 16px 20px;
  margin: 16px 0 0;
}
.route-steps__title {
  font-size: 1.02rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--c-ink, #1a1a1a);
}
.route-steps__sub {
  font-size: 0.84rem;
  color: var(--c-ink-mid, #4b5563);
  margin: 0 0 12px;
  line-height: 1.55;
}
.route-steps__sub strong { color: var(--c-ink, #1a1a1a); }
.route-steps__nodata {
  display: block;
  background: #fffbeb;
  border-left: 3px solid #f59e0b;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.82rem;
  color: #78350f;
  line-height: 1.55;
}
.route-steps__nodata a { color: #b45309; font-weight: 600; }
.route-steps__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.route-steps__item {
  background: #f8fafc;
  border-radius: 6px;
  padding: 10px 12px;
  border-left: 3px solid #cbd5e1;
}
.route-steps__item--transit { border-left-color: #2563eb; background: #eff6ff; }
.route-steps__item--walk    { border-left-color: #6b7280; background: #f3f4f6; }
.route-steps__item--drive   { border-left-color: #16a34a; background: #f0fdf4; }
.route-steps__item--via     { border-left-color: #d1d5db; background: #fafafa; font-style: italic; }
.route-steps__line {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--c-ink, #1a1a1a);
  margin-bottom: 4px;
  line-height: 1.4;
}
.route-steps__icon {
  display: inline-block;
  margin-right: 6px;
  vertical-align: -1px;
}
.route-steps__head {
  color: var(--c-ink-mid, #4b5563);
  font-weight: 500;
  font-size: 0.86rem;
}
.route-steps__stations {
  font-size: 0.86rem;
  color: var(--c-ink-mid, #4b5563);
  line-height: 1.5;
}
.route-steps__stop {
  font-weight: 600;
  color: var(--c-ink, #1a1a1a);
}
.route-steps__arrow {
  margin: 0 4px;
  color: #2563eb;
  font-weight: 700;
}
.route-steps__meta {
  font-size: 0.76rem;
  color: var(--c-ink-sub, #6b7280);
  margin-top: 4px;
}
.route-steps__hint {
  font-size: 0.76rem;
  color: var(--c-ink-sub, #6b7280);
  margin: 12px 0 0;
  line-height: 1.55;
}
.route-steps__hint a { color: var(--c-blue, #0066cc); }

/* PR バナー click-to-expand */
.klook-search__toggle {
  width: 100%;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 14px 20px;
  min-height: 58px;
  border-radius: 8px;
  font-family: inherit;
  color: #fff;
  text-align: left;
  -webkit-tap-highlight-color: rgba(255,255,255,0.25);
  transition: filter .12s ease, transform .08s ease;
}
.klook-search__toggle:hover {
  filter: brightness(1.05);
}
.klook-search__toggle:active {
  transform: scale(0.997);
  filter: brightness(0.95);
}
.klook-search__toggle .klook-search__cta {
  background: #fff;
  color: #d97706 !important;
  padding: 8px 18px;
  border-radius: 5px;
  font-size: 0.86rem;
  font-weight: 700;
  flex-shrink: 0;
  pointer-events: none;
}
.klook-search__expand {
  background: #fff;
  border: 1px solid #ffedd5;
  border-top: 0;
  border-radius: 0 0 8px 8px;
  margin-top: -4px;
  padding-top: 4px;
  overflow: hidden;
}
.klook-search__expand-inner {
  padding: 16px 20px 18px;
}
.klook-search__lead {
  font-size: 0.86rem;
  color: var(--c-ink-mid, #4b5563);
  margin: 0 0 10px;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ====== 市町村ページ: 祭典セクション ====== */
.muni-festivals { margin: 28px 0; }
.muni-festivals__inthis {
  color: #d33;
  font-weight: 800;
  font-size: 1.1em;
}
.area-festival-card--inthis {
  border-top-width: 5px;
  background: linear-gradient(135deg, #fffbeb 0%, #ffffff 80%);
  position: relative;
}
.area-festival-card__inthis {
  display: inline-block;
  background: #f59e0b;
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin: 2px 0 6px 6px;
  letter-spacing: 0.04em;
}
.muni-festivals__more {
  text-align: right;
  margin: 12px 0 0;
  font-size: 0.9rem;
}
.muni-festivals__more a {
  color: var(--c-red, #d33);
  font-weight: 600;
}

/* ====== /driving-guide/ ページ ====== */
.driving-guide .drive-warn {
  background: #fef2f2;
  border-left: 5px solid #dc2626;
  padding: 14px 18px;
  border-radius: 6px;
  margin: 12px 0 20px;
  font-size: 0.96rem;
  line-height: 1.7;
  color: #7f1d1d;
}
.driving-guide .drive-warn strong {
  color: #b91c1c;
}
.drive-critical {
  background: linear-gradient(135deg, #fef2f2 0%, #fff7ed 100%);
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 16px 20px;
  margin: 12px 0;
}
.drive-critical p {
  font-size: 0.96rem;
  line-height: 1.7;
}
.drive-tip {
  background: #ecfdf5;
  border-left: 4px solid #10b981;
  padding: 10px 14px;
  border-radius: 6px;
  margin: 12px 0 0;
  font-size: 0.92rem;
  color: #064e3b;
  line-height: 1.65;
}
.drive-comparison {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 18px;
  font-size: 0.92rem;
}
.drive-comparison th, .drive-comparison td {
  padding: 10px 12px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
}
.drive-comparison thead th {
  background: #f8fafc;
  font-weight: 700;
  font-size: 0.9rem;
}
.drive-comparison tbody th {
  background: #fafafa;
  font-weight: 600;
  color: var(--c-ink, #1a1a1a);
  width: 30%;
}

/* 道路標誌グリッド */
.drive-signs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  margin: 14px 0;
}
.drive-sign {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px 14px;
}
.drive-sign__icon {
  flex: 0 0 68px;
  width: 68px;
  height: 68px;
  display: block;
  background: transparent;
  border-radius: 0;
}
.drive-sign__icon small {
  font-size: 0.6em;
}
.drive-sign__body {
  flex: 1;
}
.drive-sign__body strong {
  font-size: 0.92rem;
  color: var(--c-ink, #1a1a1a);
  display: block;
  margin-bottom: 4px;
}
.drive-sign__body p {
  font-size: 0.82rem;
  color: var(--c-ink-mid, #4b5563);
  margin: 0;
  line-height: 1.55;
}

/* ルールグリッド */
.drive-rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin: 14px 0;
}
.drive-rule {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 14px 18px;
}
.drive-rule h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-ink, #1a1a1a);
}
.drive-rule ul {
  margin: 0;
  padding-left: 18px;
}
.drive-rule li {
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 6px 0;
  color: var(--c-ink-mid, #4b5563);
}
.drive-rule li strong {
  color: var(--c-ink, #1a1a1a);
}

/* 事故対応ステップ */
.drive-accident-steps {
  list-style: none;
  padding: 0;
  counter-reset: step;
  margin: 14px 0;
}
.drive-accident-steps li {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-left: 4px solid #dc2626;
  border-radius: 6px;
  padding: 12px 16px;
  margin-bottom: 10px;
}
.drive-accident-steps li strong {
  display: block;
  font-size: 0.96rem;
  color: var(--c-ink, #1a1a1a);
  margin-bottom: 4px;
}
.drive-accident-steps li p {
  font-size: 0.88rem;
  color: var(--c-ink-mid, #4b5563);
  margin: 0;
  line-height: 1.65;
}

/* 最後のまとめボックス */
.drive-recap {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 2px solid #f59e0b;
  border-radius: 8px;
  padding: 16px 20px 16px 36px;
  margin: 14px 0;
}
.drive-recap ol {
  margin: 0;
  padding-left: 18px;
}
.drive-recap li {
  font-size: 0.94rem;
  line-height: 1.85;
  color: #78350f;
  margin: 4px 0;
}
.drive-recap li strong { color: #78350f; }

/* レンタカー特集→運転ガイドへの誘導 */
.feature-driving-cta {
  background: linear-gradient(135deg, #fef3c7 0%, #fff7ed 100%);
  border: 2px solid #f59e0b;
  border-radius: 8px;
  padding: 14px 18px;
  margin: 16px 0 0;
  font-size: 0.94rem;
  line-height: 1.65;
  color: #78350f;
}
.feature-driving-cta strong { color: #b45309; }
.feature-driving-cta a {
  color: #b45309;
  font-weight: 700;
  text-decoration: underline;
}

/* ====== ガソリンスタンド (driving-guide) ====== */
.gas-fullservice {
  background: #f0fdf4;
  border-left: 4px solid #16a34a;
  border-radius: 6px;
  padding: 14px 18px;
  margin: 12px 0 16px;
}
.gas-phrase {
  background: #fff;
  border: 1px dashed #16a34a;
  border-radius: 6px;
  padding: 12px 16px;
  margin: 10px 0;
}
.gas-phrase__ja {
  font-size: 1.06rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.5;
}
.gas-phrase__yomi {
  font-size: 0.86rem;
  color: var(--c-ink-sub, #6b7280);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  margin: 4px 0 2px;
}
.gas-phrase__zh {
  font-size: 0.88rem;
  color: var(--c-ink-mid, #4b5563);
}

.gas-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 14px 0;
}
.gas-type {
  display: flex;
  gap: 12px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 14px;
}
.gas-type--reg { border-left: 4px solid #dc2626; }
.gas-type--hi { border-left: 4px solid #eab308; }
.gas-type--diesel { border-left: 4px solid #16a34a; background: #fef2f2; }
.gas-type--kerosene { border-left: 4px solid #0ea5e9; background: #fef2f2; }
.gas-type__icon {
  flex: 0 0 60px;
  width: 60px;
  height: 80px;
}
.gas-type__body {
  flex: 1;
  min-width: 0;
}
.gas-type__body h4 {
  margin: 0 0 4px;
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--c-ink, #1a1a1a);
}
.gas-type__color {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--c-ink-sub, #6b7280);
}
.gas-type__body p {
  font-size: 0.8rem;
  line-height: 1.55;
  margin: 4px 0;
  color: var(--c-ink-mid, #4b5563);
}
.gas-type__ok { color: #16a34a !important; font-weight: 600; }
.gas-type__warn { color: #d97706 !important; font-weight: 600; }
.gas-type__danger { color: #dc2626 !important; font-weight: 700; }

.gas-steps {
  list-style: decimal inside;
  padding: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 14px 18px;
  margin: 12px 0;
}
.gas-steps li {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 6px 0;
  color: var(--c-ink-mid, #4b5563);
}
.gas-steps li strong { color: var(--c-ink, #1a1a1a); }

/* ====== 白タク警告 ====== */
.drive-warn--strong {
  background: #7f1d1d;
  color: #fff;
  border-left-color: #fbbf24;
  font-size: 1rem;
  padding: 16px 20px;
}
.drive-warn--strong strong { color: #fbbf24; }

.white-taxi-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  margin: 14px 0;
}
.white-taxi-fact {
  display: flex;
  gap: 12px;
  background: #fff;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 14px;
}
.white-taxi-fact__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
}
.white-taxi-fact > div { flex: 1; }
.white-taxi-fact strong {
  display: block;
  font-size: 0.96rem;
  color: #b91c1c;
  margin-bottom: 4px;
}
.white-taxi-fact p {
  font-size: 0.84rem;
  margin: 0;
  line-height: 1.6;
  color: var(--c-ink-mid, #4b5563);
}

.white-taxi-compare {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 0.88rem;
}
.white-taxi-compare th,
.white-taxi-compare td {
  padding: 10px 12px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
  vertical-align: top;
}
.white-taxi-compare thead th {
  background: #f8fafc;
  font-weight: 700;
}
.white-taxi-compare tbody th {
  background: #fafafa;
  font-weight: 600;
  color: var(--c-ink, #1a1a1a);
  width: 22%;
}

.white-taxi-reality {
  background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 100%);
  color: #fff;
  border-radius: 8px;
  padding: 20px 24px;
  margin: 18px 0;
  box-shadow: 0 4px 14px rgba(127,29,29,0.3);
}
.white-taxi-reality__title {
  color: #fbbf24 !important;
  margin: 0 0 12px !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
}
.white-taxi-reality p {
  color: #fef2f2;
  font-size: 0.94rem;
  line-height: 1.8;
  margin: 8px 0;
}
.white-taxi-reality strong {
  color: #fff;
}
.white-taxi-reality__call {
  background: rgba(0,0,0,0.25);
  padding: 12px 16px;
  border-radius: 6px;
  border-left: 4px solid #fbbf24;
  margin-top: 14px !important;
}
.white-taxi-reality__call strong {
  color: #fde68a;
}

/* 白タク 現行犯逮捕の警告 */
.white-taxi-arrest {
  background: #fef2f2;
  border: 3px solid #dc2626;
  border-radius: 10px;
  padding: 18px 22px;
  margin: 16px 0;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.15);
}
.white-taxi-arrest__title {
  color: #b91c1c !important;
  margin: 0 0 10px !important;
  font-size: 1.06rem !important;
  font-weight: 800 !important;
}
.white-taxi-arrest__lead {
  font-size: 0.94rem;
  line-height: 1.75;
  color: #7f1d1d;
  margin: 0 0 14px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  border-left: 4px solid #dc2626;
}
.white-taxi-arrest__steps h4 {
  font-size: 0.94rem;
  color: #b91c1c;
  margin: 8px 0 10px;
  font-weight: 700;
}
.white-taxi-arrest__steps ol {
  list-style: none;
  counter-reset: arrest-step;
  padding: 0;
  margin: 0;
}
.white-taxi-arrest__steps ol li {
  counter-increment: arrest-step;
  position: relative;
  background: #fff;
  border: 1px solid #fecaca;
  border-radius: 6px;
  padding: 12px 14px 12px 50px;
  margin: 8px 0;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--c-ink-mid, #4b5563);
}
.white-taxi-arrest__steps ol li::before {
  content: counter(arrest-step);
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: #dc2626;
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.white-taxi-arrest__steps ol li strong {
  color: #b91c1c;
  display: block;
  margin-bottom: 4px;
  font-size: 0.94rem;
}
.white-taxi-arrest__final {
  display: block;
  background: #fef2f2;
  border-left: 3px solid #dc2626;
  padding: 6px 10px;
  margin-top: 4px;
  font-weight: 600;
  color: #7f1d1d;
}
.white-taxi-arrest__note {
  background: #fffbeb;
  border-left: 4px solid #f59e0b;
  padding: 10px 14px;
  border-radius: 6px;
  margin: 14px 0 0;
  font-size: 0.88rem;
  line-height: 1.7;
  color: #78350f;
}
.white-taxi-arrest__note strong { color: #b45309; }

/* 台灣特權メッセージ (driving-guide 冒頭) */
.drive-privilege {
  background: linear-gradient(135deg, #fef9c3 0%, #fef2f2 50%, #dbeafe 100%);
  border: 2px solid #fbbf24;
  border-radius: 12px;
  padding: 22px 26px;
  margin: 16px 0 24px;
  position: relative;
  overflow: hidden;
}
.drive-privilege::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #dc2626 0%, #dc2626 50%, #1d4ed8 50%, #1d4ed8 100%);
}
.drive-privilege__flag {
  font-size: 2rem;
  text-align: center;
  margin: 8px 0 12px;
  letter-spacing: 0.1em;
}
.drive-privilege__title {
  text-align: center;
  font-size: 1.2rem !important;
  color: #b45309 !important;
  margin: 0 0 14px !important;
  font-weight: 800 !important;
}
.drive-privilege__title::before { display: none !important; }
.drive-privilege__lead {
  text-align: center;
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 16px;
  color: var(--c-ink, #1a1a1a);
}
.drive-privilege__lead a {
  color: #dc2626;
  font-weight: 700;
  text-decoration: underline;
}
.drive-privilege__special {
  background: #fff;
  border-radius: 8px;
  padding: 16px 20px;
  border: 1px solid #fde68a;
  box-shadow: 0 2px 6px rgba(0,0,0,.04);
}
.drive-privilege__special h3 {
  margin: 0 0 10px !important;
  font-size: 1.02rem !important;
  color: #b45309 !important;
  font-weight: 700 !important;
}
.drive-privilege__special p {
  font-size: 0.93rem;
  line-height: 1.8;
  color: var(--c-ink-mid, #4b5563);
  margin: 8px 0;
}
.drive-privilege__special strong {
  color: var(--c-ink, #1a1a1a);
}
.drive-privilege__call {
  background: #fffbeb;
  border-left: 4px solid #f59e0b;
  padding: 12px 16px;
  border-radius: 6px;
  margin: 14px 0 0 !important;
  font-size: 0.96rem !important;
  color: #78350f !important;
  font-weight: 500;
}
.drive-privilege__call strong {
  color: #b45309 !important;
}

/* 標識出典クレジット */
.drive-sign__source {
  font-size: 0.74rem;
  color: var(--c-ink-sub, #6b7280);
  margin: 12px 0 0;
  line-height: 1.55;
  background: #f8fafc;
  padding: 8px 12px;
  border-radius: 4px;
}
.drive-sign__source a { color: var(--c-blue, #0066cc); }

/* 北海道特有の注意標識サブセクション */
.drive-signs__subhead {
  margin: 28px 0 6px !important;
  font-size: 1.1rem !important;
  color: var(--c-ink, #1a1a1a) !important;
  padding-bottom: 6px;
  border-bottom: 2px solid #fcd34d;
}
.drive-signs__subhead::before { display: none !important; }
.drive-signs-grid--hokkaido {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.drive-sign--hokkaido {
  border-left: 4px solid #f59e0b;
  background: #fffbeb;
}
.drive-sign__icon--photo {
  flex: 0 0 120px !important;
  width: 120px !important;
  height: 80px !important;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #e5e7eb;
}
.drive-sign--bear {
  background: #fff5f5;
  border-left-color: #dc2626;
}

/* 裏情報リンク (footer copyright row、ひっそり) */
.site-footer__inside {
  font-size: 0.74rem;
  opacity: 0.55;
}
.site-footer__inside a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.site-footer__inside a:hover {
  opacity: 1;
  color: #fff;
}

/* プロフィール: 經歷ステップ */
.profile-career {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  counter-reset: career;
}
.profile-career li {
  display: flex;
  gap: 14px;
  padding: 12px 16px;
  margin: 6px 0;
  background: #fff;
  border-left: 3px solid #d33;
  border-radius: 6px;
  align-items: flex-start;
}
.profile-career__step {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #d33;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.92rem;
}
.profile-career li > div {
  flex: 1;
}
.profile-career li strong { color: #1a1a1a; font-size: 0.96rem; }
.profile-career li small { color: #6b7280; font-size: 0.84rem; line-height: 1.65; }
.profile-career__note {
  background: #f9fafb;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 0.88rem;
  color: #4b5563;
  line-height: 1.7;
  margin: 14px 0 0;
}

.profile-callout {
  background: linear-gradient(135deg, #fef3c7 0%, #fef2f2 100%);
  border-left: 4px solid #f59e0b;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 0.92rem;
  line-height: 2;
  color: #78350f;
  margin: 14px 0 0;
}
/* ====== Agoda 検索パネル ======
   配置場所: public/assets/style.css の末尾に追記 → cache buster 更新
   ============================== */

.agoda-search {
  background: linear-gradient(135deg, #ff385c 0%, #e11d48 100%);
  border-radius: 12px;
  padding: 24px 22px 18px;
  margin: 28px 0;
  color: #fff;
  box-shadow: 0 4px 18px rgba(225,29,72,0.18);
}
.agoda-search__header { margin-bottom: 16px; }
.agoda-search__pr {
  background: rgba(0,0,0,0.25);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.agoda-search__title {
  font-size: 1.4rem;
  margin: 8px 0 4px;
  color: #fff;
}
.agoda-search__lead {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.92);
  margin: 0;
}

.agoda-search__form {
  background: rgba(255,255,255,0.97);
  border-radius: 8px;
  padding: 14px 16px;
}
.agoda-form__row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: flex-end;
}
.agoda-form__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1 140px;
  min-width: 0;
}
.agoda-form__field--small {
  flex: 0 0 90px;
}
.agoda-form__field span {
  font-size: 0.74rem;
  font-weight: 600;
  color: #4b5563;
}
.agoda-form__field input,
.agoda-form__field select {
  border: 1px solid #d1d5db;
  border-radius: 5px;
  padding: 8px 10px;
  font-size: 0.92rem;
  background: #fff;
  font-family: inherit;
  color: #111827;
  min-height: 38px;
}
.agoda-form__field input:focus,
.agoda-form__field select:focus {
  outline: 2px solid #e11d48;
  outline-offset: 1px;
}
.agoda-form__submit {
  background: #111827;
  color: #fff;
  border: 0;
  padding: 11px 22px;
  border-radius: 6px;
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
  min-height: 40px;
  flex: 0 0 auto;
  transition: transform .08s ease, background .15s ease;
}
.agoda-form__submit:hover { background: #1f2937; }
.agoda-form__submit:active { transform: scale(0.97); }

.agoda-search__status {
  margin-top: 14px;
  padding: 10px 14px;
  background: rgba(0,0,0,0.18);
  border-radius: 6px;
  font-size: 0.9rem;
  color: #fff;
}
.agoda-spinner {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: agodaSpin 0.7s linear infinite;
  margin-right: 6px;
  vertical-align: -2px;
}
@keyframes agodaSpin { to { transform: rotate(360deg); } }

.agoda-search__results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.agoda-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  color: #111827;
  border-radius: 9px;
  overflow: hidden;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.agoda-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}
.agoda-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: #e5e7eb;
  background-size: cover;
  background-position: center;
}
.agoda-card__body { padding: 12px 14px 14px; }
.agoda-card__name {
  font-size: 0.96rem;
  font-weight: 700;
  margin: 0 0 4px;
  line-height: 1.3;
  color: #111827;
}
.agoda-card__meta {
  font-size: 0.78rem;
  color: #6b7280;
  margin: 0 0 6px;
}
.agoda-card__stars { color: #f59e0b; letter-spacing: 1px; }
.agoda-card__amenities {
  font-size: 0.76rem;
  color: #6b7280;
  margin: 0 0 8px;
}
.agoda-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin: 4px 0 8px;
}
.agoda-card__currency {
  font-size: 0.76rem;
  color: #6b7280;
  font-weight: 600;
}
.agoda-card__rate {
  font-size: 1.25rem;
  font-weight: 800;
  color: #e11d48;
}
.agoda-card__crossed {
  font-size: 0.78rem;
  color: #9ca3af;
  text-decoration: line-through;
}
.agoda-card__discount {
  background: #fef3c7;
  color: #b45309;
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 700;
}
.agoda-card__cta {
  display: inline-block;
  font-size: 0.82rem;
  color: #e11d48;
  font-weight: 700;
}

.agoda-search__notice {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.78);
  margin: 14px 0 0;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .agoda-form__field { flex: 1 1 calc(50% - 5px); }
  .agoda-form__field--small { flex: 1 1 calc(50% - 5px); }
  .agoda-form__submit { flex: 1 1 100%; }
  .agoda-card__rate { font-size: 1.1rem; }
}

/* ====== KKday バナー ====== */
.kkday-banner {
  background: linear-gradient(135deg, #00BFA5 0%, #00796B 100%);
  border-radius: 8px;
  margin: 16px 0;
  padding: 0;
  color: #fff;
  box-shadow: 0 2px 10px rgba(0,121,107,0.18);
  overflow: hidden;
}
.kkday-banner__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  flex-wrap: wrap;
  min-height: 64px;
}
.kkday-banner__pr {
  background: rgba(0,0,0,0.28);
  color: #fff;
  padding: 3px 9px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.kkday-banner__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 180px;
}
.kkday-banner__brand {
  font-size: 0.7rem;
  font-weight: 800;
  color: #B2FFE8;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.kkday-banner__title {
  font-size: 0.96rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}
.kkday-banner__lead {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.4;
}
.kkday-banner__cta {
  background: #fff;
  color: #00695C !important;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
  white-space: nowrap;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.kkday-banner__cta:hover {
  background: #E0F7F4;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}
.kkday-banner__cta:active {
  transform: translateY(0);
}
@media (max-width: 560px) {
  .kkday-banner__inner { padding: 14px 16px; }
  .kkday-banner__cta { width: 100%; text-align: center; }
}

/* ====== Kiwitaxi バナー ====== */
.kiwitaxi-banner {
  background: linear-gradient(135deg, #00C9A7 0%, #1E88E5 100%);
  border-radius: 8px;
  margin: 16px 0;
  padding: 0;
  color: #fff;
  box-shadow: 0 2px 10px rgba(30,136,229,0.18);
  overflow: hidden;
}
.kiwitaxi-banner__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  flex-wrap: wrap;
  min-height: 64px;
}
.kiwitaxi-banner__pr {
  background: rgba(0,0,0,0.28);
  color: #fff;
  padding: 3px 9px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.kiwitaxi-banner__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 180px;
}
.kiwitaxi-banner__brand {
  font-size: 0.78rem;
  font-weight: 800;
  color: #FFEB9C;
  letter-spacing: 0.06em;
}
.kiwitaxi-banner__title {
  font-size: 0.96rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}
.kiwitaxi-banner__lead {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.4;
}
.kiwitaxi-banner__cta {
  background: #fff;
  color: #1565C0 !important;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
  white-space: nowrap;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.kiwitaxi-banner__cta:hover {
  background: #E3F2FD;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}
.kiwitaxi-banner__cta:active { transform: translateY(0); }
@media (max-width: 560px) {
  .kiwitaxi-banner__inner { padding: 14px 16px; }
  .kiwitaxi-banner__cta { width: 100%; text-align: center; }
}

/* ====== eSIM 比較バナー ====== */
.esim-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 10px;
  margin: 16px 0;
  padding: 18px 20px 20px;
  color: #fff;
  box-shadow: 0 3px 14px rgba(22,33,62,0.22);
}
.esim-banner__header { margin-bottom: 14px; }
.esim-banner__pr {
  background: rgba(255,255,255,0.18);
  color: #fff;
  padding: 3px 9px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: inline-block;
  margin-bottom: 8px;
}
.esim-banner__title {
  font-size: 1.08rem;
  margin: 0 0 4px;
  color: #fff;
}
.esim-banner__lead {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.82);
  margin: 0;
  line-height: 1.5;
}
.esim-banner__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}
.esim-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  padding: 14px 16px 12px;
  color: #fff;
  text-decoration: none;
  transition: transform .12s ease, background .18s ease, border-color .18s ease;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.esim-card:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.32);
  transform: translateY(-2px);
}
.esim-card__brand {
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}
.esim-card--yesim .esim-card__brand { color: #4FC3F7; }
.esim-card--saily .esim-card__brand { color: #FFD54F; }
.esim-card__feat {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.84);
  line-height: 1.4;
}
.esim-card__cta {
  margin-top: 8px;
  align-self: flex-start;
  background: #fff;
  color: #1a1a2e !important;
  padding: 7px 14px;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 700;
}
@media (max-width: 520px) {
  .esim-banner__cards { grid-template-columns: 1fr; }
  .esim-card__cta { width: 100%; text-align: center; }
}

/* eSIM 3列対応 + Airalo カラー + バッジ */
.esim-banner__cards--3 { grid-template-columns: 1fr 1fr 1fr; }
.esim-card--airalo .esim-card__brand { color: #F06292; }
.esim-card--airalo {
  position: relative;
  border-color: rgba(240,98,146,0.4);
  background: rgba(240,98,146,0.08);
}
.esim-card__badge {
  position: absolute;
  top: -8px;
  right: 10px;
  background: #F06292;
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(240,98,146,0.4);
}
@media (max-width: 760px) {
  .esim-banner__cards--3 { grid-template-columns: 1fr; }
}

/* === eSIM 3列タイト化（無駄スペース排除）=== */
.esim-banner {
  padding: 16px 16px 18px;
}
.esim-banner__cards,
.esim-banner__cards--3 {
  gap: 10px;
  margin-top: 12px;
}
.esim-banner__cards--3 .esim-card {
  padding: 12px 13px 12px;
  gap: 4px;
}
.esim-banner__cards--3 .esim-card__brand {
  font-size: 1rem;
}
.esim-banner__cards--3 .esim-card__feat {
  font-size: 0.74rem;
  line-height: 1.35;
}
.esim-banner__cards--3 .esim-card__cta {
  padding: 6px 12px;
  font-size: 0.78rem;
  margin-top: 6px;
}
.esim-banner__cards--3 .esim-card__badge {
  top: -7px;
  right: 8px;
  font-size: 0.62rem;
  padding: 2px 7px;
}
/* 中間幅では 2 列、狭い画面で 1 列 */
@media (max-width: 720px) and (min-width: 521px) {
  .esim-banner__cards--3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .esim-banner__cards--3 { grid-template-columns: 1fr; }
}

/* ====== 聖地巡禮ページ専用 ====== */
.feature-theme--purple { --c-accent: #6A1B9A; --c-accent-light: #AB47BC; }
.feature-theme--purple .feature-badge { background: #AB47BC; color: #fff; }
.feature-theme--purple .feature-title { color: #4A148C; }
.feature-theme--purple .feature-toc__no { background: #6A1B9A; color: #fff; }

.seichi-item {
  background: #fff;
  border-radius: 12px;
  padding: 0;
  margin: 32px 0;
  box-shadow: 0 2px 12px rgba(106,27,154,0.08);
  border-top: 4px solid #AB47BC;
  overflow: hidden;
}
.seichi-item__hero {
  position: relative;
  aspect-ratio: 16/9;
  background: #f3e5f5;
  overflow: hidden;
}
.seichi-item__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.seichi-item__hero-attr {
  position: absolute;
  bottom: 6px;
  right: 8px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 0.68rem;
}
.seichi-item__header {
  padding: 22px 24px 18px;
  border-bottom: 1px solid #f3e5f5;
}
.seichi-item__rank {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.seichi-item__rank-no {
  background: #6A1B9A;
  color: #fff;
  padding: 3px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.seichi-item__category {
  font-size: 0.84rem;
  color: #6A1B9A;
  font-weight: 600;
}
.seichi-item__title {
  font-size: 1.6rem;
  margin: 0 0 6px;
  line-height: 1.3;
  color: #4A148C;
}
.seichi-item__title-sub {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: #6b7280;
  margin-top: 4px;
}
.seichi-item__title-sub i {
  font-style: italic;
  color: #9CA3AF;
}
.seichi-item__tagline {
  font-size: 1rem;
  color: #4b5563;
  margin: 10px 0 16px;
  line-height: 1.6;
  font-style: italic;
}
.seichi-item__credits {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 4px 14px;
  font-size: 0.84rem;
  margin: 0;
  background: #faf5ff;
  padding: 12px 14px;
  border-radius: 6px;
}
.seichi-item__credits dt {
  color: #6b7280;
  font-weight: 600;
}
.seichi-item__credits dd {
  margin: 0;
  color: #1f2937;
}
.seichi-item__body {
  padding: 20px 24px 24px;
}
.seichi-item__h3 {
  font-size: 1.08rem;
  color: #4A148C;
  margin: 18px 0 8px;
  padding-left: 8px;
  border-left: 3px solid #AB47BC;
}
.seichi-item__h3:first-child { margin-top: 0; }
.seichi-item__highlight {
  background: linear-gradient(135deg, #f3e5f5 0%, #fce4ec 100%);
  border-radius: 6px;
  padding: 12px 16px;
  margin: 14px 0;
}
.seichi-item__highlight-label {
  display: inline-block;
  background: #6A1B9A;
  color: #fff;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.seichi-item__highlight p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
}
.seichi-locations {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}
.seichi-locations li {
  padding: 8px 0;
  border-bottom: 1px dashed #e5e7eb;
  font-size: 0.92rem;
}
.seichi-locations li:last-child { border-bottom: 0; }
.seichi-locations__ja {
  color: #6b7280;
  font-size: 0.84rem;
}
.seichi-locations__type {
  color: #9333ea;
  font-size: 0.78rem;
  font-weight: 600;
}
.seichi-item__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #f3e5f5;
}
.seichi-item__btn {
  background: #6A1B9A;
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background .15s ease, transform .08s ease;
}
.seichi-item__btn:hover {
  background: #4A148C;
  transform: translateY(-1px);
}
.seichi-item__btn--secondary {
  background: #fff;
  color: #6A1B9A !important;
  border: 2px solid #6A1B9A;
}
.seichi-item__btn--secondary:hover {
  background: #f3e5f5;
}
@media (max-width: 600px) {
  .seichi-item__header { padding: 18px 16px 14px; }
  .seichi-item__body { padding: 16px 16px 20px; }
  .seichi-item__title { font-size: 1.3rem; }
  .seichi-item__credits { grid-template-columns: 1fr; gap: 2px; padding: 10px 12px; }
  .seichi-item__credits dt { margin-top: 6px; }
}
