/* サイト全体の基本設定 */
body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.8;
  color: #333333;
  background-color: #fdfdfd;
  max-width: 800px; /* サイトの最大幅を制限して読みやすくする */
  margin: 0 auto;   /* 画面の中央に配置する */
  padding: 40px 20px;
}

/* 見出しのデザイン */
h2 {
  border-bottom: 2px solid #eeeeee;
  padding-bottom: 8px;
  margin-top: 40px;
}

/* リンクの色 */
a {
  color: #0066cc;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* 動画のレスポンシブ対応（16:9） */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 画像や動画を中央寄せにするためのクラス */
.center-content {
  text-align: center;
  margin-bottom: 20px;
}

ol {
  list-style-type: decimal;
}