/*
Default style for WP-PageNavi plugin

http://wordpress.org/extend/plugins/wp-pagenavi/
*/

.wp-pagenavi {
	clear: both;
	width: 100%;
	margin: 90px 0 40px 0;
	text-align: center;
	line-height: 3;
	height: auto;
}

.wp-pagenavi a, .wp-pagenavi span {
	text-decoration: none;
	color: #000;
	height: 45px;
    width: 45px;
	display: inline-block;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
	margin-right: 5px;
	box-sizing: border-box;
	background-color: #ebebeb;
}

.wp-pagenavi a:hover, .wp-pagenavi span.current {
	height: 45px;
    width: 45px;
	display: inline-block;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
	color: #fff;
	margin-right: 5px;
	background-color: #02368c;
}

.wp-pagenavi span.current {
	font-weight: bold;
}


/*===============================================
●SP  画面の横幅が640pxまで
===============================================*/
@media screen and (max-width: 640px) {

.wp-pagenavi {
	clear: both;
	width: 90%;
	margin: 40px auto 30px auto;
	text-align: center;
	line-height: 3;
}

.wp-pagenavi a, .wp-pagenavi span {
	text-decoration: none;
	color: #000;
	height: 45px;
    width: 45px;
	display: inline-block;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
	margin-right: 5px;
	box-sizing: border-box;
	background-color: #ebebeb;
}

.wp-pagenavi a:hover, .wp-pagenavi span.current {
	border-radius: 50%;
	height: 45px;
    width: 45px;
	display: inline-block;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
	color: #fff;
	margin-right: 5px;
	background-color: #02368c;
}

}
