body{
	font-family: "メイリオ", "Meiryo UI", "ヒラギノ丸ゴ Pro W4", "小塚ゴシック Pro R", sans-serif;
	letter-spacing: 0.1em
}
a{
	text-decoration: none;
	outline: none;
}
.container{
	width: 1000px;
	margin: 0 auto;
}

.clearfix{
	clear: both;
}
#wrapper{
	width: 100%;
	min-width: 1000px;
}

.siteTitle{
	background: url(../images/header.png) repeat-x;
	line-height: 100px;
}
.siteTitle a{
	color: #e92c32;
	text-shadow: 3px 3px 5px #aeaeae;
	font-size: 36px;
	font-weight: bold;
}
/* nav */

#navbar{
	line-height: 70px;
	background: #000;
	border-bottom: 1px solid #e92c32;
}
.nav{
	float: right;
}
.nav > ul > li{
	display: inline-block;
	position: relative;
	line-height: 30px;
}
.nav > ul > li:hover > ul{
	visibility: visible;
}
.nav > ul > li:hover > ul li{
	opacity: 1;
	transform: none;
}
.nav > ul > li > a{
	display: block;
	padding: 0 25px;
	font-size: 13px;
	color: #fff;
	transition: all .30s ease-out;
	-moz-transition: all .30s ease-out;
	-ms-transition: all .30s ease-out;
	-o-transition: all .30s ease-out;
	-webkit-transition: all .30s ease-out;
}
.nav > ul > li > a:hover, .nav > ul > li:hover > a{
	background: #e92c32;
	transition: all .30s ease-in;
	-moz-transition: all .30s ease-in;
	-ms-transition: all .30s ease-in;
	-o-transition: all .30s ease-in;
	-webkit-transition: all .30s ease-in;
}
.nav ul > li > ul{
	width: 280px;
	position: absolute;
	list-style-type: none;
	top: auto;
	left: -75px;
	visibility: hidden;
	z-index: 999;
}
.nav ul > li > ul li{
	margin-top: 3px;
	opacity: 0;
	transition: opacity .7s;
		-moz-transition: opacity .7s;
		-ms-transition: opacity .7s;
		-o-transition: opacity .7s;
		-webkit-transition: opacity .7s;
}
.nav ul > li > ul li a{
	display: block;
	padding: 0 20px;
	font-size: 13px;
	color: #fff;
	line-height: 30px;
	background: #e92c32;
	transition: all .30s ease-out;
	-moz-transition: all .30s ease-out;
	-ms-transition: all .30s ease-out;
	-o-transition: all .30s ease-out;
	-webkit-transition: all .30s ease-out;
}
.nav ul > li > ul li a:hover{
	background: #bc413d;
	transition: all .30s ease-in;
	-moz-transition: all .30s ease-in;
	-ms-transition: all .30s ease-in;
	-o-transition: all .30s ease-in;
	-webkit-transition: all .30s ease-in;
}


#contents{
	margin-top: 20px;
}
/*left side*/
#leftSide{
	float: left;
	width: 280px;
	margin-right: 20px;
}
.heading{
	font-size: 20px;
	color: #000;
	border-bottom: 1px solid #e0dfdb;
	line-height: 30px;
}
.search_btn{
	position: relative;
	margin: 20px 0;
}
.search_btn input{
	width: 270px;
	height: 30px;
	background:none;
	border: 1px solid #e0dfdb;
	padding-left: 10px;
	color: #909090;
	font-style: italic;
}
.search_btn button{
	width: 30px;
	height: 30px;
	border: none;
	position: absolute;
	top: 2px;
	right: 0;
	background: none;
	cursor: pointer;
}
.info{
	padding: 20px 0;
}
.info p{
	color: #686868;
	font-size: 13px;
	line-height: 1.5;
	margin-bottom: 10px;
}

.link{
	margin-top: 20px;
}
.link li{
	line-height: 20px;
	margin-bottom: 20px;
}
.link a{
	color: #000;
	background: url(../images/bullet2.png) no-repeat left center;
	padding-left: 30px;
	font-size: 13px;
}
.link a:hover{
	color: #e92c32;
	background: url(../images/bullet.png) no-repeat left center;
}


.blogpart{
	text-align: center;
	padding: 20px 0;
}
/* main side */
#mainSide{
	float: right;
	width: 700px;
}
.postWrap{
	border-bottom: 1px solid #e0dfdb;
	margin-bottom: 20px;
}
.postWrap01{
	margin-bottom: 20px;
}
.postTitle{
	font-size: 22px;
	color: #686868;
	border-bottom: 1px solid #e0dfdb;
	line-height: 75px;
}

.postContent p{
	color: #404040;
	font-size: 13px;
	line-height: 1.5;
	margin-bottom: 20px;
	
}
.postDate{
	color: #fff;
	width: 80px;
	text-align: center;
	float: left;
	margin-right: 20px;	
}
.day, .month{
	display: block;
	width: 80px;
	padding: 10px 0;
}
.day{
	background: #000;
	font-size: 22px;
	font-weight: bold;
}
.month{
	background: #e92c32;
	font-size: 13px;
}
.image{
	width: 700px;
	height: 300px;
	display: block;
	overflow: hidden;
	position: relative;
	margin: 20px 0;
}
.image a > img{
	transition: transform .6s;
	-moz-transition: transform .6s;
	-ms-transition: transform .6s;
	-o-transition: transform .6s;
	-o-transition: transform .6s;
}
.image a > .mask{
	background: rgba(0, 0, 0, 0.75);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	text-align: center;
	opacity: 0;
	transition: opacity .4s;
	-moz-transition: opacity .4s;
	-ms-transition: opacity .4s;
	-o-transition: opacity .4s;
	-webkit-transition: opacity .4s;
}

.image a > .mask > img{
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}
.image a:hover > .mask{
	opacity: 1;
}
.image a:hover > .mask > img{
	animation: effect .6s;
	-moz-animation: effect .6s;
	-ms-animation: effect .6s;
	-o-animation: effect .6s;
	-webkit-animation: effect .6s;
	animation-delay: .2s;
	-moz-animation-delay: .2s;
	-ms-animation-delay: .2s;
	-o-animation-delay: .2s;
	-webkit-animation-delay: .2s;
}
.image a:hover > img{
	transform: scale(1.5);
	-moz-transform: scale(1.5);
	-ms-transform: scale(1.5);
	-o-transform: scale(1.5);
	-webkit-transform: scale(1.5);
}


/* pagination */

.pagination{
	float: right;
	margin: 20px 0;
}
.pagination li{
	display: inline-block;
}
.pagination li a, .pagination li span{
	display: block;
	padding: 10px 14px;
	font-size: 20px;
	color: #fff;
	background: #000;
	transition: all .30s ease-out;
	-moz-transition: all .30s ease-out;
	-ms-transition: all .30s ease-out;
	-o-transition: all .30s ease-out;
	-webkit-transition: all .30s ease-out;
}
.pagination li a:hover, .pagination li span{
	background: #E92C32;
	transition: all .30s ease-in;
	-moz-transition: all .30s ease-in;
	-ms-transition: all .30s ease-in;
	-o-transition: all .30s ease-in;
	-webkit-transition: all .30s ease-in;
}

/* footer*/


#footer{
	background: url(../images/header.png) repeat-x;
	line-height: 80px;
	color: #fff;
	text-align: center;
	font-size: 13px;
}