HTML
<div class="push-button_box">
<a href="#" class="push-button bubble-pop">クリックしてね</a>
</div>
CSS
.push-button_box{
width:30%;
margin:50px auto;
}
.push-button.bubble-pop {
display: inline-block;
padding: 14px 24px;
background: #fcd34d;
color: #92400e;
font-weight: bold;
font-size: 15px;
text-align: center;
border-radius: 50px;
border: 2px solid #facc15;
box-shadow: 0 4px 0 #eab308;
text-decoration: none;
transition: all 0.15s ease;
}
.push-button.bubble-pop:hover {
transform: translateY(-2px);
box-shadow: 0 6px 0 #eab308;
}