/* -------------------------------------------------------

SITE MAP サイトマップ

------------------------------------------------------- */
.page_header--sitemap .page_header_title {
  @media (max-width: 1024px) {
    grid-column: 1 / -1;
  }
}

.sitemap {
  width: 100%;
  max-width: 1240px;
  margin: clamp(3rem, 1.699rem + 5.55vw, 6rem) auto clamp(8rem, 6.266rem + 7.4vw, 12rem);
  padding: 0 1rem;

  @media (max-width: 1024px) {
    margin: 0 auto 8rem;
    padding: 0 var(--pad_side-sp);
  }
}

.sitemap_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;

  @media (max-width: 1024px) {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.sitemap_section {
  min-width: 0;
  padding-bottom: 2rem;
  border-bottom: dotted 1px var(--base_color-border);

  @media (max-width: 1024px) {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }

  &:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

.sitemap_section_title {
  font-size: var(--font_text-xl);
  font-weight: var(--font_bold);
  line-height: 1.5;

  @media (max-width: 1024px) {
    margin-bottom: 1rem;
  }
}

.sitemap_section_title_link {
  color: var(--text_black);
  transition: color 0.2s ease;
}

.sitemap_section_title_link:hover {
  color: var(--main_color);
}

.sitemap_list {
  list-style: disc;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-left: 1.5rem;

  @media (max-width: 1024px) {
    margin-left: 1.25rem;
    gap: 0.375rem;
  }
}

.sitemap_list_link {
  font-size: var(--font_text-md);
  font-weight: var(--font_regular);
  color: var(--text_black);
  line-height: 1.6;
  word-break: break-word;
  transition: color 0.2s ease;
}

.sitemap_list_link:hover {
  color: var(--main_color);
}

.sitemap_line {
  @media (max-width: 1024px) {
    margin: 2.5rem 0;
  }
}