@charset "UTF-8";


/*=======================================================*/
/*      		セクション毎のCSS   			  		  */
/*======================================================*/


/*======= 共通 ======*/

/* 親要素からはみ出して画面いっぱいに */
.full {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}



/*======= TOP ======*/
/*ご挨拶*/
.greeting {
	padding: clamp(40px, 6vw, 90px) 0 var(--v-space);
	background-color: var(--base-color);
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}

.greeting-spot {
	color: var(--accent-color1);
	font-size: 1.2em;
}

/*電話バナー*/
.tel_bnr {
	display: grid
	;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 10px;
	grid-row-gap: 10px;
	padding: 20px 0;
}


.tel_bnr img{
	box-shadow: 0 8px 8px 0 rgba(0, 0, 0, .10);
}


@media (max-width: 568px) {
	.tel_bnr {
		grid-template-columns: repeat(1, 1fr);
	}
}

/*======= コンテンツ ======*/

/*======= 日々の電気供給を ======*/
.secN {
	padding: var(--v-space) 0;
	background-color: #FFF;
	background-image: url(../img/bg_04.png);
	background-size:cover;
	background-position:center;
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}



/*======= Service 事業案内 ======*/
.secS {
	padding: var(--v-space) 0;
	background-color: #FFF;
}

h3.title{
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	text-align:center;

	font-size: clamp(25px, 3vw, 35px);
	min-height: 0vw;
	font-weight: 900;
	color: #444;

}

h3.title::after {
	margin: 0 auto;
	display: block;
	content: '';
	width: 100%;
	height: 5px;
	margin-top: 0.3em;
	margin-bottom: 2rem;
	background: linear-gradient(
	to right,
	var(--main-color) calc(50% - 100px), /* 中央20px手前までメインカラー */
	#001f3f calc(50% - 100px),           /* 濃紺開始 */
	#001f3f calc(50% + 100px),           /* 濃紺終了（幅20px） */
	var(--main-color) calc(50% + 100px)  /* そこから再びメインカラー */
	);
	font-weight: bold;
	font-size: 26px;
	text-align: center;
}


h4.title{
	background-color:var(--accent-color1);
	color:white;
	width:30%;
	text-align:center;
	padding:5px;
	border-radius:15px;;
	margin-top:1em;
	margin-bottom:0.5em;
	background: linear-gradient(
	to right,        /* 左から右へ */
	#001f3f,         /* 濃紺（ネイビー寄り） */
	#001f3f,         /* 濃紺（ネイビー寄り） */
	#0074D9          /* 青（明るめのブルー） */
	);
}

@media only screen and (max-width: 567px) {
	.sp-small-space{
		margin-top:-70px;	
	}
}

@media only screen and (max-width: 567px) {
	.sp-small-space2{
		margin-top:-30px;	
	}
}

/*======= Gallery 施工風景 ======*/
.secG {
	padding: var(--v-space) 0;
	background-color: #FFF;
	background-image: url(../img/bg_03.png);
	background-size:cover;
	background-position:center;
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 

}
p.white{
	color:white;
}
.card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}
@media only screen and (max-width: 567px) {
	.card-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
}
@media print {
	.card-grid {
		display: grid;
		grid-template-columns: repeat(4,1fr);
		gap: 1.5rem;
	}
}

.card {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 2;
	row-gap: 0.5rem;
	text-align: center;
}

.card img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 4/3;
	object-fit: cover;
}

.card-title {
	font-size: clamp(0.8rem,1.6vw,1rem);
	margin: 0;
}


/*======= Flow ご注文の流れ ======*/
.secF {
	padding: var(--v-space) 0;
	position: relative;
	z-index: 1;
	background-color: #f7f7f7;
	background-image: repeating-linear-gradient(0deg, #e6e6e6 0, #e6e6e6 1px, transparent 1px, transparent 15px), repeating-linear-gradient(90deg, #e6e6e6 0, #e6e6e6 1px, transparent 1px, transparent 15px);
	background-size: 15px 15px;
}


/*======= FAQ ======*/
.faq_sec1 {
	padding: var(--v-space) 0;
	background-color: white;
}

.faq-item {
	display: grid;
	grid-template-columns: 1.5em 1fr;
	column-gap: 10px;
	row-gap: 5px;
}

.faq-label {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: bold;
	font-size: 110%;
	line-height: 1.5;
	border-radius: 3px;
	width: 1.5em;
	text-align: center;
	align-self: start;
	/* lavelを上揃えに */
}

.faq-label.q {
	background-color: var(--accent-color3);
}

.faq-label.a {
	background-color: var(--accent-color1);
}

.faq-question,
.faq-answer {
	margin: 0;
	line-height: 1.6;
	text-align: justify;
}

.faq-question {
	font-weight: bold;
}

hr.faqHr {
	height: 0px;
	border: 1px dashed var(--accent-color2);
	margin: 20px auto;
}
.contentsbgA{
	padding:15px;
	box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
	margin-bottom:20px;
}

/*======= 会社案内ページ ======*/
/*会社案内*/
.info_sec1{
	padding: var(--v-space) 0;
	background-color: #FFF;
	background-image: url(../img/bg_07.png);
	background-size:cover;
	background-position: center;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
/* 概要・アクセス部分のテーブル */
.info1 {
	font-weight: bold;
	border-bottom: 1px dashed var(--accent-color2);
	padding: 5px;
	width: 5.25em;
}
.info2 {
	border-bottom: 1px dashed var(--accent-color2);
	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;
	grid-template-columns: repeat(3, 1fr);
	gap: 5px 5px;
}

@media (min-width: 568px) {
	.info-sec1-container {
		grid-template-columns: repeat(6, 1fr);
	}
}

/*会社概要*/
.bg_b{
	background: rgba(50,108,145, 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; /* 背景画像より上に表示 */ 
}




/*======= 調整 ======*/
.l-c {
	margin-right: auto;
	margin-left: auto;
}

.spot-heading02 {
	font-size: clamp(17px, 2.7vw, 30px);
	line-height: 1em;
	text-align: center;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	line-height:160%;
	font-weight:900;
}

@media screen and (max-width: 568px) { 

	.spot-heading02 {
		text-align:left;
	}
}

/*その他*/
strong{
	font-weight:normal;
}


span.h3sm{
	font-size:16px;
	margin-left:10px;
}

/*画像全体*/
.imgtext-container > figure.img {
	box-shadow: 6px 6px 1px #eee ;
	box-shadow: 0 5px 5px 0 rgba(0, 0, 0, .1);
}

