@charset "utf-8";

/*===================================================================
------------------
CSS Information
------------------
 File name :          blog.css
 Summary :            module styles
 Created :            2010-06-03
 Last Update :        2010-06-03
===================================================================*/
/*===================================================================
------------------
Table Of Contents
------------------
 00) layout override !!
 01) #main
 02) #side
 
 99) Clearfix
===================================================================*/

/*-------------------------------------------------------------------
 00) layout override !!
-------------------------------------------------------------------*/
#title {
	margin: 0 auto;
	width: 960px;
	height: 221px;
	background: none;
	text-align: left;
}


#main {
	float: left;
	margin: 0 0 0 40px;
}

#main h2 {
	margin: 0 10px 5px 25px;
	font-weight: bold;
	font-size: 110%;
}

#main .contentsHead {
	height: 19px;
	background: transparent url(../../images/parts/bg_main_head.gif) left top no-repeat;
}

#main .contentsBox .titleArea {	background: transparent url(../../images/parts/bg_blogtitle.gif) left top no-repeat;}

#main .contentsBox .titleArea h3 { padding: 10px 33px;}

#main .contentsBox .titleArea h3 .date {
	font-size: 130%;
	font-weight: bold;
	letter-spacing: 0.05em;
}


#side {
	float: right;
	margin: 0 40px 0 0;
}


/*-------------------------------------------------------------------
 01) #main
-------------------------------------------------------------------*/
.entry { padding: 20px 30px 50px 30px;}

.entry h4 {
	margin-bottom: 1em;
	font-size: 120%;
	color: #007cc2;
}

.entry h4 a { color: #007cc2;}

.entry p {
	/*
	margin-bottom: 1em;
	*/
	font-size: 100%;
	line-height: 1.5;
}

.entry strong { font-weight: bold;}

ul.pager {
	padding: 8px 0;
	text-align: center;
	background: transparent url(../../images/parts/bg_pager2.gif) left top no-repeat;
}

ul.pager li {
	display: inline;
	margin: 0 20px;
}

ul.pager li.prev {
	padding-left: 15px;
	background: transparent url(../../images/icon/icon_arrow_02.gif) left center no-repeat;
}

ul.pager li.next {
	padding-right: 15px;
	background: transparent url(../../images/icon/icon_arrow_01.gif) right center no-repeat;
}


/*-------------------------------------------------------------------
 02) #side
-------------------------------------------------------------------*/
#side .calendar,
#side ul {
	padding: 10px 0;
	width: 195px;
	background: #ffffff;
}

#side table {
	margin-left: 20px;
	width: 155px;
}

#side table caption {
	text-align: center;
	padding-bottom: 7px;
	font-weight: bold;
	color: #0087d3;
}

* html #side table caption { font-size: 78%;}

#side table th { color: #333333;}

#side table th,
#side table td {
	padding: 3px 0;
	text-align: center;
}

#side li {
	padding: 0 20px 0.8em 20px;
	line-height: 1.4;
}

#side .sideFoot {
	position: relative;
	height: 9px;
	margin-bottom: 20px;
	background: transparent url(../../images/blog/bg_side_foot.gif) left bottom no-repeat;
}

#side .sideFoot .bird {
	position: absolute;
	width: 66px;
	height: 41px;
	bottom: -3px;
	right: 20px;
	background: transparent url(../../images/blog/img_icon_tori.gif) left top no-repeat;
}

* html #side .sideFoot .bird { bottom: -4px;}



/*-------------------------------------------------------------------
 99) Clearfix
-------------------------------------------------------------------*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix { display: inline-block;}

