.numberList {
  counter-reset: numberList;
}

.numberListItem {
  display: flex;
  align-items: baseline;
}
.numberListItem::before {
  content: counter(numberList) ".";
  counter-increment: numberList;
  flex-shrink: 0;
  margin: 0 5px 0 0;
}

.now {
  text-align: right;
}

.bracketTitle {
  font-size: 1.6rem;
  margin: 0 0 2px;
}

.alphaList {
  counter-reset: alphaList;
}

.alphaListItem {
  display: flex;
  align-items: baseline;
}
.alphaListItem::before {
  content: counter(alphaList, lower-alpha) ".";
  counter-increment: alphaList;
  flex-shrink: 0;
  margin: 0 5px 0 0;
}

.openListItem:not(:last-of-type) {
  margin: 0 0 25px;
}

.openListTitle {
  color: #083e8e;
  font-size: inherit;
  margin: 0 0 5px;
}

.docListItem:not(:last-of-type) {
  margin: 0 0 16px;
}

.docListPdf {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  padding: 13px 31px 13px 20px;
  background-color: #F5F5F5;
  border-radius: 10px;
  width: fit-content;
  min-width: 395px;
}
.docListPdf::before {
  content: "";
  width: 24px;
  aspect-ratio: 1/1;
  background-image: url(../images/pdf.svg);
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin: 0 16px 0 0;
}

/*# sourceMappingURL=privacy.css.map*/