@charset "UTF-8";

body {
  font-family: Meiryo, sans-serif;
}

.m-tbl__row:nth-child(2n+1) {
  background-color: #ffffff;
}
.m-tbl__text {
  position: relative;
}
.m-tbl__text--circle::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #333333;
  content: "";
}
.m-tbl__title, .m-tbl__text {
  padding: 3px 8px;
}
.m-tbl__title--vertical > span {
  display: inline-block;
  white-space: pre;
  writing-mode: vertical-lr;
}
.m-tbl__hidden-border {
  position: relative;
}
.m-tbl__hidden-border::before {
  display: block;
  position: absolute;
  background-color: #777777;
  content: "";
}
.m-tbl__hidden-border--top::before {
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
}
.m-tbl__hidden-border--left::before {
  top: 0;
  left: -1px;
  width: 1px;
  height: 100%;
}
.m-tbl.uniq-tbl {
  margin-top: 16px;
  border: 1px solid #cccccc;
}
.m-tbl.uniq-tbl .m-tbl__body {
  width: 1232px;
  border: none;
  border-collapse: separate;
  border-spacing: 0;
}
.m-tbl.uniq-tbl .m-tbl__title,
.m-tbl.uniq-tbl .m-tbl__text {
  padding: 3px 8px;
  border: none;
  border-top: none;
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  white-space: nowrap;
}
.m-tbl.uniq-tbl .m-tbl__title--ajust-height,
.m-tbl.uniq-tbl .m-tbl__text--ajust-height {
  z-index: 1;
  position: sticky;
  top: 0;
  left: 0;
}
.m-tbl.uniq-tbl .m-tbl__title--ajust-height:nth-child(2n),
.m-tbl.uniq-tbl .m-tbl__text--ajust-height:nth-child(2n) {
  left: 86px;
}
.m-tbl.uniq-tbl .m-tbl__row:nth-child(2n) .m-tbl__title--ajust-height,
.m-tbl.uniq-tbl .m-tbl__row:nth-child(2n) .m-tbl__text--ajust-height {
  background-color: #f5f5f5;
}
.m-tbl.uniq-tbl .m-tbl__row:nth-child(2n+1) .m-tbl__title--ajust-height:not(th),
.m-tbl.uniq-tbl .m-tbl__row:nth-child(2n+1) .m-tbl__text--ajust-height:not(th) {
  background-color: #ffffff;
}
.m-tbl.uniq-tbl thead tr {
  height: 30px;
}
.m-tbl.uniq-tbl tr {
  height: 48px;
}

.unq-toggle {
  width: 100%;
  margin-top: 16px;
}
.unq-toggle__wrap {
  width: 100%;
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
}
.unq-toggle__wrap:nth-child(n+1) {
  border-bottom: none;
}
.unq-toggle__wrap:last-child {
  border-bottom: 1px solid #333333;
}
.unq-toggle__wrap[open] .unq-toggle__header {
  background-color: #f1f1f1b5;
}
.unq-toggle__wrap[open] .unq-toggle__header::before {
  transform: rotate(180deg);
}
.unq-toggle__wrap[open] .unq-toggle__content {
  background-color: #f1f1f1b5;
}
.unq-toggle__header {
  display: flex;
  position: relative;
  column-gap: 0;
  flex-wrap: nowrap;
  align-items: center;
  min-height: 62px;
  padding: 10px;
  padding-right: 30px;
  list-style: none;
}
.unq-toggle__header::-webkit-details-marker {
  display: none;
}
.unq-toggle__header::before {
  display: block;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  width: 14px;
  height: 11px;
  margin: auto;
  background: #333333;
  content: "";
  -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
          clip-path: polygon(0 0, 100% 0%, 50% 100%);
  transition: 0.3s ease-in-out;
}
.unq-toggle__title {
  flex-shrink: 0;
  flex-basis: 30%;
  min-width: 100px;
  word-break: keep-all;
}
.unq-toggle__role {
  display: flex;
  flex-direction: column;
}
.unq-toggle__content {
  margin: 0;
  padding: 0 10px 10px;
}

.unq-list-table {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  border: 5px solid #ffffff;
}
.unq-list-table__item {
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 5px solid #ffffff;
  background-color: #e4e4e4;
}
.unq-list-table__item:last-child {
  border-bottom: none;
}
.unq-list-table__symbol {
  display: grid;
  place-content: center;
  height: 100%;
  padding: 10px;
  border-right: 5px solid #ffffff;
}
.unq-list-table__txt {
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .m-tbl__title, .m-tbl__text {
    padding: 5px 14px;
  }
  .m-tbl.uniq-tbl {
    max-width: clamp(375px, 91vw - 260px, 879px);
    overflow: auto;
  }
  .m-tbl.uniq-tbl tr {
    height: 57px;
  }
  .m-tbl.uniq-tbl .m-tbl__title,
.m-tbl.uniq-tbl .m-tbl__text {
    padding: 3px 14px;
  }
  .m-tbl.uniq-tbl .m-tbl__title--set-width {
    min-width: 141px;
  }
  .m-tbl.uniq-tbl .m-tbl__title--ajust-height:nth-child(2n),
.m-tbl.uniq-tbl .m-tbl__text--ajust-height:nth-child(2n) {
    left: 114px;
  }
  .unq-toggle__header::before {
    width: 18px;
    height: 15px;
  }
  .unq-toggle__header {
    column-gap: 10px;
    min-height: 68px;
    padding: 10px 20px;
    padding-right: 50px;
  }
  .unq-toggle__title {
    flex-basis: 17%;
  }
  .unq-toggle__content {
    padding: 0 20px 20px;
  }
}
@media screen and (max-width: 767px) {
  .m-tbl__title--vertical {
    width: 10%;
  }
  .m-tbl.uniq-tbl .m-tbl__title--set-width {
    min-width: 121px;
  }
  .m-tbl tr > *:first-child {
    padding-left: 8px;
  }
  .str-section-localnav {
    display: block;
  }
  .str-section-localnav__side {
    margin-top: 40px;
  }
  .wsp-32 {
    width: 32% !important;
  }
}
