@charset "UTF-8";
.pager {
  text-align: center;
  /* ページャー全体を中央揃え */
  margin-top: 20px;
  /* 上部の余白 */
  margin-bottom: 20px;
  /* 下部の余白 */
}

.pagination {
  list-style: none;
  /* リストの点を非表示 */
  padding: 0;
  margin: 0;
  display: inline-block;
  /* 横並びにするためにインラインブロックを使用 */
}

.pagination li {
  display: inline-block;
  /* 各リストアイテムを横並びにする */
  margin-right: 5px;
  /* 各アイテムの右側の余白 */
}

.pagination li:last-child {
  margin-right: 0;
  /* 最後のアイテムの右側の余白をなくす */
}

.pagination li span {
  display: block;
  /* span要素をブロック要素にする */
}

.pagination li span a.page-numbers,
.pagination li.active span .page-numbers.current {
  display: block;
  /* リンクと現在のページ番号をブロック要素にする */
  padding: 8px 12px;
  /* 内側の余白 */
  border: 1px solid #ccc;
  /* 枠線 */
  border-radius: 2px;
  text-decoration: none;
  /* リンクの下線を非表示 */
  color: #333;
  /* テキストの色 */
  background-color: #fff;
  /* 背景色 */
}

.pagination li span a.page-numbers:hover {
  background-color: #f0f0f0;
  /* ホバー時の背景色 */
}

.pagination li.active span .page-numbers.current {
  background-color: #184677;
  /* 現在のページの背景色 */
  color: #fff;
  /* 現在のページのテキストの色 */
  border-color: #184677;
  /* 現在のページの枠線の色 */
}

.news_block {
  padding: 5px 0;
  margin-bottom: 15px;
}

.news_block .title {
  padding: 5px 20px;
  border: 1px solid #ccc;
  background-color: white;
  margin: 0 0 5px !important;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 2px;
  background-color: #fcfcfc;
  position: relative;
}

.news_block .title:after {
  content: "";
  background-color: #184677;
  position: absolute;
  width: 5px;
  left: 2px;
  top: 50%;
  height: calc(100% - 4px);
  transform: translateY(-50%);
}

.news_block .date {
  padding: 2px;
  font-size: 100%;
}

.news_block .text {
  padding: 5px 10px;
  font-size: 14px;
}

.news_block .text p, .news_block .text a {
  font-size: 14px;
}

.news_block .text ul {
  display: block;
  /* ブロック要素として表示 */
  list-style-type: disc;
  /* 黒丸のリストの点 */
  margin-top: 1em;
  /* 上部のマージン */
  margin-bottom: 1em;
  /* 下部のマージン */
  margin-left: 0;
  /* 左側のマージン */
  margin-right: 0;
  /* 右側のマージン */
  padding-left: 40px;
  /* 左側のパディング（リストの点を表示するスペース） */
}

.news_block .text ol {
  display: block;
  /* ブロック要素として表示 */
  list-style-type: decimal;
  /* 数字のリストの点 */
  margin-top: 1em;
  /* 上部のマージン */
  margin-bottom: 1em;
  /* 下部のマージン */
  margin-left: 0;
  /* 左側のマージン */
  margin-right: 0;
  /* 右側のマージン */
  padding-left: 40px;
  /* 左側のパディング（リストの点を表示するスペース） */
}

.news_block .text li {
  list-style-type: inherit;
}

.news_block .text 承知いたしました。h1 から h6 までの見出しタグに適用されているreset CSSを元に戻したいのですね。多くのreset CSSでは、これらの見出しタグからデフォルトのマージン、パディング、フォントサイズ、フォントの太さなどを取り除いています。
ここでは、h1 から h6 タグに対して、一般的なブラウザのデフォルトスタイルを再現するためのCSSを作成します。ブラウザの種類やバージョンによって若干異なる場合がありますが、一般的なスタイルを再現することを目指します。
解決策の概要
以下のCSSコードは、h1 から h6 タグに対して、一般的なブラウザのデフォルトスタイルを再現するためのものです。
CSSコード
CSS
h1 {
  display: block;
  /* ブロック要素として表示 */
  font-size: 2em;
  /* デフォルトのフォントサイズ */
  margin-top: 0.67em;
  /* 上部のマージン */
  margin-bottom: 0.67em;
  /* 下部のマージン */
  margin-left: 0;
  /* 左側のマージン */
  margin-right: 0;
  /* 右側のマージン */
  font-weight: bold;
  /* 太字 */
}

.news_block .text h2 {
  display: block;
  font-size: 1.5em;
  margin-top: 0.83em;
  margin-bottom: 0.83em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}

.news_block .text h3 {
  display: block;
  font-size: 1.17em;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}

.news_block .text h4 {
  display: block;
  font-size: 1em;
  margin-top: 1.33em;
  margin-bottom: 1.33em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}

.news_block .text h5 {
  display: block;
  font-size: 0.83em;
  margin-top: 1.67em;
  margin-bottom: 1.67em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}

.news_block .text h6 {
  display: block;
  font-size: 0.67em;
  margin-top: 2.33em;
  margin-bottom: 2.33em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}
