body {
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  background-color: #fffbe7;
  text-align: center;
}

header h1 {
  color: purple;
  font-size: 2.5em;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1em;
  padding: 0;
}

nav li a {
  background-color: #cce5ff;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  color: black;
  font-weight: bold;
}

nav li a:hover {
  background-color: #b3d7ff;
  transform: scale(1.05);
  transition: all 0.2s ease;
}

section {
  margin-top: 30px;
}

.map-image {
  max-width: 90%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

footer {
  margin-top: 40px;
  padding: 20px;
  background-color: #f0e5ff;
  color: #333;
  font-size: 0.9em;
}
section ul {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
  padding-left: 1em;
  list-style: disc;
}
.buttons a {
  display: inline-block;
  padding: 24px 24px;
  /* 上下12px・左右24pxの余白 */
  font-size: 24px;
  /* 文字サイズ */
  background-color: #004cffff;
  /* 背景色（青） */
  color: white;
  /* 文字色 */
  text-decoration: none;
  /* 下線を消す */
  border-radius: 8px;
  /* 角を丸く */
  margin: 10px;
  /* ボタン間の余白 */
  transition: background-color 0.3s;
}

.buttons a:hover {
  background-color: #0056b3;
  /* ホバー時の色 */
}