.shop {
  margin: 150px auto 160px;
}

@media screen and (max-width: 767px) {
  .shop {
    margin: 50px auto 60px;
  }
}

.shopList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  position: relative;
}

.shopList::after {
  content: "";
  width: calc((100% - 60px) / 3);
  display: inline-block;
}

.shopItem {
  width: calc((100% - 60px) / 3);
  position: relative;
  overflow: hidden;
}

.shopItem:nth-child(n + 4) {
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .shopItem {
    width: 100%;
  }
  .shopItem:nth-child(n + 2) {
    margin-top: 60px;
  }
}

.shopTtlCover {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px;
}

@media screen and (max-width: 767px) {
  .shopTtlCover {
    padding: 0 5px;
  }
}

.shopTtl {
  font-size: 28px;
  line-height: calc(60 / 28);
}

@media screen and (max-width: 1024px) {
  .shopTtl {
    font-size: 20px;
  }
}

.shopTtl .c-btnTxt-btm {
  left: auto;
}

.c-btnIcon {
  position: relative;
  margin-left: 10px;
}

@media screen and (max-width: 767px) {
  .c-btnIcon {
    margin-left: 5px;
  }
}

.shopImg {
  position: relative;
  z-index: 2;
}

.shopTxt {
  margin-top: 10px;
  line-height: calc(28 / 16);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  padding: 0 10px;
}

@media screen and (max-width: 767px) {
  .shopTxt {
    margin-top: 5px;
    padding: 0 5px;
  }
}
/*# sourceMappingURL=shop.css.map */