/*--------------
 weight
---------------*/
/*--------------
 color
---------------*/
/*--------------
 font
---------------*/
.sitemap-links {
  display: flex;
  justify-content: space-between;
  padding: 50px 0;
  width: 800px;
}
.sitemap-links .sub-child {
  margin-left: 1em;
}
.sitemap-links .sub-child .link-item ~ .link-item {
  margin-top: 5px;
}
.sitemap-links .link-item {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin: 5px 0;
}
.sitemap-links .link-item ~ .link-item {
  margin-top: 15px;
}
.sitemap-links .link-item:before {
  content: "";
  display: inline-block;
  border-top: 2px solid #88c04d;
  border-right: 2px solid #88c04d;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  margin-right: 10px;
  transition: left 0.3s;
  position: relative;
  left: 0;
}
.sitemap-links .link-item:hover:before {
  left: 5px;
}
@media screen and (max-width: 768px) {
  .sitemap-links {
    padding: 20px;
    display: block;
  }
  .sitemap-links .sub-child {
    margin-left: 0;
  }
  .sitemap-links .sub-child .link-item {
    padding: 10px 0 10px 1em;
  }
  .sitemap-links .sub-child > .sub-child .link-item {
    padding: 10px 0 10px 2em;
  }
  .sitemap-links .link-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    margin: 0;
  }
  .sitemap-links .link-item ~ .link-item {
    margin-top: 0;
  }
}
/*# sourceMappingURL=map/sitemap.css.map */