@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; /* 背景画像より上に表示 */ 
}

/*======= こんなことならお任せください ======*/
.top-container {
	/* width: min(92%, 1166px);*/ /* テンプレ初期値 */
	width: min(70%, 1000px);
	margin: auto;
	position: relative;
}

.top-card__item{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap:10px;
}
.top-card__item div{
	/*子要素のそれぞれのdivの高さを揃える記述*/
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 2;
	/*ここまで*/

}
.top-card__item H3{
	padding: 5px 0;
	font-size: clamp(15px,1.6vw,16px);
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
}


/*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: #eeeeee;
    background-image: url(../img/bg_01.png);
    background-repeat: repeat;

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

/*カード*/
.sec1-card__item{
	display: grid;
	grid-template-columns: repeat(3, 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;
	border-radius: 5px;
	box-sizing: border-box;
	border: 1px solid var(--main-color);
	background-color: #FFF;
}
.sec1-card__item img{
	width: 100%;
	max-width: 700px;
}
.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-bottom: 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:0;
	background-color: #FFF;
}

.sec2-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 0px;
	grid-row-gap: 0px;
}
	
.sec2-container-item1 { 	
	grid-area: 1 / 1 / 2 / 2;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url(../img/bg_02.jpg);	
	background-position: bottom right;
}
@media print {
	.sec2-container-item1 {
		background-image: url(../img/bg_02.jpg);
		background-size: 100vw;
	}
}
.sec2-container-item2 { 	
	grid-area: 1 / 2 / 2 / 3;
	padding: 100px;
	margin: 0 auto;
}

@media only screen and (max-width: 1100px) {
	.sec2-container {
		display: grid;
		grid-template-columns: 1fr;
		grid-template-rows: repeat(1, 70vw 1fr);
		grid-column-gap: 0px;
		grid-row-gap: 0px;
	}
		
	.sec2-container-item1 { grid-area: 1 / 1 / 2 / 2; }
	.sec2-container-item2 {
		grid-area: 2 / 1 / 3 / 2;
		padding: 30px 15px 50px 15px;
	 }
}
@media only screen and (max-width: 568px) {
	.sec2-container {
		display: grid;
		grid-template-columns: 1fr;
		grid-template-rows: repeat(1, 70vw 1fr);
		grid-column-gap: 0px;
		grid-row-gap: 0px;
	}
		
	.sec2-container-item1 { grid-area: 1 / 1 / 2 / 2; }
	.sec2-container-item2 {
		grid-area: 2 / 1 / 3 / 2;
		padding: 30px 15px 50px 15px;
	 }
	 .sec2-container-item2 img{
		width: 60%;
		margin: 0 auto;
	 }
}


.sec2__title {
    font-size: clamp(30px,5vw,40px);
    font-weight: 700;
    text-align: center;
    font-family: 'Kiwi Maru';
}  
.sec2__title span {
    font-size: clamp(40px,5vw,60px);
}


ul.sec2__list{
    margin-top: 10px;
    font-size: clamp(18px,5vw,25px);
    line-height: 1.7;
    list-style-type: none;
    column-count: 1;		/*リスト横並び数を指定*/
}
.sec2__list li+li {
    margin-top: 5px;
}
.sec2__list li {
    position: relative;
    padding-left: 35px;
    border-bottom: 1px solid #ccc;
}
.sec2__list li:before {
    content: "";
    position: absolute;
    width: clamp(2px,3vw,14px);
    height: clamp(17px,5vw,25px);
    top: 0em;
    left: 6px;
    -webkit-transform: rotate(50deg);
    -ms-transform: rotate(50deg);
    transform: rotate(50deg);
    border-right: 3px solid var(--main-color);
    border-bottom: 3px solid var(--main-color);
}
.sec2__list li:after {
    content: "";
    position: absolute;
    top: .2em;
    left: 0;
    width: clamp(18px,5vw,25px);
    height: clamp(18px,5vw,25px);
    border: 1px solid #9c9c9c;
    border-radius: 2px;
}

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

.sec3__catch01 {
    font-size: clamp(18px,5vw,25px);
    text-align: center;
    width: 160px;
    margin-inline: auto;
    border: 1.5px solid var(--main-color);
    font-weight: 700;    
    font-family: 'Kiwi Maru';
  }

.sec3__title {
    font-weight: 700;
    text-align: center;
    margin-top: 20px;
    position: relative;    
    font-size: clamp(25px,5vw,40px);
    font-family: 'Kiwi Maru';    
	background-image: url(../img/sec3__title.svg);
    background-size: contain;
    background-position: center bottom;
	background-repeat: no-repeat;
}
.sec3__title span {
    font-size: clamp(35px,5vw,60px);
    color:var(--main-color);
	font-family: 'ヒラギノ丸ゴ Pro W4', 'ヒラギノ丸ゴ Pro', 'Hiragino Maru Gothic Pro', 'HG丸ｺﾞｼｯｸM-PRO', 'HGMaruGothicMPRO', sans-serif;
}
@media (max-width: 568px) {
	.sec3__title {
		margin-top: -20px;
	}
}

/* 選ばれる理由 */
.sec3-container {
	/* width: min(92%, 1166px);*/ /* テンプレ初期値 */
	width: min(70%, 1000px);
	margin: auto;
	position: relative;
}

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

	padding: 10px;
	border: 1px solid var(--txt-color);
	background-color: #FFF;
}
.sec3-card__item H3{
	padding: 5px 0;
    font-size: clamp(15px, 1.6vw, 16px);
    font-weight: bold;
    line-height: 1.3;
    border-bottom: 3px double var(--txt-color);
    border-top: 3px double var(--txt-color);
    text-align: center;
}

.sec3-card__item p{
	display: inline-block;
    font-size: 15px;
    line-height: 1.5;
    margin: 5px 0px;
}

/*section4*/
.sec4 {
    padding: var(--v-space) 0;
    background-color: #FFF;
}

/*section5*/
.sec5 {
    padding: var(--v-space) 0;
   	background-image: url(../img/bg_03.png),url(../img/bg_03r.png);
	background-repeat: no-repeat,repeat;
	background-position: bottom,top;
	background-size: 100%,200px;
}

/* 記事一覧 */

.sec5-posts-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px 10px;
}

@media print, screen and (min-width: 768px) {
	.sec5-posts-container {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* 記事一覧の中身 */

.sec5-posts a {
	display: block;
}

.sec5-posts h3 {
	margin: 0.2em 0 0.2em;
	padding: 0.2em;
	font-size: clamp(11px, 2vw, 15px);
	text-align: center;
    line-height: 1.3;
	border-top: 1px solid var(--main-color);
    border-bottom: 1px solid var(--main-color);
	background-color: #00588f25;
}

.sec5-posts p {
	padding: 0.5em;
	font-size: clamp(10px, 1.6vw, 14px);
	min-height: 0vw;
}

.sec5-posts img {
	aspect-ratio: 3 / 2;
	object-fit: cover;
	width: 100%;
}

@supports not (aspect-ratio: 3 / 2) {
	.sec5-posts img {
		height: 180px;
	}
}

/*======= 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_w-container {
	/* width: min(92%, 1166px);*/ /* テンプレ初期値 */
	width: min(92%, 500px);
	margin: 0 auto;
}
/*会社案内*/
.info_sec1{
	padding: var(--v-space) 0;
	background-color: #FFF;
	background-image: url(../img/bg_04.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%;
	}
}

/* 会社案内写真 */
.info-sec1-container {
	display: grid;
	margin-top: 1em;
	grid-template-columns: repeat(1, 1fr);
	gap:10px;
}
.info-sec1-container img {
	margin-top: 1em;
	margin: 0 auto;
}
@media screen and (min-width: 568px) {
	.info-sec1-container {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap:10px;
		align-items: center;
	}
}

/*会社概要*/
.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; /* 背景画像より上に表示 */ 
}



