@charset "utf-8";
/*==================================================
	商品案内
==================================================*/
.imgs {
	display: grid;
	justify-content: space-between;
	grid-template-columns: repeat(2, 49%);
	gap: 40px 0;
	margin-bottom: 20px;
}
@media print, screen and (min-width: 769px){ /* PCのみ */
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */
}
@media only screen and (max-width: 768px) and (min-width: 641px){ /* タブレットのみ */
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	.imgs {
		margin-top: 15px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	.imgs {
		gap: 20px 0;
	}
}