@charset "shift_jis"; 

/*
=============================================================================
					CONTENTS （目次）
=============================================================================

		◎File name
		style-sheet.css
		
		◎Information
		last update: 04 January 2006
		Copyright: 	Hirokazu Teramoto
					http://09darts.com/ablog/
		
		◎Description
		このスタイルシートは主要な共通設定を行っているものです。
				
		◎Items
		1.一般設定
		:リンクの設定 
		:訪問済みリンクの設定 
		:アクティブリンクの設定
		:リンクのホバー設定
		:タイトルのリンク設定
		:タイトルの訪問済みリンク設定
		:タイトルのアクティブリンク設定
		:タイトルのリンクホバー設定
		:本文エリアのボックス 
		:見出しの設定 
		:イメージの設定 
		:フォームの設定 
		:仕切り線の設定 
		:引用の設定 

		2.レイアウト設定
		:コンテンツ全体のボックス 
		:ヘッダのボックス 
		:naviBoxの設定 
		:本文エリアのボックス 
		:サブエリアのボックス
		:フッタのボックス
		:管理者モードの際のボタンフォーム
		:フロート解除
		:フロート解除(不可視)
		:ページのタイトル
		:サイトの解説
		:管理者用ナビゲーションのボックス

		3.本文部分の設定
		3.1.本文一般設定
		:本文パート--記事タイトル
		:本文パート--記事タイトル
		:本文パート--日ごとのボックス
		:本文パート--通常公開記事のボックス
		:本文パート--非公開記事のボックス
		:本文パート--期限切れ記事のボックス
		:日曜日
		:平日
		:土曜日
		:記事本文ボックス
		:記事本文
		:記事内テーブル
		:記事内テーブルのセル設定
		:記事内ソース
		:カテゴリ名
		:検索語の装飾用

		3.2.添付ファイル設定
		:添付画像
		:添付ファイルアイコン
		:添付ファイルのキャプション
		:添付画像配置（右）
		:添付画像配置（左）
		:添付画像配置（上下）

		3.3.フォーム設定
		:各種フォーム用テキスト
		:各種フォーム用メッセージ

		3.4.本文その他設定
		:記事フッタ(投稿者、コメント、TB等)
		:改ページリンク
		:エラーメッセージ

		4.サブエリア設定
		4.1.サブエリア一般設定
		:タイトル帯
		:リスト
		:リストアイテム
		:リスト（小）

		4.2.サブエリアカレンダ設定
		:カレンダ用の設定
		:年月・前後月のリンク
		:月
		:年
		:前月リンク
		:次月リンク
		:カレンダー日付部分のテーブル
		:カレンダー日付部分のテーブルのリンク
		:カレンダー曜日部分
		:カレンダー日曜日
		:カレンダー土曜日
		:カレンダー空欄
		:記事のある日付
		:記事の無い日付

		4.3.サブエリアプロフィール設定
		:プロフィールエリアのボックス
		:プロフィール画像
		:プロフィール所属
		:プロフィール肩書き
		:プロフィール名前
		:プロフィールテキスト

		4.4.サブエリアPHOTO設定
		:PHOTOエリアのボックス

		4.5.サブエリアリンク集設定
		:リンク集エリアのボックス
		:リンク集サブカテゴリ名

		4.6.サブエリア検索設定
		:検索エリアのボックス
		:検索フォーム
		:検索カテゴリリスト

		4.7.サブエリアバナーエリア設定設定
		:バナー用のボックス

		4.8.サブエリアフッタ部分設定
		:サブエリアのフッタ(RSS、ログイン、バナー)
		:RSSファイルへのリンク
		:ログイン
		:スクリプト名用ボックス
		:a-blogのバナー

		5.コメント・トラックバック設定
		:コメントボックス
		:トラックバックURLボックス
		:トラックバックURLタイトル
		:トラックバックタイトル
		:コメントタイトル
		:コメントのフォーム
		:コメントのテキストボックス
		:コメントのフッタ(名前、投稿時間)
		:コメントのボタン
		:コメントのボタン下のHR
		:トラックバックのURL部分設定
		:各種フォームボタン

		6.記事ナビゲーション設定
		:記事ナビゲーションボックス
		:過去の記事
		:次の記事
		:記事一覧へ
		
		
=============================================================================
=============================================================================
*/



/*===========================================================================
	1.一般設定
=============================================================================*/

/*  リンクの設定 
-----------------------------------------------------------------------------*/
a:link {
	border: none;

	color: #4876FF;
	text-decoration:none;
}

/*  訪問済みリンクの設定 
-----------------------------------------------------------------------------*/
a:visited {
	border: none;
	color: #666699;
	text-decoration:none;
}

/*  アクティブリンクの設定 
-----------------------------------------------------------------------------*/
a:active {
	border: none;
	color: #32A2CA;
}

/*  リンクのホバー設定 
-----------------------------------------------------------------------------*/
a:hover {
	border: none;
	color: #32A2CA;
	text-decoration:underline;
}

/*  タイトルのリンク設定 
-----------------------------------------------------------------------------*/
a.titleLink:link {
	border: none;
	color: #EEEEEE;
	font-weight: normal;
	text-decoration:none;
}

/*  タイトルの訪問済みリンク設定 
-----------------------------------------------------------------------------*/
a.titleLink:visited {
	border: none;
	color: #EEEEEE;
	font-weight: normal;
	text-decoration:none;
}

/*  タイトルのアクティブリンク設定 
-----------------------------------------------------------------------------*/
a.titleLink:active {
	border: none;
	color:#32A2CA;
	font-weight: normal;
}

/*  タイトルのリンクホバー設定 
-----------------------------------------------------------------------------*/
a.titleLink:hover {
	border: none;
	color:#32A2CA;
	font-weight: normal;
	text-decoration:none;
}

/*  本文エリアのボックス 
-----------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	background-color: #999999;
	font-size: 12px;
	font-family: Arial, sans-serif;

	/* font-family: "Osaka ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS Gothic"; */
	
	background-image: url(img/bodyback.jpg);
	background-repeat: no-repeat;

}

/*  見出しの設定 
-----------------------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
	margin: 0px;
	font-family: Arial, sans-serif;
	/* font-family: "Osaka ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS Gothic"; */
	letter-spacing:0.1em;
}

/*  イメージの設定 
-----------------------------------------------------------------------------*/
img {
	border: none;
}

/*  フォームの設定 
-----------------------------------------------------------------------------*/
form {
	margin: 0px;
	padding: 0px;
}

/*  仕切り線の設定 
-----------------------------------------------------------------------------*/
hr {
	margin-left: 10px;
}

/* 引用の設定 
-----------------------------------------------------------------------------*/
blockquote {
	margin: 10px 30px 10px 30px;
	padding: 10px 10px 10px 10px;

	color: #666666;
	line-height: 16px;
	background-color: #F5FFFA;

	border: 1px dotted #999999;

}


/*===========================================================================
	2.レイアウト設定
=============================================================================*/

/*	コンテンツ全体のボックス 
-----------------------------------------------------------------------------*/

#allBox {
	width: 800px;
	margin: 0px auto;
	border-right: solid 2px #666666;
	border-left: solid 2px #666666;
	background-color: #FFFFFF;
}

/*	ヘッダのボックス 
-----------------------------------------------------------------------------*/
#headerBox {
	width: 800px;
	height: 60px;
	margin: 0px 0px 0px 0px;
	padding: 20px 0px 0px 0px;
	background-color: #333333;
	text-align: right;
}

/*	naviBoxの設定 
-----------------------------------------------------------------------------*/
#naviBox {
	width: 790px;
	height: 25px;
	margin: 0px 0px 0px 0px;
	padding: 0px 10px 0px 0px;
	text-align: right;
	font-family: Arial, sans-serif;
	font-size: 12px;
	line-height: 25px;
	
	background-image: url(img/navi.gif);
	background-repeat: repeat-x;
	
	border-bottom: solid 2px #333333;
}

/*	本文エリアのボックス 
-----------------------------------------------------------------------------*/
#mainBox {
	float: left;
	width: 590px;
	margin: 0px 0px 0px 0px;
	_margin: 0px 0px 0px 0px;
	padding: 0px;
	text-align: left;
	
	background-color: #FFFFFF;
}

/*	サブエリアのボックス
-----------------------------------------------------------------------------*/
#subBox {
	float: right;
	width: 200px;
	margin: 0px 0px 0px 0px;
	_margin: 0px 0px 0px 0px;
	padding: 0px;
	background-color: #FFFFFF;
}

/*	フッタのボックス
-----------------------------------------------------------------------------*/
#footerBox {
	clear: both;
	height: 10px;	
	margin: 0px 1px;
	padding: 16px 0px  14px 0px;
	color: #666666;
	font-size: 10px;
	text-align: center;
}

/*	管理者モードの際のボタンフォーム
-----------------------------------------------------------------------------*/
.adminBtn {
	float: left;
}

/*	フロート解除
-----------------------------------------------------------------------------*/
.clear {
	clear: both;
}

/*	フロート解除(不可視)
-----------------------------------------------------------------------------*/
.clearHidden {
	clear: both;
	visibility: hidden;
}

/* ページのタイトル
-----------------------------------------------------------------------------*/
h1#pageTitle {
	margin: 0px 0px 0px 10px;
	color: #EEEEEE;
	font-family: Verdana, Arial, sans-serif;
	font-size: 24px;
	font-weight: normal;
}

/*	サイトの解説
-----------------------------------------------------------------------------*/
p#description {
	margin: 5px 0px 0px 15px;
	color: #9C9C9C;
	font-size: 12px;
}

/*	管理者用ナビゲーションのボックス
-----------------------------------------------------------------------------*/
#adminBox {
	margin: 0px 0px 0px 0px;
	padding: 10px;
}

/*===========================================================================
	3.本文部分の設定
	3.1.本文一般設定
=============================================================================*/

/*	本文パート--記事タイトル
-----------------------------------------------------------------------------*/
.title {
	margin: 0px 0px 0px 0px;
	padding: 20px 0px 0px 26px;

	color: #666666;
	font-size: 18px;
	font-weight: normal;
	
	border-top: dotted 1px #999999;

	background-image: url(img/arrow.gif);
	background-repeat: no-repeat;
}

/*	本文パート--記事タイトル
-----------------------------------------------------------------------------*/
.titleCat {
	margin: 0px 0px 10px 0px;
	padding: 0px 0px 4px 6px;

	color: #666666;
	font-size: 12px;
	font-weight: bold;
	
	border-bottom: dotted 1px #999999;
}

/*	本文パート--日ごとのボックス
-----------------------------------------------------------------------------*/

.dateBox {
	width: 590px;
	margin: 0px 0px 0px 0px;
	padding: 0px;
}

/*	本文パート--通常公開記事のボックス
-----------------------------------------------------------------------------*/

.newsBox {
	width: 580px;
	margin: 0px 0px 0px 10px;
	padding: 0px 0px 0px 0px;
}

/*	本文パート--非公開記事のボックス
-----------------------------------------------------------------------------*/
.newsBoxHidden {
	width: 580px;
	margin: 0px 0px 0px 10px;
	padding: 0px 0px 0px 0px;
}

/*	本文パート--期限切れ記事のボックス
-----------------------------------------------------------------------------*/
.newsBoxLimit {
	width: 580px;
	margin: 0px 0px 0px 10px;
	padding: 0px 0px 0px 0px;
}

/*	日曜日
-----------------------------------------------------------------------------*/
.date0 {
	margin: 10px 0px 20px 0px;
	padding: 0px 0px 5px 0px;
	color: #CC9999;
	line-height: 20px;
	font-size: 12px;
	font-weight: bold;
	text-align: right;

	background-image: url(img/datetitle.gif);
	background-repeat: no-repeat;
	background-position: right;
}

/*	平日
-----------------------------------------------------------------------------*/
.date, .date1,.date2, .date3, .date4, .date5 {
	margin: 10px 0px 20px 0px;
	padding: 0px 0px 5px 0px;
	color: #888888;
	line-height: 20px;
	font-size: 12px;
	font-weight: bold;
	text-align: right;

	background-image: url(img/datetitle.gif);
	background-repeat: no-repeat;
	background-position: right;
}

/*	土曜日
-----------------------------------------------------------------------------*/
.date6 {
	margin: 10px 0px 20px 0px;
	padding: 0px 0px 5px 0px;
	color: #9999CC;
	line-height: 20px;
	font-size: 12px;
	font-weight: bold;
	text-align: right;

	background-image: url(img/datetitle.gif);
	background-repeat: no-repeat;
	background-position: right;

}
/*	記事本文ボックス
-----------------------------------------------------------------------------*/
.newsTextBox {
	margin: 0px;
	padding: 0px 0px 0px 10px;
	color: #333333;
}

/*	記事本文
-----------------------------------------------------------------------------*/
.news {
	font-size: 12px;
	line-height: 20px;
}

/*	記事内テーブル
-----------------------------------------------------------------------------*/
.newsTextBox table {
	margin: 10px 0px;
	border-collapse: collapse;
}

/*	記事内テーブルのセル設定
-----------------------------------------------------------------------------*/
.newsTextBox td {
	padding: 3px;
	border: solid 1px #CCCCCC;
}

/*	記事内ソース
-----------------------------------------------------------------------------*/
.newsTextBox pre {
	width: 440px;
	margin-left: 10px;
	padding: 5px 10px 5px 10px;
	border-top: solid 1px #CCCCCC;
	border-left: solid 1px #CCCCCC;
	background-color: #EEEEEE;
	overflow: scroll;
}

/*	カテゴリ名
-----------------------------------------------------------------------------*/
.categoryName {
	color: #999999;
	font-size: 12px;
}

/* 検索語の装飾用
-----------------------------------------------------------------------------*/
.searchWord {
	color: #CC0000;
	font-weight: bold;
	text-decoration: underline;
}

/*===========================================================================
	3.2.添付ファイル設定
=============================================================================*/

/*	添付画像
-----------------------------------------------------------------------------*/
.img {
	padding:5px;
	border-top: solid 1px #C0C0C0;
	border-right: solid 1px #808080;
	border-bottom: solid 1px #808080;
	border-left: solid 1px #C0C0C0;
	background-color: #FFFFFF;
}

/*	添付ファイルアイコン
-----------------------------------------------------------------------------*/
.icon {
	padding:5px;
}

/*	添付ファイルのキャプション
-----------------------------------------------------------------------------*/
.caption {
	margin: 2px 0px 5px;
	padding: 0px 5px;
	color: #666666;
	font-size: 10px;
	text-align: center;
}

/*	添付画像配置（右）
-----------------------------------------------------------------------------*/
.photoBoxL {
	float: left;
	margin-right: 10px;
}

/*	添付画像配置（左）
-----------------------------------------------------------------------------*/
.photoBoxR {
	float: right;
	margin-left: 10px;
}

/*	添付画像配置（上下）
-----------------------------------------------------------------------------*/
.photoBoxC {
	margin-right: auto;
	margin-left: auto;
}

/*===========================================================================
	3.3.フォーム設定
=============================================================================*/

/*	各種フォーム用テキスト
-----------------------------------------------------------------------------*/
.formText {
	font-size: 12px;
	color: #333333;
}

/*	各種フォーム用メッセージ
-----------------------------------------------------------------------------*/
.formMessage {
	font-size: 14px;
	color: #333333;
}

/*===========================================================================
	3.4.バナー設定
=============================================================================*/

/*	バナー用のボックス メインエリア
-----------------------------------------------------------------------------*/
.bannerBoxL {
	margin: 0px 0px 0px 20px;
	padding: 5px 0px 5px 0px;
	text-align: center;

}

/*===========================================================================
	3.本文その他設定
=============================================================================*/

/*	記事フッタ(投稿者、コメント、TB等)
-----------------------------------------------------------------------------*/
.newsFoot {
	clear: both;
	padding: 0px 5px 5px 5px;
	color: #666666;
	font-size: 10px;
	text-align: right;
}

/*	改ページリンク
-----------------------------------------------------------------------------*/
.nextNews {
	text-align: center;
}

/*	エラーメッセージ
-----------------------------------------------------------------------------*/
.error {
	color: #FF0000;
	font-size: 12px;
	line-height: 20px;
}

/*===========================================================================
	4.サブエリア設定
	4.1.サブエリア一般設定
=============================================================================*/

/*	タイトル帯
-----------------------------------------------------------------------------*/
#subBox h2 {
	margin: 0px;
	padding: 0px 0px 0px 10px;
	color: #CCCCCC;
	font-size: 12px;
	line-height: 20px;

	background-color: #333333;

	border-top: solid 1px #CCCCCC;

}

/*	リスト
-----------------------------------------------------------------------------*/
.subList {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	color: #333333;

	border-bottom: solid 1px #FFFFE0;

}

/*	リストアイテム
-----------------------------------------------------------------------------*/
.subList li {
	margin: 0px;
	padding-left: 10px;
	color: #333333;
	background-color: #E8E8E8;
	font-size: 12px;
	line-height: 20px;

	border-bottom: solid 1px #FFFFE0;
}

/*	リスト（小）
-----------------------------------------------------------------------------*/
.subListSmall {
	font-size: 10px;
}

/*===========================================================================
	4.2.サブエリアカレンダ設定
=============================================================================*/

/* カレンダ用の設定
-----------------------------------------------------------------------------*/
#calBox {
	width: 200px;
	margin: 0px;
	padding: 10px 0px 10px 0px;
	background-color: #E8E8E8;
	text-align: center;
	
	border-bottom: solid 1px #FFFFE0;
}

/*	年月・前後月のリンク
-----------------------------------------------------------------------------*/
#calHeader {
	width: 180px;
	margin: 0px 10px;
}

/*	月
-----------------------------------------------------------------------------*/
#month {
	font-size: 20px;
	margin: 0px;
	padding: 0px;
	text-align: center;
}

/*	年
-----------------------------------------------------------------------------*/
#year {
	float: left;
	width: 100px;
	margin: 0px;
	text-align: center;
}

/*	前月リンク
-----------------------------------------------------------------------------*/
#prevLink {
	float: left;
	width: 40px;
	height: 20px;
	margin: 0px;
	font-family: "Osaka ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS Gothic";
	font-size: 12px;
	text-align: left;
}

/*	次月リンク
-----------------------------------------------------------------------------*/
#nextLink {
	float: left;
	width: 40px;
	height: 20px;
	margin: 0px;
	font-family: "Osaka ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS Gothic";
	font-size: 12px;
	text-align: right;
}

/*	カレンダー日付部分のテーブル
-----------------------------------------------------------------------------*/
.cTable {
	width: 180px;
	margin: 0px 10px;
}

/*	カレンダー日付部分のテーブルのリンク
-----------------------------------------------------------------------------*/
.cTable a {
	color: #FF8800;
}

/*	カレンダー曜日部分
-----------------------------------------------------------------------------*/
.cWeek {
	padding: 4px;
	color: #333333;
	font-size: 10px;
	text-align: center;
}

/*	カレンダー日曜日
-----------------------------------------------------------------------------*/
.cWeek0 {
	color: #FF0000;
}

/*	カレンダー土曜日
-----------------------------------------------------------------------------*/
.cWeek6 {
	color: #0000FF;
}

/*	カレンダー空欄
-----------------------------------------------------------------------------*/
.cOpen {
	text-align: center;
}

/* 記事のある日付
-----------------------------------------------------------------------------*/
.cLink, .cLink0, .cLink1, .cLink2, .cLink3, .cLink4, .cLink5, .cLink6 {
	text-align: center;
}

/* 記事の無い日付
-----------------------------------------------------------------------------*/
.cNone , .cNone0, .cNone1, .cNone2, .cNone3, .cNone4, .cNone5, .cNone6 {
	text-align: center;
}

/*===========================================================================
	4.3.サブエリアプロフィール設定
=============================================================================*/

/* プロフィールエリアのボックス
-----------------------------------------------------------------------------*/
#subProfileBox {
	width: 200px;
	margin: 0px;
	padding: 10px 0px 10px 0px;
	background-color: #E8E8E8;
	
	border-bottom: solid 1px #FFFFE0;
}

/*	プロフィール画像
-----------------------------------------------------------------------------*/
#profileImg {
	margin-bottom: 10px;
	padding: 5px;
	border-top: 1px solid #CCCCCC;
	border-right: 1px solid #999999;
	border-bottom: 1px solid #999999;
	border-left: 1px solid #CCCCCC;
	background-color: #FFFFFF;
}

/*	プロフィール所属
-----------------------------------------------------------------------------*/
#profilePosition {
	margin: 0px;
	padding-left: 10px;
	color: #333333;
	font-size: 10px;
	font-weight: bold;
}

/*	プロフィール肩書き
-----------------------------------------------------------------------------*/
#profileTitle {
	margin: 0px;
	padding-left: 10px;
	color: #333333;
	font-size: 10px;
	font-weight: bold;
}

/*	プロフィール名前
-----------------------------------------------------------------------------*/
#profileName {
	margin: 0px;
	padding-left: 10px;
	color: #333333;
	font-size: 12px;
	font-weight: bold;
}

/*	プロフィールテキスト
-----------------------------------------------------------------------------*/
#profileText {
	margin: 5px 0px;
	padding-left: 10px;
	color: #333333;
	font-size: 11px;
	line-height: 140%;
}

/*===========================================================================
	4.4.サブエリアPHOTO設定
=============================================================================*/

/* PHOTOエリアのボックス
-----------------------------------------------------------------------------*/
#subPhotoBox {
	width: 200px;
	margin: 0px;
	padding: 10px 0px 10px 0px;
	background-color: #E8E8E8;
	text-align: center;
	
	border-bottom: solid 1px #FFFFE0;
}

/*===========================================================================
	4.5.サブエリアリンク集設定
=============================================================================*/

/* リンク集エリアのボックス
-----------------------------------------------------------------------------*/
.linkBox {

}

/*	リンク集サブカテゴリ名
-----------------------------------------------------------------------------*/
.linkCatTitle {
	margin-bottom: 5px;
	color: #333333;
	font-size: 10px;
	font-weight: normal;
	/*text-align: center;*/
}

/*===========================================================================
	4.6.サブエリア検索設定
=============================================================================*/

/* 検索エリアのボックス
-----------------------------------------------------------------------------*/
#subSearchBox {
	width: 200px;
	margin: 0px;
	padding: 10px 0px 10px 0px;

}

/*	検索フォーム
-----------------------------------------------------------------------------*/
#searchForm {

}

/*	検索カテゴリリスト
-----------------------------------------------------------------------------*/
#searchCat {
	width: 175px;
}

/*===========================================================================
	4.7.サブエリアバナーエリア設定
=============================================================================*/

/*	バナー用のボックス
-----------------------------------------------------------------------------*/
.bannerBox {
	width: 200px;
	margin: 0px;
	padding: 5px 0px 5px 0px;
	text-align: center;

}

/*===========================================================================
	4.8.サブエリアフッタ部分設定
=============================================================================*/

/*	サブエリアのフッタ(RSS、ログイン、バナー)
-----------------------------------------------------------------------------*/
#subFooterBox {
	padding-top: 5px;
}

/* RSSファイルへのリンク
-----------------------------------------------------------------------------*/
#rssBtn {
	float: left;
	width: 50px;
	margin: 10px 0px;
	padding: 0px;
	border: none;
}

/*	ログイン
-----------------------------------------------------------------------------*/
#login {
	width: 130px;
	float: left;
	margin: 10px 0px;
	padding: 0px;
	text-align: right;
}


/*	スクリプト名用ボックス
-----------------------------------------------------------------------------*/
#ablog {

}

/*	a-blogのバナー
-----------------------------------------------------------------------------*/
#a-blogBanner {

}

/*===========================================================================
	5.コメント・トラックバック設定
=============================================================================*/

/*	コメントボックス
-----------------------------------------------------------------------------*/
.comBox {
	margin: 0px 10px 0px 10px;
	padding: 0px 0px;

	border-top: 1px dotted #999999;
}

/*	トラックバックURLボックス
-----------------------------------------------------------------------------*/
#tbUrl {
	margin: 0px 10px 10px 10px;
	padding: 10px;
	border-top: 1px solid #CCCCCC;
	border-right: 1px solid #999999;
	border-bottom: 1px solid #999999;
	border-left: 1px solid #CCCCCC;
	background-color: #E6E6E6;
	font-size: 14px;
	font-weight: bold;
}

/*	トラックバックURLタイトル
-----------------------------------------------------------------------------*/
.tbTitle {
	margin: 10px 0px 0px 0px;
	padding: 4px 0px 0px 20px;
	font-size: 12px;
	font-weight: bold;
	background-image: url(img/track.gif);
	background-repeat: no-repeat;

}

/*	トラックバックタイトル
-----------------------------------------------------------------------------*/
.tbTopTitle {
	margin: 20px 0px 5px 10px;
	padding: 0px 0px 5px 20px;
	color: #888888;
	line-height: 20px;
	font-size: 14px;
	font-weight: bold;
	text-align: left;

	background-image: url(img/track.gif);
	background-repeat: no-repeat;

}

/*	コメントタイトル
-----------------------------------------------------------------------------*/
.comTopTitle {
	margin: 20px 0px 5px 10px;
	padding: 0px 0px 5px 20px;
	color: #888888;
	line-height: 20px;
	font-size: 14px;
	font-weight: bold;
	text-align: left;

	background-image: url(img/comment.gif);
	background-repeat: no-repeat;

}

/*	コメントのフォーム
-----------------------------------------------------------------------------*/
.comForm {
	margin: 10px 10px 10px 20px;
	padding: 20px;
	border-top: 1px solid #CCCCCC;
	border-right: 1px solid #999999;
	border-bottom: 1px solid #999999;
	border-left: 1px solid #CCCCCC;
	background-color: #E6E6E6;
	color: #333333;
	font-size: 12px;
}

/*	コメントのテキストボックス
-----------------------------------------------------------------------------*/
#comText {
	width: 400px;
}

/*	コメントのフッタ(名前、投稿時間)
-----------------------------------------------------------------------------*/
.comFooter {
	font-size: 10px;
}

/*	コメントのボタン
-----------------------------------------------------------------------------*/
.comSubmitBox {
	margin: 0px;
	padding: 0px;
	width: 100px;
	float: left;
}

/*	コメントのボタン下のHR
-----------------------------------------------------------------------------*/
#comHR {
	clear: both;
	visibility: hidden;
}

/*	トラックバックのURL部分設定
-----------------------------------------------------------------------------*/
#tbUrl p {
        margin: 0px 0px 0px 10px;
        color: #333333;
        font-size: 12px;
        font-weight: bold;
}

/*	各種フォームボタン
-----------------------------------------------------------------------------*/
.submitBtn {
	text-align: center;
}

/*===========================================================================
	6.記事ナビゲーション設定
=============================================================================*/

/*	記事ナビゲーションボックス
-----------------------------------------------------------------------------*/
#newsNaviBox {
	list-style-type: none;
	width: 100%;
	height: 20px;
	margin: 0px;
	padding: 0px;
}

/*	過去の記事
-----------------------------------------------------------------------------*/
#entryBack {
	float: left;
	width: 40%;
	margin: 5px 0px 10px 5px;
	padding: 0px;
	font-family: "Osaka ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS Gothic";
	text-align: left;
}

/*	次の記事
-----------------------------------------------------------------------------*/
#entryNext {
	float: right;
	width: 40%;
	margin: 5px 0px 10px 0px;
	padding: 0px;
	font-family: "Osaka ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS Gothic";
	text-align: right;
}

/*	記事一覧へ
-----------------------------------------------------------------------------*/
#entryList {
	float: left;
	width: 15%;
	margin: 5px 0px 10px 0px;
	padding: 0px;
	text-align: center;
}

/*	トップに戻る部分設定
-----------------------------------------------------------------------------*/
.gotoTop {
	margin-left: 20px;
}
