@charset "utf-8";
/* CSS Document */
#gyakutaiboushi {
    max-width: 1600px;
	width: 98%;
    margin: 0 auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
}
h2 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}
h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

#gyakutaiboushi section {
    border: 1px solid #000000;
    padding: 0.5rem;
    width: 90%;
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 1rem;
}
#gyakutaiboushi p {
    margin-bottom: 2rem;
}
#gyakutaiboushi ul {
    padding-bottom: 2rem;	
}
.numbered-list {
  counter-reset: item; /* "item" という名前のカウンターを0にリセット */
  list-style-type: none; /* デフォルトのリストマーカー（・や1.）を非表示にする */
}
.numbered-list li::before {
  counter-increment: item; /* カウンターを1増やす */
}
.numbered-list li:nth-child(1)::before {
  content: "（１） ";
}
.numbered-list li:nth-child(2)::before {
  content: "（２） ";
}
.numbered-list li:nth-child(3)::before {
  content: "（３） ";
}
.numbered-list li:nth-child(4)::before {
  content: "（４） ";
}
.numbered-list li:nth-child(5)::before {
  content: "（５） ";
}
.numbered-list li:nth-child(6)::before {
  content: "（６） ";
}
.numbered-list li:nth-child(7)::before {
  content: "（７） ";
}
.numbered-list li:nth-child(8)::before {
  content: "（８） ";
}
.numbered-list li:nth-child(9)::before {
  content: "（９） ";
}
.numbered-list li:nth-child(10)::before {
  content: "（１０） ";
}
/* 親要素（ここでは <ul>）にカウンターを初期化 */
.numbered-list-kana {
  counter-reset: item; /* "item" という名前のカウンターをリセット */
  list-style-type: none; /* デフォルトのリストマーカーを非表示 */
}

/* 各リスト項目の前にコンテンツを挿入 */
.numbered-list-kana li::before {
  counter-increment: item; /* カウンターを1増やす */
}

/* カウンターの値に応じて表示する文字を設定 */
.numbered-list-kana li:nth-child(1)::before {
  content: "ア ";
}
.numbered-list-kana li:nth-child(2)::before {
  content: "イ ";
}
.numbered-list-kana li:nth-child(3)::before {
  content: "ウ ";
}
.numbered-list-kana li:nth-child(4)::before {
  content: "エ ";
}
.numbered-list-kana li:nth-child(5)::before {
  content: "オ ";
}
.numbered-list-kana li:nth-child(6)::before {
  content: "カ ";
}