
/* 全体の基本フォントサイズ */
body {
  font-size: 18px; /* 全体を少し大きく */
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* 見出し */
h1 {
  font-size: 28px;
  text-align: center;
  margin: 1rem 0;
}

/* イベントリンク */
.event-link {
  color: #006064;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px; /* リンクも大きめ */
}

.event-link:hover {
  text-decoration: underline;
}

/* イベント画像 */
.event-image {
  width: 80%;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  margin: 1rem 0;
}

/* 戻るボタン */
.button-link {
  display: inline-block;
  padding: 10px 15px;
  background-color: #006064;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
}

.button-link:hover {
  background-color: #004d4d;
}

/* フッター */
footer {
  text-align: center;
  font-size: 14px;
  margin: 2rem 0;
  color: #555;
}
