HTML
<div class="push-button_box">
<a href="#" class="push-button stripe-move">もっと見る</a>
</div>
CSS
.push-button_box{
width:30%;
margin:50px auto;
}
.push-button.stripe-move {
display: inline-block;
padding: 14px 24px;
background: repeating-linear-gradient(
-45deg,
#60a5fa,
#60a5fa 10px,
#3b82f6 10px,
#3b82f6 20px
);
color: white;
font-weight: 700;
font-size: 15px;
border-radius: 6px;
text-decoration: none;
transition: transform 0.2s ease, box-shadow 0.2s ease;
box-shadow: 0 3px 0 #1e3a8a;
}
.push-button.stripe-move:hover {
transform: translateY(-2px);
box-shadow: 0 6px 0 #1e3a8a;
}