body {
  /*メニューバー*/
  padding-top: 3.5rem;
}

.sticky_table thead th {
  /* 縦スクロール時に固定する */
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  /* tbody内のセルより手前に表示する */
  z-index: 1;
  /*.table th にはborder-topが付き、高さが1px変わってしまう*/
  border-top: none;
}
.sticky_table thead th:first-child {
  /* ヘッダー行内の他のセルより手前に表示する */
  z-index: 2;
}
.sticky_table th:first-child {
  /* 横スクロール時に固定する */
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  /* tbody内のセルより手前に表示する */
  z-index: 1;
}

.nipo_head_style {
  line-height: 1.25;
  font-weight: bold;
}
