@cherset "utf-8";
* {
	text-decoration: none;
	margin: 0;
	padding: 0;
	font-style: normal;
	font-weight: normal;
	line-height: auto;
}

body {
	margin-top: 0;
	padding: 0;
	text-align: center;	/* IE センタリング設定用 */
	background-color: #fff;
	font-family: sans-serif;
}

div.page {
	text-align: left;	/* IE センタリング設定用 */
	position: relative;
	top: 0;
	margin: auto;	/* Firefox 等センタリング設定用 */
	margin-top: 0;
	padding: 0;
	width: 768px;
	height: 480px;
/*	border: #444 1px solid;*/
}

div.contents {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 768px;
	height: 378px;
	background-image: url('../image/background.png');
	padding: 0;
	margin: 0;
}
div.sub-contents {
	margin: 0;
	padding: 0;
	padding-top: 1em;
	float: left;
	width: 232px;
	height: 370px;
	font-size: 12px;
	line-height: 20px;
}

div.main-contents {
	margin: 0;
	padding: 0;
	padding-top: 1em;
	float: right;
	width: 530px;
	height: 370px;
	font-size: 13px;
	line-height: 20px;
}

div.main-contents h3, h4 {
	margin: 0.5em 2em 1em 1em;
}

div.main-contents p {
	margin: 0.5em 2em 1em 2em;
	font-size: 13px;
	line-height: 20px;
}

/* 字間の詰まりすぎ対策（IE 用 Star Hack）*/
* html div.main-contents p {
	letter-spacing: 1px;
}

div.sub-contents h2, h3, h4, p {
	margin: 0.5em 1em 1em 1em;
}

div.point-navi {
	text-align: center;
	font-size: 14px;
	margin-bottom: 1.5em;
}

div.point-navi a {
	font-weight: bold;
	border: none;
	margin: 1px;
}

div.point-navi a:hover {
	text-decoration: none;
	background-color: #358F39;
	color: #fefefe;
	margin: 0px;
	border: #032F05 1px solid;
}

div.point-navi a:active {
	text-decoration: none;
	background-color: #358F39;
	color: #fefefe;
	margin: 0px;
	border: #032F05 1px solid;
}

h1 {
	margin: 0;
	padding-top: 54px;
	padding-left: 2em;
	width: 768px;
	height: 104px;
	background-image: url('../image/titlebar.png');
	background-repeat: no-repeat;
	background-position: top left;
	color: #fff;
/*
	background-color: #2aa;
	color: #fff;
*/
	border: none;
}

h1 *.subtitle {
	margin-left: 1em;
	font-size: 18px;
}

h2 {
	border-left: #3BD342 5px solid;
	padding-left: 2px;
	margin-bottom: 0.5em;
	font-size: 18px;
	line-height: 24px;
}

h2 span {
	margin-left: 1em;
}

/* フォントサイズ調整（Opera 7+用 Media Query Hack） */
@media screen and (min-width: 0px){
	h2 {
		font-size: 13px;
	}
}

ul {
	list-style-image: url('../image/list-mark.png');
	font-weight: bold;
	margin-bottom: 5px;
	margin-left: 3em;
	line-height: 20px;
}

div.sub-contents > ul {
	font-size: 12px;
	margin-left: 4em;
}

ul ul {
	font-weight: normal;
}

ol {
	margin-left: 2em;
}

li a {
	font-weight: bold;
}

li {
	margin-right: 2em;
	line-height: 20px;
}

/* 透過PNG に対応していない、IE 用の設定（Star Hack） */
* html * ul {
	list-style-image: url('../image/list-mark.gif');
}

/* サイト外リンク用アイコン
	Firefox: ◎ 完全対応;
	Opera: △（×）属性値セレクタの部分一致に未対応;
	IE: × 属性セレクタ、::after 疑似要素に未対応;
	Safari: ？ 未チェック;
	=====================================
	サイト内リンクは相対パス、サイト外リンクは絶対パスというルール設定を利用。
	IE が対応していないので、画像には 透過PNG を使用。
	class と background-image の併用で IE や Opera にも対応できるが、データの管理の容易さを考慮して今回は a タグに class をつけなかった。CSS 3 のセレクタは 2005年11月に勧告が出る見込みで、実装するブラウザも近い未来に増えるだろうとの期待も込めて。*/
a[href*="http"]:after {
	margin-left: 1px;
	content: url('../image/link2outside.png');
	vertical-align: center;
}

/* PDF リンク用アイコン
	Firefox: ◎ 完全対応;
	Opera: △（×）属性値セレクタの行末一致に未対応;
	IE: × 属性セレクタ、::after 疑似要素に未対応;
	Safari: ？ 未チェック;
	=====================================
	URL 末尾に ".pdf" がつくのを利用。
	サイト外リンクよりも表示優先順位を高くした。（CSS は後に記述されているものを優先的に扱う。）
	IE が対応していないので、画像には 透過PNG を使用。
	これも class と background-image の併用で IE や Opera にも対応できるが、データの管理の容易さを考慮してここでは a タグに class をつけなかった。（もちろん、本機能が付加的なもので必要不可欠なほど重要な機能でないこともある。それでも敢えて本機能をつけたのはユーザビリティを考慮してのこと。）*/
a[href$="pdf"]:after {
	margin-left: 2px;
	content: url('../image/pdf.png');
	vertical-align: center;
}

a {
	text-decoration: none;
	border-bottom: #032F05 1px solid;
	color:#358F39; margin: 1px;
}

a:link {
	text-decoration: none;
	border-bottom: #032F05 1px solid;
	color: #358F39;
	margin: 1px;
}

a:hover {
	text-decoration: none;
	background-color: #358F39;
	color: #fefefe;
	margin: 0px;
	border: #032F05 1px solid;
}

a:active {
	text-decoration: none;
	background-color: #358F39;
	color: #fefefe;
	margin: 0px;
	border: #032F05 1px solid;
}

a img {
	border: 0;
}

table {
	margin: auto;
	margin-bottom: 0.5em;
	border: #666 1px solid;
	border-collapse:collapse;
	border-spacing: 1px;
	font-size: 12px;
	text-align: left;
}

th {
	padding: 2px;
	font-size: 12px;
	font-weight: bold;
	line-height: 16px;
}

th a {
	font-weight: bold;
}

thead {
	border-bottom: #444 1px solid;
}

thead tr * {
	font-size: 12px;
	text-align: center;
/*	vertical-align: middle;*/
}

/* テーブル内の文字の大きさ調整（IE 用 Star Hack）*/
* html * thead tr th {
	font-size: 12px;
}

tbody tr th {
	text-align: left;
}

.num {
	text-align: right;
	font-weight: bold;
}

td {
	margin: 0;
	padding: 5px;
	font-size: 12px;
	line-height: 16px;
}

q[lang="ja"]:before {
	content: "「";
}

q[lang="ja"]:after {
	content: "」";
}

.blocknote {
	width: 230px;
	position: absolute;
	left: 16px;
	bottom: 16px;
}

.frame {
	width: 500px;
/*	height: 260px;*/
	overflow: auto;
}

.sample {
	text-align: center;
	font-size: 12px;
	line-height: 18px;
}

.sample img {
	vertical-align: middle;
}

.note {
	font-weight: bold;
	border-bottom: 1px dotted;
	cursor: pointer;
}

dfn {
	font-weight: bold;
	border-bottom: 1px dotted;
	cursor: pointer;
}

abbr {
	font-weight: bold;
	border-bottom: 1px dotted;
	cursor: pointer;
}

strong {
	font-size: 14px;
	font-weight: bold;
}

td strong {
	font-size: 32px;
	line-height: 42px;
	font-weight: normal;
}

dl#ids {
	margin: 0;
	padding: 0;
}

dl#ids > * {
	display: inline;
}

dl#ids > dd + dt {
	margin:;
}

dt {
	display: block;
	width: 40px;
	height: 40px;
	margin-right: 10px;
	font-size: 36px;
	line-height: 42px;
}

dd {
	display: block;
	width: 200px;
	height: 40px;
	margin-right: 20px;
	font-size: 20px;
}

dd:before {
	font-size: 16px;
	content: "ex.";
}

*[lang="zh-cn"] {
	font-family: "Simsun (Founder Extended)" "HAN NOM B" "HAN NOM A";
}
