/* work */
.sitemap__top {
  position: relative;
  width: 100%;
  height: 125px;
  opacity: 70%;
  z-index: 1;
  margin-top: 80px;
}

.sitemap__top_title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 35px;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
  z-index: 2;
  line-height: 2.5rem;
}

.sitemap__container {
  width: 90%;
  margin: 30px auto;
  }

.sitemap__title {
  position: relative;
  display: inline-block;
  color: #000;
  text-decoration: none;
  padding: 15px 5px;
}

.sitemap__title::after {
    content: "";
    position: absolute;
    display: block;
    width: 10px;
    height: 10px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    transform: rotate(45deg);
    top: 17px;
    left: -12px;
  }

.arrow {
    position: relative;
    display: inline-block;
    color: #333;
    text-decoration: none;
    padding: 16px 7px;
}

.arrow::after {
  content: "";
  position: absolute;
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
  top: 20px;
  left: -6px;
}

@media screen and (min-width:600px) {
  /* work */
  .sitemap__container {
    width: 90%;
    margin: 0px auto;
    margin-bottom: 120px;
    display: flex;
    justify-content: space-around;
  }

}

@media screen and (min-width:1200px){
  .sitemap__top {
    margin-top: 260px;
  }

  .sitemap__container {
    width: 1200px;
    margin: 0px 35%;
    margin-bottom: 135px;
    display: flex;
    justify-content: start;
  }

  .sitemap {
    width: 32%;
  }

  .sitemap__item {
    margin-bottom: 30px;
  }

  .sitemap__top_title {
    font-size: 50px;
  }

  .sitemap__title {
    font-size: 24px;
    padding: 0 0 0 20px;
  }

  .sitemap__title::after {
    top: 6px;
    left: 0px;
  }

  .arrow {
    padding: 13px 0 0 30px;
  }

  .arrow::after {
    top: 15px;
    left: 10px;
  }
}