/* 一括で全ての要素の余白をゼロに指定 */
* {
	padding: 0;
	margin: 0;
}
a:link {
	color: #0000ff;
	text-decoration: underline;
}
a:visited {
	color: #990099;
	text-decoration: underline;
}
a:hover {
	color: #36C;
	text-decoration: underline;
}
img {
	border: none;
}
/* ---------------------------------------- フォントスタイル フォントサイズ */

body {
	text-align: center;
	padding: 0;
	margin: 0;
	background: url(/_data/bg.png);
	font: 0.85em "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
/* ---------------------------------------- レイアウトに関する指定 */

#wrapper {
	text-align: left;
	margin: 1em auto 0;
	width: 980px;
}
#wrapper_in {/*重ねないと背景色が全体に出ない*/
	float: left;
	width: 980px;
	background: #fff;
}
#header {
	padding: 20px;
}
#container {
	float: left;
	width: 810px;
}
#main {
	float: right;
	width: 640px;
}
#main_in {
	padding-right: 20px;
	padding-left: 20px;
	padding-bottom: 50px;
}
#left-sidebar {
	float: right;
	width: 170px;
}
#right-sidebar {
	float: right;
	width: 170px;
	background: #fff;
}
#footer {
	clear: both;
	text-align:center;
	padding : 20px 0;
	margin: 0;
}
/* ---------------------------------------- #header内の指定 */

/* -- 見出しレベル1 -- */
h1 {
	text-align: right;
	font-size: 1em;
	font-weight: normal;
}
/* -- 企業名 ショップ名 サイト名 -- */
.logo {
	font-size: 1.8em;
	margin-bottom: 0.5em;
}
.logo a {
	text-decoration: none;
	background-color: #ffffff;
	color: #0099ff;
}
.logo a:hover {
	text-decoration: none;
	background-color: #ffffff;
	color: #36C;
}
/* -- 概要 -- */
.description {
}
/* ---------------------------------------- #main内の指定 */

/* -- 見出し -- */
h2,h3 {
	font-size: 1.2em;
	margin-bottom: 1.5em;
	padding: 5px 0 5px 5px;
	border-left: 10px solid #000000;
	border-bottom: 1px solid #000000;
}
h4 {
	font-size: 1.2em;
	margin-bottom: 1.5em;
	padding: 5px 0 5px 5px;
	border-left: 10px solid #006;
	border-bottom: 1px solid #006;
	color: #006;
}
h5 {
	font-size: 1.2em;
	margin-bottom: 1.5em;
	padding: 5px 0 5px 5px;
	border-left: 10px solid #006;
}
h3, h4, h5, h6 {
	margin-top: 2.5em;
}
/* -- 文字 -- */
#main p {
	line-height: 1.6em;
	margin-bottom: 1.8em;
}
/* -- パン屑リスト -- */
#main .topic-path {
	line-height: 1em;
	margin-bottom: 2em;
}
/* -- 以下 リスト関係 -- */
#main dl {
	margin: 1em 0;
}
#main dt {
	margin-bottom: 0.5em;
	font-weight: bold;
	border-bottom: 1px dotted #666666;
}
#main dd {
	margin-bottom: 2em;
}
#main ul {
	margin: 1em 0 1em 20px;
}
#main ol {
	margin: 1em 0 1em 30px;
}
#main li {
	margin-bottom: 0.5em;
}
/* ---------------------------------------- #sidebar内の指定 */

/* -- カテゴリタイトル -- */
.sidetitle {
	background: #36C;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	text-align: center;
	font-weight: bold;
	color: #FFF;
}
/* -- リスト -- */
.localnavi {
	list-style-type: none;
	margin-bottom: 2em;
}
.localnavi li {
	display: inline;
}
.localnavi a {
	text-decoration: none;
	display: block;
	width: 160px;
	padding: 0.5em 5px;
	color: #000000;
	border-bottom: 1px solid #cccccc;
}
.localnavi a:hover {
	text-decoration: none;
	color: #000000;
	border-bottom: 1px solid #000;
	background: #eee;
}
/* ---------------------------------------- #footer内の指定 */

#footer p {
	text-align: center;
	line-height: 1.6em;
}

/* ---------------------------------------- 追加 */

.pr {
	margin-bottom: 2em;
}

/* ---------------------------------------- 追加 */

/*----- tbl1 -----*/

.tbl1 {
	border: 1px #CCCCCC solid;
	border-collapse: collapse;
	border-spacing: 0;
	margin-bottom: 15px;
}
.tbl1 th {
	padding: 5px;
	border: #CCCCCC solid;
	border-width: 0 0 1px 1px;
	white-space: nowrap;
	background: #eeeeee;
	font-weight: normal;
	line-height: 120%;
	text-align: center;
}
.tbl1 td {
	padding: 5px;
	border: 1px #CCCCCC solid;
	border-width: 0 0 1px 1px;
}
.hr1 {
	clear: both;
	height: 1px;
	border-top: 1px dashed #999;
	margin-top: 10px;
	margin-bottom: 10px;
	border-right: none;
	border-bottom: none;
	border-left: none;
}