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

@media screen and (max-width: 768px) {
  /* 画面サイズが768pxまではここを読み込む */
  .shopItemArea {
    margin-bottom: 40px;
  }
  .shop-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -16px;
    opacity: 0;
  }
  .shop-list.slick-initialized {
    opacity: 1;
  }
  .shop-list .slick-track {
    display: flex;
  }
  .shop-list .slick-slide {
    height: auto;
  }
  .shop-list__item {
    display: flex;
    float: none;
    position: relative;
    width: 100%;
    margin: 0 16px;
  }
  /* EDKDS001-03_mod_start */
  /* .shop-list__image {
    display: block;
    margin-bottom: 16px;
    overflow: hidden;
    border-radius: 8px;
    height: 200px;
  } */
  .shop-list__image {
    display: block;
    margin-bottom: 16px;
    overflow: hidden;
    border-radius: 8px;
    width: calc((100% - 30px));
    max-width: none;
    margin-left:15px;
  }
  /* EDKDS001-03_mod_end */
  .shop-list__image img {
    width: 100%;
    position: static;
    transform: none;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
  }
  .shop-list__name {
    display: -webkit-box;
    margin-bottom: 8px;
    overflow: hidden;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
  }
  .shop-list__desc {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    white-space: normal;
  }
  .shop-list .slick-prev {
    left: 2px;
  }

  /* KDS_add_start */

  .pickup-campaign-page .shop-list {
    opacity: 1 !important;
  }

  .shopItemArea.pickup-campaign-page .shop-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    margin: 0;
  }

  .shopItemArea.pickup-campaign-page .shop-list__item {
    width: calc(50% - 6px) !important;
    box-sizing: border-box;
    margin: 0 !important;
    padding: 4px;
    flex: none !important;
  }

  .shopItemArea.pickup-campaign-page .shop-list__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
  }

  .shopItemArea.pickup-campaign-page .shop-list__name,
  .shopItemArea.pickup-campaign-page .shop-list__desc {
    display: none;
  }

   /* KDS_add_end */
  
}

@media screen and (min-width: 769px) {
  /* 画面サイズが769pxからはここを読み込む */
  .shopItemArea {
    margin-bottom: 80px;
  }

  .shop-list {
    display: flex;
    flex-wrap: wrap;
  }
  .shop-list__item {
    position: relative;
    width: 372px;
    margin-right: 32px;
    /* EDKDS001-03_add_start */
    margin-top: 32px;
    /* EDKDS001-03_add_end */
    transition: 0.3s;
  }
  .shop-list__item:nth-child(3n) {
    margin-right: 0;
  }
  .shop-list__item:hover {
    opacity: 0.7;
  }
  .shop-list__image {
    display: block;
    margin: auto auto 16px auto;
    overflow: hidden;
    border-radius: 8px;
    /* EDKDS001-03_mod_start */
    /* height: 200px; */
    height: 230px;
    text-align: center;
    /* EDKDS001-03_mod_end */
  }
  .shop-list__image img {
    /* EDKDS001-03_del_start */
    /* width: 100%; */
    /* EDKDS001-03_del_end */
    position: static;
    transform: none;
    vertical-align: middle;
    max-width: 100%;
    /* EDKDS001-03_add_start */
    min-height: 100%;
    /* EDKDS001-03_add_end */
    max-height: 100%;
    text-align: center;
    /* EDKDS001-03_add_start */
    border-radius: 16px;
    /* EDKDS001-03_add_end */
  }
  .shop-list__name {
    display: -webkit-box;
    margin-bottom: 16px;
    overflow: hidden;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .shop-list__desc {
    display: -webkit-box;
    overflow: hidden;
    font-size: 18px;
    text-align: left;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
  }
  /* EDKDS001-03_add_start */
    .shopItemArea h2 {
    margin-bottom: 0;	
  }
  /* EDKDS001-03_add_end */
}
