@charset "UTF-8";
.toggle-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Noto Sans JP", sans-serif;
}

.toggle-text {
  color: #0b7f2c;
  font-weight: 700;
  font-size: 14px;
}
@media (max-width: 768px) {
  .toggle-text {
    font-size: 12px;
  }
}

/* トグルの見た目をlabelで表現 */
.switch-label {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 22px;
  background: #d3d3d3; /* オフの色 */
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.2s ease;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 768px) {
  .switch-label {
    width: 56px;
    height: 24px;
  }
}

/* 丸いノブ部分 */
.switch-label::after {
  content: "";
  position: absolute;
  top: 2.5px;
  left: 3px;
  width: 19px;
  height: 19px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ON時の状態 */
.toggled.switch-label,
.toggled.switch-label:focus{
  background: #00822D;
}

/* ノブが右にスライド */
.toggled.switch-label::after {
  transform: translateX(31px);
}

.switch-label:focus {
  background-color: #d3d3d3;
}

.subArea {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ebebeb;
}
.subArea h3 {
  border-bottom: none;
  font-size: 18px;
  font-weight: 700;
  color: #00822D;
  margin: 0;
  line-height: 1;
}
.subArea2 {
  margin-top: 70px;
}
@media (max-width: 768px) {
  .subArea {
    padding-bottom: 0;
    border-bottom: none;
    align-items: center;
  }
  .subArea h3 {
    font-size: 14px;
  }
  .subArea2 {
    margin-top: 40px;
  }
}

#content .summary tr th:nth-of-type(1) {
  color: #fff;
}
#content .summary tr td:nth-of-type(1) {
  font-weight: 700;
}

#content .summary th {
  font-weight: 400;
  text-align: center;
  border-top: 1px solid #c4c0ac;
  border-right: 1px solid #c4c0ac;
  height: 11em;
  position: relative;
  border-radius: 0;
  padding: 0;
}

@-moz-document url-prefix() {
  #content .summary th {
    max-width: 45px;
  }
}
#content .summary th > span { /* IE用 */ /* chrome用 */
  -o-writing-mode: vertical-rl; /* opera用　*/
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
  white-space: nowrap;
  text-decoration: none;
  height: 9.5em;
  color: #333333;
}

#content .summary th > span {
  padding: 0 1em;
}

#content .summary thead th span {
    white-space: pre-line;
}

#content .summary thead:last-of-type th > * {
  padding: 0.5em 0 0;
  color: #fff;
}

#content .summary table td {
  padding: 0.3em 0.2em;
  border-right: 1px solid #ccc;
  border-top: 1px solid #eee;
  white-space: nowrap;
  height: 42px;
}

#content .summary table tr:nth-child(even) {
  background-color: #fffff1;
}

#content .summary table td, #content .summary table th {
  font-size: 14px;
}

@media screen and (max-width: 750px) {
  #content .summary {
    width: 100%;
    overflow: auto;
  }
  #content .summary table {
    width: 1000px;
  }
  #content .summary td {
    padding: 0.5em;
  }
  #content .summary th {
    height: 9em;
  }
}
@media screen and (max-width: 750px) {
  #content .summary th {
    height: 12em;
  }
  #content .summary table th + th {
    width: 5%;
  }
  #content .summary th > span {
    font-size: 85%;
    height: 9em;
  }
  #content .summary table td, #content .summary table th {
    font-size: 13px;
  }
}
#content .summary tbody {
  border-bottom: 1px solid #999;
}

#content .summary table td {
   position: relative;
  border-right: none;
  border-top: none;
}

@media screen and (max-width: 750px) {
  #content .summary table thead tr th:first-child span,
  #content .summary table td {
    font-size: 13px;
  }
}

/* 擬似要素を内側に */
#content .summary table td:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  right: 0;
  width: 1px;
  background: #ebebeb;
}

#content .summary th {
  border-top: none;
  border-right: none;
  position: relative;
}

/* 擬似要素で上下に余白を持たせた縦線 */
#content .summary th:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  right: 0;
  width: 1px;
  background: #EBEBEB; /* 元のborder-rightの色 */
}

#content .summary table {
  border-left: none;
  border-bottom: none;
}

#content .summary thead {
  background: #00822d;
}

#content .summary thead tr {
  background: #00822d;
}

#content .summary table tr:nth-child(even) {
  background: #f6f6f6;
}

#content .summary table td {
  padding: 10px 5px;
}

#content .summary thead tr th:first-child {
  width: 150px;
  max-width: 140px;
}

@media (max-width: 768px) {
  #content .summary thead tr th:first-child {
    width: 65px;
    max-width: none;
  }
}

/* 縦列（列）のハイライト */
#content .summary table th.highlight {
  background-color: rgba(0, 180, 70, 0.1);
}

/* ▼ ハイライトは ::before に敷く（左右を1px広げて段差を消す） */
#content .summary table td::before {
  content: "";
  position: absolute;
  inset: 0; /* 初期は何も塗らない */
  background: transparent;
  z-index: 1; /* 線(2)の下／セル背景の上 */
}

#content .summary table td.highlight::before {
  background: rgba(0, 0, 0, 0.18);
  border: none;
}

#content .summary table tr:nth-child(even) td.highlight::before {
  background: rgba(0, 0, 0, 0.13);
}

#content .summary table td.highlight {
  background: none; /* or 削除 */
}

/* 2. 固定したい「年度」列のヘッダーセル (1列目の<th>) を指定 */
#content .summary table thead tr th:first-child {
  position: sticky;
  left: 0;
  z-index: 10;
  background-color: #00822d;
}
#content .summary table tbody tr td:first-child {
  position: sticky;
  left: 0;
  background-color: #fff;
  z-index: 5;
}

#content .summary table thead {
  position: sticky;
  top: 0;
  z-index: 20;
}

#content .summary table tbody tr:nth-of-type(even) td {
  background: #f6f6f6;
}/*# sourceMappingURL=info-total-records.css.map */