ブクッとふくらむポップボタン

HTML
<div class="push-button_box">
  <a href="#" class="push-button pop-bounce">はじめる!</a>
</div>
CSS
.push-button_box {
  width: 30%;
  margin: 50px auto;
}

.push-button.pop-bounce {
  display: block;
  width: 100%;
  padding: 16px 0;
  background: #f87171;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 0 #b91c1c;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.push-button.pop-bounce:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 8px 0 #991b1b;
}

🌟 有料会員限定素材を配布中!

ここでしか手に入らない特別デザイン素材を今すぐチェック!

有料会員ページを見る
目次