/* ============================================================
   component: button
   使い方: <a class="btn btn--solid">Contact us</a>
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 28px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-en);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}

/* 塗り（黒） */
.btn--solid {
  background: var(--c-accent);
  color: #fff;
}

.btn--solid:hover { background: #2e2e2e; }

/* 線のみ */
.btn--outline {
  background: transparent;
  border-color: var(--c-ink);
  color: var(--c-ink);
}

.btn--outline:hover { background: var(--c-ink); color: #fff; }

/* カード内で横幅いっぱい */
.btn--block { width: 100%; }
