@charset "UTF-8";
/* ----------------------------------

レンダリングブロックCSS対策（遅延読み込み）

---------------------------------- */

/* ----------------------------------

安さの秘密 MODAL

---------------------------------- */
.priceGuaranteeDetail{
  /* border-top: 1px solid #fff; */
  padding: 15px;
  position: absolute;
	top: 203px;
	left: 0;
  z-index: 10;
	background: #55afb3;
}
.priceGuaranteeDetail h3{
  text-align: center;
  color: #fff;
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}
.priceGuaranteeDetail li{
  background: #fff;
  border-radius: 10px;
  padding:15px 20px 20px;
  margin-bottom: 10px;
}
.priceGuaranteeDetail li:last-child{
  margin-bottom: 0;
}
.priceGuaranteeDetail li div{
  overflow: hidden;
  margin-bottom: 10px;
}
.priceGuaranteeDetail li div p{
  float: left;
  width: 36px;
  line-height: 36px;
  border-radius: 100%;
  text-align: center;
  font-size: 21px;
  color: #fff;
}
.priceGuaranteeDetail li div h4{
  font-weight: 700;
  font-size: 14px;
  vertical-align: middle;
  float: left;
  width: calc(100% - 36px);
  padding-left: 10px;
  line-height: 36px;
  letter-spacing: 0;
}
.priceGuaranteeDetail li .text{
  font-size: 14px;
  line-height: 1.3;
}

.priceGuaranteeFooter{
  padding: 30px 0;
  overflow: hidden;
}
.priceGuaranteeFooter .closeBtn{
  display: block;
  width: 46px;
  height: 46px;
  border: 1px solid #fff;
  border-radius: 100%;
  position: relative;
  float: left;
}
.priceGuaranteeFooter .closeBtn::before,
.priceGuaranteeFooter .closeBtn::after{
  position: absolute;
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background: #fff;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  transform-origin: center;
  transform: rotate(45deg);
	transition: all .4s;
}
.priceGuaranteeFooter .closeBtn::after{
  transform: rotate(-45deg);
}
.priceGuaranteeFooter .toDetail{
  display: block;
  float: right;
  width: calc(100% - 80px);
  line-height: 46px;
  border: 1px solid #fff;
  border-radius: 100px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  position: relative;
}
.priceGuaranteeFooter .toDetail::after{
  position: absolute;
	content:"";
	top: 0;
	bottom: 0;
	right: 20px;
	margin: auto;
	width: 5px;
	height: 5px;
	border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform:rotate(45deg);
	transition: all .4s;
}
.priceGuaranteeDetailOverlay{
	display: none;
}
@media print, screen and (max-width: 320px){
  .priceGuaranteeDetail h3{
    font-size: 14px;
  }
  .priceGuaranteeDetail li div h4{
    font-size: 12px;
  }
  .priceGuaranteeDetail li:first-child div h4{
    line-height: 1.4;
    padding-top: 2px;
  }
  .priceGuaranteeDetail li .text{
    font-size: 12px;
  }
}
@media print, screen and (min-width: 768px){
	.priceGuaranteeDetailOverlay{
		display: none;
		width: 100vw;
		height: 100vh;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 9998;
		background:rgba(0,0,0,0.6);
	}
	.priceGuaranteeDetail{
		position: fixed;
		top: 75px;
		left: 0;
		right: 0;
		margin: auto;
		z-index: 9999;
		border-top: none;
	}
}
@media print, screen and (min-width: 960px){
	.priceGuaranteeDetail{
		top: 150px;
		width: 840px;
		border-radius: 8px;
		padding:30px 40px 0;
	}
	.priceGuaranteeFooter .closeBtn:hover{
		background: #fff;
	}
	.priceGuaranteeFooter .closeBtn:hover::before, 
	.priceGuaranteeFooter .closeBtn:hover::after{
		background: #55afb3;
	}
	.priceGuaranteeFooter .closeBtn:hover::before{
		transform: rotate(405deg);
	}
	.priceGuaranteeFooter .closeBtn:hover::after{
		transform: rotate(315deg);
	}
	.priceGuaranteeFooter .toDetail:hover{
		background: #fff;
		color: #55afb3;
	}
	.priceGuaranteeFooter .toDetail:hover::after{
		right: 15px;
		border-top: 1px solid #55afb3;
		border-right: 1px solid #55afb3;
	}
}


/* ----------------------------------
	カラー表
---------------------------------- */

.secMv .color .selectColorBox li {
	font-size: 14px;
	display: flex;
	align-items: center;
	margin-bottom: 5px;
}
.secMv .color .selectColorBox li .carColor{
	display: block;
	width: 30px;
	height: 30px;
}
.secMv .color .selectColorBox li .carName{
	display: block;
	width: calc(100% - 30px);
	padding-left: 10px;
}
@media print, screen and (min-width: 960px){
	.selectColorBox li {
		font-size: 16px;
		margin-bottom: 7px;
	}
	.selectColorBox li .carColor{
		width: 36px;
		height: 36px;
	}
	.selectColorBox li .carName{
		width: calc(100% - 36px);
		padding-left: 14px;
	}
}



/* ----------------------------------
規定走行距離　モーダル
---------------------------------- */
.mileage_discription{
	transition: all .4s;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,0.6);
	z-index: 48;
}
.mileage_discription-inner{
	position: fixed;
	top: 75px;
	right: 0;
	left: 0;
	margin: auto;
	width: 95%;
	height: 440px;
	background: #Fff;
	border-radius: 10px;
}
.mileage_discription-close{
	color: #fff;
	text-align: center;
	z-index: 49;
	background: #000;
	border: 3px solid #FFFFFF;
	border-radius: 100%;
	position: absolute;
	font-size: 28px;
	width: 42px;
	height: 42px;
	line-height: 36px;
	right: 2%;
	top: 64px;
}
.mileage_discription-inner h2{
	font-weight: bold;
	text-align: center;
	padding: 16px 0 15px;
	border-bottom: 1px solid #DEDEDE;
	font-size: 18px;
}
.mileage_discription-contents{
	padding: 15px 22px 20px;
}
.mileage_discription-contents p{
	margin-bottom: 15px;
	font-size: 14px;
	line-height: 1.5;
}
.mileage_discription-contents ul{
	padding-bottom: 20px;
}
.mileage_discription-contents ul li{
	font-size: 12px;
	margin-bottom: 8px;
}
.mileage_discription-contents table{
	width: 100%;
}
.mileage_discription-contents table th,
.mileage_discription-contents table td{
	border: 1px solid #C4C4C4;
	font-size: 12px;
	padding: 10px 0;
	text-align: center;
}
.mileage_discription-contents table th{
	background: #F7F7F7 ;
}

@media print, screen and (min-width: 768px){
	.mileage_discription-inner{
		top: 0px;
		bottom: 0;
		width: 80%;
	}
	.mileage_discription-close{
		right: 8%;
		top: 50%;
		margin-top: -196px;
	}
}
@media print, screen and (min-width: 960px){
	.mileage_discription-inner{
		top: 0px;
		bottom: 0;
		width: 640px;
		height: 450px;
	}
	.mileage_discription-close{
		transition: all .4s;
		font-size: 30px;
		width: 54px;
		height: 54px;
		line-height: 48px;
		right: 50%;
		margin-right: -347px;
		margin-top: -229px;
	}
	.mileage_discription-close:hover{
		opacity: 0.6;
		cursor: pointer;
	}
	.mileage_discription-inner h2{
		padding: 25px 0 20px;
		font-size: 21px;
	}
	.mileage_discription-contents{
		padding: 0px 35px 0px;
	}
	.mileage_discription-contents p{
		font-size: 16px;
		line-height: 1.7;
	}
	.mileage_discription-contents table th,
	.mileage_discription-contents table td{
		font-size: 14px;
	}
}


/* ----------------------------------

	利用用途 2025.10.28プチリニューアル時に使用なしに

---------------------------------- */
.carInfoUseWrap{
	display: none!important;
}


/* ----------------------------------

	関連車種

---------------------------------- */
@media print, screen and (min-width: 960px){
	.recommendCarlist .ttlAndLinkIcon{
		padding-top: 30px;
		padding-bottom: 0;
	}
}

/* =========================================================
表示パフォーマンス最適化（content-visibility）
========================================================= */

#secLoanCompare,
#aboutKuruca,
.sec3Relief,
.secFaq,
#carinfoArea,
.recommendCarlist
{
	content-visibility: auto;
	contain-intrinsic-size: 900px;
}
