button {
  width: 30cem;
  height:2em;
  font-size     : 20pt;
}

.button {
  display       : inline-block;
  border-radius : 10%;          /* 角丸       */
  font-size     : 20pt;        /* 文字サイズ */
  text-align    : center;      /* 文字位置   */
  cursor        : pointer;     /* カーソル   */
  padding       : 24px 24px;   /* 余白       */
  background    : #000066;     /* 背景色     */
  color         : #ffffff;     /* 文字色     */
  line-height   : 10em;         /* 1行の高さ  */
  transition    : .3s;         /* なめらか変化 */
  border        : 2px solid #000066;    /* 枠の指定 */
}
.button:hover {
  box-shadow    : none;        /* カーソル時の影消去 */
  color         : #000066;     /* 背景色     */
  background    : #ccccff;     /* 文字色     */
}
.button:disabled {
  background    : #888;
  color         : #ffffff;     /* 文字色     */
  border        : 2px solid #555555;    /* 枠の指定 */
}




h1 {
  padding: 1rem 2rem;
  border-top: 3px solid #000;
  background: #c0c0ff;
}


h2 {
  padding: 1rem 2rem;
  border-top: 3px solid #000;
  background: #f4f4f4;
}

input {
  font-size: 125%;
}
textarea {
  font-size: 150%;
}

select {
  font-size: 125%;
}

  
table{
  border-spacing: 0;
}
  
table th{
  border-bottom: solid 2px #fb5144;
  padding: 10px 0;
}
  
table td{
  border-bottom: solid 2px #ddd;
  text-align: left;
  padding: 10px 0;
}
