@charset "UTF-8";
/* === Product meta (商品型番、販売価格) category.php === */
.product_meta {
	display: flex;
	flex-direction: column; /* 常時 縦並び */
	align-items: flex-start;
	text-align: left;
	gap: 0.35rem;
	margin-top: 0.8rem;
	font-feature-settings: 'palt';
	font-variant-numeric: tabular-nums;
}

/* 商品型番 */
.product_model {
	color: #333;
	font-size: 13px;
	line-height: 1.35;
	overflow-wrap: anywhere;
	/* もしハイフン/スラッシュで優先的に折りたいなら下2行を追加 */
	/* word-break: break-word; */
	/* hyphens:auto; */
}
.product_model__label {
	color: #666;
	margin-right: 0.3em;
}
/* 販売価格 */
.product_price {
	display: inline-flex;
	align-items: baseline;
	font-weight: 700;
	font-size: 13px;
	line-height: 1.1;
	color: #111;
}
.product_price__value {
	font-weight: inherit;
}
.product_price__currency {
	margin-right: 0.2em;
	display: inline-block;
}
.product_price__currency::before {
	content: '\00A5';
	font-weight: 700;
	position: relative;
	top: 0.02em;
}
@media (max-width: 480px) {
	.product_meta {
		gap: 0.2rem;
	}
}
