.secTitle.en {
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  padding-top: 48px;
}
.secSub {
  margin-top: 6px;
  margin-bottom: 28px;
  color: #7F5539;
  font-size: 14px;
  text-align: center;
}
.sitemapBody .container {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr)); /* 🔹 最小200px、最大自動 */
  gap: 28px 20px; /* 🔹 横28px / 縦20px（前より少しコンパクトに） */
  justify-content: center; /* 🔹 中央寄せ */
  max-width: 920px; /* 🔹 全体幅を制限（1100px以下に圧縮） */
  margin: 0 auto;
}

/* PC画面がめっちゃ広い時だけ中央寄せ（このままでOK） */
@media (min-width: 1200px) {
  .sitemapBody .container {
    max-width: 920px;
  }
}

/* SP時：グリッドをやめて block にする */
@media (max-width: 768px) {
  .sitemapBody .container {
    display: block;                /* ★ここがポイント */
    max-width: calc(100% - 40px);  /* 余白だけ整える用（お好みで） */
    margin: 0 auto;
  }

  .sitemapSection {
    margin-bottom: 24px;           /* セクション間の余白 */
  }
}