/* ================================================
   SITEMAP PAGE STYLES
   ================================================ */

/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=M+PLUS+1p:wght@500;700;800&display=swap');

/* ================================================
   Hero Section
   ================================================ */

.hero-section {
  position: relative;
  background-color: #ffffff;
  padding: 5rem 1rem;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-title {
  font-family: 'M PLUS 1p', 'Noto Sans JP', sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #000000;
}

.hero-subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  color: #718096;
}

/* ================================================
   Sitemap Section
   ================================================ */

.sitemap-section {
  padding: 5rem 1rem;
  background-color: #f7fafc;
}

.sitemap-container {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Sitemap Item */
.sitemap-item {
  background-color: #ffffff;
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.sitemap-main-link {
  font-family: 'M PLUS 1p', 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--wedo-vibrant-blue);
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.sitemap-main-link:hover {
  color: var(--wedo-deep-blue);
}

/* Sublist */
.sitemap-sublist {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 1rem;
}

.sitemap-sublist li {
  margin-bottom: 0.5rem;
}

.sitemap-sub-link {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: #4a5568;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sitemap-sub-link:hover {
  color: var(--wedo-vibrant-blue);
}

/* ================================================
   Tablet Responsive (max-width: 1024px)
   ================================================ */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 40px;
  }

  .sitemap-main-link {
    font-size: 22px;
  }
}

/* ================================================
   Mobile Responsive (max-width: 767px)
   ================================================ */

@media (max-width: 767px) {
  .hero-section {
    padding: 3rem 1rem;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .sitemap-section {
    padding: 3rem 1rem;
  }

  .sitemap-item {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }

  .sitemap-main-link {
    font-size: 20px;
  }

  .sitemap-sub-link {
    font-size: 15px;
  }
}
