.secSitemap {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .secSitemap {
    padding: 50px 0 100px;
  }
}
.secSitemap__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 30px;
}
@media screen and (min-width: 768px) {
  .secSitemap__inner {
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .secSitemap__inner {
    grid-gap: 60px;
  }
}
.secSitemap__list {
  width: 100%;
  letter-spacing: 0.05em;
  line-height: 3;
}
.secSitemap__list li {
  padding-left: calc(3em * 0.75);
  position: relative;
}
.secSitemap__list li::before, .secSitemap__list li::after {
  content: "";
  width: calc(3em * 0.25);
  display: block;
  position: absolute;
  left: calc(3em * 0.25);
}
.secSitemap__list li::before {
  height: 100%;
  border-left: 1px solid #172e6f;
  top: 0;
}
.secSitemap__list li::after {
  height: 1px;
  background-color: #172e6f;
  top: calc(3em / 2);
}
.secSitemap__list li:first-child::before {
  height: calc(100% - 3em / 2);
  top: calc(3em / 2);
}
.secSitemap__list li:last-child::before {
  height: calc(100% - 3em / 2);
}
.secSitemap__list .secSitemap__list li:first-child::before {
  height: 100%;
  top: 0;
}
.secSitemap__list .secSitemap__list li:last-child::before {
  height: calc(100% - 3em / 2);
}
@media screen and (min-width: 768px) {
  .secSitemap__list {
    width: 50%;
  }
  .secSitemap__list .secSitemap__list {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .secSitemap__list {
    line-height: 3.5;
  }
  .secSitemap__list li {
    padding-left: calc(3.5em * 0.75);
  }
  .secSitemap__list li::before, .secSitemap__list li::after {
    width: calc(3.5em * 0.25);
    left: calc(3.5em * 0.25);
  }
  .secSitemap__list li::after {
    top: calc(3.5em / 2);
  }
  .secSitemap__list li:first-child::before {
    height: calc(100% - 3.5em / 2);
    top: calc(3.5em / 2);
  }
  .secSitemap__list li:last-child::before {
    height: calc(100% - 3.5em / 2);
  }
  .secSitemap__list .secSitemap__list li:last-child::before {
    height: calc(100% - 3.5em / 2);
  }
}