@charset "UTF-8";	/*	form.css */
/* ===============================================

	Form系リセット

================================================ */

button,
input,
select,
textarea {
	outline: none;
	box-sizing: border-box;
	background-color: transparent;
	border-style: none;
	color: inherit;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit; /* Specify font inheritance of form elements */
}

button,
select {
  text-transform: none; /* Firefox 40+, Internet Explorer 11- */
}

/* Select */
select {
  -moz-appearance: none; /* Firefox 36+ */
  -webkit-appearance: none; /* Chrome 41+ */
}

select::-ms-expand {
  display: none; /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentColor; /* Internet Explorer 11+ */
}

/* ===============================================

	共通

================================================ */

/* カラー変数定義=============================== */
:root {
	--color-primary: #10569E;
	--color-secondary: #DAE8F7;
	--color-border: #B6C8DD;
}

/* Label Fontsize */
label{
	font-size: 16px;
}

/* Placeholder */
input:placeholder-shown {color: #ccc;}
::-webkit-input-placeholder {color: #ccc; }
:-ms-input-placeholder {color: #ccc; }

/* Error Massage */
.errorText{
	display: block;
	padding: 5px 10px;
	margin-top: 10px;
	color:#e1435b;
	border-radius: 6px;
	background: #f7dbe0;
}

/* モーダルリンク設定 */
.modalLink{
	display: inline-block;
	padding-right: 20px;
	margin-right: 5px;
	background: url(/1cars/form/common/img/icon_blank.svg) no-repeat right center;
	background-size: 13px;
}

@media screen and (min-width: 960px){

	.formBlock{
		width: 960px;
		margin: 20px auto 0;
	}

}

/* ===============================================

	テキストボックス系

================================================ */

input[type='text'],
input[type='email'],
input[type='number']{
	display: inline-block;
	width: 100%;
	border-radius: 8px;
	padding: 10px 15px;
	font-size: 16px;
	border: 1px solid #B3C8CB;
}

input[type='text']:focus,
input[type='email']:focus,
input[type='number']:focus{
    box-shadow: 0 0 7px var(--color-primary);
    border: 1px solid var(--color-primary);
}

/* ===============================================

	テキストエリア

================================================ */

textarea{
	display: inline-block;
	width: 100%;
	border-radius: 8px;
	padding: 10px 15px;
	font-size: 16px;
	line-height: 1.4;
	border: 1px solid #B3C8CB;
}

textarea:focus {
    box-shadow: 0 0 7px var(--color-primary);
    border: 1px solid var(--color-primary);
}

/* ===============================================

	セレクトボックス

================================================ */

.typeSelect select{
	/* デフォルトクリア */
/*
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
*/
	outline:none;
	text-overflow: '';
	width: 100%;
	vertical-align: middle;
	line-height: 1;
	padding:15px 30px 15px 10px;
	border-radius: 8px;
	background-color: #fff;
	border: 1px solid #B3C8CB;
	position: relative;
	cursor: pointer;
	box-shadow: 5px 5px 20px -15px rgb(0, 0, 0, 0.03);
	display: inline-block;
}

.typeSelect select:focus{
    box-shadow: 0 0 7px var(--color-primary);
    border: 1px solid var(--color-primary);
}

.typeSelect select::-ms-expand {
	display: none;
}

.typeSelect label{
	position: relative;
}

.typeSelect label::before{
	display: block;
	content: '';
	width: 1px;
	height: 40px;
	background: #B3C8CB;
	margin-top: -17px;
	position: absolute;
	top: 50%;
	right: 28px;
	z-index: 3;
}

.typeSelect label:after {
	display: block;
	content: "";
	width: 5px;
	height: 5px;
	border-right: 2px solid var(--color-primary);
	border-bottom: 2px solid var(--color-primary);
	transform: rotate(45deg);
	margin-top: -3px;
	pointer-events: none;
	position: absolute;
	top: 50%;
	right: 13px;
}

.typeSelect .after-label{
	vertical-align: middle;
	font-size: 12px;
}

@media screen and (min-width: 960px){

	.typeSelect label::before{
		right: 35px;
	}

	.typeSelect label:after {
		right: 15px;
	}

}

/* ===============================================

	ラジオボタン

================================================ */

ul.typeRadio{
	display: inline-block;
	font-size: 0;
	border-radius: 8px;
	border: 1px solid #B3C8CB;
	box-shadow: 5px 5px 20px -15px rgb(0, 0, 0, 0.03);
	overflow: hidden;
}

.typeRadio li{
	display: inline-block;
	font-size: inherit;
	border-right: 1px solid #B3C8CB;
	border-bottom: none;
}

.typeRadio li:last-child{
	border: none;
}

.typeRadio input{
	display: none;
}

.typeRadio label{
	position: relative;
	display: inline-block;
	line-height: 1.4;
	padding: 15px 10px 15px 45px;
	padding-right: 15px;
	cursor: pointer;
}

.typeRadio label span{
	font-size: 12px;
}

.typeRadio label::after {
	position: absolute;
	content: '';
	top: 50%;
	left: 50%;
	transition: all .2s;
}

.typeRadio label::before {
	position: absolute;
	content: '';
	top: 50%;
	border-radius: 100%;
	transition: all .4s;
	left: 10px;
	width: 26px;
	height: 26px;
	margin-top: -15px;
	background: var(--color-secondary);
	z-index: 2;
}

.typeRadio label:hover::before {
	background: var(--color-primary);
}

.typeRadio label:hover {
	opacity: 0.8;
}

.typeRadio label::after {
	opacity: 0;
	top: 50%;
	left: 13px;
	width: 10px;
	height: 10px;
	margin-top: -7px;
	margin-left: 5px;
	background: #FFFFFF;
	border: none;
	border-radius: 100%;
	transform: scale(.5);
	z-index: 3;
}

.typeRadio input:checked + label{
	background: var(--color-secondary);
}

.typeRadio input:checked + label::before,
.typeRadio label.checked::before {
	background: var(--color-primary);
}

.typeRadio input:checked + label::after,
.typeRadio label.checked::after {
	opacity: 1;
	transform: scale(1);
}

.typeRadio input:disabled + label{
	background: #eee;
}
.typeRadio input:disabled + label::before{
background: #ccc;
}
.typeRadio input:disabled + label::after{
	opacity: 0;
}

/* ===============================================

	チェックボックス

================================================ */

ul.typeCheckbox{
	border-radius: 8px;
	border: 1px solid #B3C8CB;
	box-shadow: 5px 5px 20px -15px rgb(0, 0, 0, 0.03);
	overflow: hidden;
}

.typeCheckbox li{
	border-bottom: 1px solid #B3C8CB;
}

.typeCheckbox li:last-child{
	border: none;
}

.typeCheckbox input{
	display: none;
}

.typeCheckbox label{
	position: relative;
	display: block;
	line-height: 1.4;
	padding: 15px 10px 15px 45px;
	cursor: pointer;
}

.typeCheckbox label span{
	font-size: 12px;
}

.typeCheckbox label::after {
	position: absolute;
	content: '';
	top: 50%;
	left: 50%;
	transition: all .2s;
}

.typeCheckbox label::before {
	position: absolute;
	content: '';
	top: 50%;
	border-radius: 8px;
	transition: all .4s;
	left: 10px;
	width: 26px;
	height: 26px;
	margin-top: -15px;
	background: #E1E1E1;
}

.typeCheckbox label:hover::before {
	background: var(--color-primary);
}

.typeCheckbox label:hover {
	opacity: 0.8;
}

.typeCheckbox label::after {
	opacity: 0;
	top: 50%;
	left: 13px;
	width: 10px;
	height: 5px;
	margin-top: -7px;
	margin-left: 4px;
	border-left: 2px solid #FFFFFF;
	border-bottom: 2px solid #FFFFFF;
	transform: rotate(180deg) scale(.5);
}

.typeCheckbox input:checked + label{
	background: var(--color-secondary);
}

.typeCheckbox input:checked + label::before {
	background: var(--color-primary);
}

.typeCheckbox input:checked + label::after {
	opacity: 1;
	transform: rotate(-45deg) scale(1);
}

/* ===============================================

	ボタン

================================================ */

/* ------------------------------------
	レイアウト
------------------------------------ */
ul.formBtn{
	padding: 20px 20px 40px;
}

ul.formBtn li{
	padding-bottom: 20px;
}

@media screen and (min-width: 960px){

	ul.formBtn{
		width: 960px;
		margin: 0 auto;
		text-align: center;
		padding: 40px 0;
		position: relative;
	}

	ul.formBtn li{
		display: inline-block;
		padding-bottom: 0;
	}

	.btnNext{
		width: 300px !important;
	}

	.subBtn{
		position: absolute;
		top: 40px;
		left: 0;
	}

	a.btnPrev{
		padding-left: 50px !important;
		padding-right: 30px !important;
	}

}

/* ------------------------------------
	ボタンベースデザイン
------------------------------------ */

/* Button And A */
.btnForm{
	cursor: pointer;
	display: block;
	width: 100%;
	padding: 15px 20px;
	text-align: center;
	color: #FFFFFF;
	text-decoration: none;
	font-size: 18px;
	border-radius: 30px;
	letter-spacing: 2px;
	box-shadow: inset 0 -2px 0 0 rgba(0,0,0,0.2);
	overflow: hidden;
	position: relative;
	transition: .3s;	
}

/* Arrow Common */
.btnForm::after{
	display: block;
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	position: absolute;
	margin-top: -7px;
	top:50%;
}

/* ------ Hover Action -------  */
.btnForm:hover{
	transform: translateY(2px);
	box-shadow: none;
	opacity: 0.9;
}

.btnForm:hover::before{
	position: absolute;
	top: -5px;
	left: -5px;
}

/* ------------------------------------
	次へ（Next）
------------------------------------ */
/* Color */
.btnForm.btnNext{background: var(--color-primary);}

/* Arrow Direction（Next） */
.btnForm.btnNext::after{
	border-width: 5px 0 5px 5px;
	border-color: transparent transparent transparent #ffffff;
	right:20px;
}

@media screen and (min-width: 960px){
	.btnNext{
		width: 300px !important;
	}
}

/* ------------------------------------
	戻る（Prev）
------------------------------------ */
/* Color */
.btnForm.btnPrev{background: #949B9D;}

/* Arrow Direction（Prev） */
.btnForm.btnPrev::after{
	border-width: 5px 5px 5px 0;
	border-color: transparent #ffffff transparent transparent;
	left:20px;
}

@media screen and (min-width: 960px){
	/* Size */
	.btnForm.btnPrev{
		padding-left: 40px;
	}
	/* Left Position */
	.subBtn{
		position: absolute;
		top: 40px;
		left: 0;
	}
}


/* ------------------------------------
	ECOTO対応
------------------------------------ */
#ecoto .typeRadio li{
	display: block;
	border-right: none;
}
#ecoto .typeRadio li:not(:last-child){
	border-bottom: 1px solid #E6EEEF;
}
#ecoto .typeRadio li label{
	display: block;

}
@media screen and (min-width: 960px){
	/* #ecoto .typeRadio li{
		display: inline-block;
		border-right: 1px solid #E6EEEF;
	}
	#ecoto .typeRadio li:last-child{
		border-top: none;
		border-right: none;
	} */
}


/* ------------------------------------
	NORIDOKIフリー時　リトライ不活性化
------------------------------------ */
#screening_retry .disable{
	background: #dedede;
	pointer-events: none;
}

/* ------------------------------------
	Shop選択(index)
------------------------------------ */
#shopSelect .typeSelect{
	display: flex;
	justify-content: space-between;
	padding-top: 7px;
}
#shopSelect .typeSelect label{
	width: 49%;
}
#shopSelect .typeSelect label::before{
	top: 44%;
}

