/*-----------------------------------------
goodsTile
-------------------------------------------*/
.goodsTile {
  font-family: "Josefin Sans";
  font-weight: 500;
}
.goodsTile .images {
  margin-bottom: 6px;
  position: relative;
}
@media (min-width: 751px) {
  .goodsTile .images {
    margin-bottom: 20px;
  }
}
.goodsTile .images a:hover {
  opacity: 1;
}
.goodsTile .images img {
  width: 100%;
}
.goodsTile .images .rank {
  font-size: 1.4rem;
  font-weight: normal;
  position: absolute;
  left: 4px;
  top: -3px;
  display: inline-block;
  line-height: 1;
}
@media (min-width: 751px) {
  .goodsTile .images .rank {
    font-size: 3.6rem;
    font-weight: 200;
    left: 20px;
    top: -10px;
  }
}
.goodsTile .images .favorite-btn {
	position: absolute;
	top: 95%;
	right: 4%;
	z-index: 2;
}
@media (max-width: 1023px) {
	.goodsTile .images .favorite-btn {
		top: 90%;
	}
}
.goodsTile .images .favorite-btn .add_favorite {
	display: block;
	width: 15px;
	height: 22px;
	background: url(../img/favorite.png) no-repeat;
	background-size: contain;
}
.goodsTile .images .favorite-btn .add_favorite.active {
	background: url(../img/favorite_on.png) no-repeat;
	background-size: contain;
	position: absolute;
	top: 87%;
	right: 4%;
	z-index: 2;
}
.goodsTile .images .favorite-btn .add_favorite {
	display: block;
	width: 13px;
	height: 22px;
	background: url(../img/favorite.png) no-repeat;
	background-size: contain;
}
.goodsTile .images .favorite-btn .add_favorite.active {
	background: url(../img/favorite_on.png) no-repeat;
	background-size: contain;
}
.goodsTile .images .iconList {
	position: absolute;
	z-index: 2;
	left: 5px;
	bottom: 5px;
	max-width: 100%;
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	gap: 5px;
}
.goodsTile .images .iconList .icon {
	background: #EEEEE6;
	font-size: 1rem;
	height: 20px;
	border-radius: 3px;
	padding: 0 8px;
	display: grid;
	place-content: center;
}
.goodsTile .images .iconList .icon--sale {
	color: #FF3B3B;
}
.goodsTile .images .soldout {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.8);
	display: grid;
	place-content: center;
	font-size: 1.6rem;
	font-weight: normal;
	pointer-events: none;
}
@media (min-width: 751px) {
	.goodsTile .images .soldout {
		font-size: 3.6rem;
	}
}
.goodsTile .goodsBottomWrapper {
	font-size: 1rem;
	line-height: 1;
	letter-spacing: 0.05em;
}
@media (max-width: 1023px) {
	.goodsTile .goodsBottomWrapper {
		font-size: 1.2rem;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
	}
}
.goodsTile .goodsBottomWrapper .color-list {
  display: flex;
  display: -webkit-flex;
  gap: 8px;
  margin: 0;
}
@media (max-width: 750px) {
  .goodsTile .goodsBottomWrapper .color-list {
    margin-bottom: 10px;
  }
}
@media (min-width: 751px) {
  .goodsTile .goodsBottomWrapper .color-list {
    gap: 12px;
  }
}
.goodsTile .goodsBottomWrapper .color-list .colorchip {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: grid;
  place-content: center;
}
@media (min-width: 751px) {
  .goodsTile .goodsBottomWrapper .color-list .colorchip {
    width: 10px;
    height: 10px;
  }
}
.goodsTile .goodsBottomWrapper .priceWrapper .nonsale:not(:last-child), .goodsTile .goodsBottomWrapper .priceWrapper .sale:not(:last-child) {
  margin-right: 0.5em;
}
@media (min-width: 751px) {
  .goodsTile .goodsBottomWrapper .goodsInfoWrapper {
    text-align: left;
  }
}
.goodsTile .goodsBottomWrapper .goodsNameWrapper {
  margin-bottom: 4px;
}
@media (min-width: 751px) {
  .goodsTile .goodsBottomWrapper .goodsNameWrapper {
    margin-top: 6px;
  }
}
