緑のグラデーション立体ボタン(矢印付き)デザイン

ボタン
HTML
<a href="#" class="green-btn">ボタン</a>
CSS
.green-btn {
  display: inline-block;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  padding: 12px 36px 12px 28px;
  background: linear-gradient(#8bc34a, #388e3c);
  border: 2px solid #2e7d32;
  border-radius: 6px;
  position: relative;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: 0.2s ease;
}

.green-btn::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}

.green-btn:hover {
  background: linear-gradient(#9ccc65, #43a047);
  box-shadow: 0 6px 10px rgba(0,0,0,0.25);
}

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

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

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