@charset "utf-8";

table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
td {
  text-align: center;
  vertical-align: middle; 
}
tr[name="not_target"]{
  display: none;
}

.sticky_table thead td {
  /* 縦スクロール時に固定する */
  position: -webkit-sticky;
  position: sticky;
  /* 高さが変わらないよう改行させない */
  /*white-space: nowrap;*/
}
.sticky_table thead tr:nth-child(1) td {
  top: 0;
}
.sticky_table thead tr:nth-child(2) td {
  top: 1.5rem; /* 2行目は1行目の高さの位置に固定する */
}
.sticky_table thead tr:nth-child(3) td {
  top: 3rem; /* 3行目は1〜2行目の高さの位置に固定する */
}
