.ham-like-btn {
  /* 見た目 */
  background-color: #e6f3fb; /* 淡い水色 */
  color: #246b8e; /* 落ち着いた青文字 */
  border: none;
  border-radius: 999px; /* しっかり丸み */
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;

  /* シャドウ */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);

  /* 操作感 */
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.1s ease;
}

/* hover（押せるときだけ） */
.ham-like-btn:not(.is-disabled):hover {
  background-color: #d9eef9;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.16);
  transform: translateY(-1px);
}

/* active（クリック瞬間） */
.ham-like-btn:not(.is-disabled):active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
}

/* 非活性状態（押下済み） */
.ham-like-btn.is-disabled,
.ham-like-btn:disabled {
  background-color: #edf6fb; /* さらに淡く */
  color: #7aa5bd;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.7;
}

.ham-like-count {
  font-weight: bold;
  display: inline-block;
}

.ham-like-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
