/* 共通設定 */
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  font-size: 16px;
  background: #f4f4f4;
  color: #333;
  padding: 1em;
  box-sizing: border-box;
}

/* リンク */
a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* スポットカード */
.spot {
  background: white;
  border-radius: 12px;
  padding: 1em;
  margin: 1em 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* ボタン */
button {
  display: inline-block;
  background-color: #007bff;
  color: white;
  padding: 0.6em 1.2em;
  font-size: 1em;
  border: none;
  border-radius: 8px;
  margin-top: 0.5em;
  cursor: pointer;
  transition: background 0.2s ease;
}

button:hover {
  background-color: #0056b3;
}

/* タイトル */
h1, h2 {
  font-size: 1.4em;
  margin-top: 0.2em;
  margin-bottom: 0.5em;
}

/* 画像レスポンシブ */
img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* レスポンシブ */
@media screen and (max-width: 480px) {
  body {
    font-size: 15px;
    padding: 0.5em;
  }

  button {
    width: 100%;
  }

  .spot {
    padding: 0.8em;
  }
}
