@charset "utf-8";
body{
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;  
}
#container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100dvh;
}
header{
  padding: 8px;
  width: 100%;
  box-sizing: border-box;
  border-bottom: #ccc solid 1px;
}
.title{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #333;
}
.title p.god{
  font-size: 36px;
  font-weight: 700;
  color: #cccc00;
}
#contents{
  flex-shrink: 0;
  flex-grow: 1;
  padding: 16px;
}
#contents ul{
  margin: 0;
  padding: 0;
  list-style-type: none;
  list-style-position: inside;
}
footer{
  padding: 8px;
  width: 100%;
  box-sizing: border-box;
  border-top: #ccc solid 1px;
  text-align: center;
  font-size: 16px;
  color: #333;
}