.sitemap__box {
  padding: 40px;
}

@media screen and (min-width: 959px) {
  .sitemap__box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 20px;
            column-gap: 20px;
  }
}

@media screen and (min-width: 959px) {
  .sitemap__box ul {
    width: 30%;
  }
}

.sitemap__box li {
  display: block;
  margin-left: 0px;
  margin-bottom: 20px;
  position: relative;
}

.sitemap__box a {
  display: block;
  background-color: #F8F5F0;
  padding: 15px 45px 15px 20px;
  border-radius: 10px;
  text-decoration: none;
  color: #222;
}

@media screen and (min-width: 959px) {
  .sitemap__box a {
    padding: 20px;
    font-size: 1.7rem;
  }
}

.sitemap__box a::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 8px);
  right: 5%;
  width: 10px;
  height: 10px;
  border-top: 3px solid #83725B;
  border-right: 3px solid #83725B;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}
/*# sourceMappingURL=sitemap.css.map */