header {
  margin-top: 20px;
  margin-bottom: 24px;
}
header h1 {
  text-indent: -9999px;
  width: 600px;
  height: 100px;
  background: url(../images/title.gif) no-repeat left top;
  background-size: contain;
  margin: 0 auto 12px auto;
}

main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
main ul#listBox {
  width: 400px;
}
main ul#listBox li a {
  display: flex;
}
main ul#listBox li a span {
  display: block;
}
main ul#listBox li a span:first-child {
  width: 3.6em;
  text-align: right;
}
main ul#listBox li a span:last-child {
  width: calc(100% - 3.6em);
}
main #castBox {
  width: 360px;
}
main #castBox .chara {
  display: grid;
  grid-template-columns: 70px auto;
  grid-template-rows: 70px auto;
  justify-content: space-between;
  align-items: flex-start;
  row-gap: 8px;
}
main #castBox .chara > img {
  grid-area: 1/1/2/2;
  justify-self: center;
  align-self: center;
}
main #castBox .chara > h3 {
  grid-area: 1/2/2/3;
  justify-self: center;
  align-self: flex-end;
  padding-bottom: 0.5em;
}
main #castBox .chara > p {
  grid-area: 2/1/3/3;
  align-self: flex-start;
}
main #castBox .chara.hanamaru {
  margin-bottom: 30px;
}
main #castBox .chara.kotora {
  grid-template-rows: 60px auto;
}

#total-pv {
  text-align: right;
  color: #FF9933;
  padding: 0.3em 1em;
}

footer #linkBox {
  display: flex;
  justify-content: right;
  background-color: #F5D668;
  padding: 0.3em;
}
footer #linkBox a {
  display: inline-block;
  background-color: #FBEFC8;
  color: #815B2D;
  text-decoration: none;
  padding: 0.3em 1em;
}
footer #linkBox a:last-child {
  margin-left: 1em;
}