修改前
.work-card__button { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; padding: 10px 18px; border: 0; border-radius: 999px; background: var(--color-brand); color: #fff; font: inherit; font-weight: 800; text-decoration: none; cursor: pointer; }
修改後
.work-card__action { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; padding: 10px 18px; border: 0; border-radius: 999px; background: var(--color-brand); color: #fff; font: inherit; font-weight: 800; text-decoration: none; cursor: pointer; transition: transform 160ms ease; }
.work-card__action:hover { transform: translateY(-2px); }
.work-card__action:focus-visible { outline: 3px solid #f5c851; outline-offset: 3px; }