@charset "Shift_JIS";

* {
  box-sizing: border-box;
}

a img {
  border: none;
}

/* ------------------------------------------------------ */
/* 共通スタイルシート */
/* ------------------------------------------------------ */

/* フォント設定 */
body {
  margin: 0;
  padding: 0;
  font-size: 12px;
  /* 9pt相当 */
  /*font-family: "ＭＳ ゴシック", "MS Gothic", sans-serif*/;
  font-family: Meiryo;
  color: black;
}

select {
  /*font-family: "ＭＳ ゴシック", "MS Gothic", sans-serif;*/
  font-family: Meiryo;
  font-size: 8pt;
}

input {
  /*font-family: "ＭＳ ゴシック", "MS Gothic", sans-serif;*/
  font-family: Meiryo;
}

input.button {
  height: 20px;
}

.d-flex {
  display: flex;
}
/* ------------------------------------------------------ */
/* 基本テーブル設定 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  background-color: #fff;
  font-size: 13px;
}
table th {
  text-align: center;
  font-weight: bold;
}
table td.numeric,
table th.numeric {
  text-align: right;
}
table td,
table th {
  border: 1px solid #333333;
  font-weight: normal;
}
table td.noborder,
table td.nb {
  border: none;
}

/* ------------------------------------------------------ */
.header {
  margin: 0;
  padding: 0;
}

/* タイトル */
.title {
  font-size: 16px;
  font-weight: bold;
}
