ボタン
CSS

Underline CTA

ミニマルなアンダーラインCTAリンク。記事内に。

HTML
<a href="javascript:void(0)" class="u-cta">Read case study <span>&rarr;</span></a>
CSS
.u-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1.5px solid #1a1a1a;
  padding-bottom: 2px;
  transition: gap .3s;
}
.u-cta span {
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.u-cta:hover { gap: 8px; }
.u-cta:hover span { transform: translateX(3px); }