@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600;800&family=Fredoka:wght@400;600;700&display=swap');

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

body {
  font-family: 'Noto Sans JP', sans-serif;
  min-height: 100vh;
  color: #333;
  line-height: 1.7;
}

/* ====== ヘッダー ====== */
.area-header {
  position: relative;
  padding: 60px 24px 40px;
  text-align: center;
  overflow: hidden;
}
.area-header::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
}
.back-link {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #555;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  transition: all 0.2s;
  z-index: 5;
}
.back-link:hover {
  background: #fff;
  color: #333;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* 右上のフォトギャラリーリンク */
.gallery-link {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #d48fa0;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  transition: all 0.2s;
  z-index: 5;
}
.gallery-link:hover {
  background: #fff;
  color: #b97183;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* ページ内ナビゲーションバー（上部固定） */
.page-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e8ecf4;
  padding: 8px 16px;
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.page-nav a {
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #666;
  text-decoration: none;
  transition: all 0.15s;
}
.page-nav a:hover { background: #f5f5f5; color: #1a1a2e; }
.page-nav a.active { background: #1a1a2e; color: #fff; }
.area-icon {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 8px;
}
.area-title {
  font-family: 'Fredoka', 'Noto Sans JP', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.area-title-en {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  opacity: 0.5;
  letter-spacing: 0.1em;
}
.area-desc {
  max-width: 640px;
  margin: 16px auto 0;
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.8;
}

/* ====== ヒーロー画像 ====== */
.hero-image {
  max-width: 960px;
  margin: -40px auto 0;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.hero-image-inner {
  width: 100%;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  background: #f0f2f8;
  position: relative;
}
.hero-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.hero-image-inner:hover img {
  transform: scale(1.03);
}
.hero-caption {
  position: absolute;
  bottom: 16px;
  left: 20px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}
@media (max-width: 600px) {
  .hero-image { margin-top: -24px; padding: 0 14px; }
  .hero-image-inner { height: 200px; }
}

/* ====== メインコンテンツ ====== */
.content {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px 60px;
}

/* ====== アトラクション画像 ====== */
.card-thumb {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
  background: #f0f2f8;
  position: relative;
}
.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.card:hover .card-thumb img { transform: scale(1.04); }
.thumb-note {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
}

/* 画像ギャラリーセクション */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin: 16px 0 24px;
}
.photo-strip-item {
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  background: #f0f2f8;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.photo-strip-item:hover img { transform: scale(1.08); }

/* 待ち時間の注記バナー */
.wait-note {
  background: #e3f2fd;
  border-left: 4px solid #1e88e5;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.78rem;
  color: #1565c0;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.5;
}
.wait-note strong { font-weight: 700; }

/* セクションタイトル */
.section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 36px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(0,0,0,0.08);
}
.section-title:first-child {
  margin-top: 0;
}

/* カード共通 */
.card {
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.15s, box-shadow 0.15s;
  border-left: 4px solid transparent;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}
.card-ride { border-left-color: #e53935; }
.card-show { border-left-color: #ff8f00; }
.card-food { border-left-color: #43a047; }
.card-shop { border-left-color: #7b1fa2; }
.card-spot { border-left-color: #1e88e5; }

.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.card-name {
  font-size: 1.05rem;
  font-weight: 800;
}
.card-name-en {
  font-size: 0.75rem;
  color: #999;
  margin-top: 2px;
}

/* バッジ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}
.badge-thrill { background: #ffebee; color: #c62828; }
.badge-family { background: #e8f5e9; color: #2e7d32; }
.badge-child { background: #fff3e0; color: #e65100; }
.badge-popular { background: #fce4ec; color: #ad1457; }
.badge-new { background: #e3f2fd; color: #1565c0; }
.badge-wet { background: #e0f7fa; color: #00838f; }
.badge-show { background: #fff8e1; color: #f57f17; }
.badge-reserve { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.badge-priority { background: #fff8e1; color: #e65100; border: 1px solid #ffe082; }
.badge-walkin { background: #f5f5f5; color: #666; border: 1px solid #ddd; }

.card-desc {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.7;
}

/* 詳細テーブル */
.card-details {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-top: 10px;
  font-size: 0.78rem;
  color: #777;
}
.card-details dt {
  font-weight: 600;
  color: #555;
}
.card-details dd {
  margin: 0;
}
.detail-item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.detail-item .label {
  font-weight: 600;
  color: #888;
}

/* ヒント・TIPSボックス */
.tips-box {
  background: linear-gradient(135deg, #fffde7, #fff8e1);
  border-radius: 14px;
  padding: 18px 22px;
  margin-top: 30px;
  border: 1px solid #fff176;
}
.tips-box h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #f57f17;
}
.tips-box ul {
  list-style: none;
  padding: 0;
}
.tips-box li {
  font-size: 0.85rem;
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
  color: #555;
}
.tips-box li::before {
  content: '💡';
  position: absolute;
  left: 0;
  font-size: 0.8rem;
}

/* ミニマップ（位置表示） */
.mini-map {
  background: #f5f5f5;
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  margin-top: 20px;
}
.mini-map img { max-width: 100%; border-radius: 10px; }

/* フッター */
.area-footer {
  text-align: center;
  padding: 30px 20px;
  font-size: 0.75rem;
  color: #bbb;
}
.area-footer a {
  color: #999;
  text-decoration: none;
}
.area-footer a:hover { color: #555; }

/* ====== レスポンシブ ====== */
@media (max-width: 600px) {
  .area-header { padding: 50px 16px 30px; }
  .area-title { font-size: 1.5rem; }
  .area-icon { font-size: 2.5rem; }
  .content { padding: 20px 14px 40px; }
  .card { padding: 16px 18px; }
  .card-name { font-size: 0.95rem; }
  .section-title { font-size: 1.05rem; }
}
