/*------------------------
  terms
------------------------*/
.sec-notes input {
  display: none;
}
.sec-notes .notes_title {
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  position: relative;
  display: block;
}
.sec-notes .notes_title::before, .sec-notes .notes_title::after {
  content: "";
  display: block;
  width: 1.875rem;
  height: 0.0625rem;
  top: 1.375rem;
  position: absolute;
  right: 0;
  background: #000;
}
.sec-notes .notes_title::after {
  transform: rotate(-90deg);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .sec-notes .notes_title {
    font-size: 1rem;
    padding: 0.625rem 2.5rem 0.625rem 0;
  }
  .sec-notes .notes_title::before, .sec-notes .notes_title::after {
    width: 1.25rem;
    top: 1.375rem;
  }
}
.sec-notes .notes_item {
  max-height: 0;
  overflow: hidden;
  transition: 0.8s;
  font-size: 0.875rem;
  line-height: 1.5rem;
  padding-top: 0rem;
  opacity: 0;
}
.sec-notes .notes_item p:not(:last-child) {
  margin-bottom: 1.5rem;
}
.sec-notes .notes_item p a {
  font-size: 0.875rem;
}
.sec-notes .notes_item p a.link_block {
  display: block;
  margin-bottom: 0.5rem;
}
.sec-notes .notes_item h4.notes_headline {
  font-weight: 900;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 767px) {
  .sec-notes .notes_item h4.notes_headline {
    font-size: 0.875rem;
  }
}
.sec-notes input:checked ~ .notes_title::after {
  transform: rotate(0deg);
  opacity: 0;
}
.sec-notes input:checked ~ .notes_item {
  max-height: unset;
  padding-top: 1.25rem;
  opacity: 1;
}
.sec-notes table {
  border: 0.125rem solid #000;
  font-size: 0.8125rem;
  width: 100%;
}
.sec-notes table td {
  border-top: 0.125rem solid #000;
}
.sec-notes table th, .sec-notes table td {
  font-weight: 700;
  padding: 0.625rem;
  width: 50%;
  vertical-align: top;
}
.sec-notes table th:first-child, .sec-notes table td:first-child {
  border-right: 0.0625rem solid #000;
}/*# sourceMappingURL=note.css.map */