@charset "UTF-8";	/*	/form/common/css/style.css	*/
/* ==========================================

	RESET

========================================== */
html,body,h1,h2,h3,h4,h5,h6,p,ul,ol,li,dl,dt,dd{
	padding: 0;
	margin: 0;
	/* font-family: inherit; */
	font-family: 'Noto Sans JP', sans-serif;
	box-sizing: border-box;
}

ol,ul,li{
	list-style-type: none;
}

/* ==========================================

	Mode Display

========================================== */
body{
	line-height: 1.6;
}

.debug_display{
	overflow: hidden;
}

/* ==========================================

	Debug Display

========================================== */
/* DEV：Params */
.debug_header{
	height: 50px;
	font-size: 14px;
	padding-left: 80px;
	color: #ffffff;
	background: rgb(6, 129, 201);
	position: relative;
	font-size: 0;
}

.debug_header h2{
	width: 80px;
	height: 50px;
	padding-top: 9px;
	font-size: 12px;
	line-height: 1.4;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	background:#3f3f3f;
}

.debug_header dl{
	display: inline-block;
	padding: 7px 30px 0;
	height: 60px;
	font-size: 14px;
	letter-spacing: 1px;
	text-align: center;
	border-right: 1px solid skyblue;
}

.debug_header dl dt{
	color: #c3e6f7;
	font-size: 10px;
}

.debug_header a{
	display: block;
	line-height: 50px;
	font-size: 14px;
	color:white;
	background: rgb(9, 115, 177);
	padding: 0 20px;
	text-decoration: none;
	position: absolute;
	top: 0;
	right: 0;
	transition: 0.5s;
}

.debug_header a:hover{
	opacity: 0.6;
}

.debug_header .error_count{
	color: white;
	border-right: none;
	background: rgb(219, 102, 141);
}

.debug_header .error_count dt{
	color: white;
}

/* DEV：Data */
.debug_display{
	padding: 40px; 
	border-top: 1px solid#eba991;
	background-color: rgb(255, 244, 241);
}

.debug_display h2{
	font-size: 32px;
	font-weight: bold;
	margin-top: 30px;
}

/* ==========================================

	Error Page

========================================== */
/* Error Page Design */
.pageFormError{
	padding: 0;
	margin: 0;
}

.formErrorPage{
	text-align: center;
	padding: 140px 0 0;
}

.errorPageLogo{
	width: 120px;
}

.formErrorPage h1{
	padding: 0 0;
	font-size: 50px;
	color: #d3d3d3;
	font-family: 'Poppins', sans-serif;
}

.errorPageDesc{
	margin-bottom: 100px;
}

.errorPageMsg{
	text-align: left;
	margin-top: 20px;
	padding: 20px;
	background: #ececec;
}

.btnBackHome{
	display: inline-block;
	padding: 15px 50px;
	text-decoration: none;
	font-size: 22px;
	letter-spacing: 1px;
	font-family: 'Poppins', sans-serif;
	border-radius: 50px;
	color: #ffffff !important;
	background: var(--color-primary);
}

.carselectBtn{
	text-align: center;
	display: inline-block;
	padding: 20px 50px;
	border-radius: 50px;
	color: #ffffff !important;
	background: var(--color-primary);
}

.br-SP{display: block;}
.br-PC{display: none;}

@media screen and (min-width: 960px){

	.errorPageLogo{
		margin-bottom: 30px;
	}

	.br-SP{display: none;}
	.br-PC{display: block;}

	.errorPageDesc{
		text-align: center;
	}

}

/* ==========================================

	ヘッダー & フッター

========================================== */

body.pageForm{
	padding-top: 0;
}


footer{
	text-align: center;
	padding: 10px 0;
	font-size: 12px;
}

/*=========================================
HEADER
-----------------------------------------*/
/* BLOCK */
.form-header{
	padding-right:20px;
	height: 80px;
	text-align: right;
	background: var(--color-secondary);
	position: relative;
}

/* LOGO */
.form-header .logo{
	width: 120px;
	height: 80px;
	box-sizing: border-box;
	text-align: center;
	position: absolute;
	z-index: 1;
	padding-top: 15px;
	padding-left: 15px;
}
.form-header .logo a{
	display: block;
	height: 100%;
}

.form-header .logo img:hover{
	opacity: 0.6;
}

/* TITLE */
.form-header .title{
	font-size: 20px;
	line-height: 80px;
	letter-spacing: 3px;
}


@media screen and (min-width: 768px){
	/* TITLE */
	.form-header .title{
		font-size: 28px;
		text-align: center;
	}
}

/*=========================================
READ
-----------------------------------------*/
.page-form .read{
	padding: 10px 20px;
	margin-bottom: 10px;
	font-size: 14px;
}

@media screen and (min-width: 768px){
	.page-form .read{
		padding: 20px 0;
		text-align: center;
	}
}

/*=========================================
LINEお問い合わせ
-----------------------------------------*/
.lineContact{
	padding: 10px 20px 20px;
}
.lineContact .lineQr{
	display: none;
}
.lineContact .lineTxt{
	border-radius: 10px;
	border: 1px solid #ccc;
	padding: 15px;
	overflow: hidden;
	position: relative;
	display: block;
}
.lineContact .lineTxt::after{
	content: "";
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	right: 15px;
	margin: auto;
	width: 4px;
	height: 4px;
	border-top: 1px solid var(--color-primary);
	border-right: 1px solid var(--color-primary);
	transform:rotate(45deg);
}
.lineContact .lineTxt img{
	float: left;
	width: 50px;
}
.lineContact .lineTxt dl{
	float: left;
	width: calc(100% - 50px);
	padding-left: 10px;
}
.lineContact .lineTxt dl dt{
	font-weight: bold;
	color: #000;
}
.lineContact .lineTxt dl dd{
	color: #000;
	font-size: 12px;
	line-height: 1.2;
}
.lineContact .lineTxt dl dd span{
	display: block;
}
@media screen and (min-width: 768px){
	.lineContact{
		padding: 10px 60px 40px;
	}
	.lineContact .lineTxt{
		padding: 20px;
	}
	.lineContact .lineTxt dl{
		padding-left: 20px;
	}
	.lineContact .lineTxt dl dt{
		margin-bottom:4px ;
	}
	.lineContact .lineTxt dl dd{
		font-size: 14px;
	}
	.lineContact .lineTxt dl dd span{
		display: none;
	}
}
@media screen and (min-width: 960px){
	.lineContact{
		width: 700px;
		margin: 0 auto 40px;
		padding: 0;
		border-radius: 10px;
		border: 1px solid #ccc;
		overflow: hidden;
	}
	.lineContact .lineQr{
		display: block;
		float: left;
		width: 100px;
		border-right: 1px solid #ccc;
		padding: 20px;
	}
	.lineContact .lineTxt{
		transition: all .4s;
	}
	.lineContact .lineTxt:hover{
		opacity: 0.5;
	}
	.lineContact .lineTxt .inner{
		border-radius: 0;
		border: none;
		height: 100%;
		padding: 10px 20px ;
		float: left;
		width: 100%;
		padding-left: 30px;
	}
	.lineContact .lineTxt::after{
		right: 40px;
		width: 8px;
		height: 8px;
	}
	.lineContact .lineTxt img{
		width: 60px;
	}
	.lineContact .lineTxt dl{
		width: calc(100% - 60px);
		padding-top: 5px;
	}
	.lineContact .lineTxt dl dt{
		margin-bottom:4px ;
		font-size: 18px;
		letter-spacing: 2px;
	}
	.lineContact .lineTxt dl dd{
		float: 1px;
	}
}
/* ==========================================

	ステップ

========================================== */

section.stepMap ul{
	width: 100%;
	border-top: 1px solid #B3C8CB;
	border-bottom: 1px solid #B3C8CB;
	overflow: hidden;
}

section.stepMap ul li{
	float: left;
	width: 33.333%;
	line-height: 40px;
	text-align: center;
	background:#fff url(../img/step_off.svg) no-repeat right center;
}

section.stepMap ul li:last-child{
	background-image: none;
}

section.stepMap ul li span{
	display: none;
}

/* ---------------------
	STEP 1
--------------------- */

/* inputForm */
#form-input .stepMap ul li.stepFirst{
	color: #ffffff;
	border: none;
	background:var(--color-primary) url(../img/step_on.svg) no-repeat right -1px center;
}

/* ---------------------
	STEP 2
--------------------- */

/* inputForm */
#form-confirm .stepMap ul li.stepFirst{
	background:#ffffff url(../img/step_back.svg) no-repeat right center;
}

/* Confirm */
#form-confirm .stepMap ul li.stepConfirm{
	color: #ffffff;
	background:var(--color-primary) url(../img/step_on.svg) no-repeat right center;
}

/* ---------------------
	STEP 3
--------------------- */

#form-finish .stepMap ul li.stepConfirm{
	background:#ffffff url(../img/step_back.svg) no-repeat right center;
}

#form-finish .stepMap ul li.stepFinish{
	color: #ffffff;
	background:var(--color-primary);
}


@media screen and (min-width: 960px){

	section.stepMap{
		width: 960px;
		margin: 0 auto;
		padding-bottom: 10px;
	}

	section.stepMap ul{
		border-radius: 6px;
		border-left: 1px solid #B3C8CB;
		border-right: 1px solid #dae2e2;
	}

	section.stepMap ul li{
		line-height: 3;
	}

	section.stepMap ul li span{
		display: inline-block;
	}

	section.stepMap ul li span::before{
		content: '.';
	}

}

/* ==========================================

	フォームアウトライン

========================================== */

.formArea{
	display: block;
	background: #ffffff;
}

/* ==========================================

	項目ブロック

========================================== */

dl.stepSelect{
	padding: 20px;
/* 	margin-bottom: 10px; */
	background: #ffffff;
	border-bottom: 1px solid #ccc;
}

dl.stepSelect dt{
	color: #0A0E1F;
	padding-bottom: 5px;
	padding-right: 30px;
	font-weight: bold;
	position: relative;
}

@media screen and (min-width: 960px){
	dl.stepSelect dt{
		padding-top: 10px !important;
		padding-bottom: 10px;
	}
	dl.stepSelect dt h2{
		padding-right: 50px;
	}
	dl.stepSelect dd{
		padding-top: 10px;
		padding-bottom: 10px;
	}
}

/* ==========================================
お申し込み車種情報レイアウト
========================================== */
dd.inner_table{
	margin: 0;
}
.order_carinfo{
	font-size: 14px;
	border-collapse: collapse;
}

.order_carinfo th,
.order_carinfo td{
	border: none;
	padding: 0;
}

.order_carinfo th{
	min-width: 100px;
	text-align: left;
	vertical-align: top;
	font-weight: normal;
	border-right: 1px solid #dedede;
}

.order_carinfo td{
	padding-left: 10px;
}

.order_carinfo td span{
	display: block;
}

@media screen and (min-width: 960px){
	dd.inner_table{
		margin-left: 0px;
	}
	.order_carinfo th{
		min-width: 130px;
	}
	.order_carinfo td{
		padding-left: 30px;
	}	
	.order_carinfo td span{
		display: inline;
	}
}

/* ==========================================

	項目タイトル

========================================== */

dl.stepSelect dt h2{
	font-size: 16px;
}

/* 必須アイコン */
dl.stepSelect dt h2.must::after{
	display: inline-block;
	content: '必須';
	margin-left: 10px;
	font-size: 12px;
	padding: 0 10px;
	text-align: center;
	border-radius: 3px;
	color: #fff;
	background: var(--color-primary);
	position: absolute;
	top: 0;
	right: 0;
}


@media screen and (min-width: 960px){
	dl.stepSelect dt h2.must::after{
		top: 12px;
		right: 20px;
	}
}
/* ==========================================

	項目テキスト

========================================== */

dl.stepSelect dd p{
	font-size: 14px;
	line-height: 1.4;
	margin: 10px 0 0;
	letter-spacing: 0;
}

dl.stepSelect.last{
	border-bottom: none;
}

/* ==========================================

	リンクテキスト

========================================== */

.formArea a{
	display: inline;
	color: var(--color-primary);
	text-decoration: underline;
}

.formArea a:hover{
	text-decoration: none;
}

/* ==========================================

	その他入力ボックス

========================================== */

.typeOther{
	margin-top: 10px;
}

/* ブロックタイトル */
.formBlock{
	text-align: center;
	padding: 5px 0;
	letter-spacing: 2px;
	background: var(--color-secondary);
	/* border-top: 1px solid #dedede;
	border-bottom: 1px solid #dedede; */
}

/* 注釈 */
.pleaseNote{
	color: #666;
	font-size: 12px;
}

/* ==========================================

	同意系　＋　モーダル

========================================== */
.modalLink,
.modalClose,
.iziModal-button-close{
	cursor: pointer;
	transition: 0.5;
}

.modalLink:hover{
	opacity: 0.6;
}

body .modalwindow{
	z-index: 9999!important;
}
.agreeContent{
	padding: 20px;
	font-size: 14px;
}

.agreeContent h1{display: none;}
.agreeContent h2{font-size: 22px; padding: 20px 0; text-align: center;}
.agreeContent h2 span{display: block;font-size: 16px;}
.agreeContent h3{font-size: 16px; padding: 20px 0 10px;}
.agreeContent p{padding-bottom: 1em;}
.agreeContent a{display: inline;}
.agreeContent .bold { font-weight:bold; }

.mt10 { margin-top:10px; } 
.mt20 { margin-top:20px; } 
.mt30 { margin-top:30px; } 

.mb10 { margin-bottom:10px; } 
.mb20 { margin-bottom:20px; } 
.mb30 { margin-bottom:30px; } 

/* List */
.agreeContent ul{
	padding-top: 10px;
	padding-bottom: 20px;
}

.agreeContent ul li{
	padding-bottom: 5px;
}
.agreeContent ol{
	padding-left: 1em;
	padding-top: 10px;
	padding-bottom: 20px;
}
.agreeContent ol li{
	padding-bottom: 10px;
	list-style-type: decimal;
	list-style-position: outside;
}

.agreeContent ol li ul li{
	list-style-type: none;
}

.agreeContent ol li ol li{
	list-style-type:none;
	text-indent: -1em;
}

.agreeContent ul.dot li { 
	padding-left:1em;
	padding-bottom: 10px;
	position:relative;
}
.agreeContent ul.dot li:last-child {
	padding-bottom: 0
}
.agreeContent ul.dot li::before { 
	content: '・';
	display:block;
	position: absolute;
	top:0;
	left:0;
}
.agreeContent .date { 
	text-align:right;
}


table{
	margin-bottom: 20px;
}

table th,
table td{
	padding:5px 10px;
	border: 1px solid #ccc;
}

table th{
	text-align: center;
}

.agreeContent table {
	margin-top:10px;
	border-collapse:collapse;
}
.agreeContent table th,
.agreeContent table td{
	padding:8px;
	border: solid 1px;
	font-size: 14px;
	font-weight:normal;
}
.agreeContent table th{
	background:#eeeeee;
}

/* 定義リスト */
.agreeContent dl dt{ font-weight: bold; border-top: 1px solid #ccc; padding-top: 10px;}
.agreeContent dl dd{ padding-bottom: 10px;}
.agreeContent dl dt+dd:last-child{padding-bottom: 0;}


@media screen and (min-width: 960px){
	.agreeContent{
		padding: 40px;
	}
	/* 定義リスト */
	.agreeContent dl{
		width: 100%;
		overflow: hidden;
	}
	.agreeContent dl dt{clear: both; float: left; width: 20%;}
	.agreeContent dl dd{float: left;border-top: 1px solid #ccc; padding-top: 10px; width: 80%;}
	.agreeContent dl dt+dd:last-child{padding-bottom: 0;}
}

/* Close Button */
.modalClose{
	display: block;
	color: #fff;
	text-align: center;
	padding: 10px 0;
	margin: 0 auto 30px;
	width: 300px;
	background: #656565;
	transition: .5s;
}

.modalClose:hover{
	color: #fff;
	opacity: 0.6;
}

/* ==========================================

	DD内再レイアウト（DL）

========================================== */

dl.lowLevelBlock dt{
	padding-top: 10px;
	font-size: 14px;
	font-weight:normal;
}

@media screen and (min-width: 960px){

	.formArea{
		padding: 0 0 30px;
	}

	dl.stepSelect{
		width: 960px;
		margin: 0 auto;
		overflow: hidden;
		border-bottom: 1px solid #E6EEEF;
	}

	dl.stepSelect dt{
		clear: both;
		float: left;
		width: 340px;
		padding:15px 20px 0 5px;
	}

	dl.stepSelect dd{
		float: left;
		width: 540px;
	}
}

/* ==========================================

	完了画面

========================================== */

.cvtagAll img{
	width: 1px !important;
	height: 1px !important;
}

/* BOX */
#form-finish .formFinPanel{
	padding: 40px 20px 20px;
}

/* ページタイトル */
#form-finish .formFinPanel .title{
	font-size: 24px;
	letter-spacing: 2px;
	text-align: center;
}

/* メッセージ */
#form-finish .formFinPanel .title_message{
	padding: 0;
	margin: 0 0 20px;
	font-size: 16px;
	text-align: center;
}

/* 連絡先 */
#form-finish .formFinPanel ul{
	margin-top: 20px;
	border: 1px solid #B3C8CB;
	border-radius: 10px;
}

#form-finish .formFinPanel ul li{
	border-bottom: 1px solid #B3C8CB;
	padding: 15px 20px;
	padding-bottom: 10px;
}

#form-finish .formFinPanel ul li:last-of-type{
	border: none;
}


/* HOMEリンク */
#form-finish .link-home{
	display: block;
	margin: 30px auto;
	width: 200px;
	letter-spacing: 1px;
	color: #fff;
	text-decoration: none;
	text-align: center;
	line-height: 50px;
	border-radius: 50px;
	background-color: var(--color-primary);
	transition: 0.5s;
}

@media screen and (min-width: 960px){

	#form-finish .stepMap{
		margin-top: 40px;
	}

	#form-finish .formFinPanel{
		width: 960px;
		box-sizing: border-box;
		margin: 20px auto;
		padding: 40px 100px 40px;
		background-color:  var(--color-secondary);

		/* background: #fff; */
		/* border: 1px solid #B3C8CB; */
			/* border: 1px solid #B3C8CB; */
		border-radius: 10px;
	}

	/* ページタイトル */
	#form-finish .formFinPanel .title{
		font-size: 32px;
	}

	/* メッセージ */
	#form-finish .formFinPanel .title_message{
		margin: 0 0 20px;
		font-size: 18px;
		padding-bottom: 20px;
		border-bottom: 1px solid #B3C8CB;
	}

	/* LINK */
	#form-finish .formFinPanel ul{
		margin-top: 40px;
		text-align: center;
		border-top: 1px solid #B3C8CB;
		border-bottom: 1px solid #B3C8CB;
		background-color: #fff;
	}

	#form-finish .formFinPanel ul li{
		display: inline-block;
		border: none;
		padding: 20px;
	}

	/* HOMEリンク */
	#form-finish .link-home:hover{
		opacity: 0.6;
	}

}

/* ==========================================

	リトライ審査　モーダル

========================================== */
#retryModal .retryTxt{
	padding: 30px;
}

/* ==========================================

	ECOTO

========================================== */
.ecotoBnr{
	width: calc(100% - 40px);
	margin: 20px auto ;
	border-radius: 10px;
	position: relative;
	border: 6px solid #C4E1B8;
	overflow: hidden;
}
.ecotoBnr .head {
	text-align: center;
	padding-top: 20px;
}
.ecotoBnr .head .ecotoLogo{
	width: 120px;
}
.ecotoBnr .head .txt{
	font-weight: 900;
	color: #09905E;
	background: #DFEED8;
	display: inline-block;
	padding: 5px 16px;
	border-radius: 5px;
}
.ecotoBnr .head .txt br{
	display: none;
}
.ecotoBnr .txtBox{
	padding: 15px 20px 0;
}
.ecotoBnr .txtBox .sub{
	text-align: center;
	position: relative;
}
.ecotoBnr .txtBox .sub span{
	display: inline-block;
	padding: 6px 15px;
	background: #fff;
	font-weight: 900;
	color: #0B905E;
	font-size: 18px;
	position: relative;
	z-index: 2;
	border: 1px solid #09905E;
	border-radius: 6px;
}
.ecotoBnr .txtBox .sub span::before,
.ecotoBnr .txtBox .sub span::after{
	content:"";
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 7px 10px 7px;
	right: 0px;
	left: 0;
	margin: auto;
	transform:rotate(180deg);
}
.ecotoBnr .txtBox .sub span::before{
	border-color: transparent transparent #09905E transparent;
	bottom: -10px;
}
.ecotoBnr .txtBox .sub span::after{
	border-color: transparent transparent #fff transparent;
	bottom: -8px;
}
.ecotoBnr .txtBox h2{
	color: #0B905E;
	font-weight: 700;
	font-size: 24px;
	margin: 10px 0;
	line-height: 1.3;
	text-align: center;
}
.ecotoBnr .txtBox h2 br{
	display: none;
}
.ecotoBnr .txtBox .sentence{
	font-size: 14px;
}
.ecotoBnr .txtBox .sentence span{
	display: block;
	font-size: 12px;
}
.ecotoBnr .bottom{
	position: relative;
	padding-top: 60px;
	border-bottom: 15px solid #DFEED8;
}
.ecotoBnr .bottom .tree{
	position: absolute;
	bottom: -15px;
	left: 0;
	right: 0;
	margin: auto;
	width: 60%;
}
.ecotoBnr .bottom .tree img{
	max-width: 100%;
}
.ecotoBnr .bottom .tree .imgPc{
	display: none;
}
@media screen and (min-width: 960px){
	.ecotoBnr{
		width: 948px;
		margin: 20px auto 0;
		position: relative;
	}
	.ecotoBnr .head{
		position: absolute;
		padding-top: 0px;
		width: 200px;
		right: 40px;
		top: 40px;
	}
	.ecotoBnr .head .ecotoLogo{
		width: 180px;
	}
	.ecotoBnr .head .txt{
		font-size: 18px;
		padding: 5px 20px;
		margin-top: 10px;
	}
	.ecotoBnr .txtBox{
		padding: 30px 50px 0;
	}
	.ecotoBnr .txtBox .sub{
		text-align: left;
	}
	.ecotoBnr .txtBox .sub span{
		font-size: 20px;
	}
	.ecotoBnr .txtBox h2{
		text-align: left;
		font-size: 48px;
		font-weight: 900;
	}
	.ecotoBnr .txtBox h2 span{
		font-size: 52px;
	}
	.ecotoBnr .txtBox h2 br{
		display: inline;
	}
	.ecotoBnr .txtBox .sentence{
		font-size: 16px;
	}
	.ecotoBnr .txtBox .sentence span{
		margin-top: 10px;
	}
	.ecotoBnr .bottom{
		padding-top: 20px;
	}
	.ecotoBnr .bottom .tree{
		bottom: -10px;
		left: auto;
		right: 0px;
		width: 50%;
		overflow: hidden;
	}
	.ecotoBnr .bottom .tree .imgPc{
		display: block;
		max-width: 180%;
	}
	.ecotoBnr .bottom .tree .imgSp{
		display: none;
	}
}

