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

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

.siteTitle{
	line-height: 75px;
	float: left;
}
.siteTitle a{
	color: #c47a90;
	font-size: 36px;
	font-weight: bold;
	text-shadow: 2px 2px 3px #7a7479;
}
.white{
	width: 630px;
	height: 58px;
	background: #fff;
	float: right;
	margin-top: 15px;
}

/* nav */
.nav{
	float: right;
	border-radius: 5px;
	border: 1px solid #ab5e75;
	margin-top: 15px;
	background: rgb(249,237,240); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(249,237,240,1) 0%, rgba(215,135,159,1) 14%, rgba(215,135,159,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(249,237,240,1)), color-stop(14%,rgba(215,135,159,1)), color-stop(100%,rgba(215,135,159,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(249,237,240,1) 0%,rgba(215,135,159,1) 14%,rgba(215,135,159,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(249,237,240,1) 0%,rgba(215,135,159,1) 14%,rgba(215,135,159,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(249,237,240,1) 0%,rgba(215,135,159,1) 14%,rgba(215,135,159,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(249,237,240,1) 0%,rgba(215,135,159,1) 14%,rgba(215,135,159,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9edf0', endColorstr='#d7879f',GradientType=0 ); /* IE6-9 */

}
.nav > ul > li:nth-child(1){
	margin-left: 10px;
}
.nav > ul > li:nth-child(3){
	margin-right: 10px;
}
.nav > ul > li{
	display: inline-block;
	position: relative;
	line-height: 50px;
}
.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 10px;
	font-size: 13px;
	color: #fff;
}
.nav > ul > li > a:hover, .nav > ul > li:hover > a{
	
	background: rgb(255,255,255); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(55,47,57,1) 14%, rgba(55,47,57,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(14%,rgba(55,47,57,1)), color-stop(100%,rgba(55,47,57,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(55,47,57,1) 14%,rgba(55,47,57,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(55,47,57,1) 14%,rgba(55,47,57,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(55,47,57,1) 14%,rgba(55,47,57,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(55,47,57,1) 14%,rgba(55,47,57,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#372f39',GradientType=0 ); /* IE6-9 */

}
.nav ul > li > ul{
	width: 260px;
	position: absolute;
	list-style-type: none;
	top: auto;
	left: -75px;
	visibility: hidden;
	z-index: 999;
}
.nav ul > li > ul li{
	margin-top: 5px;
	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 25px;
	font-size: 14px;
	color: #fff;
	line-height: 40px;
	background: #D7879F;
	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: #372F39;
	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 */

#contents{
	margin-top: 20px;
}

/* mainSide */

#mainSide{
	float: left;
	width: 550px;
	margin-left: 70px;
	background: #fff;
}
.postWrap{
	padding: 20px;
	position: relative;
	border-bottom: 1px solid #f0edea;
}

.postTitle{
	color: #201a22;
	font-size: 22px;
	background: #fff;
	padding: 10px;
	display: inline-block;
	position: absolute;
	top:233px;
	left: 40px;
	background: #fff;
}
.postDate{
	background: rgb(82,57,88); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(82,57,88,1) 1%, rgba(49,41,51,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,rgba(82,57,88,1)), color-stop(100%,rgba(49,41,51,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(82,57,88,1) 1%,rgba(49,41,51,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(82,57,88,1) 1%,rgba(49,41,51,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(82,57,88,1) 1%,rgba(49,41,51,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(82,57,88,1) 1%,rgba(49,41,51,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#523958', endColorstr='#312933',GradientType=0 ); /* IE6-9 */
	width: 110px;
	padding: 20px 0;
	text-align: center;
	color: #fff;
	position: absolute;
	top: 233px;
	left: -70px;
	z-index: 1;
	

}
.day, .year{
	display: block;
}
.day{
	font-size: 30px;
}
.year{
	font-size: 14px;
}
.postContent{
	padding: 30px 0 0 30px;
}
.postContent p{
	color: #4f4f4f;
	font-size: 13px;
	line-height: 1.5;
	padding-bottom: 20px;
}

.read_btn{
	line-height: 30px;
	float: right;
}
.read_btn a{
	color: #fff;
	font-size: 13px;
	border: 1px solid #ab5e75;
	display: inline-block;
	padding: 0 10px;
	
	background: rgb(249,237,240); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(249,237,240,1) 0%, rgba(215,135,159,1) 14%, rgba(215,135,159,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(249,237,240,1)), color-stop(14%,rgba(215,135,159,1)), color-stop(100%,rgba(215,135,159,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(249,237,240,1) 0%,rgba(215,135,159,1) 14%,rgba(215,135,159,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(249,237,240,1) 0%,rgba(215,135,159,1) 14%,rgba(215,135,159,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(249,237,240,1) 0%,rgba(215,135,159,1) 14%,rgba(215,135,159,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(249,237,240,1) 0%,rgba(215,135,159,1) 14%,rgba(215,135,159,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9edf0', endColorstr='#d7879f',GradientType=0 ); /* IE6-9 */
}
.read_btn a:hover{
	border: 1px solid #440e62;
	
	background: rgb(194,191,194); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(194,191,194,1) 0%, rgba(49,41,51,1) 13%, rgba(49,41,51,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(194,191,194,1)), color-stop(13%,rgba(49,41,51,1)), color-stop(100%,rgba(49,41,51,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(194,191,194,1) 0%,rgba(49,41,51,1) 13%,rgba(49,41,51,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(194,191,194,1) 0%,rgba(49,41,51,1) 13%,rgba(49,41,51,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(194,191,194,1) 0%,rgba(49,41,51,1) 13%,rgba(49,41,51,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(194,191,194,1) 0%,rgba(49,41,51,1) 13%,rgba(49,41,51,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c2bfc2', endColorstr='#312933',GradientType=0 ); /* IE6-9 */
}


.blogpart{
	text-align: center;	
}

/* slider */
.slider{
	background: #d996aa;
	border-top: 5px solid #d987a0;
	padding: 20px 20px 0 20px;
}
.bx-wrapper {
	position: relative;
	margin: 0 auto !important;
	padding: 0;
	*zoom: 1;
	
}

.bx-wrapper img {
	max-width: 100%;
	display: block;
}


.bx-wrapper .bx-viewport {
	box-shadow: none !important;
	border:  10px solid #2f2732 !important;
	left: 0 !important;
	background: #fff;
	width: 940px !important;
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
	position: absolute;
	bottom: -30px;
	width: 100%;
}

/* PAGER */

.bx-wrapper .bx-pager {
	text-align: center;
	font-size: .85em;
	font-family: Arial;
	font-weight: bold;
	color: #666;
	padding-top: 20px;
	bottom: 0 !important;
}

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
	display: inline-block;
	*zoom: 1;
	*display: inline;
}

.bx-wrapper .bx-pager.bx-default-pager a {
	background: #D996AA !important;
	text-indent: -9999px;
	display: block;
	width: 10px;
	height: 10px;
	margin: 0 5px;
	outline: 0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	z-index: 999999 !important;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #fff !important;
}

/* DIRECTION CONTROLS (NEXT / PREV) */

.bx-wrapper .bx-prev {
	display: none !important;
}

.bx-wrapper .bx-next {
	display: none !important;
}

.bx-wrapper .bx-prev:hover {
	background-position: 0 0;
}

.bx-wrapper .bx-next:hover {
	background-position: -43px 0;
}

.bx-wrapper .bx-controls-direction a {
	position: absolute;
	top: 50%;
	margin-top: -16px;
	outline: 0;
	width: 32px;
	height: 32px;
	text-indent: -9999px;
	z-index: 9999;
}

.bx-wrapper .bx-controls-direction a.disabled {
	display: none;
}

.mask{
	position: absolute;
	top: 50px;
	left: 0;
	width: 290px;
}
.postTitle01{
	color: #fff;
	font-size: 22px;
	background: rgba(144,144,144,0.5);
	padding: 15px;
}

.postContent01{
	color: #fff;
	font-size: 13px;
	line-height: 1.5;
	position: relative;
	background: #2f2732;
	padding: 15px;
}
.read{
	background: #2f2732;
	line-height: 30px;
	font-size: 12px;
	display: inline-block;
	padding: 0 10px;
	border-radius: 0 0 5px 5px;
	color: #fff;
	float: right;
	margin-right: 15px;
	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;
}
.read:hover{
	background: #4F3855;
	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;
}
/* rightSide */

#rightSide{
	float: right;
	width: 340px;
	padding: 20px;
	
}

.search_btn{
	border-radius: 5px;
	color: #fff;
	padding: 10px;
	font-size: 13px;
	background: rgb(247,234,238); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(247,234,238,1) 0%, rgba(217,150,170,1) 13%, rgba(217,150,170,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(247,234,238,1)), color-stop(13%,rgba(217,150,170,1)), color-stop(100%,rgba(217,150,170,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(247,234,238,1) 0%,rgba(217,150,170,1) 13%,rgba(217,150,170,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(247,234,238,1) 0%,rgba(217,150,170,1) 13%,rgba(217,150,170,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(247,234,238,1) 0%,rgba(217,150,170,1) 13%,rgba(217,150,170,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(247,234,238,1) 0%,rgba(217,150,170,1) 13%,rgba(217,150,170,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7eaee', endColorstr='#d996aa',GradientType=0 ); /* IE6-9 */
	border: 1px solid #ab5e75;
	margin-bottom: 20px;
}
.search_btn input{
	width: 260px;
	height: 25px;
	background: #fff;
	border: 1px solid #ab5e75;
	padding-left: 10px;
	color: #909090;
	background: #fff;
	border-radius: 3px;
}
.search_btn button{
	background: none;
	border: none;
	cursor: pointer;
}

.rightWrap{
	border-top: 1px solid #7b0046;
	padding: 20px 0;	
}
.cap{
	font-size: 18px;
	text-align: center;
	color: #302832;
	margin-bottom: 20px;
}
.info{
	padding: 0 10px;
}
.info p{
	color: #505050;
	font-size: 13px;
	line-height: 1.5;
}
.link{
	border: 2px solid #d988a0;
	border-radius: 5px;
	padding: 15px 10px;
}

.link li{
	text-align: center;
	line-height: 40px;
}
.link a{
	color: #302832;
	font-size: 13px;
	display: block;
	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;
}
.link a:hover{
	background: #d988a0;
	border-radius: 5px;
	color: #fff;
	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;
}

.link2{
	border-radius: 5px;
	padding: 15px 10px;
}

.link2 li{
	text-align: center;
	line-height: 40px;
}
.link2 a{
	color: #302832;
	font-size: 13px;
	display: block;
	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;
}
.link2 a:hover{
	background: #d988a0;
	border-radius: 5px;
	color: #fff;
	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;
}

/* pagination */

.pagination{
   padding: 20px 30px;
}
.pagination li{
	display: inline-block;
}
.pagination li a, .pagination li span{
	display: block;
	border-radius: 5px;
	padding: 7px 12px;;
	font-size: 22px;
	color: #312933;
	border: 1px solid transparent;
}
.pagination li a:hover, .pagination li span{
	background: rgb(249,237,240); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(249,237,240,1) 0%, rgba(215,135,159,1) 14%, rgba(215,135,159,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(249,237,240,1)), color-stop(14%,rgba(215,135,159,1)), color-stop(100%,rgba(215,135,159,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(249,237,240,1) 0%,rgba(215,135,159,1) 14%,rgba(215,135,159,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(249,237,240,1) 0%,rgba(215,135,159,1) 14%,rgba(215,135,159,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(249,237,240,1) 0%,rgba(215,135,159,1) 14%,rgba(215,135,159,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(249,237,240,1) 0%,rgba(215,135,159,1) 14%,rgba(215,135,159,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9edf0', endColorstr='#d7879f',GradientType=0 ); /* IE6-9 */
	color: #fff;
	border: 1px solid #ab5e75;
}


/* footer */

#footer{
	line-height: 90px;
	color: #fff;
	text-align: center;
	font-size: 13px;
	background: #332b35;
	border-bottom: 10px solid #291f2b;
}