/* サイトマップページ専用（page-sitemap.php / 固定ページ本文コピペ用） */

#sitemap-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

#sitemap-page h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

#sitemap-page .sitemap-intro {
  text-align: center;
  color: rgba(17, 17, 17, 0.7);
  margin-bottom: 60px;
  line-height: 1.8;
}

#sitemap-page .sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

#sitemap-page .sitemap-section {
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  padding: 30px 24px;
}

#sitemap-page .sitemap-section h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #d4af37;
  color: #111;
}

#sitemap-page .sitemap-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#sitemap-page .sitemap-section li {
  margin-bottom: 12px;
}

#sitemap-page .sitemap-section li:last-child {
  margin-bottom: 0;
}

#sitemap-page .sitemap-section a {
  color: rgba(17, 17, 17, 0.8);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  padding: 8px 0;
}

#sitemap-page .sitemap-section a:hover {
  color: #d4af37;
  padding-left: 8px;
}

#sitemap-page .sitemap-section a i {
  font-size: 14px;
  opacity: 0.6;
}

#sitemap-page .sitemap-section .sub-list {
  margin-left: 24px;
  margin-top: 8px;
}

#sitemap-page .sitemap-section .sub-list li {
  margin-bottom: 8px;
}

#sitemap-page .sitemap-section .sub-list a {
  font-size: 14px;
  color: rgba(17, 17, 17, 0.7);
}

#sitemap-page .sitemap-footer {
  margin-top: 80px;
  padding: 40px;
  background: #f8f8f8;
  border-radius: 8px;
  text-align: center;
}

#sitemap-page .sitemap-footer h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 0;
  border-bottom: none;
}

#sitemap-page .sitemap-footer p {
  margin: 0;
  line-height: 1.9;
  color: rgba(17, 17, 17, 0.7);
}

@media (max-width: 768px) {
  #sitemap-page {
    padding: 60px 20px;
  }

  #sitemap-page .sitemap-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
