body {
  font-family: sans-serif;
  margin: 0;
  background: #f0f0f0;
}

/* タイトル */
h1 {
  padding: 16px;
  margin: 0;
}

/* 地図 */
#map {
  height: 300px;
  margin: 0 12px 12px;
  border-radius: 12px;
  overflow: hidden;
}

/* カードコンテナ */
#cards {
  display: grid;

  /* ★ 自動レスポンシブ（重要） */
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));

  gap: 12px;
  padding: 12px;
}

/* カード */
.card {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* タイトル */
.card h3 {
  margin: 0 0 8px;
}

/* メタ情報 */
.meta {
  font-size: 13px;
  color: #555;
  margin-bottom: 4px;
}

/* 指数バー */
.bar {
  margin-top: 6px;
  padding: 8px;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  text-align: center;
}

/* 色分け */
.cold {
  background: #4a90e2;
}

.mid {
  background: #5cb85c;
}

.hot {
  background: #e74c3c;
}

/* ===================== */
/* 📱 スマホ最適化 */
/* ===================== */
@media (max-width: 600px) {

  #map {
    height: 220px;
  }

  /* ★ スマホでも2列維持 */
  #cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .card {
    padding: 10px;
    font-size: 14px;
  }

  .bar {
    padding: 6px;
    font-size: 13px;
  }
}