@charset "UTF-8";
/*--------------------------------------
  adsense
--------------------------------------*/
.adsense {
	margin:30px 0;
	}
/*--------------------------------------
  books
--------------------------------------*/
.adthumbnail {
    width: 90%;
    margin: 30px auto;
    text-align: center;
}
.books {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.book {
	width: 20%;
	margin: 30px 0;
	box-shadow: 10px 14px 14px -7px rgba(0, 0, 128, 0.16), 0 0 28px -14px rgba(0, 0, 128, 0.18);
}
.books .book img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
	transform-origin: center;
}
.books .book:hover img {
	transform: scale(1.05);
}
/*--------------------------------------
  #single-container books
--------------------------------------*/
#single-container .books {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
#single-container .book {
	width: 23%;
	box-shadow: 10px 14px 14px -7px rgba(0, 0, 128, 0.16), 0 0 28px -14px rgba(0, 0, 128, 0.18);
}
#single-container .books .book img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
	transform-origin: center;
}

#single-container .books .book:hover img{
	transform: scale(1.05);   
}
/*--------------------------------------
 　Amazonリンク
--------------------------------------*/
.amazon-content {
		  display: inline-block; 
  transition: transform 0.3s ease;
  transform-origin: center;
  cursor: pointer;
		padding:20px;
			margin:20px auto;
	}
.amazonitem {
	display:flex;
	align-items:center;
	border:solid 1px #ccc;
	padding:10px 40px;
	width:85%;
	background:#fff;
	box-shadow: 10px 14px 14px -7px rgba(0, 0, 128, 0.16), 0 0 28px -14px rgba(0, 0, 128, 0.18);
}
.amazon-content:hover {
  transform: scale(1.05);
}
.amazonitem .img {
width:35%;	
margin:20px 5% 20px 0;
}
.amazonitem .meta {
	width:60%;
	padding:20px 0;
}
.amazonitem .title {
	font-weight:900;
	font-size:25px;
	margin:0 0 10px 0;
	line-height:1.25em;
}
.amazonitem .description {
	font-size:.85rem;
}
.amazonitem ul {
	display:flex;
	margin:20px 0;
	align-items:center;
}
.amazonitem ul li {
	width:25%;
	margin:0 2%;
}