/* ========================================
   Buttons
======================================== */
/* Download Button */
.ak-button,
.ak-download-button {
  display: inline-block;
  padding: 0.65rem 1.05rem;
  color: #fff;
  background: var(--ak-color-accent, #8a5a2b);
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  line-height: 1.5;
  border: 1px solid transparent;
  transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.ak-button:hover,
.ak-button:focus,
.ak-download-button:hover,
.ak-download-button:focus {
  color: #fff;
  opacity: 0.86;
}

/* サブボタン */
.ak-button-sub {
  color: var(--ak-color-accent, #8a5a2b);
  background: transparent;
  border-color: rgba(138, 90, 43, 0.35);
}

.ak-button-sub:hover,
.ak-button-sub:focus {
  color: var(--ak-color-accent, #8a5a2b);
  background: rgba(138, 90, 43, 0.08);
  opacity: 1;
}