@charset "utf-8";
#main_img.content_main_img.sitemap {
  background-image: url(../../images/header_consept.webp);
}

#breadcrumb a {
  text-decoration: none;
}

.main_content {
  max-width: var(--main-width);
  margin: 0 auto;
  padding: 60px 20px;
}

.sitemap-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px 20px;
  margin: 40px 0;
  width: 100%;
}

.sitemap-column {
  flex: 0 0 calc((100% - 80px) / 3);
  min-width: 280px;
}

.sitemap-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-links li {
  border-bottom: 1px solid #f0f0f0;
  padding: 10px 0;
}

.sitemap-links a {
  text-decoration: none;
  color: var(--main-color);
  font-size: 14px;
  display: flex;
  align-items: center;
  line-height: 1.4;
}

.sitemap-links a:hover {
  color: var(--main-color3);
  text-decoration: underline;
}

.sitemap-links a::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 1.5px solid #380909;
  border-right: 1.5px solid #380909;
  transform: rotate(45deg);
  margin-right: 10px;
  flex-shrink: 0;
}

.sitemap-links a:hover::before {
  border-top-color: #dc4b00;
  border-right-color: #dc4b00;
}

@media (max-width: 768px) {
  .sitemap-wrapper {
    gap: 20px;
  }
  .sitemap-column {
    flex: 0 0 100%;
    min-width: 100%;
  }
}
