@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;
}

/*カード*/
.secG-card__item{
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap:10px;
}

.secG-card__item p{
	text-align:center;
	font-weight:500;
}



/* 画像を丸くする */
.secG-card__item .round {
	object-fit: cover;        /* 枠いっぱいに画像を拡大して収める */
	width: 100%;              /* 親要素の幅いっぱいに */
	aspect-ratio: 1 / 1;      /* 高さを幅に合わせて正方形に */
	display: block;           /* 余白削除 */
}

@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(2, 1fr);
	}

	.secG-card__item div{
		padding: 60px;
	}

}
.secG-card__item div{
	/*子要素のそれぞれのdivの高さを揃える記述*/
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 2;
	/*ここまで*/

	padding: 10px;
	background-color: var(--base-color);
	border-radius: 10px;
	box-sizing: border-box;
	background-color:transparent;
}

.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;
	background-color:var(--accent-color1);
	padding:5px;
	border-radius:5px;
	color:white;
}


/*======= コンテンツ ======*/


/*======= Service 業務案内 ======*/
.secS {
	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;
}



/*======= こんな鈑金や修理は ======*/
.secN {
	padding: var(--v-space) 0;
	background-color: #E6F2F9;
}


h3.titleN{
	text-align:center;
	font-family: 'Zen Old Mincho', serif;
	font-weight:700 !important;
	font-style:normal;
	margin-bottom:2em;
	font-size:25px;
}
@media screen and (max-width: 568px) { 
	h3.titleN{
		margin-bottom:1.5em;
	}
}

h3.titleN::after {
	margin:0 auto;
    display: block;
    content: '';
    width: 120px;
    height: 0px;
    margin-top: 0.6em;
    margin-bottom: 0.2rem;
    border-bottom: 3px double var(--accent-color1);
    font-weight: bold;
    font-size: 26px;
}


/*カード*/
.secN-card__item{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap:10px;
}
@media only screen and (max-width: 968px) {
	.secN-card__item{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}
@media only screen and (max-width: 568px) {
	.secN-card__item{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}
}
.secN-card__item div{
	/*子要素のそれぞれのdivの高さを揃える記述*/
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 2;
	/*ここまで*/

	background-color: rgba(255, 255, 255, 0.6);
	box-sizing: border-box;
	box-shadow: 0 13px 13px 0 rgba(0, 0, 0, .2);
}

.secN-card__item H4{
	padding: 15px;
	padding-bottom:0;
	font-size: clamp(16px,1.5vw,20px);
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
	font-family: 'Zen Old Mincho', serif;
	font-weight:700 !important;
	font-style:normal;

}
.secN-card__item p{
	display: inline-block;
	font-size: 15px;
	line-height: 1.5;
}

.secN-card__item img{
	filter: grayscale(100%);
}




/*======= About 当店の特徴 ======*/
.secA {
	padding: var(--v-space) 0;
	background-color: #FFF;
	background-image: url(../img/bg_06.jpg);
	background-size:cover;
	background-position: bottom;
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}


.secA::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(255, 255, 255, 0.6); /* 不透明度を高めて効果を強調 */
	z-index: 0; 
}


/*======= Flow 流れ ======*/
.secF {
	padding: var(--v-space) 0;
	background-color: #FFF;
	background-image: url(../img/bg_04.jpg);
	background-size:cover;
	background-position: bottom;
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

.secF::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.6); /* 不透明度を高めて効果を強調 */
	z-index: 0; 
}



/*======= FAQ ======*/
.contentsbgA {
	margin-bottom: 30px;
	padding: 20px;
	background: rgba(255, 255, 255, 0.7);
	box-shadow: 0 13px 13px 0 rgba(0, 0, 0, .05);
}

.faq_sec1 {
	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-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;
}


/*======= 会社案内ページ ======*/
/*会社案内*/
.info_sec1{
	padding: var(--v-space) 0;
	background-color: #FFF;
	background-image: url(../img/bg_05.jpg);
	background-size:cover;
	background-position: bottom;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
/* 概要・アクセス部分のテーブル */
.info1 {
	font-weight: bold;
	border-bottom: 1px dashed var(--accent-color1);
	padding: 5px;
	width: 5.25em;
}
.info2 {
	border-bottom: 1px dashed var(--accent-color1);
	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(255, 255, 255, 0.7);
	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; /* 背景画像より上に表示 */ 
}
/*カード枠*/

@media screen and (min-width: 768px) { 
	.wakuLim{
		margin:0 auto;
		width:70%;
	}
}


/*カード*/
.secI-card__item{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap:10px;
}
@media only screen and (max-width: 568px) {
	.secI-card__item{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}
}
.secI-card__item div{
	/*子要素のそれぞれのdivの高さを揃える記述*/
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 1;
	/*ここまで*/
	box-sizing: border-box;
	box-shadow: 0 13px 13px 0 rgba(0, 0, 0, .2);
}
.secI-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);
}
.secI-card__item p{
	display: inline-block;
	font-size: 15px;
	line-height: 1.5;
}


/*======= 調整 ======*/
.l-c {
	margin-right: auto;
	margin-left: auto;
}

.spot-heading01 {
	font-size: clamp(40px, 6vw, 60px);
	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;
}


/*その他*/
strong{
	font-weight:normal;
}


/*======= FLOW ======*/


/*リスト*/
.bullet-list {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

/* PC・タブレット */
.bullet-list li {
	position: relative;
	width: 48%;
	margin-right: 4%;
	margin-bottom: 1em;
	padding-left: 1em;
	box-sizing: border-box;
	padding-bottom:0 !important;
}

/* 偶数項の右マージンなし */
.bullet-list li:nth-child(2n) {
	margin-right: 0;
}

/* ●マーク */
.bullet-list li::before {
	content: "●";
	position: absolute;
	left: 0;
	color: var(--accent-color2);
}

/* スマホでは1列で左右バランス・インデント調整 */
@media screen and (max-width: 767px) {
	.bullet-list li {
		width: 90%;
		margin-right: 0;
		padding-left: 1em;      /* インデント少し小さく */
		text-indent: 0em;
		margin-left:5%;
	}

}

/*全体共通*/
h2{
	font-family: 'Zen Old Mincho', serif;
	font-weight:700 !important;
	font-style:normal;
}
h3{
	font-family: 'Zen Old Mincho', serif;
	font-weight:700 !important;
	font-style:normal;
}

h3 + p{
	font-family: 'Zen Old Mincho', serif;
	font-weight:600;
	font-style:Italic;
}

.waku{
	border:2px solid var(--accent-color1);
	margin:0 auto;
	width:80%;
	padding:20px;
	margin-bottom:50px;
	font-family: 'Zen Old Mincho', serif;
	font-weight:700 !important;
	font-style:normal;
	font-size:1.2em;
	box-shadow: 6px 6px 1px #EDF2FA ;
}

/*大きい画像のみ影*/
.imgtext-container > figure.img {
	box-shadow: 6px 6px 1px #EDF2FA ;
}

