@charset "UTF-8";

.sitemap-eles .eles {
  background: #f9f9f9;
  margin: 0 auto;
  max-width: 800px;
  padding: 2rem;
}
.ul-sitemap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.ul-sitemap > li {
  width: calc(100% / 2 - .5rem);
}
.ul-sitemap li {
  border-bottom: 1px solid #0B1E46;
  position: relative;
  padding-left: 2.5rem;
}
.ul-sitemap .ul-sitemap-child li {
  border-bottom: 0;
}
.ul-sitemap li::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  aspect-ratio: 206/199;
  background: #0B1E46;
  mask: url(../../images/common/icon-nav-arrow.svg) no-repeat center / contain;
  transition: .5s;
  width: 15px;
}
.ul-sitemap li a {
  display: block;
}
@media screen and (max-width: 767px) {
  .ul-sitemap > li {
    width: 100%;
  }
}
