修改前
:root { --brand: #0c7656; --space: 18px; }
.work-card__button { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; padding: 10px 18px; border: 0; border-radius: 999px; background: #0c7656; color: #fff; font: inherit; font-weight: 800; text-decoration: none; cursor: pointer; }
修改後
:root { --color-brand: #0c7656; --color-ink: #17201d; --space-card: 24px; }
.work-card { padding: var(--space-card); color: var(--color-ink); }
.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; }