@charset "UTF-8";

/* case_table */
main {
  overflow: clip;
}

main section {
  overflow: clip;
}

table.case_table {
  position: relative;
  width: 100%;
    table-layout: fixed;
}

table.case_table thead {
  position: -webkit-sticky;
  position: sticky;
  top: -1px;
}

table.case_table th,
table.case_table td {
  border: 1px solid var(--i_border_color);
  background: #fff;
  padding: 5px 4px;
  font-size: 0.8em;
}

table.case_table th {
  background-color: var(--i_sub2_color);
  text-align: center;
  vertical-align: middle;
}

table.case_table td {
  text-align: center;
}

table.case_table td:first-of-type {
  text-align: left;
}

@media screen and (max-width: 900px) {
  table.case_table {
    table-layout: auto;
  }

  .content_wrapper:has(.case_table) {
    overflow: auto;
  }

  table.case_table th,
  table.case_table td {
    white-space: nowrap;
  }
}