.entry-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1rem;
  background-color: #fff;
  border-radius: 8px;
}

/* 見出し */
.entry-content h2 {
  font-size: 2rem;
  text-align: center;
  color: #6c4400;
  margin: 2rem 0 1.5rem;
}

.entry-content h4 {
  font-size: 1.2rem;
  margin-top: 2rem;
  color: #007a3e;
  border-left: 5px solid #00a971;
  padding-left: 0.75rem;
  background-color: #ecfdf2;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

/* リスト系 */
.sitemap_list,
.sitemap_sublist {
  list-style: none;
  padding-left: 1.2rem;
  margin-top: 0.75rem;
}

.sitemap_list li,
.sitemap_sublist li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.2em;
}

.sitemap_list li::before,
.sitemap_sublist li::before {
  content: "▶";
  position: absolute;
  left: 0;
  top: 0.1em;
  color: #00a971;
  font-size: 0.9em;
}

/* リンクスタイル */
.sitemap_list a,
.sitemap_sublist a {
  color: #007a3e;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sitemap_list a:hover,
.sitemap_sublist a:hover {
  text-decoration: underline;
  color: #004d2c;
}

/* 各ブロックの間に余白 */
.sitemap_block {
  margin-bottom: 2rem;
}

/* テキスト整列 */
.text-center {
  text-align: center;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .entry-content {
    padding: 1.5rem 1rem;
  }
}