
table {
  word-wrap: break-word;
  table-layout:fixed;
  width:auto;              /* 幅指定 */
  height: 80px;               /* 高さ指定 */
}

._sticky {
  position: sticky;
  top: 0;
  left: 0;
  background: none;
  border-top: none;
  border-bottom: none;
}
._sticky:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  background: #ffeb3b;
  z-index: -1;
}

table_detail {
  word-wrap: break-word;
  table-layout:fixed;
  width:  500px;              /* 幅指定 */
  height: 50px;               /* 高さ指定 */
}

.container-modal {
  background-color: initial;
  border: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
}
.container-modal::backdrop {
  background-color: rgba(0, 0, 0, .5);
}
.wrapper-modal {
  background: rgba(255, 255, 255, 1);
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .3);
  height: 320px;
  left: 50%;
  opacity: 1;
  padding: 40px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity .3s;
  width: 480px;
  z-index: 20;
}

label input {
  display: none; /* デフォルトのinputは非表示にする */
}

label span {
  color: #333; /* 文字色を黒に */
  font-size: 12px; /* 文字サイズを14pxに */
  border: 1px solid #333; /* 淵の線を指定 */
  border-radius: 20px; /* 角丸を入れて、左右が丸いボタンにする */
  padding: 5px 10px; /* 上下左右に余白をトル */
}
label input:checked + span {
  color: #0b0b0b; /* 文字色を白に */
  background: #f60505; /* 背景色を薄い赤に */
  border: 1px solid #FBB; /* 淵の線を薄い赤に */
}