.departments {
  font-size: clamp(.75rem, 1.111vw, 1rem);
  display: grid;
  border: 1px solid #e7e7e7;
  border-width: 1px 1px 0 0;
  margin-top: clamp(1.75rem, 3.125vw, 2.5rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.department {
  border: 1px solid #e7e7e7;
  border-width: 0 0 1px 1px;
  padding: clamp(1.25rem, 2.5vw, 2rem);
}
.department h4 {
  font-size: clamp(1.125rem, 1.875vw, 1.5rem);
  font-weight: 500;
}
.department ul {
  margin-top: 1em;
}
.department li {
  margin-top: 0.25em;
}
.caution {
  color: var(--_color-red);
}
.caution ul {
  padding-left: 1.25em;
  list-style: disc;
}

@media (max-width: 599px) {
  .departments {
    grid-template-columns: 1fr;
    font-size: 3.2vw;
  }
}