body {
  font-family: "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.9;
  background: #f7f3e9;
  color: #3a3a3a;
  margin: 0;
}
.wrap {
  max-width: 860px;
  margin: 60px auto;
  background: #fffdf8;
  padding: 48px 36px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
h1 {
  color: #2f5d56;
  border-bottom: 2px solid #dcd3c0;
  padding-bottom: 10px;
  font-size: 1.8em;
  margin-top: 0;
}
h2 {
  color: #2f5d56;
  font-size: 1.2em;
  margin-top: 36px;
}

h3 {
  color: #3a3a3a;
  font-size: 1.01em;
  margin-top: 24px;
  font-weight: 600;
}

p,
ul,
ol {
  font-size: 1em;
  margin: 0 0 18px;
}
ul,
ol {
  padding-left: 24px;
}
a {
  color: #2f5d56;
  word-break: break-all;
}
.mono {
  white-space: pre-wrap;
}
footer {
  margin-top: 40px;
  font-size: 0.85em;
  color: #777;
  text-align: center;
}

.bracket-number-list {
  counter-reset: number-list-item; /* カウンターをリセット */
  list-style-type: none; /* デフォルトの数字を非表示にする */
  padding-left: 0;
}

.bracket-number-list li {
  counter-increment: number-list-item; /* リスト項目ごとにカウンターを増やす */
  padding-left: 1.9em; /* 数字とテキストの間隔を確保 */
  text-indent: -2em; /* ネガティブインデントで2行目以降を揃える */
}

.bracket-number-list li::before {
  content: "(" counter(number-list-item) ") "; /* カウンターの値を括弧付きで表示 */
  font-weight: normal; /* 必要に応じて太字にするなどスタイルを追加 */
  display: inline-block; /* インラインブロック要素として表示 */
  width: 1.7em; /* 数字部分の幅を固定 */
  text-indent: 0; /* 数字部分のインデントをリセット */
}

.no-number-list {
  margin: 0;
  padding: 0;
}
.no-number-list li {
  list-style: none;
  padding-left: 1.3em;
  text-indent: -1.3em;
}
