.btn-frame {
	position: absolute;
	z-index: 30;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	box-shadow: 0 0 3px rgb(0, 0, 0, 0.16);
}

.btn-frame .link-btn {
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	background: #FEAEC2;
	border-radius: 100%;
	transition: .5s;
	color:#fff;
	text-decoration: none;
	box-shadow: inset 0 0 8px #FD7C9C;
	cursor: pointer;
}

/* アイテム情報 */
.btn-frame .link-btn .item-info {
	transition: .1s;
	transition-delay: 0;
	opacity: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	background: #FD6289;
}

/* アイコン */
.btn-frame .link-btn .cart-icon {
	position: absolute;
	top: 50%;
	line-height: 1;
	margin-top: -0.6em;
	opacity: 1;
	text-align: center;
	width: 100%;
	transition: .3s;
}

.btn-frame .link-btn:hover .cart-icon {
	opacity: 0.6;
}

/* ************************************************************************************************ */
@media screen and (min-width: 769px) {
	
	/* アイコン */
	.btn-frame .link-btn:hover .cart-icon {
		transition: .5s;
		transition-delay: 0s;
		opacity: 0;
		animation: none;
	}
	
	/* アイテム情報 */
	.btn-frame .link-btn:hover .item-info {
		transition: .3s;
		opacity: 1;
	}

}


/* ************************************************************************************************ */
@media screen and (max-width: 768px) {
	.btn-frame {
		width: 8.9552vw;
		height: 8.9552vw;
	}
	/* アイコン */
	.btn-frame .link-btn .cart-icon {
		width: 3.8806vw;
		transition: 0;
		left: 50%;
		transform: translateX(-50%);
	}

	.btn-frame .link-btn .item-info {
		display: none;
	}


}

