﻿/* 全体の中央寄せ */
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  font-size: large;
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

/* メインコンテンツ */
main {
  max-width: 800px;
  width: 100%;
  margin: 20px auto;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* 画像の中央寄せ */
img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

/* iframe の中央寄せ */
iframe {
  display: block;
  margin: 10px auto;
  border: none;
  max-width: 100%;
}

li{
  list-style-type: none; /* 点を非表示にする */
  padding-left: 0; /* インデントをリセット */
  margin: 0; /* リスト全体の余白をリセット */
}

/* フッター */
footer {
  max-width: 800px;
  width: 100%;
  margin: 20px auto;
  padding: 20px;
  background-color: #9b9999;
  
  border-radius: 8px;
  text-align: center;
}

.this_area_do_not_use_css_and_javascript {
/* 特定のエリアにスタイルを適用しない */

  all: unset;
  
}


/* レスポンシブ対応 */
@media (max-width: 600px) {
  main, footer {
      margin: 10px;
      padding: 15px;
  }
}
