.glossary-area dl {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .glossary-area dl {
    gap: 10px;
    flex-direction: column;
  }
}
.glossary-area dl dt {
  font-size: 16px;
  width: 250px;
}
@media screen and (max-width: 767px) {
  .glossary-area dl dt {
    width: 100%;
    line-height: 1.6;
  }
}
.glossary-area dl dt span {
  display: block;
  font-weight: normal;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .glossary-area dl dt span {
    font-size: 13px;
  }
}
.glossary-area dl dd {
  font-size: 16px;
  width: calc(100% - 280px);
}
@media screen and (max-width: 767px) {
  .glossary-area dl dd {
    width: 100%;
    font-size: 15px;
  }
}

.c-anchor-list li {
  width: 16% !important;
  border-top: 1px solid var(--line) !important;
  border-bottom: 1px solid var(--line);
}
@media screen and (max-width: 767px) {
  .c-anchor-list li {
    width: 22% !important;
  }
  .c-anchor-list li:nth-child(n+5) {
    border-top: none !important;
  }
}
.c-anchor-list li:nth-child(n+6) {
  border-top: none !important;
}