@charset "utf-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);

html,
body {
  height: 100%;
  margin: 0;
}

.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  /* 全体を中央に寄せる */
  text-align: center;
  padding: 25px 0;
  border-bottom: 2px solid #000;
}

.header_content {
  /* 中身の幅に合わせて横並びにする */
  display: inline-flex;
  /* 文字の下端で揃える */
  align-items: baseline;
  /* 右方向へ移動 */
  padding-left: 120px;
}

h1 {
  margin: 0;
  font-size: 36px;
  font-weight: bold;
}

.last-updated {
  margin-left: 25px;
  font-size: 12px;
}

main {
  flex: 1;
}

table {
  width: 800px;
  margin: 100px auto;
}

caption {
  font-weight: bold;
  margin-bottom: 10px;
}

td {
  padding: 10px;
}

footer {
  background-color: #000;
  color: #fff;
  padding: 20px;
  text-align: center;
}

footer div {
  font-size: 13px;
}