@charset "UTF-8";
.scent-list {
  display: flex;
  overflow-x: auto;
  column-gap: 2rem;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
}

.scent-list .scent-card {
  flex: 0 0 calc((100% / 4.5));
  scroll-snap-align: start;
}

.scent-card-number {
  display: block;
  margin-bottom: 0.2em;
}

.scent-list::-webkit-scrollbar {
  background-color: #eee;
  width: 5px;
  height: 5px;
}

.scent-list::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .scent-list {
    column-gap: 1.2rem;
    -webkit-overflow-scrolling: touch;
    padding: 0 0.8rem 1rem;
  }

  .scent-list::-webkit-scrollbar {
    display: none;
  }

  .scent-list .scent-card {
    flex: 0 0 40%;
    scroll-snap-align: start;
    min-height: auto;
  }
}
