.outline__title--lv2 {
  font-size: 1.3rem;
  text-align: center;
  border-bottom: 2px solid #BFB7AC;
  margin-bottom: 0;
  padding: 1.5rem;
}
.section.section--organization {
  background-color: #F1F1F1;
}
.section.section--organization .section__title.section__title--lv1 {
  display: flex;
  flex-direction: column;
  text-align: center;
  border-bottom: 0;
  line-height: 2rem;
}
div.table.table--outline .table__row {
  margin-bottom: 0;
}
div.table.table--outline .table__col {
  flex: 1 0 auto;
  border-bottom: 2px solid #E1E1E1;
  padding: 1.5rem;
}
div.table.table--outline .table__col.table__col--heading {
  flex: 0 1 30%;
  border-bottom: 2px solid #BFB7AC;
  color: #568163;
  font-weight: bold;
}
div.table.table--access .table__col {
  flex-basis: 50%;
}
@media screen and (max-width: 884px) {
  div.table.table--outline > .table__row > .table__col:not(.table__col--heading) {
    padding-left: 20px;
  }
}

.filter {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.filter__select {
  min-width: 150px;
  background-color: white;
  border: thin solid #767676;
  border-radius: 4px;
  display: inline-block;
  font: inherit;
  line-height: 1.5em;
  padding: 0.5em 3.5em 0.5em 1em;
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image:
    linear-gradient(45deg, transparent 50%, #767676 50%),
    linear-gradient(135deg, #767676 50%, transparent 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px),
    calc(100% - 2.5em) 0.5em;
  background-size:
    5px 5px,
    5px 5px,
    1px 1.5em;
  background-repeat: no-repeat;
}
.filter__select:focus-within {
  background-image:
    linear-gradient(45deg, #767676 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, #767676 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position:
    calc(100% - 15px) 1em,
    calc(100% - 20px) 1em,
    calc(100% - 2.5em) 0.5em;
  background-size:
    5px 5px,
    5px 5px,
    1px 1.5em;
  background-repeat: no-repeat;
  border-color: #767676;
  outline: 0;
}
.filter__select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
@media screen and (max-width: 884px) {
  .filter__select {
    min-width: initial;
  }
}

.news__item {
  grid-template-columns: 15% 15% auto 20%;
  grid-template-rows: auto;
  margin-bottom: 5rem;
}
.news__date {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}
.news__category {
  grid-row: 1 / 3;
  grid-column: 2 / 3;
}
.news__title {
  grid-row: 1 / 2;
  grid-column: 3 / 4;
  color: #F2910E;
  font-size: 1.25rem;
}
.news__body {
  grid-row: 2 / 3;
  grid-column: 3 / 4;
}
.news__link {
  grid-row: 2 / 3;
  grid-column: 4 / 5;
}
@media screen and (max-width: 884px) {
  .news__item {
    grid-template-columns: 30% auto;
    grid-template-rows: auto auto auto auto;
    margin-bottom: 2rem;
  }
  .news__date {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
  }
  .news__category {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
  }
  .news__title {
    grid-row: 2 / 3;
    grid-column: 1 / 3;
  }
  .news__body {
    grid-row: 3 / 4;
    grid-column: 1 / 3;
  }
  .news__link {
    grid-row: 4 / 5;
    grid-column: 1 / 3;
  }
}

.qa__item {
  margin-bottom: 50px;
}
.qa__question,
.qa__answer {
  margin-bottom: 1rem;
  display: flex;
}
.qa__heading {
  display: block;
  width: 20%;
  max-width: 50px;
}
.qa__body {
  flex-basis: 80%;
}
.qa__body ul {
  list-style-type: disc;
  margin: 1rem 0 1rem 1rem;
  padding-inline-start: 40px;
}
