@charset "utf-8";
/*
	wdp2_relations | lastup 2009.04.05
	http://www.usamimi.info/~witchmakers/
	----------------------------------------------
	★で検索すると大まかな指定部分に飛びます
	----------------------------------------------
	1. リセット
	2. 基礎
	3. レイアウト
	4. 各部詳細
	5. 本文装飾
	6. おまけ
*/
/*================================================
	1. リセット
================================================*/
html, body, div, h1, h2, h3, h4, h5, h6, address, blockquote, p, pre, ul, ol, li, dl, dt, dd, table, th, td, form, fieldset {
	margin: 0;
	padding: 0;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	font-size: 100%;
}
address, code, em, strong, th {
	font-style: normal;
	font-weight: normal;
}
ul, ol {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
th {
	text-align: left;
}
img {
	vertical-align: top;
}
img, fieldset {
	border: 0;
}
legend {
	display: none;
}
div {
	zoom: 1;
}
@media screen {
	body {
		letter-spacing: 1px;
	}
	br {
		letter-spacing: 0;
	}
}
/*================================================
	2. 基礎
================================================*/
body, th, td {
	color: #FFFFFF;/* 基本文字色★ */
	font-family: Tahoma, Verdana, sans-serif;
	font-size: 12px;/* 基本文字サイズ★ */
	line-height: 1.7;
}
strong {
	font-weight: bold;
}
em {
	margin: 0 3px;
	padding: 1px 5px;
	background: #F0F0F0;
	color: #000000;
}
ins {
	color: #909090;
	text-decoration: underline;
}
/*------------------------------------------------
	リンク★
------------------------------------------------*/
a:link {/* 未読 */
	color: #FFCC00;
	text-decoration: none;
}
a:visited {/* 既読 */
	color: #FFCC00;
	text-decoration: none;
}
a:hover {/* マウスオーバー */
	color: #FF9900;
	text-decoration: none;
}
a:active {/* アクティブ */
	color: #FF9900;
	text-decoration: none;
}
/*------------------------------------------------
	画像リンク★
------------------------------------------------*/
a:link img {/* 未読 */
	border: 1px solid #111111;
}
a:visited img {/* 既読 */
	border: 1px solid #111111;
}
a:hover img {/* マウスオーバー */
	border: 1px solid #D0D0D0;
}
a:active img {/* アクティブ */
	border: 1px solid #D0D0D0;
}
/*------------------------------------------------
	スクロールバー(IEのみ)★
------------------------------------------------*/
html {
	scrollbar-face-color: #B0B0B0;
	scrollbar-highlight-color: #B0B0B0;
	scrollbar-shadow-color: #B0B0B0;
	scrollbar-3dlight-color: #B0B0B0;
	scrollbar-darkshadow-color: #B0B0B0;
	scrollbar-track-color: #E0E0E0;
	scrollbar-arrow-color: #E0E0E0;
}
/*------------------------------------------------
	フォーム
------------------------------------------------*/
input, textarea, select {
	border: 1px solid #ECECEC;
	background: #FFFFFF;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku GothicPro", Osaka, sans-serif;
	font-size: 12px;
}
@media screen {
	input, textarea, select {
		font-family: Tahoma, Verdana, sans-serif;
	}
}
	/* ↓この指定はブラウザのCSS対応状況によっては反映されません */
	input[type="text"]:hover, input[type="text"]:focus,
	input[type="password"]:hover, input[type="password"]:focus,
	textarea:hover, textarea:focus,
	select:hover, select:focus {
		border: 1px solid #505050;
		background: #FFFFFF;
	}
/*================================================
	3. レイアウト
================================================*/
body {
	background: url("./img/bg_base.jpg");
	text-align: center;
}
#container {
	width: 800px;
	margin: 0 auto;
	border: 2px solid #1c2723;
	border-top: none;
	background: url("./img/container_540.gif") left top repeat-y #050505;
	text-align: left;
}
html>body #container {
	width: 796px;
}
#header {
	height: 149px;
	background: url("./img/spot_796x149.jpg") left top no-repeat #101010;
}
#menu {
}
#logs {
	float: left;
	width: 540px;
}
#navigation {
	float: right;
	width: 256px;
}
	@media screen {
		#logs, #navigation {
			overflow: hidden;
		}
	}
#diary {
	float: none;
	clear: both;
	border-top: 1px solid #111111;
	background: #111111;
}
#trackback, #comment, #page, #navi, #contents, #work, #form, #env, #canvas, #status {
	float: none;
	clear: both;
	padding-bottom: 30px;
	border-top: 1px solid #111111;
	background: #111111;
}
#footer {
	float: none;
	clear: both;
}
/*================================================
	4. 各部詳細
================================================*/
/*------------------------------------------------
	--- 見出し★
------------------------------------------------*/
#diary div.diary h3,
#contents h2, #work h2, #form h2, #env h2, #canvas h2, #status h2 {
	margin: 30px 40px 30px 40px;
	color: #FF8000;
	text-transform: capitalize;
	letter-spacing: 5px;
}
/*------------------------------------------------
	--- 新着マーク
------------------------------------------------*/
em.new {
	padding: 0 5px;
	background: #909090;
	color: #FFFFFF;
	font-size: 10px;
	text-transform: uppercase;
}
/*------------------------------------------------
	--- RSSアイコン
------------------------------------------------*/
a.rss {
	padding-left: 15px;
	background: url("./img/feedicon.gif") 0 50% no-repeat;
}
/*------------------------------------------------
	--- 送信ボタン (主に管理ページ等の)
------------------------------------------------*/
#navi form p input, #contents form p input, #form form p input, #work form p input, #env form p input {
	width: 8em;
	border: 1px solid #C6C6C6;
	border-right: 1px solid #6D6D6D;
	border-bottom: 1px solid #6D6D6D;
	background: #9A9A9A;
	color: #FFFFFF;
}
/*------------------------------------------------
	# ヘッダー
------------------------------------------------*/
#header h1 {
	margin: 0 40px;
	padding-top: 40px;
	font-family: "arial black", sans-serif;
	font-weight: bold;
	font-size: 16px;
}
#header h1 a:link, #header h1 a:visited {
	color: #FFCC00;
	text-decoration: none;
}
#header h1 a:hover, #header h1 a:active {
	color: #FF9900;
	text-decoration: none;
}
#header p {
	margin: 0 40px;
	color: #FFFFFF;
}
/*------------------------------------------------
	# メニュー(旧）
------------------------------------------------*/
#menu h2 {
	display: none;
}

#menu {
	margin-left: 0px;
	margin-top: 0px;
	height: 42px;
	width: 796px;
	margin-bottom: 20px;
}
#menu .btn {
	list-style-type: none;
	padding: 0px;
	margin: 0px;
	background-color: #99FF00;
}
#menu .btn ul {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}
#menu .btn li {
	float: left;
	margin: 0px;
	padding: 0px;
}
#menu .btn .about a {
	background-image: url(../img/navi_btn_-03.gif);
	display: block;
	height: 42px;
	width: 79px;
	background-repeat: no-repeat;
	margin: 0px;
	padding: 0px;
}
#menu .btn .about a:hover {
	background-image: url(../img/navi_btn_hover-03.gif);
}
#menu .btn .shop a {
	background-image: url(../img/navi_btn_-02.gif);
	display: block;
	height: 42px;
	width: 79px;
	background-repeat: no-repeat;
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	list-style-position: inside;
}
#menu .btn .shop a:hover {
	background-image: url(../img/navi_btn_hover-02.gif);
}
#menu .btn .event a {
	background-image: url(../img/navi_btn_.gif);
	height: 42px;
	width: 79px;
	background-repeat: no-repeat;
	margin: 0px;
	padding: 0px;
	background-position: 0px 0px;
	display: block;
	background-color: #FFCC66;
}
#menu .btn .event a:hover {
	background-image: url(../img/navi_btn_hover.gif);
}
#menu .btn .inter a {
	background-image: url(../img/navi_btn_-04.gif);
	display: block;
	height: 42px;
	width: 79px;
	background-repeat: no-repeat;
	margin: 0px;
	padding: 0px;
}
.spc {
	height: 30px;
	clear: both;
}

#menu .btn .inter a:hover {
	background-image: url(../img/navi_btn_hover-04.gif);
}
#menu .btn .report a {
	background-image: url(../img/navi_btn_-05.gif);
	display: block;
	height: 42px;
	width: 79px;
	background-repeat: no-repeat;
	margin: 0px;
	padding: 0px;
}
#menu .btn .report a:hover {
	background-image: url(../img/navi_btn_hover-05.gif);
}
#menu .btn .pickup a {
	background-image: url(../img/navi_btn_-06.gif);
	display: block;
	height: 42px;
	width: 79px;
	background-repeat: no-repeat;
	margin: 0px;
	padding: 0px;
}
#menu .btn .pickup a:hover {
	background-image: url(../img/navi_btn_hover-06.gif);
}
#menu .btn .know a {
	background-image: url(../img/navi_btn_-07.gif);
	display: block;
	height: 42px;
	width: 79px;
	background-repeat: no-repeat;
	margin: 0px;
	padding: 0px;
}
#menu .btn .know a:hover {
	background-image: url(../img/navi_btn_hover-07.gif);
}
#menu .btn .contact a {
	background-image: url(../img/navi_btn_-08.gif);
	display: block;
	height: 42px;
	width: 79px;
	background-repeat: no-repeat;
	margin: 0px;
	padding: 0px;
}
#menu .btn .contact a:hover {
	background-image: url(../img/navi_btn_hover-08.gif);
}
#menu .btn .bbs a {
	background-image: url(../img/navi_btn_-09.gif);
	display: block;
	height: 42px;
	width: 79px;
	background-repeat: no-repeat;
	margin: 0px;
	padding: 0px;
}
#menu .btn .bbs a:hover {
	background-image: url(../img/navi_btn_hover-09.gif);
}
#menu .btn .link a {
	background-image: url(../img/navi_btn_-10.gif);
	display: block;
	height: 42px;
	width: 79px;
	background-repeat: no-repeat;
	margin: 0px;
	padding: 0px;
}
#menu .btn .link a:hover {
	background-image: url(../img/navi_btn_hover-10.gif);
}


/*------------------------------------------------
	# ナビゲーション
------------------------------------------------*/
#navigation div.block {
	padding: 5px 5px 10px 5px;
}
#navigation div.block a:link, #navigation div.block a:visited {
	border-bottom: 1px solid #E5E5E5;
	color: #FFCC00;
	text-decoration: none;
}
#navigation div.block a:hover, #navigation div.block a:active {
	border-bottom: 1px solid #FFFFFF;
	color: #FF9900;
	text-decoration: none;
}
#navigation div.block a img {
	border: 0px solid #565656;
}
#navigation div.block h2 {
	padding: 5px 10px;
	background: url("./img/stripe_e5.gif") #d2bd92;
	color: #000000;
	text-transform: capitalize;
	line-height: 1;
}
#navigation div.block p {
	padding: 10px 10px 0 10px;
}
#navigation div.block ul {
	padding: 10px 10px 0 10px;
}
#navigation div.block ul li ul {
	padding: 0;
}
#navigation div.block ul li {
	padding-left: 15px;
	background: url("./img/list01.gif") 0 0.4em no-repeat;
}
#navigation div.block ul li ul li {
	background: url("./img/list02.gif") 0 0.4em no-repeat;
}
#navigation div.block dl {
	padding: 10px 10px 0 10px;
}
/*------------------------------------------------
	- コンテンツリスト
------------------------------------------------*/
#navigation div.menulist ul li {
	padding-left: 15px;
	background: url("./img/list04.gif") 0 0.4em no-repeat;
}
/*------------------------------------------------
	- カレンダー
------------------------------------------------*/
#navigation div.calendar h2 {
	margin-bottom: 5px;
}
#navigation div.calendar table {
	width: 246px;
}
#navigation div.calendar table th,
#navigation div.calendar table td {
	border-bottom: 1px solid #ECECEC;
	font-family: Verdana, sans-serif;
	font-size: 10px;
	text-align: center;
}
#navigation div.calendar table th {
	border-top: 1px solid #ECECEC;
	background: #FAFAFA;
}
#navigation div.calendar table td a {
	display: block;
}
#navigation div.calendar table td a:link, #navigation div.calendar table td a:visited {
	border-bottom: 0px solid #F0F0F0;
	background: #ECECEC;
	text-decoration: none;
}
#navigation div.calendar table td a:hover, #navigation div.calendar table td a:active {
	border-bottom: 0px solid #F0F0F0;
	background: #FAFAFA;
	text-decoration: none;
}
#navigation div.calendar table td.today {/* カレンダー本日 */
	font-weight: bold;
}
/*------------------------------------------------
	- 新着ミニ画像
------------------------------------------------*/
#navigation div.image p img {
	margin: 2px 0 3px 0;
}
/*------------------------------------------------
	- 新着記事、新着TB、新着コメ
------------------------------------------------*/
#navigation div.entrylist dl dt,
#navigation div.cmtlist dl dt,
#navigation div.tblist dl dt {
	padding-left: 15px;
	background: url("./img/list01.gif") 0 0.4em no-repeat;
}
#navigation div.entrylist dl dd,
#navigation div.cmtlist dl dd,
#navigation div.tblist dl dd {
	margin-left: 15px;
	color: #B0B0B0;
}
/*------------------------------------------------
	- 月別アーカイブ
------------------------------------------------*/
#navigation div.archive ul {
	zoom: 1;
}
#navigation div.archive ul li {
	display: inline;
	padding-left: 0;
	background: none;
}
#navigation div.archive ul li a {
	white-space: nowrap;
}
/*------------------------------------------------
	- 検索窓
------------------------------------------------*/
#navigation div.search p input.submit {
	border: 1px solid #E0E0E0;
	background: #E5E5E5;
}
/*------------------------------------------------
	# 記事
------------------------------------------------*/
#diary h2 {
	display: none;
}
#diary div.diary {
	padding-bottom: 30px;
}
#diary div.diary h3 {
	margin-bottom: 5px;
}
#diary div.diary h3.subject {
	text-transform: none;
}
#diary div.diary p.info {
	margin: 0 40px;
	color: #D0D0D0;
}
#diary div.diary p.info a:link, #diary div.diary p.info a:visited {
	border-bottom: 1px solid #F0F0F0;
	color: #D0D0D0;
	text-decoration: none;
}
#diary div.diary p.info a:hover, #diary div.diary p.info a:active {
	border-bottom: 1px solid #FAFAFA;
	color: #FFFFFF;
	text-decoration: none;
}
#diary div.diary p.info2 {
	clear: both;
	text-align: right;
}
#diary div.diary div.text {
	margin: 30px 40px 15px 40px;
	zoom: normal;
}
/*------------------------------------------------
	- インデックスページ
------------------------------------------------*/
#diary div.indexpage h4 a {
	font-size: 10px;
}
#diary div.indexpage h4 a:link, #diary div.indexpage h4 a:visited {
	text-decoration: none;
}
#diary div.indexpage h4 a:hover, #diary div.indexpage h4 a:active {
	text-decoration: none;
}
/*------------------------------------------------
	- トラックバック・コメント(記事一覧表示)
------------------------------------------------*/
#diary div.list {
	margin: 0 40px;
	padding-bottom: 30px;
}
#diary div.list h4 {
	border-bottom: 1px solid #F0F0F0;
	color: #E0E0E0;
	font-family: Arial, sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 1;
}
#diary div.list ul {
	margin: 0 0 0 30px;
	background: #FCFCFC;
}
#diary div.list ul li {
	padding: 10px 15px;
	border-bottom: 1px solid #F0F0F0;
	font-size: 10px;
}
#diary div.list dl {
	margin: 0 0 0 30px;
	background: #FCFCFC;
} 
#diary div.list dl dt {
	padding: 10px 15px;
	color: #909090;
}
#diary div.list dl dd {
	padding: 0 15px;
	border-bottom: 1px solid #F0F0F0;
}
#diary div.list dl dd p {
	padding-bottom: 10px;
}
/*------------------------------------------------
	#トラックバック・コメント(個別ページ表示)
------------------------------------------------*/
#trackback h2, #comment h2 {
	margin: 0 40px;
	border-bottom: 1px solid #F0F0F0;
	color: #E0E0E0;
	font-family: Arial, sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 1;
}
#trackback ul, #comment ul {
	margin: 0 40px;
	padding: 5px 0;
	border-bottom: 1px solid #F0F0F0;
}
#trackback dl {
	margin: 0 40px 0 70px;
	padding: 10px 15px;
	border-bottom: 1px solid #F0F0F0;
	background: #FCFCFC;
}
#trackback dl dd {
	font-size: 10px;
}
#comment div.comment {
	margin: 0 40px 0 70px;
	padding: 10px 15px;
	border-bottom: 1px solid #F0F0F0;
	background: #111111;
}
#comment div.comment h3 {
	color: #F0F0F0;
}
#comment div.comment div.text p {
	margin: 0;
	padding-top: 10px;
}
/*------------------------------------------------
	# ページナビゲーション
------------------------------------------------*/
#page h2, #navi h2 {
	display: none;
}
#page ul, #navi ul {
	margin: 0 40px;
	color: #C0C0C0;
	line-height: 2;
}
#navi ul {
	text-align: right;
}
#page ul li {
	display: inline;
	margin-right: 5px;
}
#page ul li a, #navi ul li a {
	padding: 1px 5px;
}
#page ul li a:link, #page ul li a:visited,
#navi ul li a:link, #navi ul li a:visited {
	border: 1px solid #F0F0F0;
	background: #FAFAFA;
	color: #909090;
	text-decoration: none;
}
#page ul li a:hover, #page ul li a:active,
#navi ul li a:hover, #navi ul li a:active {
	border: 1px solid #E5E5E5;
	background: #F0F0F0;
	color: #B0B0B0;
	text-decoration: none;
}
#navi ul li {
	display: inline;
	margin-left: 5px;
}
#navi form {
	margin: 0 40px;
}
#navi form dl dt {
	display: none;
}
#navi form dl dd {
	float: left;
	clear: left;
}
/*------------------------------------------------
	# コンテンツ
------------------------------------------------*/
#contents h3 {
	margin: 15px 40px 0 40px;
	padding-left: 12px;
	border-left: 3px solid #B0B0B0;
	letter-spacing: 5px;
}
#contents h4 {
	margin: 15px 40px 0 40px;
	padding-left: 12px;
	border-left: 3px solid #E0E0E0;
	letter-spacing: 5px;
}
#contents h5, #contents h6 {
	margin: 15px 40px 0 40px;
	color: #909090;
	letter-spacing: 5px;
}
#contents p, #contents ul, #contents dl, #contents table {
	margin: 15px 40px 0 40px;
}
#contents dl.trackbackUrl input {
	background: #F0F0F0;
}
#contents img {
	margin: 3px 0 2px 0;
}
#contents table th, #contents table td {
	padding: 5px 10px;
	border: 1px solid #ECECEC;
	background: #0C0C0C;
}
#contents table th {
	background: #050505;
	white-space: nowrap;
}
#contents table img {
	margin: 5px 0;
}
#contents form {
	margin: 15px 40px 0 40px;
	padding: 9px 14px;
	border: 1px solid #F5F5F5;
	background: url("./img/stripe_f5.gif") #111111;
}
#contents form p, #contents form ul, #contents form dl, #contents form table {
	margin: 5px 0;
}
/*------------------------------------------------
	- アルバム
------------------------------------------------*/
#contents ul.album {
	border-bottom: 1px solid #F0F0F0;
	line-height: 1;
}
#contents ul.album li {
	display: inline;
}
#contents ul.album li img {
	margin: 0 0 5px 0;
}
#contents ul.album li a {
	display: block;
	padding: 5px;
	border-top: 1px solid #F0F0F0;
}
#contents ul.album li a:link, #contents ul.album li a:visited {
	background: #FAFAFA;
	text-decoration: none;
}
#contents ul.album li a:hover, #contents ul.album li a:active {
	background: #F5F5F5;
	text-decoration: none;
}
/*------------------------------------------------
	- アイコン
------------------------------------------------*/
#contents ul.iconlist {
	border-bottom: 1px solid #F0F0F0;
}
#contents ul.iconlist li {
	border-top: 1px solid #F0F0F0;
}
#contents ul.iconlist li img {
	margin: 4px 0;
	vertical-align: top;
}
/*------------------------------------------------
	# 処理選択
------------------------------------------------*/
#work form {
	margin: 15px 40px 0 40px;
}
#work form dl dt {
	display: none;
}
#work form dl dd {
	float: left;
	clear: left;
}
/*------------------------------------------------
	# フォーム
------------------------------------------------*/
#form p, #form ul, #form dl {
	margin: 15px 40px 0 40px;
}
#form form {
	margin: 15px 40px 0 40px;
	padding: 9px 14px;
	border: 1px solid #050505;
	background: url("./img/stripe_f5.gif") #111111;
}
#form form p, #form form ul, #form form dl, #form form dl dd {
	margin: 5px 0;
}
#form form dl dt {
	float: left;
	clear: left;
	width: 6em;
}
/*------------------------------------------------
	# 環境設定
------------------------------------------------*/
#env p, #env ul, #env dl, #env table {
	margin: 15px 40px 0 40px;
}
#env table th, #env table td {
	padding: 5px 10px;
	border: 1px solid #ECECEC;
	background: #111111;
}
#env table th {
	background: #cbb796;
	white-space: nowrap;
}
#env table img {
	margin: 5px 0;
}
#env form {
	margin: 15px 40px 0 40px;
	padding: 9px 14px;
	border: 1px solid #F5F5F5;
	background: url("./img/stripe_f5.gif") #111111;
}
#env form h3 {
	margin: 15px 0;
	padding-left: 12px;
	border-left: 3px solid #B0B0B0;
	background: #111111;
}
#env form p, #env form ul, #env form dl, #env form table {
	margin: 5px 0;
}
#env form dl dt em {
	color: #CC0000;
}
#env form dl dd {
	margin-bottom: 5px;
}
/*------------------------------------------------
	# キャンバス
------------------------------------------------*/
#canvas applet {
	float: left;
	margin-left: 40px;
}
#canvas:after {
	content: ".";
	display: block;
	visibility: hidden;
	height: 0.1px;
	font-size: 0.1em;
	line-height: 0;
	clear: both;
}
/*------------------------------------------------
	# ステータス
------------------------------------------------*/
#status h3 {
	margin: 15px 40px 0 40px;
	padding-left: 12px;
	border-left: 3px solid #B0B0B0;
	letter-spacing: 5px;
}
#status p, #status ul, #status dl {
	margin: 15px 40px 0 40px;
}
#status dl dt {
	float: left;
	clear: left;
	width: 10em;
}
#status dl dd {
	margin: 5px 0;
}
/*------------------------------------------------
	# フッター
------------------------------------------------*/
#footer ul {
	padding: 10px 15px;
	background: #050505;
	font-size: 10px;
	text-align: right;
}
#footer ul li {
	display: inline;
	margin-left: 5px;
}
#footer ul li a:link, #footer ul li a:visited {
	color: #909090;
	text-decoration: none;
}
#footer ul li a:hover, #footer ul li a:active {
	color: #FFFFFF;
	text-decoration: underline;
}
#footer address {
	padding: 10px 15px;
	border-top: 1px solid #1C1C1C;
	background: #000000;
	color: #B0B0B0;
	font-size: 10px;
	text-align: right;
}
#footer address a:link, #footer address a:visited {
	color: #B0B0B0;
	text-decoration: none;
}
#footer address a:hover, #footer address a:active {
	color: #FFFFFF;
	text-decoration: none;
}
/*================================================
	5. 本文装飾
================================================*/
div.text h4 {
	margin: 15px 0;
	padding-left: 12px;
	border-left: 3px solid #B0B0B0;
	letter-spacing: 5px;
}
div.text h5 {
	margin: 15px 0;
	padding-left: 12px;
	border-left: 3px solid #E0E0E0;
	letter-spacing: 5px;
}
div.text h6 {
	margin: 15px 0;
	color: #909090;
	letter-spacing: 5px;
}
div.text p {
	margin: 15px 0;
}
div.text ul {
	margin: 15px 0;
}
div.text ul li {
	margin: 5px 0;
	padding-left: 15px;
	background: url("./img/list03.gif") 0 0.4em no-repeat;
}
div.text ol {
	margin: 15px 0;
	list-style: decimal outside;
}
div.text ol li {
	margin: 5px 0 5px 3em;
}
div.text dl {
	margin: 15px 0;
}
div.text dl dt {
	margin: 5px 0;
	letter-spacing: 3px;
}
div.text dl dd {
	margin: 5px 0 5px 15px;
	padding-left: 13px;
	border-left: 2px solid #ECECEC;
}
div.text blockquote {
	margin: 15px 0;
	padding: 1px 0 0 30px;
	background: url("./img/blockquote.gif") 0 0 no-repeat;
	color: #909090;
}
div.text pre {
	width: 85%;
	margin: 15px 0;
	padding: 13px;
	border: 2px solid #111111;
}
	@media screen {
		div.text pre {
			border: 2px solid #111111;
		}
	}
div.text table {
	margin-left: 15px;
}
div.text table th {
	padding: 5px 10px;
	border: 1px solid #ECECEC;
	background: #F5F5F5;
}
div.text table td {
	padding: 5px 10px;
	border: 1px solid #ECECEC;
	background: #FCFCFC;
	vertical-align: top;
}
div.text table img {
	margin: 5px 0;
}
/*------------------------------------------------
	--- 記事本文内リンク★
------------------------------------------------*/
div.text a:link {/* 未読 */
	text-decoration: underline;
}
div.text a:visited {/* 既読 */
	text-decoration: none;
}
div.text a:hover {/* マウスオーバー */
	text-decoration: underline;
}
div.text a:active {/* アクティブ */
	text-decoration: underline;
}
/*------------------------------------------------
	--- 画像余白★
------------------------------------------------*/
div.text img {
	margin: 5px;
}
/*================================================
	6. おまけ ※omake/ReadMe.html参照
================================================*/
/*------------------------------------------------
	(plugin) パンくずリスト
------------------------------------------------*/
p.pluginTopicpath {
	margin: 0 15px;
	padding-top: 15px;
	color: #c9b185;
	line-height: 2;
}
p.pluginTopicpath a {
	padding: 1px 5px;
}
p.pluginTopicpath a:link, p.pluginTopicpath a:visited {
	background: #111111;
	color: #c9b185;
	text-decoration: none;
}
p.pluginTopicpath a:hover, p.pluginTopicpath a:active {
	background: #B0B0B0;
	color: #F0F0F0;
	text-decoration: none;
}
/*------------------------------------------------
	(plugin) ページ移動
------------------------------------------------*/
p.pluginPage {
	margin: 0 40px;
	padding: 5px 0 30px 0;
	border-top: 1px solid #F0F0F0;
	color: #B0B0B0;
	text-align: right;
}
/*------------------------------------------------
	(plugin) タグ
------------------------------------------------*/
p.pluginTagging {
	padding: 5px 15px 5px 30px;
	background: url("./img/tag.gif") 8px 50% no-repeat #FAFAFA;
}
p.pluginTagging a {
	margin-right: 5px;
}
/*------------------------------------------------
	(plugin) タグクラウド
------------------------------------------------*/
#navigation div.block ul.tag {
	display: block;
	line-height: 1.1;
	zoom: 1;
}
#navigation div.block ul.tag li {
	display: inline;
	padding: 0;
	background: none;
	color: #B0B0B0;
}
#navigation div.block ul.tag li {
	zoom: 1;
}
