@charset "UTF-8";


/*=======================================================*/
/*      		セクション毎のCSS   			  		  */
/*======================================================*/


/*======= 共通 ======*/

/* 親要素からはみ出して画面いっぱいに */
.full {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}

/*タイトル(共通)*/
.spot-heading01{
	font-size: clamp(50px,6vw,70px);
	font-style: italic;
	text-align: center;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.spot-heading02{
	font-size: clamp(22px, 2.7vw, 30px);
    line-height: 1em;
    font-weight: 700;
	text-align: center;
	font-family: 'YakuHanJPs','Noto Sans Japanese',sans-serif,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "MS Pゴシック", "MS PGothic", Arial,Helvetica, Verdana;
}
.spot-heading02+p{
	margin-top: 0.5em;
	margin-bottom: 1em;
	font-size: 22px;
	font-weight: bold;
	inline-size: fit-content;
	margin-inline: auto;
	font-family: 'YakuHanJPs','Noto Sans Japanese',sans-serif,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "MS Pゴシック", "MS PGothic", Arial,Helvetica, Verdana;
}
.line{
	width: 1px;
	height: auto;
	padding-top: 5.8%;
	background-color: #2d2d2d;
	margin: 1.9607% auto;
}
.line2{
	width: 1px;
	height: auto;
	padding-top: 5.8%;
	background-color: #FFF;
	margin: 1.9607% auto;
}

/*＼　／でタイトルを囲む*/
.spot-heading02 {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: clamp(16px, 2vw, 20px);
	text-align: center;
	border: 0;
	color: #444;
	margin: 10px;
  }
  
  .spot-heading02::before,
  .spot-heading02::after {
	content: '';
	width: 1px;
	height: 40px;
	background-color: var(--accent-color2);
  }
  
  .spot-heading02::before {
	margin-right: 30px;
	transform: rotate(-35deg)
  }
  .spot-heading02::after {
	margin-left: 30px;
	transform: rotate(35deg)
  }
  


/*======= TOP ======*/
/*ご挨拶*/
.greeting {
	padding: clamp(40px, 6vw, 90px) 0 var(--v-space) ;
	background-color: var(--base-color);
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}


/*TELバナー*/
.tel_bnr{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 10px;
	grid-row-gap: 10px;
}
@media (max-width: 568px) {
	.tel_bnr{
		grid-template-columns: repeat(1, 1fr);
	}
}


/*======= 取扱商品 ======*/

/*section1*/
.sec1 {
	padding: var(--v-space) 0;
	background-color: #eef4ea;
	background-image: url(../img/bg_01a.png),url(../img/bg_01b.png);
	background-repeat: no-repeat,no-repeat;
	background-position: top ,bottom;
	background-size: 100%,100%;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

/*カード*/
.sec1-card__item{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap:10px;
}
@media only screen and (max-width: 968px) {
	.sec1-card__item{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}
@media only screen and (max-width: 568px) {
	.sec1-card__item{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}
}
.sec1-card__item div{
	/*子要素のそれぞれのdivの高さを揃える記述*/
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
	/*ここまで*/

	padding: 20px;
	background-color: #f5f8f2;
	border-radius: 20px;
	box-sizing: border-box;
}
.sec1-card__item img{
	width: 30%;
	margin: 0 auto;
}
.sec1-card__item H4{
	padding: 5px 0;
	font-size: clamp(16px,1.5vw,20px);
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
	border-top: 2px dotted var(--main-color);
}
.sec1-card__item p{
	display: inline-block;
    font-size: 15px;
    line-height: 1.5;
}

.sec1-heading {
	position: relative;
	color: #fff;
	font-size: clamp(16px,1.5vw,25px);
	text-align: center;
	padding: 1em;
	background-color: var(--main-color);
	margin-bottom: 25px;
}
.sec1-heading::after {
	width: 0;
	height: 0;
	position: absolute;
	top: 100%;
	left: 50%;
	margin: 0 0 0 -25px;
	border: 25px solid transparent;
	border-top-color: var(--main-color);
	content: '';
}


.sec1-container {
	display: grid;
	grid-template-columns: 1fr 200px;
	grid-template-rows: 1fr;
	grid-column-gap: 20px;
	grid-row-gap: 20px;
	align-items: center;
}

@media only screen and (max-width: 768px) {
	
	.sec1-container {
		grid-template-columns: 1fr;
		grid-template-rows: 2fr;
	}
	.sec1-container img{
		max-width: 300px;
		margin: 0 auto;
	}

}

/*======= 事例 ======*/

/*section2*/
.sec2 {
	padding: var(--v-space) 0;
	background:#FFF;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

/*カード*/
.sec2-card__item{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap:10px;
}
@media only screen and (max-width: 1025px) {
	.sec2-card__item{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}
@media only screen and (max-width: 700px) {
	.sec2-card__item{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}
}
.sec2-card__item div{
	/*子要素のそれぞれのdivの高さを揃える記述*/
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
	/*ここまで*/

	padding: 20px;
	background-color: #FFF;
}
@media only screen and (max-width: 568px) {
	.sec2-card__item div{
		padding: 0px;
	}
}
.sec2-card__item img{
	width: 100%;
	margin: 0 auto;
}
.sec2-card__item H4{
    background-color: #3A7D2E;
    color: white;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
}
.sec2-card__item H4 +p{
	font-size: 1.1em;
}
.sec2-card__item p{
	display: inline-block;
    font-size: 15px;
    line-height: 1.5;
}

/*テーブル*/
.sec2-tbl {
	margin: 0px auto;
}
.sec2-tbl tr th {
	text-align: center;
	font-size: clamp(15px, 1.4vw, 16px);
	line-height: 1.4;
	color: #FFF;
	background-color: var(--main-color);	
	border-bottom: 4px solid #FFF;
	padding: 0.5em;
	width: 100px;
}
.sec2-tbl tr td {
	font-size: clamp(15px,1.4vw,16px);
	text-align:left;
	line-height: 1.4;
	padding-left: 20px;
	font-weight: bold;
}

/*section3*/
.sec3 {
	padding: var(--v-space) 0;
	background-color: #eef4ea;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}




/*======= FAQ ======*/
.faq_sec1 {
	padding: var(--v-space) 0;
	background-color: #FFF;
	
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
div.faq2 p.b {
	font-weight: bold;
	color: #444;
}
div.faq2 p.b::first-letter {
	color: var(--main-color);
	font-size: 130%;
}
div.faq2 p {
	margin-top: 5px;
	line-height: 1.4;
	text-align: left;
	text-indent: -1.4em;
	padding-left: 1.4em;
	display: block;
}
div.faq2 p::first-letter {
	color: var(--accent-color1);
	font-size: 130%;
	font-weight: bold;
}
hr.faqHr{
	height: 0px;
	border: 1px dashed var(--accent-color2);
	margin: 20px auto;
}



/*======= 会社案内ページ ======*/
/*会社案内*/
.info_sec1{
	padding: var(--v-space) 0;
	background-color: #FFF;
	background-image: url(../img/bg_02.jpg);
	background-size: cover;
	background-position: left top;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
/* 概要・アクセス部分のテーブル */
.info1 {
	font-weight: bold;
	border-bottom: 1px dashed #999;
	padding: 5px;
	width: 5.25em;
}
.info2 {
	border-bottom: 1px dashed #999;
	padding: 5px;
	width: 400px;
}
@media screen and (max-width: 568px) {
	.info1 {
		display: block;
		padding: 8px 2px 2px 2px;
		width: 100%;
		border-bottom: 1px solid rgba(255,255,255,0);
	}
	.info2 {
		display: block;
		padding: 2px;
		width: 99%;
	}
}

/*会社概要*/
.bg_b{
	background: rgba(255, 255, 255, 0.8);
	padding:40px;
}
@media screen and (max-width: 568px) {
	.bg_b {
		padding: 20px;
	}
}

.access_sec1{
	padding: var(--v-space) 0;
	background-color: #FFF;
	
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}



