@charset "UTF-8";
footer .copyright {
	background-color: #024467;
}

/*
formArea
---------------------------*/
#formArea {
	padding: 0 10px;
}
#formArea dl {
	margin:0 auto 30px auto;
}
#formArea dt {
	padding: 10px 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
#formArea dt span {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0.05em;
	color: #ffffff;
	background-color: #F84E41;
	padding: 2px 4px;
}
#formArea dt span.nini {
	background-color: #B5B5B5;
}
#formArea dd {
	font-size: 16px;
	line-height: 1.6;
}
@media screen and (min-width: 769px) {
	#formArea {
		padding: 0;
	}
	#formArea dl {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
	}
	#formArea dt {
		width: 22%;
		min-width: 160px;
		margin-right: 3%;
		font-size: 1.6rem;
	}
	#formArea dd {
		width: 75%;
		font-size: 1.6rem;
		line-height: 1.6;
	}
}

/*基本パーツ*/
#formArea input[type="text"],
#formArea input[type="file"],
#formArea input[type="email"],
#formArea input[type="password"],
#formArea textarea {
	border: 1px solid #096B9F;
	background-color: #DDEEF7;
	padding: 10px;
	width: 100%;
	font-size: 16px;
	line-height: 1.6;
}
#formArea select {
	border: 1px solid #096B9F;
	padding: 10px;
	width: 100%;
	font-size: 16px;
	line-height: 1.6;
}
#formArea select:invalid {
	background-color: #DDEEF7;
}
#formArea select option {
	background-color: #fff;
}
#formArea select option:first-child {
	background-color: #DDEEF7;
}
#formArea .widsizeS {
	max-width: 170px;
}
#formArea .widsizeM {
	max-width: 250px;
}
#formArea .widsizeL {
	max-width: 350px;
}
#formArea .widsizeLL {
	max-width: 500px;
}

/*プレスホルダー文字色*/
::placeholder {
	color: #999999 !important;
}
@media screen and (max-width: 428px) {
	::placeholder {
		font-size: 80% !important;
	}
}
/*プレスホルダー消えたら＝入力あったら背景白*/
#formArea input[type="text"]:not(:placeholder-shown),
#formArea input[type="email"]:not(:placeholder-shown),
#formArea input[type="password"]:not(:placeholder-shown),
#formArea textarea:not(:placeholder-shown),
#formArea select option:checked {
	background-color: #ffffff;
}
/*エラー表示*/
#formArea .err {
	font-size: 88%;
	font-weight: 500;
	display: block;
	padding: 5px 10px;
	color: #ea1548;
	background-color: #fbe5eb;
	line-height: 1.3;
	margin-top: 5px;
}
.errorBox {
	padding: 10px;
	margin-bottom: 2em;
	background-color: #ea1548;
}
.errorBox p {
	color: #fff;
	text-align: center;
	font-weight: 700;
}
@media screen and (min-width: 769px) {
	.errorBox {
		margin-bottom: 50px;
	}
}
/*ラジオボタン装飾*/
#formArea input[type="radio"] {
	appearance: none;
	display: none;
	opacity: 0;
	width: 1px;
	position: absolute;
	height: 1px;
}
#formArea input[type="radio"] + span,
#formArea input[type="radio"] + label {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	padding-left: 28px;
	border-radius: 4px;
	margin: 10px 2em 15px 0;
}
#formArea input[type="radio"] + span::before,
#formArea input[type="radio"] + span::after,
#formArea input[type="radio"] + label::before,
#formArea input[type="radio"] + label::after {
	position: absolute;
	content: "";
	display: block;
	border-radius: 50%;
	top: 0;
	bottom: 0;
	margin: auto 10px auto 0;
	box-sizing: border-box;
}
#formArea input[type="radio"] + span::before,
#formArea input[type="radio"] + label::before {
	width: 25px;
	height: 25px;
	background: #DDEEF7;
	border: 1px solid #096B9F;
	left: 0;
}
#formArea input[type="radio"] + span::after,
#formArea input[type="radio"] + label::after {
	width: 10px;
	height: 10px;
	background: #DDEEF7;
	left: 7px;
	opacity: 0;
}
#formArea input[type="radio"]:checked + span::before,
#formArea input[type="radio"]:checked + label::before {
	border: 2px solid #00B7EB;
	background-color: #ffffff;
}
#formArea input[type="radio"]:checked + span::after,
#formArea input[type="radio"]:checked + label::after {
	background: #00B7EB;
	opacity: 1;
}
#formArea input + span.uni,
#formArea input + label.uni {
	vertical-align: middle;
	padding-left: 10px;
}
@media screen and (min-width: 769px) {
	#formArea input[type="radio"] + span,
	#formArea input[type="radio"] + label {
		padding-left: 40px;
	}
	#formArea input[type="radio"] + span::before,
	#formArea input[type="radio"] + label::before {
		width: 32px;
		height: 32px;
	}
	#formArea input[type="radio"] + span::after,
	#formArea input[type="radio"] + label::after {
		width: 12px;
		height: 12px;
		left: 10px;
	}
}
/*select装飾*/
#formArea select {
	outline: none;
	cursor: pointer;
}
#formArea .selectWrap {
	position: relative;
	display: inline;
}
#formArea .selectWrap:after {
	position: absolute;
	content: "";
	right: 10px;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 10px;
	height: 10px;
	border-bottom: 2px solid #00B7EB;
	border-right: 2px solid #00B7EB;
	transform: rotate(45deg);
}
#formArea .selectWrap.loan {
	display: inline-block;
	min-width: 11em;
}
/*チェックボックス装飾*/
.checkboxArea li {
	margin-bottom: 1em;
	line-height: 2.5;
}
.checkboxArea li label {
	display: inline-block;
	position: relative;
	padding-left: 27px;
	cursor: pointer;
	user-select: none;
	font-size: 16px;
	line-height: 1.6;
}
.checkboxArea input {
	display: none;
}
.checkboxArea .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 24px;
	width: 24px;
	box-sizing: border-box;
	border-radius: 4px;
	border: 1px solid #096B9F;
	background-color: #DDEEF7;
}
.checkboxArea .checkmark:after {
	content: "";
	position: absolute;
	display: none;
	left: 6px;
	top: 0px;
	width: 8px;
	height: 16px;
	border: 3px solid #00B7EB;
	border-width: 0 3px 3px 0;
	transform: rotate(45deg);
}
.checkboxArea input:checked + .checkmark {
	background-color: #ffffff;
	border: 2px solid #00B7EB;
}
.checkboxArea input:checked + .checkmark:after {
	display: block;
}
@media screen and (min-width: 769px) {
	.checkboxArea li {
		line-height: 2;
	}
	.checkboxArea li label {
		padding-left: 30px;
	}
}
/*チェックボックス内のラジオボタン用*/
.checkboxArea li:nth-child(2) label,
.checkboxArea li:nth-child(3) label,
.checkboxArea li:nth-child(11) label,
.checkboxArea li:nth-child(20) label,
.checkboxArea li:nth-child(21) label,
.checkboxArea li:nth-child(23) label {
	padding-left: 2px;
}
#formArea .checkboxArea li input[type="radio"] + span,
#formArea .checkboxArea li input[type="radio"] + label {
	margin-right: 0;
}
@media screen and (min-width: 769px) {
	.checkboxArea li:nth-child(2) label,
	.checkboxArea li:nth-child(3) label,
	.checkboxArea li:nth-child(11) label,
	.checkboxArea li:nth-child(20) label,
	.checkboxArea li:nth-child(21) label,
	.checkboxArea li:nth-child(23) label {
		padding-left: 8px;
	}
}

/*
ボタンの装飾
---------------------------*/
#btnArea {
	text-align: center;
	margin-top: 50px;
}
/*submitボタン*/
.form_btn {
	position: relative;
	max-width: 320px;
	margin: auto;
}
.form_btn:before {
	position: absolute;
	content: "";
	right: 9%;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 10px;
	height: 10px;
	border-bottom: 2px solid #ffffff;
	border-right: 2px solid #ffffff;
	transform: rotate(-45deg);
}
.form_btn input {
	display: block;
	padding: 18px 0;
	border-radius: 30px;
	text-align: center;
	font-size: 16px;
	letter-spacing: 0.05em;
	line-height: 1.3;
	font-weight: 700;
	color: #ffffff;
	background-color: #1087C7;
	border: 2px solid #1087C7;
	width: 100%;
}
.form_btn input:hover {
	cursor: pointer;
	background-color: #ffffff;
	color: #1087C7;
	opacity: 1;
}
.form_btn:hover:before {
	border-bottom: 2px solid #1087C7;
	border-right: 2px solid #1087C7;
}
/*戻る*/
.form_btn_back {
	position: relative;
	max-width: 200px;
	margin: auto;
}
.form_btn_back:before {
	position: absolute;
	content: "";
	left: 14%;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 10px;
	height: 10px;
	border-bottom: 2px solid #ffffff;
	border-right: 2px solid #ffffff;
	transform: rotate(135deg);
}
.form_btn_back a,
.form_btn_back input {
	display: block;
	padding: 18px 0;
	border-radius: 30px;
	text-align: center;
	font-size: 16px;
	letter-spacing: 0.05em;
	line-height: 1.3;
	font-weight: 700;
	color: #ffffff;
	background-color: #555555;
	border: 2px solid #555555;
	width: 100%;
}
.form_btn_back a:hover,
.form_btn_back input:hover {
	cursor: pointer;
	opacity: 1;
	background-color: #ffffff;
	color: #555555;
}
.form_btn_back:hover:before {
	border-bottom: 2px solid #555555;
	border-right: 2px solid #555555;
}
@media screen and (min-width: 769px) {
	.form_btn input,
	.form_btn_back a,
	.form_btn_back input {
		font-size: 1.8rem;
	}
}
/*確認画面
---------------------------*/
.confirm #formArea dt {
	background-color: #f2f2f2;
	padding: 8px 10px;
}
.confirm #formArea dd {
	padding: 10px;
}
.confirm #btnArea {
	display: flex;
	max-width: 600px;
	margin: auto;
}
.confirm #btnArea .form_btn {
	width: 55%;
}
.confirm #btnArea .form_btn_back {
	width: 35%;
}
@media screen and (min-width: 769px) {
	.confirm #formArea dt {
		background-color: #ffffff;
		padding: 0 10px;
		width: 28%;
	}
	.confirm #formArea dd {
		padding: 0 10px;
		width: 70%;
	}
	.confirm #formArea dl {
		border-bottom: 1px solid #AADCEB;
		padding-bottom: 25px;
	}
	.confirm #formArea dl:last-child {
		border-bottom: none;
	}
}
@media screen and (max-width: 428px) {
	.confirm #btnArea input {
		padding: 15px 0;
	}
	.confirm #formArea dt {
		font-size: 14px;
		line-height: 1.5;
	}
}

/*送信完了画面
---------------------------*/
.thanks h2 {
	text-align: center;
	color: #096B9F;
	font-weight: 700;
	line-height: 1.75;
	font-size: min(5vw,30px);
	margin-bottom: 1em;
}
.thanks h3 {
	text-align: center;
	color: #096B9F;
	font-weight: 700;
	line-height: 2;
	font-size: min(4vw,20px);
	margin-bottom: 1em;
}
.thanks .yourMail {
	text-align: center;
	background-color: #DDEEF7;
	padding: 20px 3%;
	font-weight: 700;
	font-size: min(5vw,22px);
	line-height: 1.4;
	font-family: "Montserrat","Noto Sans JP", sans-serif;
	margin: 1em auto;
}
.thanks #contact {
	text-align: center;
	background-color: #DDEEF7;
	padding: 40px 3%;
	font-size: min(4vw,18px);
}
.thanks #contact p {
	font-weight: 500;
}
.thanks #contact .atn {
	margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
	.thanks #contact {
		font-size: 1.8rem;
	}
}