
body {
    counter-reset: chapter;
}
h1 {
	font-size:24px;
	font-weight:bold;
	color: #0e64c5;
	padding-bottom: 8px;
	margin-left: 0;
}
h2 {
	counter-reset: sub-chapter num;
  	font-size:22px;
	font-weight:bold;
	padding-left: 8px;
	color: #555555;
	padding-bottom: 6px;
	margin-left: 0;
	margin-top: 2em;
}
h3 {
  	counter-reset: section;
	font-size:18px;
	font-weight:bold;
	padding-left: 6px;
	padding-bottom: 4px;
	margin-left: 0.5em;
	margin-top: 2em;
	color: #555555;
}
h4 {
  	counter-reset: num;
  	font-size: 16px;
	font-weight: bold;
	padding-left: 6px;
	color: #555555;
	margin-left: 1em;	
	margin-top: 2em;
}
h5 {
	font-size:14px;
	font-weight:bold;
	padding-left: 6px;
	color: #555555;
	margin-left: 1.5em;
	margin-top: 2em;
}

h6 {
	font-size:14px;
	font-weight:bold;
	color: #555555;
	margin-left: 2em;
	margin-top: 1em;
	margin-bottom: 0;
}

h2::before {
  counter-increment: chapter;
  content: counter(chapter) "  ";
}
h3::before {
  counter-increment: sub-chapter;
  content: counter(chapter) "." counter(sub-chapter) "  ";
}
h4::before {
  counter-increment: section;
  content: counter(chapter) "." counter(sub-chapter)"." counter(section) "  ";
}
h5::before {
  counter-increment: num;
  content: "(" counter(num) ")""  ";
}

p {
	margin-left: 2.5em;
}


/* 表 */
table {
	font-size:13px;
	margin-left: 3em;
	margin-bottom: 2em;
    border-collapse: collapse;
    border: solid 1px #8eaadb;
	
	width: 95%;
	text-align: left;
	vertical-align: top;
}
th {
    background: #4472c4;
	border: solid 1px #8eaadb;
	color: #ffffff;
	padding: 4px;
	vertical-align: top;
}

td {
	border: solid 1px #8eaadb;
	padding: 4px;
	vertical-align: top;
}
/* １行毎に、色分けする */
table td {
	background: #ecf1fc;
}
table tr:nth-child(odd) td {
	background: #ffffff;
}

/* テーブル全体が横に広がりすぎないようにする設定 */
.site-table table {
    width: auto;        /* コンテンツの量に合わせた幅にする */
    min-width: 300px;   /* 狭くなりすぎないように最低幅を指定（任意） */
    max-width: 600px;   /* 広がりすぎないように最大幅を制限 */
    margin: 1em 0;      /* 前後に少し隙間を作る */
    border-collapse: collapse; /* 枠線を綺麗に一本にする */
}

/* ついでにセルの余白も調整すると見やすくなります */
.site-table th, .site-table td {
    padding: 8px 15px;
    border: 1px solid #ccc;
}



/* 更新履歴のテーブルのスタイル */
table.update_history {
	width: 1400px;
}
th.updatedate{
	text-align: center;
	border: solid 1px #000000;
	background: #ffffff;
	color:  #000000;
	width: 100px;
}
th.version{
	text-align: center;
	border: solid 1px #000000;
	background: #ffffff;
	color:  #000000;
	width: 120px;
}
th.updateinfo{
	text-align: center;
	border: solid 1px #000000;
	background: #ffffff;
	color:  #000000;
	width: 400px;
}
td.updatedata2{
	text-align: center;
	border: solid 1px #000000;
	background: #ffffff;
}
td.version2{
	border: solid 1px #000000;
	background: #ffffff;
}
td.updateinfo2{
	border: solid 1px #000000;
	background: #ffffff;
}



/* HTMLリンク */
a {
	color: #1a0dab;
	text-decoration: none;
}
a:link {
	color: #0e64c5;
	text-decoration: none;
}
a:visited {
	color: #0e64c5;
	text-decoration: none;
}
a:hover {
	color: #dd0000;
	text-decoration: underline;
	/* background-color: #d0d0d0; */
}

