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

.sg-sitemap {
  padding: 0 0 60px;
  color: #006b3f;
}

/* 全体幅 */
.sg-sitemap .sgsm-inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

/* セクション */
.sg-sitemap .sgsm-section {
  margin-top: 58px;
}

/* 最初のセクションだけ上余白を少なめ */
.sg-sitemap .sgsm-section:first-child {
  margin-top: 24px;
}

/* セクション見出し */
.sg-sitemap .sgsm-heading {
  position: relative;
  margin: 0 0 34px;
  padding-bottom: 14px;
  text-align: center;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: .18em;
  color: #006b3f;
}

/* 見出し下線 */
.sg-sitemap .sgsm-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, .28);
}

/* グリッド：PC 3列 */
.sg-sitemap .sgsm-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 80px;
}

/* 1ブロック */
.sg-sitemap .sgsm-block {
  min-width: 0;
}

/* リスト初期化 */
.sg-sitemap .sgsm-list,
.sg-sitemap .sgsm-sublist {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 親項目 */
.sg-sitemap .sgsm-list > li {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.7;
}

/* 子項目 */
.sg-sitemap .sgsm-sublist {
  margin-top: 4px;
  padding-left: 1.2em;
}

.sg-sitemap .sgsm-sublist li {
  margin: 1px 0;
  font-size: 14px;
  line-height: 1.55;
}

/* リンク */
.sg-sitemap a {
  color: #006b3f;
  text-decoration: none;
}

.sg-sitemap a:hover,
.sg-sitemap a:focus {
  opacity: .65;
  text-decoration: none;
}

/* 親項目の点 */
.sg-sitemap .sgsm-list > li > a::before,
.sg-sitemap .sgsm-list > li > span::before {
  content: "・";
}

/* 子項目の矢印 */
.sg-sitemap .sgsm-sublist a::before,
.sg-sitemap .sgsm-sublist span::before {
  content: "└ ";
}

/* 下部の前後リンク */
.sg-sitemap .sgsm-pager {
  margin-top: 70px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, .25);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  color: #006b3f;
}

.sg-sitemap .sgsm-pager a {
  color: #006b3f;
}

.sg-sitemap .sgsm-pager-prev::before {
  content: "＜ ";
}

.sg-sitemap .sgsm-pager-next::after {
  content: " ＞";
}

/* Tablet：2列 */
@media (max-width: 900px) {
  .sg-sitemap .sgsm-section {
    margin-top: 48px;
  }

  .sg-sitemap .sgsm-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 46px;
  }
}

/* SP：1列 */
@media (max-width: 600px) {
  .sg-sitemap {
    padding-bottom: 46px;
  }

  .sg-sitemap .sgsm-section {
    margin-top: 42px;
  }

  .sg-sitemap .sgsm-heading {
    margin-bottom: 24px;
    padding-bottom: 12px;
    font-size: 22px;
  }

  .sg-sitemap .sgsm-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sg-sitemap .sgsm-list > li {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .sg-sitemap .sgsm-sublist li {
    font-size: 14px;
  }

  .sg-sitemap .sgsm-pager {
    margin-top: 52px;
    font-size: 13px;
  }
}