/* CSS Document */

article .pager
{
	padding-top: 20px;
	padding-bottom: 20px;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #ddd;
	border-bottom-color: #ddd;
	margin-bottom: 30px;
}

article .pager dl
{
	display: table;
	table-layout: fixed;
	width: 100%;
	margin: 0px;
	padding: 0px;
}

article .pager dl dt
{
	display: table-cell;
	width: 32%;
	margin: 0px;
	padding: 0px;
	vertical-align: middle;
	text-align: center;
}

article .pager dl dt:first-child
{
	text-align: left;
}
article .pager dl dt:last-child
{
	text-align: right;
}

article .pager dl dt a
{
	color: #000;
}

article .pager dl dt:first-child a:before
{
	font-family: "Font Awesome 5 Free";
	content: '\f0d9';
	font-weight: 900;
	margin-right: 10px;
	color: #cc6633;
}

article .pager dl dt:last-child a:after
{
	font-family: "Font Awesome 5 Free";
	content: '\f0da';
	font-weight: 900;
	margin-left: 10px;
	color: #cc6633;

}


article .pager dl dt dd
{
	display: table-cell;
	margin: 0px;
	padding: 0px;
}

/* PCのみ設定  768 以上*/
@media screen and (min-width:768px)
{
}

/* タブレットレイアウト : 768 px 〜 959 px*/
@media screenand (max-width:959px)
{
}

/* スマホ設定  768 以下*/
@media screen and (max-width:767px)
{
article .pager
{
	position: relative;
}

article .pager dl
{
	display: block;
	width: auto;
	margin: 0px;
	padding: 0px;
}

article .pager dl dt
{
	display: block;
	width: auto;
}

article .pager dl dt:nth-child(3)
{
	margin-top: 6px;
	margin-bottom: 6px;
	padding-top: 6px;
	padding-bottom: 6px;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: dashed;
	border-bottom-style: dashed;
	border-top-color: #ddd;
	border-bottom-color: #ddd;
}



article .pager dl dt dd
{
	display: none;
}

}