@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;
}

.waku-top{
	background-color:white;
	border:1px solid #ccc;
	margin:0 auto;
	text-align:center;
	padding:15px;
	line-height:180%;
}
img.tel{
	box-shadow: 6px 6px 10px #ddd ;
}

/*カード*/
.secG-card__item{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap:10px;
}
@media only screen and (max-width: 968px) {
	.secG-card__item{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}
@media only screen and (max-width: 568px) {
	.secG-card__item{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}
}
.secG-card__item div{
	/*子要素のそれぞれのdivの高さを揃える記述*/
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
	/*ここまで*/

	padding: 10px;
	box-sizing: border-box;
	box-shadow: 6px 6px 10px #ddd ;
}
.secG-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);
}
.secG-card__item p{
	display: inline-block;
	font-size: 15px;
	line-height: 1.5;
	text-align:center;
}

/*======= コンテンツ ======*/


/*======= Service サービス内容 ======*/
.secS {
	padding: var(--v-space) 0;
	background-color: #e6f1fc;
}


/*カード*/
.secS-card__item{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap:10px;
}
@media only screen and (max-width: 968px) {
	.secS-card__item{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}
@media only screen and (max-width: 568px) {
	.secS-card__item{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}
}
.secS-card__item div{
	/*子要素のそれぞれのdivの高さを揃える記述*/
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
	/*ここまで*/

	padding: 10px;
	border-radius: 10px;
	box-sizing: border-box;
}
.secS-card__item H4{
	padding: 5px 0;
	font-size: clamp(16px,1.5vw,20px);
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
	background-color:var(--main-color);
	color:white;
	margin-bottom:-10px;
}
.secS-card__item p{
	display: inline-block;
	font-size: 15px;
	line-height: 1.5;
	text-align:center;
}



/*======= Price 料金 ======*/
.secP {
	padding: var(--v-space) 0;
	background-color: #FFF;
}


/*テーブル*/
.pr, .pr td, .pr th {
	border-collapse: collapse;
	border-bottom: 1px solid #999; 
	text-align:center;
	padding:5px;
	padding-top:10px;
}

table.pr tr td:nth-of-type(2){
	text-align:right;
	padding-right:0px;

}

table.pr tr td:nth-of-type(3){
	text-align:left;
	padding-left:3px;
}



/*======= Protect 防犯対応 ======*/
.secPr {
	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;
}


/*======= Smart-lock 電子錠 ======*/
.secSm {
	padding: var(--v-space) 0;
	background-color: #FFF;
}


/*======= Area 対応エリア ======*/
.secA {
	padding: var(--v-space) 0;
	position: relative;
	z-index: 1;
	background-color: #d6f2fa; /* より水色寄りのベース色に調整 */
	background-size: 6px 6px;
	background-image: repeating-linear-gradient(
	  0deg,
	  #bdeaf6,        /* ストライプの水色をやや濃く */
	  #bdeaf6 1px,
	  #d6f2fa 1px,
	  #d6f2fa
	);
}




/*======= ABOUT ======*/
/*section1*/
.sec1 {
	padding: var(--v-space) 0;
	background-color: #FFF;
	background-image: url(../img/bg_01a.png), url(../img/bg_01b.png);
	background-repeat: no-repeat, no-repeat ;
	background-position: top center, bottom center ;
	background-size: 100%, 100%;
}


/*======= 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: 2px solid var(--accent-color2);
	margin: 20px auto;
}


/*======= 会社案内ページ ======*/
/*会社案内*/
.info_sec1{
	padding: var(--v-space) 0;
	background-color: #FFF;
	background-image: url(../img/bg_04.png);
	background-size:cover;
	background-position: bottom;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
/* 概要・アクセス部分のテーブル */
.info1 {
	font-weight: bold;
	border-bottom: 1px solid rgba(0,0,0,0.3);
	padding: 5px;
	width: 5.25em;
}
.info2 {
	border-bottom: 1px solid rgba(0,0,0,0.3);
	padding: 5px;
	width: 400px;
}
@media screen and (max-width: 568px) {
	.info1 {
		display: block;
		padding: 8px 2px 2px 2px;
		width: 100%;
		border-bottom:none;
	}
	.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(255, 255, 255, 0.8);
	padding:40px;
	box-shadow: 6px 6px 10px #888 ;
}
@media screen and (max-width: 568px) {
	.bg_b {
		padding: 20px;
	}
}


/*===========アクセス===============*/
.access_sec1 {
	padding: var(--v-space) 0;
	background-color: #FFF;
	position: relative;
	z-index: 1;
}


/*======= 調整 ======*/
.l-c {
	margin-right: auto;
	margin-left: auto;
}


/*その他*/
strong{
	font-weight:normal;
}


.waku{
	background-color:white;
	border:1px solid #eee;
	margin:0 auto;
	text-align:center;
	padding:15px;
	line-height:180%;

	box-shadow: 3px 3px 1px #ddd ;
}

.mkr {
	background: linear-gradient(to bottom, transparent 60%, #ffeb3b 60%);
	padding: 0 2px; /* 左右の余白 */
}


.imgtext-container > figure.img {
	box-shadow: 6px 6px 1px #eee ;
}
