@charset "utf-8";

/**************************************************************************************
全ブロックの共通設定
**************************************************************************************/
html {
margin: 0;
padding: 0;
}
/*BODY全体に関する設定*/
body {
margin: 0;
padding: 0;
text-align:center;
font-size:14px;
/*ブログ全般フォントカラー*/
color:#ebf6f7; 
font-family: "ヒラギノ角ゴ Pro W3", Osaka, "ＭＳ Ｐゴシック", arial, sans-serif;

background-color:#333631;
word-wrap:break-word;
}
/*<td>の全ての設定*/
td {
text-align:center;
}
/*table全ての設定*/
table{
border-collapse: collapse;
}
/*通常のリンクの設定*/
a:link {
color:#e0ebaf;
text-decoration:none;
}
/*過去に見たことがあるページのリンクの設定*/
a:visited{
color:#e0ebaf ;
text-decoration:none;
}
/*アクティブ状態のリンクの設定*/
a:active {
color:#38b48b;
text-decoration:underline;
}
/*カーソルが合っている状態のリンクの設定*/
a:hover {
color:#38b48b;
text-decoration:underline;
}

/*テキスト左寄せ*/
.left {
text-align:left;
}
/*テキスト中央寄せ*/
.center {
text-align:center;
}
/*テキスト右寄せ*/
.right {
text-align:right;
}

/**************************************************************************************
ブロックのレイアウト
**************************************************************************************/
div#header {
	width: 700px;
	height: 80px;
	margin: 0 auto;
	padding: 7px 0 0 0px;
 /* HeightBugs */
	text-align: left;
	top right no-repeat;
	background-color:#5b6356;
}

div.contents {
	width: 700px;
	margin: 0 auto;
}
/*記事が表示される列の題名*/
div#main_column {
	float: right;
	width: 450px;
	line-height: 1.6em;
/*記事と記事の間の境目列の下地のようなもの*/
background-color:#333631;
}
/*記事一覧とかが載るサブカラム*/
div#sub_column {
	float: left;
	width: 240px;
	line-height: 1.6em;
}

/**************************************************************************************
トップブロック用デザイン
**************************************************************************************/
div#header h1 {
	margin-top: 5px;
	margin-left: 15px;
	margin-bottom: 15px;
}

div#header h1 a {
	color:#ebf6f7;
	font-weight: normal;
	font-size: 24px;
	padding: 10px 0px 0px 20px;
}
div#header h1 a:visited{color:#ebf6f7;text-decoration:none;}
div#header h1 a:link{color:#ebf6f7;text-decoration:none;}
div#header h1 a:hover{color:#ebf6f7;text-decoration:underline;}
div#header h1 a:active{color:#ebf6f7;text-decoration:none;}

div#header p {
	color:#ebf6f7;
	margin-left: 15px;
	margin-bottom: 15px;
}

/**************************************************************************************
メインカラム用デザイン
**************************************************************************************/
div#main_column {
	text-align: left;
	color: #d2d6d5;
}

p.title {
	text-align: left;
	font-weight: bold;
	line-height: 1.4em;
	padding: 5px 5px 5px 10px;
	background:none;}


/* #### エントリー ####　--------------------------------------- */

/*記事の枠の外枠っぽいところ*/
div#main_column div.entry {
	position: relative;
	margin-top: 10px;
	margin-bottom: 15px;
	padding: 5px 10px 10px 10px;
	font-size:16px;
	background-color:#474b42
}

/*記事の枠の下地*/
div#main_column div.entry div.cts {
	padding: 10px 10px 10px 10px;
	background-color:#474b42;
}

/*どこに影響するのか今のところ不明*/
div#main_column div.entry_sub {
	position: relative;
	margin-bottom: 30px;
	line-height: 1.6em;
	padding: 10px 10px 10px 10px;
	color: #d2d6d5;
	background-color:#474b42;
}
/* 記事のタイトル */
div#main_column div.entry h2 {
	color:#ebf6f7;
	margin: 0 0 10px;
	padding: 15px;
	font-size: 120%;
	background:none;;
}
div#main_column div.entry h2 a:visited{color:#ebf6f7;text-decoration:none;}
div#main_column div.entry h2 a:link{color:#ebf6f7;;text-decoration:none;}
div#main_column div.entry h2 a:hover{color:#59b3be;;text-decoration:underline;}
div#main_column div.entry h2 a:active{color:#59b3be;;text-decoration:none;}

/* 本文のタイトルのテキスト*/
div#main_column div.entry h2 a {
	font-weight: bold;
	background-color:#474b42;
}
/* ２つめ以降の本文の行間*/
div#main_column div.entry p.entry_text {
	padding-left: 10px;
	margin-bottom: 1em;
	line-height: 1.6em;
	color: #d2d6d5;
}

/* #### フッター ####　--------------------------------------- */
div#main_column div.footer {
	padding: 15px 0;
	text-align: center;
}


/**************************************************************************************
  コメント表示部分の設定
**************************************************************************************/
table.comment_form {
	width: 100%;
	margin: 0 auto;
	border-collapse: collapse;
}
table.comment_form tr th,
table.comment_form tr td {
	padding: 5px;
	text-align: left;
}
table.comment_form tr th {
	text-align: right;
	font-weight: normal;
}

table.comment_form tr td.btn {
	text-align: center;
}

table.comment_form input.text {
	width: 400px;
	background: #ccc;
	border: 1px solid #9ea0a1;
}
table.comment_form textarea.text{
	width: 460px;
	background: #ccc;
	border: 1px solid #9ea0a1;
}
table.comment_form td.btn input {
	width: 100px;
	height: 24px;
	margin-top: 10px;
	background: #ccc;
	border: 1px solid #9ea0a1;
}

div.user_comment {
	border-top: 1px solid #ccc;
	margin: 10px 0;
	padding: 10px 0;
}


/**************************************************************************************
  トラックバック表示部分の設定
**************************************************************************************/

input.trackback {
	width: 400px;
	background: #ccc;
	border: 1px solid #9ea0a1;
}
div.user_trackback {
	border-top: 1px solid #ccc;
	margin: 10px 0;
	padding: 10px 0;
}


/**************************************************************************************
サブカラム用デザイン
**************************************************************************************/

div#sub_column h3 {
	text-align: left;
	font-size: 14px;
	font-weight: normal;
	min-height: 23px !important;
	height: 23px;
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 7px 5px 0 15px;
	background-color:#474b42; top left no-repeat;
}

div#sub_column div.sub_body {
	margin: 0 0 20px 15px;
}


/**************************************************************************************
  カレンダープラグイン用デザイン
**************************************************************************************/
/*カレンダー日付移動用テーブル（前月、次月へのリンクなど）*/
.CalendarMoveTable {
	width:90%;
	margin: 0 auto;
	padding:3px;
	border-collapse: collapse;
}
/*カレンダー表示用テーブル*/
.CalendarTable {
	width:90%;
	margin: 0 auto;
	padding:3px;
	border-collapse: collapse;
}

.CalendarMoveTable tr th,
.CalendarMoveTable tr td,
.CalendarTable tr th,
.CalendarTable tr td {
	background: #333;
	padding: 3px;
	border: 2px solid #000;
}

/*カレンダー日付移動用テーブル、<tr>タグ部分のデザイン*/
.CalendarMoveTr {
}
/*カレンダー日付移動用テーブル内、左側td部分のデザイン*/
.CalendarPrevTd {
}
/*カレンダー日付移動用テーブル内、中央td部分のデザイン*/
.CalendarNowTd {
}
/*カレンダー日付移動用テーブル内、右側td部分のデザイン*/
.CalendarNextTd {
}

/**************************************************************************************
  エディット部分の設定
**************************************************************************************/
div.edit {
	width: 630px;
	margin: 30px auto;
	padding: 20px;
	background: #31393e;
	color: #d2d6d5;
}
div.edit table {
	width: 100%;
	margin: 0 auto;
	border-collapse: collapse;
}
div.edit table tr th,
div.edit table tr td {
	padding: 5px;
	text-align: left;
}
div.edit table tr th {
	text-align: right;
	font-weight: normal;
}

div.edit table tr td.btn {
	text-align: center;
}

div.edit table input.text {
	width: 400px;
	background: #ccc;
	border: 1px solid #9ea0a1;
}
div.edit table textarea.text{
	width: 460px;
	background: #ccc;
	border: 1px solid #9ea0a1;
}

div.edit table td.btn input {
	width: 100px;
	height: 24px;
	margin-top: 10px;
	background: #ccc;
	border: 1px solid #9ea0a1;
}
