@charset "shift_jis";

/* -------------------------------------
 *
 * books
 *
------------------------------------- */

/* genreBlock */
.genreBlock {
	margin-top: 20px;
	overflow: hidden;
}
.genreBlock .genreTable {
	width: 100%;
	border-collapse: separate;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border: 2px solid #d2d2d2;
}
.genreBlock .genreTable td {
	width: 25%;
	text-align: center;
	border-bottom: 2px solid #d2d2d2;
	border-right: 2px solid #d2d2d2;
	line-height: 42px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
.genreBlock .genreTable td:last-child {
	border-right: none;
}
.genreBlock .genreTable tr:last-child td {
	border-bottom: none;
}
.genreBlock .genreTable td > a {
	display: block;
	color: #333333;
	position: relative;
}
.genreBlock .genreTable td > a:after {
	content: "";
	display: block;
	color: #109ad7;
	position: absolute;
    border: 5px solid transparent;
    border-bottom: 5px solid #109ad7;
    border-right: 5px solid #109ad7;
	bottom: 5px;
	right: 5px;
}
.genreBlock .genreTable td > a:hover {
	text-decoration: none;
	background-color: #eeeeee;
}
