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

/*
BOOKS
================================================================= */
section.book-box {
	width: 1000px;
	margin: 0 auto 80px auto;
}
section.book-box ul{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-bottom: 40px;
}
section.book-box li{
	border: #E0CFB8 solid 1px;
	width: 480px;
	padding: 20px;
}
div.book-img {
	width: 202px;
	float: left;
	border: #CCCCCC solid 1px;
}
div.book-data {
	width: 210px;
	float: right;
	padding-top: 20px;
}
div.book-data h3{
	color: #F9B970;
	font-size: 1.6rem;
	border-bottom: #E0CFB8 solid 1px;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
div.book-data p{
	font-size: 1.3rem;
	line-height: 1.6em;
}
div.book-data a:link{
	display: block;
	background: #F9B970;
	text-align: center;
	margin-top: 30px;
	padding: 8px 0 4px 0;
}
div.book-data a:hover{
	opacity: 0.5;
}

@media (max-width: 768px) {
	section.book-box {
		width: 100%;
		margin: 0 auto 40px auto;
	}
	section.book-box ul{
		display: block;
		margin-bottom: 20px;
	}
	section.book-box li{
		border: none;
		width: 100%;
	}
	div.book-img {
		width: 100%;
		float: none;
		text-align: center;
	}
	div.book-data {
		width: 100%;
		float: none;
		padding-top: 20px;
	}
	div.book-data h3{
		font-size: 2rem;
	}
	div.book-data p{
		font-size: 1.6rem;
	}
}






