

.c-shop-list {
  display: grid;
  margin-top: 24px;
  padding: 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 32px;
  list-style: none;
  width: 86%;
  max-width: 1200px;
  margin: 0 auto 50px;
}

@media print, screen and (width >=768px) {
  .c-shop-list {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 8px;
    gap: 0 53px;
  }
}

.c-shop-filter + .c-shop-list {
  margin-top: -20px;
}

@media print, screen and (width >=768px) {
  .c-shop-filter + .c-shop-list {
    margin-top: -32px;
  }
}

.c-shop-list__item {
  display: contents;
}

.c-shop-list__link {
  position: relative;
  display: grid;
  margin-top: 24px;
  color: inherit;
  grid-template-columns: 1fr;
  grid-template-rows: subgrid;
  align-items: start;
  gap: 6px;
}

@media print, screen and (width <=767px) {
  .c-shop-list__link {
    grid-row: span 4;
  }
}

@media print, screen and (width >=768px) {
  .c-shop-list__link {
    grid-row: span 5;
    margin-top: 40px;
    gap: 12px;
  }
}

@media (hover: hover) {
  .c-shop-list__link {
    transition: opacity 200ms ease;
  }

  .c-shop-list__link img {
    transition: transform 200ms ease-out;
  }

  .c-shop-list__link:hover {
    opacity: 0.85;
  }
  .c-shop-list__link.noitem:hover {
    opacity: 1;
  }
  .c-shop-list__link:hover img {
    transform: scale(1.08);
  }
  .c-shop-list__link.noitem:hover img {
     transform: scale(1);
  }
}

.c-shop-list__image {
  padding: 4.3333333333%;
  border: 1px solid;
}

.c-shop-list__image-inner {
  overflow: hidden;
}

.c-shop-list__image-inner img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.c-shop-list__title {
  margin-top: 4px;
  font-size: 15px;
  font-weight: bold;
  line-height: var(--line-height-m);
}
.c-shop-list__title span{
  font-size:12px;
  display:block
}
@media print, screen and (width >=768px) {
  .c-shop-list__title {
    font-size: 17px;
  }
  .c-shop-list__title span{
  font-size:12px;
  }
}

.c-shop-list__date1 {
  font-size: 1rem;
  line-height: var(--line-height-s);
  margin: 0;
}

@media print, screen and (width >=768px) {
  .c-shop-list__date1 {
    font-size: 15px;
  }
}

.c-shop-list__date1 time {
  display: block;
}

.c-shop-list__description {
  font-size: 1.4rem;
  line-height: var(--line-height-l);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  margin: 0;
}

@media print, screen and (width <=767px) {
  .c-shop-list__description {
    display: none;
  }
}

@media print, screen and (width >=768px) {
  .c-shop-list__description {
    font-size: 15px;
  }
}

.c-shop-list__date1 span {
    padding: 3px;
    font-size: 7px;
    background: #fc858c;
    color: #fff;
    padding: 3px 3px 4px;
    font-weight: 600;
    line-height:1.0;
}
@media print, screen and (width >=768px) {
  .c-shop-list__date1 span {
    font-size: 12px;
    padding: 3px 2px 4px;
    line-height: 1.0;
}
}

.c-shop-list__date2 {
  position: absolute;
  top: 0;
  right: -4px;
}

.c-shop-list__date2-content {
  transform-origin: right top;
  transform: rotate(90deg) translate(100%, -76%);
  display: flex;
  gap: 14px;
  align-items: center;
}

.c-shop-list__date2 time {
  display: block;
  width: fit-content;
  font-family: var(--font-family-en);
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
}
.c-shop-list__date2-content span {
    writing-mode: vertical-lr;
    transform: rotate(-90deg);
    padding: 3px;
    font-size: 7px;
    background: #fc858c;
    color: #fff;
    padding: 3px 3px 4px;
    font-weight: 600;
    line-height:1.0;
}
@media print, screen and (width >=768px) {
  .c-shop-list__date2 time {
    font-size: 13px;
  }
  .c-shop-list__date2-content span {
    font-size: 12px;
    transform: rotate(-90deg);
    padding: 3px 2px 6px;
    line-height: 1.0;
}
}



