/*EDKDS001-03_add*/
@charset "utf-8";

.recommendListA {
  opacity: 0;
}
.recommendListA.slick-initialized {
  opacity: 1;
}
.recommendListA .slick-track {
  display: flex;
}
.recommendListA .slick-slide {
  height: auto;
}
.recoImg {
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: 16px;
}

.recoName {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  font-weight: bold;
  -webkit-box-orient: vertical;
}
.recommendListA .shop-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  /* 画面サイズが768pxまではここを読み込む */
  .recommendListA {
    margin: 0 0 40px 16px;
  }
  .recommendListA .slick-slide {
    width: calc((100% - 16px) / 2);
    margin-right: 16px;
  }
  .recoImg {
    margin-bottom: 12px;
  }
  .recommendListA .shop-name {
    margin-bottom: 8px;
    font-size: 14px;
  }
  .recoName {
    height: 48px;
    margin-bottom: 12px;
    font-size: 16px;
    -webkit-line-clamp: 2;
  }
}

@media screen and (min-width: 769px) {
  /* 画面サイズが769pxからはここを読み込む */
  .recommendListA {
    width: 1080px;
    margin: 0 auto 80px;
  }
  .recommendListA .slick-slide {
    width: 200px;
    margin-right: 20px;
    transition: 0.3s;
  }
  .recommendListA span > a:hover {
    opacity: 0.7;
  }
  .recoImg {
    margin-bottom: 16px;
  }
  .recommendListA .shop-name {
    margin-bottom: 8px;
  }
  .recoName {
    height: 82px;
    margin-bottom: 16px;
    font-size: 18px;
    -webkit-line-clamp: 3;
  }
}