@charset "utf-8";
/*==================================================
	【サブ】ページ固有のスタイル
==================================================*/
#products .grid {
	display: grid;
	justify-content: space-between;
	grid-template-columns: repeat(3, 350px);
	gap: 40px 0;
}
#products .grid .box {
	background: #fff;
	border-radius: 10px;
	position: relative;
	padding: 35px;
}
#products .grid .box::before {
	content: "";
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	z-index: 1;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #b4e100;
}
#products .grid .box h4 {
	font-size: 25px;
	height: 3em;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 30px;
}
#products .grid .box h4 .fs {
	font-weight: 500;
	font-size: 80%;
}
#products .grid .box .img {
	margin-bottom: 30px;
}
#products .grid .box .img img {
	border: 1px solid #ccc;
	border-radius: 10px;
}
@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) {  /* タブレット以下 */
	#products .grid {
		grid-template-columns: repeat(2, 48%);
	}
	#products .grid .box {
		padding: 25px 15px 15px;
	}
	#products .grid .box h4 {
		font-size: 20px;
		margin-bottom: 10px;
	}
	#products .grid .box .img {
		margin-bottom: 20px;
		text-align: center;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#products .grid {
		margin-top: 40px;
		display: block;
	}
	#products .grid .box {
		margin-bottom: 30px;
	}
	#products .grid .box::before {
		width: 20px;
		height: 20px;
		top: -10px;
	}
	#products .grid .box h4 {
		height: auto;
		margin-bottom: 15px;
		font-size: 18px;
	}
	#products .grid .box .img {
		margin-bottom: 15px;
	}
	#products .grid .box .txt {
		line-height: 1.8;
	}
}