@charset "utf-8"; 

/* ===========================================================================================================================
	トップページ top css
	
	---- INDEX ----
	メインビジュアルスライダー（パララックス）
	リードコピー
	製品紹介
	お客様の声
	バナー
============================================================================================================================== */
/* メインビジュアルスライダー（パララックス）
------------------------------------------ */
.slider {
	width: 100%;
	position: sticky;
	left: 0;
	z-index: -1;
}
.slider ul {
	clear: both;
	width: 100%;
}
.slider ul li img{
	width: 100%;
	aspect-ratio: 1344 / 565;
}
@media screen and (min-width: 1000px) {/* PC */
	.slider {
		top: 90px;/*ヘッダー分空ける*/
	}
}
@media screen and (min-width: 768px) and (max-width: 999px) {/* TB */
	.slider {
		top: 80px;/*ヘッダー分空ける*/
	}
}
@media screen and (max-width: 767px) {/* SP */
	.slider {
		top: 60px;/*ヘッダー分空ける*/
	}
}
/* パララックス（今回は使用しない）
------------------------------------------ */
.parallax {
	width: 100%;
	height: 50vh;
	position: sticky;
	top: 100px;/*ヘッダー分空ける*/
	left: 0;
	z-index: -1;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
@media screen and (min-width: 768px) and (max-width: 999px) {/* TB */
	.parallax {
		top: 80px;/*ヘッダー分空ける*/
		height: 50vh;
	}
}
@media screen and (max-width: 767px) {/* SP */
	.parallax {
		top: 60px;/*ヘッダー分空ける*/
		height: 30vh;
	}
}
.parallax01 {
  background-image: url("../../img_top/visual1.jpg");
}
.parallax02 {
  background-image: url("../../img_top/visual2.jpg");
}
.parallax03 {
  background-image: url("../../img_top/visual3.jpg");
}
/* キャッチ
------------------------------------------ */
.top_catch {
	text-align: center;
}
.top_catch h2 {
	display: inline-block;
	border-bottom: 1px solid #000;
	color: #9A72F3;/* コーポレートカラー */
	margin: 0 0 1em;
}
.top_catch h3 {
	font-weight: 600;
}
.top_catch p {
	line-height: 2;
}
@media screen and (min-width: 1000px) {/* PC */
	.top_catch h2 {
		font-size: 50px;
	}
	.top_catch h3 {
		font-size: 40px;
	}
	.top_catch p {
		font-size: 24px;
	}
}
@media screen and (min-width: 768px) and (max-width: 999px) {/* TB */
	.top_catch h2 {
		font-size: 40px;
	}
	.top_catch h3 {
		font-size: 30px;
	}
	.top_catch p {
		font-size: 21px;
	}
}
@media screen and (max-width: 767px) {/* SP */
	.top_catch h2 {
		font-size: 34px;
	}
	.top_catch h3 {
		font-size: 28px;
	}
	.top_catch p {
		font-size: 18px;
		text-align: justify;
		text-justify: inter-character;
	}
}
/* リードコピー
------------------------------------------ */
.top_lead {
	background: #F6F3FC
}
@media screen and (min-width: 1000px) {/* PC */
	.top_lead {
		display: flex;
	}
	.top_lead_img {
		width: 500px;
	}
	.top_lead_txt {
		width: 500px;
		padding: 60px;
		font-size: 21px;
	}
}
@media screen and (min-width: 768px) and (max-width: 999px) {/* TB */
	.top_lead {
		display: flex;
	}
	.top_lead_img {
		width: 50%;
	}
	.top_lead_txt {
		width: 50%;
		padding: 20px;
		font-size: 19px;
	}
}
@media screen and (max-width: 767px) {/* SP */
	.top_lead_txt {
		padding: 20px;
		font-size: 19px;
	}
}
/* 製品紹介
------------------------------------------ */
.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
	}
}
/* お客様の声
------------------------------------------ */
.top_voice h2 {
	text-align: center;
	margin-bottom: 1em;
}
.top_voice h2::after {
	content: "";
	display: block;
	width: 200px;
	border-bottom: 2px solid #9A72F3;/* コーポレートカラー */
	padding-bottom: 10px;
	margin: 0 auto 10px;
}
@media screen and (min-width: 1000px) {/* PC */
	.top_voice h2 {
		font-size: 30px;
	}
}
@media screen and (min-width: 768px) and (max-width: 999px) {/* TB */
	.top_voice h2 {
		font-size: 24px;
	}
}
@media screen and (max-width: 767px) {/* SP */
	.top_voice h2 {
		font-size: 24px;
	}
}
ul.user_voice {
	max-height: 47em;
	padding: 0 .5em 0 0;
	overflow-y: auto;
}
ul.user_voice li {
	padding-bottom: 1.5em;
	border-bottom: 1px solid #9A72F3;/* コーポレートカラー */
	margin-bottom: 1.5em;
	position: relative;
	padding-left: 2.5em
}
ul.user_voice li:last-of-type {
	padding-bottom: 0;
	border-bottom: none;
	margin-bottom: 0;
}
ul.user_voice li::before {
	content: "\f4a6";/* > */
	font-family: "Font Awesome 6 Pro";
	color: #9A72F3;/* コーポレートカラー */
	font-size: 2em;
	position: absolute;
	top: -5px;
	left: 0;
}
/* バナー
------------------------------------------ */
@media screen and (min-width: 1000px) {/* PC */
	.top_banner {
		display: flex;
		justify-content: space-between;/* 内包要素を両端に合わせて均等間隔に配置 */
	}
}
@media screen and (min-width: 768px) and (max-width: 999px) {/* TB */
	.top_banner {
		display: flex;
		justify-content: space-between;/* 内包要素を両端に合わせて均等間隔に配置 */
	}
	.top_banner_child {
		width: 48%;
	}
}
@media screen and (max-width: 767px) {/* SP */
	.top_banner_child {
		margin-bottom: 20px;
	}
}
/* 
------------------------------------------ */
@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 */
}

