/* 全体のスタイル */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f8f8f8;
  color: #333;
}

/* コンテンツ全体のレイアウト */
.container {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* タイトル */
h1 {
  text-align: center;
  font-size: 1.8em;
  color: #333;
  margin-bottom: 10px;
}

/* 更新日 */
.update-date {
  text-align: center;
  font-size: 0.9em;
  color: #666;
  margin-bottom: 20px;
}

/* セクションタイトル */
h2 {
  border-left: 5px solid #007BFF;
  padding-left: 10px;
  font-size: 1.2em;
  margin-top: 20px;
}

/* リスト */
ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 8px;
}

/* メールリンク */
a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* スマホ対応 */
@media (max-width: 600px) {
  .container {
      margin: 10px;
      padding: 15px;
  }
}
