HTML
<div class="push-button_box">
<a href="#" class="push-button paper-cut">詳細を見る</a>
</div>
CSS
.push-button_box{
width:30%;
margin:50px auto;
}
.push-button.paper-cut {
display: inline-block;
padding: 12px 20px;
background: #fff7ed;
color: #78350f;
font-weight: 600;
font-size: 14px;
text-align: center;
border: 1px dashed #f97316;
border-radius: 4px 4px 12px 12px;
text-decoration: none;
box-shadow: 2px 2px 0 #fcd34d;
transition: all 0.2s ease;
}
.push-button.paper-cut:hover {
background: #fef3c7;
box-shadow: 4px 4px 0 #facc15;
}