.sitemap__visual {
  height: 15.625rem;
  background: url("../../../images/sitemap/sitemap-visual.png") no-repeat center center/cover;
}
@media only screen and (max-width: 767px) {
  .sitemap__visual {
    height: 10rem;
  }
}
.webp .sitemap__visual {
  background-image: url("../../../images/sitemap/sitemap-visual.webp");
}
.sitemap__title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 5rem;
  margin-bottom: 2.875rem;
}
@media only screen and (max-width: 767px) {
  .sitemap__title-wrap {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
  }
}
.sitemap__title {
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.5;
  color: var(--g80);
}
@media only screen and (max-width: 767px) {
  .sitemap__title {
    font-size: 1.5rem;
  }
}
.sitemap__symbols {
  display: flex;
  align-items: center;
}
.sitemap__symbol {
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sitemap__symbol::before {
  content: "";
  display: block;
  width: 0.875rem;
  height: 0.875rem;
  transform: rotate(45deg);
}
.sitemap__symbol--primary::before {
  background: var(--primary);
}
.sitemap__symbol--secondary::before {
  background: var(--secondary);
}
.sitemap__symbol--tertiary::before {
  background: var(--tertiary);
}
.sitemap__content {
  padding-bottom: 5rem;
}
@media only screen and (max-width: 767px) {
  .sitemap__content {
    padding-bottom: 3rem;
  }
}
.sitemap__menu-list {
  display: flex;
  gap: 1.25rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .sitemap__menu-list {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  .sitemap__menu-list {
    flex-direction: column;
    gap: 0.625rem;
  }
}
.sitemap__menu-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .sitemap__menu-col {
    flex: 0 0 calc(50% - 0.625rem);
  }
}
@media only screen and (max-width: 767px) {
  .sitemap__menu-col {
    flex: none;
    width: 100%;
  }
}
.sitemap__menu-header {
  display: flex;
  align-items: center;
  padding: 1.25rem;
  background: var(--primary);
  border: 1px solid #a7b8d8;
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
  transition: background 0.2s;
}
.sitemap__menu-header:hover {
  background: #8e0d11;
}
.sitemap__submenu {
  display: flex;
  flex-direction: column;
}
.sitemap__submenu li a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  height: 4rem;
  padding: 1.25rem;
  background: #fff;
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--g80);
  transition: background 0.2s, color 0.2s;
}
.sitemap__submenu li a::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--primary);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.sitemap__submenu li a:hover {
  background: var(--g10);
  color: var(--primary);
}
@media only screen and (max-width: 767px) {
  .sitemap__submenu li a {
    height: 3.5rem;
    padding: 1rem;
  }
}