.holder {
	margin: 0px 3px 8px 3px;
	padding:5px 0px;
	background-color: #333;
	border-radius: 3px;
}
.holder a {
	cursor:pointer;
	color: #CCC;
	font-size:13px;
	line-height:24px;
	font-weight: normal;
	text-align: center;
	border: 1px solid #222;
	min-width: 14px;
	padding: 3px 7px;
	margin: 0 5px 0 0;
	border-radius: 3px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.2);
	background: #555; /* Old browsers */
	background: -moz-linear-gradient(top, #555 0%, #333 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#555), color-stop(100%,#333)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #555 0%,#333 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #555 0%,#333 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #555 0%,#333 100%); /* IE10+ */
	background: linear-gradient(top, #555 0%,#333 100%); /* W3C */
	-webkit-transition: 0s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0s;			/*同上*/
}

.holder a:hover {
	color: #ffffff;
	text-decoration: none;
	background: #444;	
}

.holder a.jp-previous {
	 margin-right: 15px; 
	 margin-left:10px;
	 }
.holder a.jp-next { margin-left: 10px; }

.holder a.jp-current, a.jp-current:hover { 
	color: #ffffff;
	background-color: #222;
	border-color: #000;
	box-shadow: 0 1px 0 rgba(255,255,255,0.2), 0 0 1px 1px rgba(0, 0, 0, 0.1) inset;
}

.holder a.jp-disabled, a.jp-disabled:hover {
	color: #ffffff;
	background-color: #222;
	border-color: #000;
	box-shadow: 0 1px 0 rgba(255,255,255,0.2), 0 0 1px 1px rgba(0, 0, 0, 0.1) inset;
}

.holder a.jp-current, a.jp-current:hover,
.holder a.jp-disabled, a.jp-disabled:hover {
	cursor: default; 
	background: #222;
}

.holder span { 
margin: 0 5px;
}

/*ここからスマートフォン用（480px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (max-width : 480px){

.holder a {
	padding: 4px 8px;
}

}

/*ここからタブレット用（481px～800px）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (min-width:481px) and (max-width:800px){
	
.holder a {
	padding: 4px 8px;
}

}