/* 全体 */
html *{
  box-sizing: border-box;
}
body{
  background-color: rgb(184, 185, 187);
}
.wrapper{
  text-align: center;
  margin: 0 auto 0 auto;
  max-width: 960px;
}
img{
  max-width: 100%;
  height: auto;
}
.footer{
  text-align: center;
  padding: 20px;
  border-top: 3px solid #252525;
}
h4{
  text-align: center;
  padding-top: 20px;
  margin-bottom: 0%;
}
.privacy{
  text-align: left;
  margin-bottom: 30px;
}
.twi{
  margin-top: 16;
}
.twitter{
  width: 400px;
  margin: 0 auto;
  padding: 0 0 20px 0;
}

/* 細かい */
.member{
  line-height: 2;
}
#button{
  display: inline-block;
  text-decoration: none;
  padding: 0.5em 1em;
  background: #2b6dfc;
  color: #000000;
  border-bottom: solid 4px #0e3d66;
  cursor: default;
  margin-top: 40px;
}
#button:hover{
  background: #1b65d3;
  color: #000000;
  border-bottom: solid 4px #092e4e;
  cursor: default;
}
#button:active{
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  border-bottom: none;
}
.question{
  display: inline-block;
  margin-bottom: 50px;
  background: #d8a457;
  padding: 0 50px;
}
.memory{
  margin-top: 50px;
}
#memoryChild{
  border: 1px dotted #000000;
  text-align: left;
  width: 14.5em;
  margin: auto;
  padding: 3px 0 2px 4px;
}

/* 数字入力欄 */
#scoreInput{
  text-align: center;
}
#board{
  text-align: center;
}

/* 説明欄 */
#fifty{
  color: #d11720;
}
#themenumber{
  color: #1e1bfd;
}
h3{
  padding-top: 20px;
  border-top: 3px dashed #2a4d5e;
}

/* スマートフォンcss */
@media(max-width: 767px){
  .wrapper{
    margin: 0 8px;
  }
  .br{
    display: none;
  }
  .twitter{
    width: 80%;
  }
}