/*------------------------
  terms
------------------------*/
.sec-notes input {
  display: none;
}
.sec-notes .common_box {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .sec-notes .common_box_inner {
    padding-top: 2rem;
  }
}
.sec-notes .notes_title {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  width: 100%;
}
.sec-notes .notes_title::after {
  position: absolute;
  right: 0;
  top: 1.1rem;
  width: 1.7rem;
  height: 1px;
  background-color: var(--color-primary);
  content: "";
}
.sec-notes .notes_title::before {
  position: absolute;
  right: 0.8rem;
  top: 3px;
  width: 1px;
  height: 1.7rem;
  background-color: var(--color-primary);
  transition: 0.2s opacity;
  content: "";
}
@media screen and (min-width: 768px) {
  .sec-notes .notes_title {
    font-size: 2rem;
  }
  .sec-notes .notes_title::after {
    top: 1.3rem;
    width: 2.5rem;
  }
  .sec-notes .notes_title::before {
    top: 1px;
    right: 1.1rem;
    height: 2.5rem;
  }
}
.sec-notes .notes-txt {
  letter-spacing: 0;
  line-height: 1.8;
  margin-bottom: 1px;
}
.sec-notes .notes_item {
  max-height: 0;
  overflow: hidden;
  transition: 0.8s;
  line-height: 2.4rem;
  padding-top: 0rem;
  opacity: 0;
}
.sec-notes .notes_item p a.link_block {
  display: block;
  margin-bottom: 0.8rem;
}
.sec-notes .notes_item h4.notes_headline {
  font-weight: 900;
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 767px) {
  .sec-notes .notes_item h4.notes_headline {
    font-size: 1.4rem;
  }
}
.sec-notes input:checked ~ .notes_title::before {
  transform: rotate(0deg);
  opacity: 0;
}
.sec-notes input:checked ~ .notes_item {
  max-height: unset;
  padding-top: 2rem;
  opacity: 1;
}
.sec-notes .common_box_item {
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .sec-notes .common_box_item:not(:last-child) {
    margin-bottom: 1.8rem;
    padding-bottom: 1.8rem;
  }
}
@media screen and (min-width: 768px) {
  .sec-notes .common_box_item.notes-head {
    padding-top: 1rem;
    padding-bottom: 2rem;
  }
}
.sec-notes .common_box_item p a {
  font-size: inherit;
  word-break: break-all;
}
.sec-notes .common_box_item p.large {
  font-size: 1.4rem;
}
.sec-notes .notes-list__link {
  margin: 0 !important;
}
.sec-notes .notes-list__link:hover {
  color: inherit !important;
  opacity: 1 !important;
}
.sec-notes table {
  border: 0.2rem solid #000;
  font-size: 1.3rem;
  width: 100%;
}
.sec-notes table td {
  border-top: 0.2rem solid #000;
}
.sec-notes table th, .sec-notes table td {
  font-weight: 700;
  padding: 1rem;
  width: 50%;
  vertical-align: top;
}
.sec-notes table th:first-child, .sec-notes table td:first-child {
  border-right: 0.1rem solid #000;
}/*# sourceMappingURL=note.css.map */