body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans JP", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.6;
}

/* コンテナ */
.section {
  max-width: 800px;
  margin: 30px auto;
  padding: 24px;
  background: #fff;
  text-align: center;
}

/* 見出し */
h1 {
  font-size: 2.1rem;
  margin-bottom: 8px;
  color: #222;
}

h5 {
  font-size: 1.6rem;
  margin: 24px 0 8px;
  color: #555;
}

/* ボタン */
.btn {
  display: inline-block;
  padding: 12px 20px;
  background: #222;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s;
}
.btn:hover {
  background: #444;
}

.section.title h5 {
  color: #003366;
}

/* 注意事項リスト */
.note-list {
  margin-top: 12px;
  padding-left: 1.2em;
}
.note-list li {
  margin-bottom: 8px;
}

.section.detail {
  text-align: left;
}
.section.detail p.blue {
  color: #003366;
}
.section.notice h5 {
  color: #003366;
}
.section.notice li {
  text-align: left;
  color: #003366;
}

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

/* 画像 */
img {
  max-width: 100%;
  height: auto;
  margin: 16px 0;
}