@charset "utf-8"; 

/* ===========================================================================================================================
	製品紹介 products css
	
	---- INDEX ----
	製品紹介トップ
	
	
	
============================================================================================================================== */
/* 製品紹介トップ
------------------------------------------ */
.top_products_txt h2::after {
	content: "";
	display: block;
	width: 200px;
	border-bottom: 2px solid #9A72F3;/* コーポレートカラー */
	padding-bottom: 10px;
	margin-bottom: 10px;
}
@media screen and (min-width: 1000px) {/* PC */
	.top_products {
		display: flex
	}
	.top_productsRv {
		display: flex;
		flex-direction: row-reverse;/* 内包要素を←（右から左）に配置 */
	}
	.top_products_img {
		width: 556px;
	}
	.top_products_txt {
		width: calc(100% - 556px);
		padding: 40px 0 40px 40px;
	}
	.top_productsRv .top_products_txt {
		padding: 40px 40px 40px 0;
	}
	.top_products_txt h2 {
		font-size: 30px;
	}
	.top_products_txt h3 {
		font-size: 30px;
	}
}
@media screen and (min-width: 768px) and (max-width: 999px) {/* TB */
	.top_products {
		display: flex;
	}
	.top_productsRv {
		display: flex;
		flex-direction: row-reverse;/* 内包要素を←（右から左）に配置 */
	}
	.top_products_img {
		width: 50%;
	}
	.top_products_txt {
		width: 50%;
		padding: 20px 0 20px 20px;
	}
	.top_productsRv .top_products_txt {
		padding: 20px 20px 20px 0;
	}
	.top_products_txt h2 {
		font-size: 24px;
	}
	.top_products_txt h3 {
		font-size: 24px;
	}
}
@media screen and (max-width: 767px) {/* SP */
	.top_products_txt h2 {
		font-size: 24px;
		text-align: center
	}
	.top_products_txt h2::after {
		margin: 0 auto 10px;
	}
	.top_products_txt h3 {
		font-size: 24px;
		text-align: center
	}
}
/* 製品詳細
------------------------------------------ */
.recom_for li {
	position: relative;
	padding-left: 1.6em;
}
.recom_for li::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "\f4fc";
	font-family: "Font Awesome 6 Pro";
	color: #9A72F3;/* コーポレートカラー */
}
@media screen and (min-width: 1000px) {/* PC */
	.product_img {
		display: flex;/* 内包要素を並列に */
		flex-wrap: wrap; /* 内包要素を折り返す（内包要素にwidth:を指定） */
		justify-content: space-between;/* 内包要素を両端に合わせて均等間隔に配置 */
	}
	.product_img > * {
		width: calc((100% - 20px) / 3);
		margin-bottom: 10px;
	}
	.point_img {
		float: right;
		margin-left: 1em;
	}
	.recom_for li {
		font-size: 1.4em;
	}
}
@media screen and (min-width: 768px) and (max-width: 999px) {/* TB */
	.point_img {
		float: right;
		margin-left: 1em;
	}
	.recom_for li {
		font-size: 1.4em;
	}
}
@media screen and (max-width: 767px) {/* SP */
	.point_img {
		text-align: center;
		margin-bottom: 1em;
	}
	.recom_for li {
		font-size: 1.1em;
	}
}
/* 
------------------------------------------ */
@media screen and (min-width: 1000px) {/* PC */
}
@media screen and (min-width: 768px) and (max-width: 999px) {/* TB */
}
@media screen and (max-width: 767px) {/* SP */
}

