@charset "EUC-JP";

/* contentプロパティの初期化 */
*:before,
*:after {
	content: "";
}

/* 全体的なマージン・パディングの初期化 */
* {
	margin: 0;
	padding: 0;
}

/* body要素以下全てに適用されます */
body {
	font-size: small;
	color: #333333;
	background-color: #ffffff;
	text-align: center;
	line-height: 1.5;
}

/* リンク画像の枠を表示しない */
a img {
	border-style: none;
}

/* リンクの設定 */
a {
	text-decoration: none;
}

a:link {
	color: #0030bf;
}

a:visited {
	color: #4060bf;
}

a:hover {
	color: #bf0030;
}

a:active {
	color: #000099;
}

/* レイアウト用にサイト全体を包含 */
div#container {
	width: 950px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;	/* 古いIE用にセンタリングした部分を元に戻す */
}

/* タイトルやサイトの説明を記述するブロック */
div#branding {
	border-width: 1px;
	border-style: solid;
	border-color: #666666;
	background-color: #30488F;
	padding: 10px 20px;
	margin-bottom: 10px;
}
/* 中央カラムと左カラムを包含するブロックの回り込み */
div#wrapper {
	float: left;
	width: 100%;
	margin-right: -310px;
}

/* レイアウト用に中央カラムを包含するブロックの回り込み */
div#primary-column-wrapper {
	float: right;
	width: 100%;
	margin-left: -180px;
}

/* 中央カラム */
div#primary-column {
	margin-left: 190px;
	margin-right: 320px;
}

/* 左カラム */
div#secondary-column {
	float: right;
	width: 180px;
}

/* 右カラム */
div#extra-column {
	float: left;
	width: 310px;
}

/* 各プラグインのブロック */
div.plugin {
	border-width: 1px;
	border-style: solid;
	border-color: #d4d4d4;
	padding: 4px;
	margin-bottom: 10px;
}

/* プラグインのタイトル */
div.menutitle {
	background-color: #ffffd5;
	font-weight: bold;
	margin-bottom: 3px;
}

/* 著作表示ブロック */
div#siteinfo-legal {
	text-align: center;
	padding: 5px;
	clear: both;
}

div#siteinfo-legal a {
	color: #333333;
	text-decoration: none;
}

/* タイトル */
div#branding h2 {
	font-size: 300%;
	color: #ffffff;
}

div#branding h1 a {
	color: #ffffff;
}

/* ブログの説明 */
div#branding p {
        color: #ffffff;
}

/* 各記事毎のブロック */
div.entry,
div#comment,
div#trackback {
	border-width: 1px;
	border-style: solid;
	border-color: #d4d4d4;
	padding: 5px;
	margin-bottom: 10px;
}

/* 記事のタイトル部分 */
h2.entry-header {
	font-size: large;
	background-color: #ffffaa;
	margin-bottom: 10px;
}

h2.entry-header a {
	color: #333333;
}

/* 記事本体部分 */
div.entry-body {
	margin-bottom: 5px;
}

div.entry-body a {
	text-decoration: underline;
}

/* 追記部分 */
p.entry-more {
	text-align: right;
	margin-bottom: 5px;
}

/* 拍手ボタン・FC2ブックマークに追加 */
div.fc2_footer {
	margin-top: 5px;
}

/* フッター部分（コメントやトラックバックなど） */
ul.entry-footer {
	text-align: right;
}

ul.entry-footer li {
	list-style-type: none;
	display: inline;
	padding: 2.5px;
}

/* ページ移動用ナビゲーション */
p.prev-next-navi {
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: center;
}

p.prev-next-navi a {
	padding: 10px;
}

/* 各コメント・トラックバック毎のブロック */
div.section {
	margin-bottom: 20px;
}

/* コメントの見出し */
h3#comment-top,
h3.comment-post,
h3.comment-edit {
	font-size: large;
	margin-bottom: 10px;
}

h3.comment-post {
	margin-top: 20px;
}

/* コメントのタイトル */
h4.comment-header {
	font-size: medium;
}

/* コメント本文 */
div.comment-body {
}

/* コメントフッター */
ul.comment-footer {
	text-align: right;
}

ul.comment-footer li {
	list-style-type: none;
	display: inline;
	padding: 2.5px;
}

/* コメントフォーム */
input {
	font-family: monospace;
	margin-bottom: 5px;
	padding: 2.5px;
}

textarea {
	font-family: monospace;
	margin-bottom: 5px;
	padding: 5px;
}

/* 管理者だけにコメント */
input#himitu {
	margin: 0 5px 0 0;
}

/* コメントフォームのボタン */
p.form-btn {
	margin-top: 10px;
}

/* トラックバックトップ */
h3#trackback-top {
	font-size: large;
}

/* トラックバックURI */
p.trackback-uri {
	margin-bottom: 20px;
}

/* トラックバックのタイトル */
h4.trackback-header {
	font-size: medium;
}

h4.trackback-header a {
	color: #333333;
}

/* トラックバック先の概要 */
div.trackback-excerpt {
}

/* トラックバックフッター */
ul.trackback-footer {
	text-align: right;
}

ul.trackback-footer li {
	display: inline;
	list-style-type: none;
	padding: 2.5px;
}

/* 広告タグ削除不可のブロック */
div#ad {
	font-size: smaller;
	font-weight: normal;
	font-style: normal;
	margin-bottom: 10px;
}

/* リスト */
ul {
	padding-left: 15px;
}

li {
	list-style-type: disc;
	list-style-position: outside;
}

/* テーブル */
table {
	width: 100%;
}

/* 強調 */
em {
	font-weight: bold;
}

/* より強い強調 */
strong {
	font-weight: bold;
}


/* 引用の設定 */
blockquote {
	padding: 1em;
}

/* 絵文字の設定 */
.emoji {
	vertical-align: middle;
	border: 0;
}

/* コード */
/* 記事中にプログラムコードなどを書く時に使います */
/* プロポーショナルフォントではなく等幅フォントを指定すると良いでしょう */
div.section pre {
	margin: 1em auto;
	padding: 0.5em;
	border: 1px solid #2E0A01;
	font-family: sans-serif;
	overflow: auto;
	width: 90%;
}

/* for without MacIE5 \*/
div.section pre {
	overflow: scroll;	/* MacIE用バグ対応 */
}

div.section > pre {
	width: auto;	/* MacIE用バグ対応 */
}

div.section code {
	font-family: monospace;	/* 等幅フォントを指定 */
}

/* Mac版IEの文字化け対策 */
/* マック版IEでは表示できるフォントを指定しないと文字化けを起こしますので通常は削除しないで下さい */
textarea,input,select {
	font-family: "\30D2\30E9\30AE\30CE\20Pro\20W3","Osaka","Verdana","Helvetica","Arial","\FF2D\FF33\20\FF30\30B4\30B7\30C3\30AF",sans-serif;
}