@charset "UTF-8";
@font-face {
  font-family: "base-font";
  src: url("../font/GenJyuuGothic-Normal.ttf") format("truetype");
}
@font-face {
  font-family: "base-font";
  src: url("../font/GenJyuuGothic-Bold.ttf") format("truetype");
  font-weight: bold;
}
* {
  box-sizing: border-box;
  font-family: "base-font", arial, sans-serif;
  font-size: 16px;
  font-weight: normal;
  margin: 0;
  padding: 0;
}

:not(a) {
  color: #333;
}

body {
  background-color: #fafdff;
}

article {
  padding: 0 16px;
}

a {
  background-color: inherit;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
}

a.no-decoration {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: underline;
}

h1 {
  font-size: 22px;
}

h2 {
  font-size: 18px;
}

h3 {
  font-size: 20px;
}

h4, h5 {
  font-size: 16px;
}

/* リスト関連 */
ul {
  list-style-type: none;
}

table {
  border-collapse: collapse;
}

td, th {
  background-color: #fff;
  border: 1px solid #bcbcbc;
  padding: 8px 8px;
}

thead td, th {
  background-color: #efefef;
  color: #a0a0a0;
  text-align: center;
  padding: 2px 8px;
}

tbody tr:nth-child(2n) td {
  background-color: #f3f3f3;
}

/* フォーム関連 */
form {
  display: inline;
}

button, textarea, select, input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #d2d2d2;
  border-radius: 2px;
}

input[type=radio], input[type=checkbox] {
  opacity: 0;
  position: absolute;
}