html {
  font-size: 100%;
}

/* 全体のフォントと背景 */
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9; /* 背景を淡いグレーに */
  color: #333;
}

/* ヘッダーのスタイル */
h1 {
  text-align: center;
  font-size: 2rem;
  color: #4caf50; /* 緑色で強調 */
  margin: 20px 0;
}

/* お知らせセクションのスタイリング */
.notice {
  background: #ffffff; /* 背景色を白に */
  border: 1px solid #ddd; /* 境界線を追加 */
  border-radius: 8px; /* 角を丸く */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 影を追加 */
  margin: 20px auto;
  padding: 20px;
  width: 80%;
  max-width: 700px;
}

/* 日付部分を目立たせる */
.notice .date {
  font-weight: bold;
  color: #4caf50; /* 緑色で視認性を高める */
  margin-bottom: 10px;
}

/* ボタンのスタイル */
.button {
  display: block;
  text-align: center;
  margin: 30px auto;
  background-color: #ff4081; /* 鮮やかなピンク */
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
  width: 200px;
}

.button:hover {
  background-color: #e91e63; /* ホバー時の色 */
  transform: scale(1.05); /* ホバー時に少し拡大 */
}