.itemImg {
  position: relative;
  display: block;
}

.shopName {
	position: absolute;
	bottom: 0px;
	background: rgba(0, 0, 0, 0.3);
	color: #fff;
	padding: 3px;
	text-align: center;
	font-size: 78% !important;
	line-height: 1.2em !important;
	width: 100%;
    white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: transform 0.4s ease, opacity 0.4s ease;
	z-index: 2;
}
.itemWrap {
	position: relative;
	overflow: hidden;
}

/* ホバー時に下にスライドして消える */
.itemWrap:hover .shopName ,.itemWrap:hover .FavoriteshopName{
	transform: translateY(100%);
	opacity: 0;
}

/* ホバー時に下にスライドして消える */
.itemWrap:hover .recommendshopName {
	transform: translateY(100%);
	opacity: 0;
}
/* スマホサイズ（〜767px） */
@media screen and (max-width: 767px) {
  /* スマホ専用のスタイル */
      .recommendshopName {
       bottom:83px;
        }
}

/* タブレットサイズ（768px&#12316;1024px） */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  /* タブレット専用のスタイル */
      .recommendshopName {
        bottom:83px;
        }
}
