@charset "utf-8";
/* CSS Document */

/* テーブル全体 */
.line-table {
  border-collapse: collapse; /* セル間の隙間をなくす */
}

/* セル共通のスタイル */
.line-table td {
  border-bottom: 1px solid #696969; /* 下線のみ */
  font-size: 12pt;
  line-height: 1.4; /* 行間を1.4倍に */
  padding: 5px;  /* 高さの余白を5px(約1.3mm) */
  border-top: none;
  border-left: none;
  border-right: none;
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}

/* 行の下線（必要なら残す） */
.line-table tr {
  border-bottom: 1px solid #696969;
}
/* 2〜4列目の右側に余白を追加 */
.line-table td:nth-child(2),
.line-table td:nth-child(3),
.line-table td:nth-child(4),
.line-table td:nth-child(5) {
  padding-right: 8px;
}
