@charset "utf-8";
/* CSS Document */

.container .title{
	border-bottom: 1px solid #842f4f;
	color: #842f4f;
	margin-bottom: 20px;
	line-height: 1.5;
	font-size: 24px;
}

.containerInner{
	width: 100%;
	height: auto;
	margin-bottom: 20px;
	padding: 0;
}

.containerInner:after{
	content: "";
	display:block;
	clear: both;
	overflow: hidden;
}

.containerInner .box{
	float: left;
	width: 49%;
	height: 258px;
	padding: 10px;
	border: 2px solid #842f4f;
	border-radius: 5px;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background: #f3e2ea;
}

.containerInner .box:first-child{
	margin-right: 2%;
}

.box:after{
	content: "";
	display:block;
	clear: both;
	overflow: hidden;
}

.box article{
	float: left;
	width: 49%;
	line-height: 2.0;
}

.box article h1{
	width: 100%;
	height: auto;
	border-bottom: 1px solid #842f4f;
	color: #842f4f;
	margin-bottom: 10px;
	line-height: 1.5;
	font-size: 18px;	
}

.box figure{
	float: right;
	width: 49%;
}

.box figure img{
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	border-radius: 5px;
}

#pageTop{
	position: fixed;
	bottom: 20px;
	right: 20px;
	font-size: 14px;
}

#pageTop a{
	display:block;
	padding: 10px;
	width: 40px;
	height: 20px;
	color: #842f4f;
	border: 1px solid #842f4f;
	background: #f3e2ea;
	text-align: center;
}


#pageTop a:hover{
	opacity: 0.6;
}

@media screen and (max-width: 1023px){
	.containerInner .box{
		float: none;
		width: 100%;
		margin: 0 0 20px 0;
		height: auto;
	}
	
	.container .containerInner{
		margin-bottom: 0;
	}
	
	.containerInner article{
		width: 68%;
	}
	
	.containerInner figure{
		width: 30%;
	}
	
	
}

@media screen and (max-width: 560px){
	.containerInner article{
		width:100%;
	}
	
	.containerInner figure{
		width: 100%;
		text-align: center;
	}
}