@charset "utf-8";
.main {
	padding-left: 20px;
	padding-right: 30px;
}
/* コメント */
.item-main-com {
	margin-bottom: 15px;
}

/* 商品 */
section:not(:first-child) {
	margin-top: 30px;
}
.item-list {
	--gap: 3px;
}
.item-card .item-name,
.item-card .item-link {
	background: #000;
	color: #fff;
}
.item-card .item-name {
	margin-bottom: 3px;
	padding: 4px;
	text-align: center;
	font-size: 0.95em;
}
.item-card .item-image {
	text-align: center;
	margin-bottom: 3px;
}
.item-card .item-image img {
	width: 100%;
	height: auto;
}

.item-card .item-link {
	padding: 4px;
	text-align: right;
	font-size: 0.8em;
}
.item-card .item-link::after {
	content: "≫";
	margin: auto 5px;
}
.item-card .item-link a {
	color: #fff;
	text-decoration: underline;
}
.item-card .item-price {
	display: grid;
	grid-template-columns: 87px 90px;
	min-height: 40px;
	margin: 4px auto 0;
	padding: 0 3px;
	font-size: 0.9rem;
	color: red;
	font-weight: bold;
	line-height: 1.25;
}
.item-card .item-price>* {
	text-align:right;
}
.item-card .item-detail {
	margin: 0 auto;
	padding: 3px;
	font-size: 0.9rem;
	line-height: 1.25;
}
.item-card .item-taste {
	display: flex;
	margin: 4px 2px;
}
.item-card .item-taste li {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #ccc;
	height: 22px;
	padding-top: 2px;
	text-align: center;
	font-size: 0.7rem;
	line-height: 1;
}
.item-card .item-taste li.current {
	background: red;
}
.item-card .item-com {
	padding: 3px;
	font-size: 0.9rem;
}
