@charset utf-8;

.show-detail {
	position:relative;
}

.show-detail:after {
	position:absolute;
	content:"実績を見る";
	width:100%;
	background:rgba(0,0,0,.5);
	left:0;
	top:0;
	width: 100%;
	height: 100%;
	color:#fff;
	font-size:1.5rem;
	font-weight: bold;
	display:none;
}

.show-detail:hover:after {
	display:flex;
	justify-content:center;
	align-items: center;
}