@charset "UTF-8";

/* -- 251127 -- */
.scd-container {
  width: auto;
  height: 420px;
  overflow-x: scroll;
  overflow-y: hidden;
}

.scd-container img {
  width: auto;
  height: 100%;
}

.scd-container::-webkit-scrollbar {
  height: 12px; /* 横スクロールなので高さを調整 */
}

.scd-container::-webkit-scrollbar-track {
  background: #e0e0e0;
  border-radius: 10px;
}

.scd-container::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
  border: 2px solid #e0e0e0; /* 見た目を少し立体に */
}

.scd-container::-webkit-scrollbar-thumb:hover {
  background: #777; /* ホバー時に少し濃くする */
}

@media (max-width: 767px) {
  .scd-container {
    margin-right: -1rem;
    height: 280px;
    overflow-x: auto;
  }
}
