@charset "UTF-8";
/* =============================
   サイトマップページ固有スタイル
   ============================= */
.sitemap {
  /* =============================
     main要素の背景（白背景、背景画像なし）
     ============================= */
}
.sitemap .main {
  background-color: #ffffff;
}
.sitemap {
  /* =============================
     ヒーローセクション
     ============================= */
}
.sitemap .sitemap-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #ffffff;
  color: #262946;
  padding: clamp(80px, 12vw, 120px) 0;
}
.sitemap .sitemap-hero .container {
  max-width: min(1500px, 100vw - 2rem);
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}
@media (max-width: 480px) {
  .sitemap .sitemap-hero .container {
    padding: 0 0.75rem;
  }
}
.sitemap .sitemap-hero .sitemap-hero-content {
  text-align: center;
}
.sitemap .sitemap-hero .sitemap-hero-title {
  font-family: "リュウミン R-KL", "Ryumin Regular KL", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", serif;
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #262946;
}
.sitemap .sitemap-hero .sitemap-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 100;
  line-height: 1.5;
  color: #262946;
}
.sitemap {
  /* =============================
     サイトマップコンテンツセクション
     ============================= */
}
.sitemap .sitemap-content-section {
  padding: clamp(40px, 8vw, 80px) 0;
  background-color: #ffffff;
}
.sitemap .sitemap-content-section .container {
  max-width: min(1200px, 100vw - 2rem);
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}
@media (max-width: 480px) {
  .sitemap .sitemap-content-section .container {
    padding: 0 0.75rem;
  }
}
.sitemap .sitemap-content-section .sitemap-content {
  max-width: 1000px;
  margin: 0 auto;
}
.sitemap .sitemap-content-section .sitemap-intro {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 2px solid #e5e7eb;
}
.sitemap .sitemap-content-section .sitemap-intro .sitemap-intro-text {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.8;
  color: #262946;
  text-align: center;
  margin: 0;
}
.sitemap .sitemap-content-section .sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
@media (max-width: 768px) {
  .sitemap .sitemap-content-section .sitemap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .sitemap .sitemap-content-section .sitemap-grid {
    grid-template-columns: 1fr;
  }
}
.sitemap .sitemap-content-section .sitemap-section {
  background-color: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.5);
  border-radius: 12px;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.sitemap .sitemap-content-section .sitemap-section:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 153, 70, 0.3);
}
.sitemap .sitemap-content-section .sitemap-section-title {
  font-family: "リュウミン R-KL", "Ryumin Regular KL", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", serif;
  font-size: clamp(1.4rem, 2.5vw, 1.7rem);
  font-weight: 700;
  line-height: 1.4;
  color: #262946;
  margin: 0 0 0.75rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #009946;
  position: relative;
}
.sitemap .sitemap-content-section .sitemap-section-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #009946;
}
.sitemap .sitemap-content-section .sitemap-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sitemap .sitemap-content-section .sitemap-item {
  margin: 0 0 0.5rem 0;
}
.sitemap .sitemap-content-section .sitemap-item:last-child {
  margin-bottom: 0;
}
.sitemap .sitemap-content-section .sitemap-link {
  display: inline-block;
  font-size: clamp(0.95rem, 1.5vw, 1rem);
  line-height: 1.6;
  color: #262946;
  text-decoration: none;
  position: relative;
  padding-left: 1.1em;
  transition: color 0.2s ease, transform 0.2s ease;
}
.sitemap .sitemap-content-section .sitemap-link::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #009946;
}
.sitemap .sitemap-content-section .sitemap-link:hover {
  color: rgb(0, 102, 46.6666666667);
  transform: translateX(2px);
}
.sitemap {
  /* =============================
     スクロールアニメーション用クラス
     ============================= */
}
.sitemap .slide-in-up {
  opacity: 1;
  transform: translateY(0);
}
.sitemap .slide-in-up.animate, .sitemap .slide-in-up[data-animated=true] {
  opacity: 1;
  transform: translateY(0);
}
.sitemap {
  /* =============================
     レスポンシブ対応
     ============================= */
}
@media (max-width: 768px) {
  .sitemap .sitemap-hero {
    min-height: 50vh;
    padding: clamp(60px, 10vw, 100px) 0;
  }
  .sitemap .sitemap-content-section {
    padding: clamp(40px, 8vw, 60px) 0;
  }
}
@media (max-width: 640px) {
  .sitemap .sitemap-hero {
    min-height: 40vh;
    padding: clamp(40px, 8vw, 80px) 0;
  }
  .sitemap .sitemap-hero .sitemap-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .sitemap .sitemap-hero .sitemap-hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
  }
  .sitemap .sitemap-content-section {
    padding: clamp(30px, 6vw, 50px) 0;
  }
  .sitemap .sitemap-content-section .sitemap-intro {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    padding-bottom: clamp(1.5rem, 3vw, 2rem);
  }
  .sitemap .sitemap-content-section .sitemap-intro .sitemap-intro-text {
    font-size: clamp(0.95rem, 2vw, 1rem);
    line-height: 1.7;
  }
}
@media (max-width: 480px) {
  .sitemap .sitemap-hero {
    padding: clamp(30px, 6vw, 60px) 0;
  }
  .sitemap .sitemap-hero .sitemap-hero-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    margin-bottom: 0.75rem;
  }
  .sitemap .sitemap-hero .sitemap-hero-subtitle {
    font-size: clamp(0.85rem, 2vw, 1rem);
  }
  .sitemap .sitemap-content-section {
    padding: clamp(20px, 5vw, 40px) 0;
  }
  .sitemap .sitemap-content-section .container {
    padding: 0 0.75rem;
  }
  .sitemap .sitemap-content-section .sitemap-intro {
    margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
    padding-bottom: clamp(1.25rem, 3vw, 1.75rem);
  }
  .sitemap .sitemap-content-section .sitemap-intro .sitemap-intro-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .sitemap .sitemap-section {
    padding: 1rem;
    border-radius: 8px;
  }
  .sitemap .sitemap-section .sitemap-section-title {
    font-size: clamp(1.1rem, 3vw, 1.25rem);
    padding-bottom: 0.5rem;
    margin-bottom: 0.75rem;
  }
  .sitemap .sitemap-section .sitemap-link {
    font-size: 0.9rem;
    line-height: 1.7;
  }
}

/*# sourceMappingURL=sitemap.css.map */
