/*
/* common.css
*/

@charset "utf-8";

/* initialize */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: sans-serif;
}

h1 {
  padding: 0;
}

ol {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  border: none;
}

input[type="text"] {
  height: 35px;
}

input[type="password"] {
  height: 35px;
}

input[type="number"] {
  width: 50px;
  height: 30px;
}

input[type="checkbox"] {
  transform: scale(1.5);
}

/* general */
.wide {
  width: 300px;
}

.semiwide {
  width: 240px;
}

.default {
  width: 120px;
}

.standard {
  width: 80px;
}

.narrow {
  width: 30px;
}

/* tag */
body {
  margin: 0 auto;
}

header {
  text-align: center;
}

header div {
  margin: 15px 0;
  font-size: 1rem;
  font-weight: bold;
}

main {
  margin: 0 auto;
}

table {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
}

table caption {
  text-align: left;
}

table caption a {
  font-size: 0.9rem;
}

table thead tr {
  background-color: #50535d;
  color: #fff;
}

table thead tr th {
  padding: 10px;
  font-size: 0.9rem;
  background-color: #50535d;
  border-right: 2px solid #eee;
}

table tbody tr {
  background-color: #fff;
  border: 2px solid #eee;
}

table tbody tr td {
  padding: 0;
  font-size: 0.9rem;
  border-right: 2px solid #eee;
}

table tfoot tr td {
  padding: 10px 0;
  font-size: 0.9rem;
}

footer {
  max-width: 1240px;
  text-align: center;
}

footer p {
  font-size: 0.8rem;
}