/* サイドバー商品フィード */
.ypl-feed {
	list-style: none;
	margin: 0;
	padding: 0;
}
.ypl-feed-item {
	margin: 0 0 10px;
	padding: 0;
}
.ypl-feed-link {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	text-decoration: none;
	color: inherit;
}
.ypl-feed-link:hover .ypl-feed-title {
	text-decoration: underline;
}
.ypl-feed-thumb {
	flex: 0 0 64px;
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 6px;
	overflow: hidden;
}
.ypl-feed-img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}
.ypl-feed-meta {
	flex: 1;
	min-width: 0;
}
.ypl-feed-title {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 12px;
	line-height: 1.4;
}
.ypl-feed-price {
	display: block;
	margin-top: 3px;
	font-size: 13px;
	font-weight: 700;
	color: #bf0000;
}
