@charset "UTF-8";


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


/*======= TOPページ ======*/
/*ご挨拶*/
.greeting {
	padding: clamp(40px, 6vw, 90px) 0;
	background-color: var(--base-color);
}

/*外部リンクバナー*/
.link_bnr{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 10px;
	grid-row-gap: 10px;
	margin-top: 10px;
}
@media (max-width: 568px) {
	.link_bnr{
		grid-template-columns: repeat(3, 1fr);
		grid-column-gap: 1px;
		grid-row-gap: 1px;
		margin-top: 5px;
	}
}

/*サービス(TOP)*/
.sec1{
	padding: var(--v-space2) 0;
	background: var(--main-color);
}
div.sec1_bg {
	background: rgba(255, 255, 255, 0.95);
	padding: 40px;
	/*border-radius: 10px;*/	/*背景の角を丸くする*/
}
@media screen and (max-width: 568px) {
	div.sec1_bg {
		padding: 15px 15px 15px 15px;
	}
}

.sec1_heading {
    text-align: left;
    font-size: clamp(20px, 2.4vw, 25px);
    margin: 0px 0 20px 0;
    border-bottom: 0;
    line-height: 1.3;
    font-weight: bold;
    padding: 7px 7px 7px 2px;
    color: #FFF;
    border-bottom: 3px dotted #FFF;
}
/*カード*/
.sec1-card__item{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap:10px;
}
@media (max-width: 768px) {
	.sec1-card__item{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 468px) {
	.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 4;
	/*ここまで*/

	padding: 20px;
	background-color: rgba(255,255,255,0.95);
	border-radius: 15px;
	box-sizing: border-box;
}
.sec1-card__item img{
	width: 100%;
}
.sec1-card__item H3{
	padding: 5px 0;
	font-size: clamp(15px,1.6vw,18px);
	font-weight: bold;
	line-height: 1.3;
	border-bottom: 3px double var(--main-color);
	border-top: 3px double var(--main-color);
}
.sec1-card__item p{
	display: inline-block;
    font-size: 15px;
    line-height: 1.5;
}

/*詳しく見る*/

.sec1-card__item p.btn11 {
	position: relative;
	border: none;
	font-size:12px;
	width: 100%;
	text-align: right;
}
.sec1-card__item p.btn11 a {	
	border-bottom: 1px solid #666;
}
.sec1-card__item p.btn11 a::after {
	content: ">";
	margin-left: 20px;
	
	border-bottom: 1px solid #666;
}

/*section2(TOPブログ)*/
.sec2{
	padding: var(--v-space) 0;
    background-color: #e9e9e9;
	opacity: 0.8;
	background-image: radial-gradient(#959595 0.5px, #e9e9e9 0.5px);
	background-size: 10px 10px;
}

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

/*各ページ遷移バナー*/
.topbnr_sec{
	padding: 30px 0 80px 0;
    background-color: #406f7c1f;
}

.topbnr_sec-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 10px;
	grid-row-gap: 10px;
}

@media (max-width: 568px) {
	.topbnr_sec-container {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: 2fr;
		grid-column-gap: 10px;
		grid-row-gap: 10px;
	}
}

/*======= 自動車修理・メンテナンスページ ======*/
/*section1*/
.rm_sec1 {
	padding: var(--v-space) 0;
	background-color: var(--main-color);
}
/*section2*/
.rm_sec2 {
	padding: var(--v-space2) 0;
	background-color: #FFF;
}
/*section3*/
.rm_sec3 {
	padding: var(--v-space) 0;
	background-color: #FFF;
}


/*タイトル*/
.rm_heading{	
	position: absolute;
	top: calc((var(--v-space) + 0.6em) * -1);
	font-family: "Montserrat", sans-serif;
	font-size: clamp(45px, 4vw, 65px);
	min-height: 0vw;
	font-weight: 600;
	/*以下、文字を上下で色分けするコード*/
    display: inline-block;
    background: linear-gradient(#DAA520 50%, #e3b84b 50%);
    -webkit-background-clip: text;
	background-clip:text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}
.rm_heading2{	
	position: absolute;
	top: calc((var(--v-space) + 0.6em) * -1);
	font-family: "Montserrat", sans-serif;
	font-size: clamp(45px, 4vw, 65px);
	min-height: 0vw;
	font-weight: 600;
	/*以下、文字を上下で色分けするコード*/
    display: inline-block;
    background: linear-gradient(#e3b84b 50%, #DAA520 50%);
    -webkit-background-clip: text;
	background-clip:text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}
.rm_heading-txt{
	position: absolute;
	top: calc((var(--v-space) - 1.5em) * -1);
	color: #FFF;
	font-size: clamp(17px, 1.5vw, 25px);
	font-weight: 400;
}
.rm_heading-txt2{
	position: absolute;
	top: calc((var(--v-space) - 1.5em) * -1);
	color: #444;
	font-size: clamp(17px, 1.5vw, 25px);
	font-weight: 400;
}

/*======= 車買取・販売 ======*/
/*section1*/
.ps_sec1 {
	padding: var(--v-space) 0;
	background-color: var(--main-color);
}
/*section2*/
.ps_sec2 {
	padding: var(--v-space) 0;
	background-color: #FFF;
}

/*リストカラム数*/
.ps_clm{
	column-count: 2;
}
@media screen and (max-width: 1050px) {
	.ps_clm{
		column-count: 1;
	}
}

/*料金表*/
table.ps_sec2-price{
	border-collapse: collapse;
	width: 100%;
  }
  .ps_sec2-price th,
  .ps_sec2-price td{
	padding: 5px;
	border: solid 1px #6d011c;
	text-align:center;
	box-sizing:border-box;
	font-size: clamp(13px, 1.4vw, 15px);
  }
  .ps_sec2-price th {
	background-color: #cc0033;
	color: #FFF;
	position: relative;
  }
  .ps_sec2-price th p {
	text-align: center;
	font-size: 12px;
	line-height: 1.2;
	font-weight:normal;
}
  @media screen and (max-width: 640px) {
	.ps_sec2-price .head{
	  display:none;
	}
	.ps_sec2-price {
	  width: 100%;
	}
	.ps_sec2-price td,
	.ps_sec2-price th{
	  display: block;
	  width: 100%;
	  border-bottom:none;
	}
	.ps_sec2-price td{
	  padding: 0px 12px 0 0;
	  display: block;
	  width: 100%;
	  line-height: 2.5;
	  text-align:right;
	}
	.ps_sec2-price td:before{
	  color: #444;
	  content: attr(data-label);
	  font-weight: bold;
	  padding: 0px 10px;
	  display: inline;
	  margin-right: 10px;
	  float: left;
	}
	.ps_sec2-price tr:last-child{
	  border-bottom: solid 1px var(--main-color);
	}
  }

  /*リストカラム数(不用品)*/
	.ps_clm2{
		column-count: 4;
		gap:30px;
	}
	@media screen and (max-width: 758px) {
		.ps_clm2{
			column-count: 3;
		}
	}
	@media screen and (max-width: 568px) {
		.ps_clm2{
			column-count: 2;
		}
	}
/*リストカラム数(不用品・テキスト長い用)*/
	  .ps_clm3{
		column-count: 2;
		gap:30px;
	}
	@media screen and (max-width: 758px) {
		.ps_clm3{
			column-count: 1;
		}
	}

	/*ボックス*/
	.sec2-bg-02-box {
		padding: 0.5em 1em;
		font-weight: bold;
		border: solid 1px var(--main-color);
		position: relative;
		z-index: 1;

	}
	.sec2-bg-02-box::after {
		content: '';
		background: url(../img/shampoo-img.png),#daa52040;
		background-position: right bottom;
		background-size: 40%;
		background-repeat: no-repeat;
		width: calc(100% + 3px);
		height: calc(100% + 3px);
		position: absolute;
		top: -7px;
		left: 4px;
		z-index: -1;
	}
	.sec2-bg-02-box p {
		margin: 0; 
		padding: 0;
		font-weight: normal;
	}
	@media screen and (max-width: 568px) {
		.sec2-bg-02-box {
			padding: 1em 1em 5em;
		}
		.sec2-bg-02-box::after {
			background-size: 50%;
		}
	}


/*======= FAQ ======*/
.faq_sec1 {
	padding: 0px 0 100px 0;
	background-color: #FFF;
}
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: 0px 0 100px 0;
	background-color: #FFF;
}
/* 概要・アクセス部分のテーブル */
.info1 {
	font-weight: bold;
	border-bottom: 1px dashed #999;
	padding: 5px;
	width: 220px;
}
.info2 {
	border-bottom: 1px dashed #999;
	padding: 5px;
	width: auto;
}
@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: #e3e6e8;
	padding:20px;
}

.info_sec2{
	padding: var(--v-space) 0;
	background: var(--main-color);
}

/* アクセス部分のテーブル */
.access1 {
	font-weight: bold;
	border-bottom: 1px dashed #ffffff;
	padding: 5px;
	width: 5.25em;
}
.access2 {
	border-bottom: 1px dashed #ffffff;
	padding: 5px;
	width: 400px;
}
@media screen and (max-width: 568px) {
	.access1 {
		display: block;
		padding: 8px 2px 2px 2px;
		width: 100%;
		border-bottom: 1px solid rgba(255,255,255,0);
	}
	.access2 {
		display: block;
		padding: 2px;
		width: 99%;
	}
}



/*======= お問い合わせページ ======*/





