/* h1：記事タイトル */
.column-content h1 {
  font-size: 2.2em !important;
  font-weight: 700;
  margin-bottom: 1em;
  line-height: 1.4;
  color: #222;
  text-align: center;
}

/* h2：章見出し */
.column-content h2 {
  font-size: 1.6em !important;
  font-weight: 700;
  margin: 2.5em 0 1em;
  line-height: 1.4;
  color: #222;
  padding-bottom: 0.3em;
  border-bottom: 4px solid #00834e; /* 下線を強調 */
}

/* h3：小見出し（番号付き） */
.column-content h3 {
  font-size: 1.3em !important;
  font-weight: 700;
  margin: 1.8em 0 0.8em;
  line-height: 1.4;
  color: #00834e; /* グリーンで強調 */
}

/* 本文 */
.column-content p {
  white-space: unset!important;
}

/* 目次 */
.column-content .toc {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 1em 1.5em;
  margin: 1.5em 0 2.5em;
  list-style: decimal inside;
}

.column-content .toc li {
  margin: 0.4em 0;
  font-size: 1em;
}

.column-content .toc a {
  color: #004d40;
  text-decoration: none;
}

.column-content .toc a:hover {
  text-decoration: underline;
}

.column-content ul {
    display: unset;
}