@charset "utf-8";

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
取扱製品情報
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- メイン
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.product-li {
	display: grid;
	gap: 1.5em 5%;
}

.product-li:not(:last-child) {
	margin-bottom: 50px;
}

.product-li .heading {
	margin-bottom: 0.8em;
	font-size: 24px;
}

.product-li .heading-en {
	font-weight: initial;
	font-size: 12px;
}

.product-li .heading-ja {
	font-weight: 500;
}

.product-li .img {
	width: 100%;
	border-radius: var(--border-radius);
}

@media (min-width: 768px) {
.product-li {
	display: grid;
	grid-template-columns: auto 51%;
}

.product-li .text {
	align-self: center;
}

.product-li .heading {
	margin-bottom: 1.2em;
}

.product-li .img {
	height: 254px;
	object-fit: cover;
}
}
