/*スライダー中身*/
.scroll-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.scroll-card img {
  width: 100%;
  height: 50%; /* 上半分を占める */
  object-fit: cover; /* 枠にぴったり表示（切り取りあり） */
  display: block;
}

.scroll-card h5,
.scroll-card p {
  padding: 0.5rem 1rem;
  margin: 0;
}

.scroll-card p {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #555;
}
