.raku-like-wrapper {
  text-align: center;
  margin-top: 30px;
}

.raku-like-btn {
  background: #f57c00;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.2s;
}

.raku-like-btn:hover {
  background: #e64a19;
}

.raku-like-btn.liked {
  background: #888;
  cursor: not-allowed;
}

.raku-like-ranking {
  border-top: 2px solid #f57c00;
  margin: 20px 0;
  padding-top: 10px;
}
.raku-like-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed #ddd;
  padding: 8px 4px;
}
.raku-rank {
  font-weight: bold;
  color: #f57c00;
  margin-right: 8px;
}
.raku-count {
  color: #555;
  font-size: 0.9em;
}

/* ホバーで白っぽく明るくなる */
.raku-like-btn:hover {
    filter: brightness(1.25);
    transform: translateY(-1px);
    transition: 0.25s ease;
}

.raku-like-comment {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 6px;
}
