/*ランキングリスト*/
.ranking-list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ranking-card {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  overflow: hidden;
}

.ranking-card a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.ranking-thumb {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
  margin-right: 10px;
}

.ranking-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ranking-title {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
}

.ranking-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #ff5722;
  color: #fff;
  font-size: 12px;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  text-align: center;
  line-height: 24px;
  font-weight: bold;
}

@media (max-width: 600px) {
  .ranking-card {
    padding: 8px;
  }
  .ranking-thumb {
    width: 60px;
    height: 60px;
  }
  .ranking-title {
    font-size: 12px;
  }
}
