/*
	用語集
*/

.glossary_block {
  padding: 30px;
  border: 2px solid #44aeea;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .glossary_block {
    padding: 20px;
  }
}
.glossary_block_title {
  margin-bottom: 20px;
  text-align: left;
  color: #44aeea;
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .glossary_block_title {
    font-size: 2.5rem;
  }
}

.glossary_list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}
@media screen and (max-width: 768px) {
  .section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .glossary_list {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
}

.glossary_list_item a {
  display: block;
  width: 100%;
  padding: 10px;
  padding-left: 30px;
  border: 2px solid #44aeea;
  border-radius: 8px;
  color: #44aeea;
  text-decoration: none;
  font-size: 2rem;
  font-weight: bold;
  color: #44aeea;
}
/* .glossary_list_item a::before {
  content: ">";
  font-size: 2rem;
  margin-right: 0.7em;
} */

.arrow {
  position: relative;
  display: inline-block;
  padding: 10px;
}

.arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 2px #44aeea;
  border-right: solid 2px #44aeea;
  position: absolute;
  left: 5px;
  top: 50%;
}

.arrow.arrow-right::before {
  transform: rotate(45deg) translateY(-50%);
}

.glossary_list_item a:hover {
  color: #fff;
  background: #44aeea;
}
.glossary_list_item a:hover::before {
  border-color: #fff;
}
