@charset "UTF-8";
.headerClass {
 z-index: 999;
  /* position: sticky; */
  /* top: 0; */
  line-height: 1.3;
  background-color: #fff;
  border-bottom: 20px solid #0092d7;
  border-image: linear-gradient(45deg, var(--color-primary) 0%, var(--color-secondary) 50%);
  border-image-slice: 1;
}
.pageSection {
  margin-top: 80px;
}
.pageTitle_h1 {
  margin-top: 0;
  margin-bottom: 50px;
  /* font-size: 1.875rem; */
  font-size: clamp(1.5rem, 1.035rem + 1.75vw, 1.875rem);
  font-weight: bold;
  text-align: center;
}
.pageTitle_h2 {
  padding-bottom: 0.25em;
  margin-bottom: 1.5em;
  font-size: 1.5rem;
  font-weight: bold;
  border-bottom: 8px solid #0092d7;
  border-image: linear-gradient(45deg, var(--color-primary) 0%, var(--color-secondary) 50%);
  border-image-slice: 1;
}

.table.tableGreen {
  --table-color-light: var(--color-text);
  --table-bg-color-light: #cfe9e1;
  --table-color-dark: #fff;
  --table-bg-color-dark: #159da2;
}

.table.tableBlueGreen {
  --table-color-light: var(--color-text);
  --table-bg-color-light: #cddee1;
  --table-color-dark: #fff;
  --table-bg-color-dark: #63989e;
}

.tableWrapper {
  margin: 0 0 3rem;
  overflow-x: auto;
}
@media print {
  .tableWrapper {
    overflow-x: visible;
  }
}

.tableWrapper > .table {
  min-width: 800px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  line-height: 1.3;
}

.table.tableStriped > tbody > tr:nth-of-type(even) {
  background-color: #f9f9f9;
}

.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td {
  padding: 0.75em 1em;
  border: 1px solid #c1c6c9;
}

.table.dataTable > thead > tr > th,
.table.dataTable > thead > tr > td,
.table.dataTable > tbody > tr > th,
.table.dataTable > tbody > tr > td {
  padding: 0.5em 0.75em;
  text-align: center;
}

.table > thead > tr > th,
.table > tbody > tr > th {
  font-weight: normal;
}

.table caption {
  padding: 0.75em 2em;
  text-align: left;
}

.table p {
  line-height: 1.3;
}

.table .bgLight {
  color: var(--color-light, #231815);
  background-color: var(--table-bg-color-light, #eee);
}
.table .bgDark {
  color: var(--table-color-dark, #fff);
  background-color: var(--table-bg-color-dark, #777);
}

/* 蛻励�蟷�ｒ繝�く繧ｹ繝医↓蜷医ｏ縺帙ｋ */
.table .tableNowrap {
  width: 0;
  text-align: center;
  white-space: nowrap;
}

.table .dtNum {
  text-align: center;
  font-weight: bold;
}

.tableTitle {
  margin: 0 0 0.5em 0;
  font-size: 1rem;
  font-weight: bold;
}

.tableAnnotation {
  margin-bottom: 0.5em;
  font-size: 0.875rem;
  line-height: 1.3;
}

.tableWrapper figcaption {
  margin: 0.75em 0;
  font-size: 0.875rem;
}


