/* pg_results */
.res_btn {
	display: flex;
	flex-flow: row wrap;
	margin-left: 5px;
}
.res_btn a {
	position: relative;
	flex: 0 1 auto;
	width: calc(33.3333333% - 5px);
	display: inline-block;
	margin: 0 5px 5px 0;
	padding: 5px 35px 5px 10px;
	border: 1px #214d9f solid;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	white-space: nowrap;
}
/*m:320 tab:768 pc:980*/
@media screen and (min-width: 768px) {
	.res_btn a { width: calc(20% - 5px); }
}
.res_btn a:hover {
	border: 1px #f16e3b solid;
	color: #f16e3b;
}
.res_btn a::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 30px;
	margin: auto;
	background: #6281bb url('../image/general/icon_pdf.png') no-repeat center center;
	background-size: 70%;
}
.res_btn a:hover::before { background-color: #f16e3b; }
