@charset "utf-8";

.glossaryAnc {
  background: #eee;
  padding: 20px;
}
.glossaryAnc__list {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
}
.glossaryAnc__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  font-size: 1.8rem;
  font-weight: 700;
  border: 1px solid var(--site-color-main);
  color: var(--site-color-main);
  background: #fff;
  text-decoration: none;
}
.glossaryAnc__link--disabled {
  border: 1px solid #ccc;
  background: #eee;
  color: #bbb;
}
@media screen and (max-width: 767px) {
  .glossaryAnc__link {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}

.glossarySection {
  margin-top: 80px;
}
.glossarySection__heading {
  font-size: 3.6rem;
  line-height: 1.45;
  font-weight: 700;
  padding-left: 30px;
  position: relative;
  margin-bottom: 60px;
  color: var(--site-color-main);
}
.glossarySection__heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 26px;
  display: block;
  width: 20px;
  height: 1px;
  background: var(--site-color-main);
}
.glossarySection__list {
  border-top: 1px solid #ccc;
}
.glossarySection__item {
  display: flex;
  gap: 0 40px;
  padding: 40px 10px;
  border-bottom: 1px solid #ccc;
}
.glossarySection__title {
  width: 300px;
  font-size: 1.6rem;
  font-weight: 700;
}
.glossarySection__detail {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .glossarySection {
    margin-top: 60px;
  }
  .glossarySection__heading {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
  .glossarySection__heading::before {
    top: 14px;
  }
  .glossarySection__item {
    display: block;
    padding: 20px 10px;
  }
  .glossarySection__title {
    width: auto;
    margin-bottom: 10px;
  }
}
