@charset "UTF-8";

/* 全体の初期設定 */
html,
body {
  font-family: "M PLUS 1", sans-serif;
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* ヘッダーのスタイル */
header {
  background-color: rgb(51, 51, 51);
  color: white;
  padding: 5px;
  text-align: left;
}

/* メインコンテンツのスタイル */
main {
  flex: 1;
  padding-left: 40px;
  padding-right: 40px;
}

/* フッターのスタイル */
footer {
  background-color: rgb(51, 51, 51);
  color: white;
  text-align: center;
}

h2 {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #bbbbbb;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

li {
  padding: 8px;
  text-align: center;
  font-size: 20px;
}

/* リンクのスタイル */
a {
  color: #f80;
  text-decoration: none;
  font-weight: 700;
}

a:hover {
  text-decoration: underline;
}

/* ロゴのスタイル */
.logo {
  width: 20%;
  margin-left: 20%;
}

/* 注釈のスタイル */
.note {
  text-align: center;
  font-size: 15px;
}

/* コピーライトのスタイル */
.copy {
  font-size: 15px;
}
