@keyframes link-arrow {
  0% {
    opacity: 1;
    fill: #707070;
  }
  50% {
    opacity: 0;
    fill: #707070;
    transform: translateX(5px);
  }
  50.1% {
    opacity: 0;
    fill: #1B7044;
    transform: translateX(-5px);
  }
  100% {
    opacity: 1;
    fill: #1B7044;
    transform: translateX(0);
  }
}
.related-section {
  padding: 0 0 176px 0;
}
.related-section .loop-wrap {
  display: block;
  margin: 0 auto;
  max-width: min(1180px, 95%);
}
.related-section .loop-wrap ul {
  padding: 104px 25px;
  list-style: disc;
  color: #1B7044;
}
.related-section .loop-wrap ul li {
  margin-bottom: 25px;
}
.related-section .loop-wrap ul li a {
  display: block;
  color: #1B7044;
  font-weight: 500;
  text-decoration: underline;
  position: relative;
  width: max-content;
  padding: 0 24px 0 0;
}
.related-section .loop-wrap ul li a:after {
  content: "";
  display: block;
  width: 21px;
  aspect-ratio: 1/1;
  background-image: url("../images/common/icon-link.svg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
/*# sourceMappingURL=related.css.map */