.sitemap-title {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0 94px;
}
.sitemap-title-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
.sitemap-title h1 {
  margin: 0;
  font-size: var(--f4);
  font-weight: 700;
  line-height: var(--l4);
  color: #333;
}

.sitemap-symbol {
  display: flex;
  align-items: center;
  gap: 0;
  height: 20px;
}
.sitemap-symbol .symbol-item {
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
}
.sitemap-symbol .symbol-item.symbol-primary {
  background: #B11116;
}
.sitemap-symbol .symbol-item.symbol-secondary {
  background: #E39627;
}
.sitemap-symbol .symbol-item.symbol-tertiary {
  background: #55555B;
}

.sitemap-content {
  padding-bottom: 120px;
}

.sitemap-grid {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.sitemap-category {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sitemap-category-header {
  background: #B11116;
  border: 1px solid #A7B8D8;
  padding: 20px;
}
.sitemap-category-header h2 {
  margin: 0;
  font-size: var(--f8);
  font-weight: 700;
  line-height: var(--l8);
  color: white;
}

.sitemap-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}
.sitemap-menu li {
  background: white;
  border: 0 solid #A7B8D8;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 4px;
  position: relative;
}
.sitemap-menu li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #B11116;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.sitemap-menu li a {
  font-size: var(--f8);
  font-weight: 400;
  line-height: var(--l8);
  color: #333;
  text-decoration: none;
}
.sitemap-menu li a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 1599px) and (min-width: 1280px) {
  .sitemap-title {
    padding: 60px 0 70px;
  }
  .sitemap-title-inner {
    gap: 10px;
  }
  .sitemap-symbol {
    height: 18px;
  }
  .sitemap-symbol .symbol-item {
    width: 12px;
    height: 12px;
  }
  .sitemap-content {
    padding-bottom: 100px;
  }
  .sitemap-grid {
    gap: 16px;
  }
  .sitemap-category {
    gap: 8px;
  }
  .sitemap-category-header {
    padding: 16px;
  }
  .sitemap-menu li {
    height: 56px;
    padding: 16px;
    gap: 3px;
  }
  .sitemap-menu li::before {
    width: 7px;
    height: 7px;
  }
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .sitemap-title {
    padding: 4.167rem 0 4.896rem;
  }
  .sitemap-title-inner {
    gap: 0.625rem;
  }
  .sitemap-title h1 {
    font-size: 1.458rem;
  }
  .sitemap-symbol {
    height: 1.042rem;
  }
  .sitemap-symbol .symbol-item {
    width: 0.729rem;
    height: 0.729rem;
  }
  .sitemap-content {
    padding-bottom: 6.25rem;
  }
  .sitemap-grid {
    flex-direction: column;
    gap: 1.042rem;
  }
  .sitemap-category {
    width: 100%;
    gap: 0.521rem;
  }
  .sitemap-category-header {
    padding: 1.042rem;
  }
  .sitemap-category-header h2 {
    font-size: 0.833rem;
  }
  .sitemap-menu li {
    height: 3.333rem;
    padding: 1.042rem;
    gap: 0.208rem;
  }
  .sitemap-menu li::before {
    width: 0.417rem;
    height: 0.417rem;
  }
  .sitemap-menu li a {
    font-size: 0.833rem;
  }
}
@media only screen and (max-width: 767px) {
  .sitemap-title {
    padding: 2.222rem 0 2.667rem;
  }
  .sitemap-title-inner {
    gap: 0.667rem;
  }
  .sitemap-title h1 {
    font-size: 1.244rem;
  }
  .sitemap-symbol {
    height: 0.889rem;
  }
  .sitemap-symbol .symbol-item {
    width: 0.622rem;
    height: 0.622rem;
  }
  .sitemap-content {
    padding-bottom: 5.333rem;
  }
  .sitemap-grid {
    flex-direction: column;
    gap: 0.889rem;
  }
  .sitemap-category {
    width: 100%;
    gap: 0.444rem;
  }
  .sitemap-category-header {
    padding: 0.889rem;
  }
  .sitemap-category-header h2 {
    font-size: 0.711rem;
  }
  .sitemap-menu li {
    height: 2.844rem;
    padding: 0.889rem;
    gap: 0.178rem;
  }
  .sitemap-menu li::before {
    width: 0.356rem;
    height: 0.356rem;
  }
  .sitemap-menu li a {
    font-size: 0.711rem;
  }
}