@charset "utf-8";
/*---------------------------------
 フォーム
---------------------------------*/

/* commonの調整*/
#contents_area .inner {
	width: 90%;
	max-width: 1000px;
}
@media screen and (max-width: 767px){
	#mv_area {
		height: /*130px*/ auto;
		padding-top: 30px;
    	padding-bottom: 30px;
	}
	#contents_area {
		padding-top: 28px;
	}
	#contents_area section {
		margin-top: 20px;
	}
}

/* フォームリセット */
input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}
textarea {
	resize: vertical;
}
input[type=checkbox],
input[type=radio] {
	display: none;
}
input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}
select::-ms-expand {
	display: none;
}
article, aside, details, figcaption, figure,
footer, header, menu, nav, section, main, canvas {
	display: block;
}

/*フォームレイアウト*/
.form {
	text-align: left;
}
.form p,
.form .table_wrap,
.form .input_t-normal,
.form .input_t-area,
.form .input_t-inner {
	font-size: 18px;
	line-height: 1.4;
}
.form .table {
	margin: 0 50px;
	width: auto;
}
.form .table_wrap {
	border-top: 2px solid #f6f5e9;
	padding-top: 1em;
	padding-bottom: 1em;
}
.form .table_wrap::after,
.form .table_wrap::before {
	content: none;
}
.form .table_title {
	line-height: 2.25;
	-webkit-box-flex: 1;
	-ms-flex: 1 0 280px;
	flex: 1 0 280px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.form .table_title.multi_line {
	line-height: 1.75;
}
.form .table_title .ib {
	font-weight: 500;
}
.form .table_doc {
	word-break: break-all;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-box-flex: 0;
	-ms-flex: 0 1 100%;
	flex: 0 1 100%;
}
.form .multi_line + .table_doc {
	margin-top: 1em;
}
.form .multi_line + .table_doc p {
	margin-bottom: 1em;
}
.form .table_doc .flex {
	display: flex;
	flex-wrap: wrap;
}
.form .required {
	font-size: 12px;
	color: #fff;
	line-height: 1;
	float: right;
	margin-top: 6px;
	padding: 6px 8px 7px;
	display: inline-block;
	background-color: #a1cc56;
}
.form .optional {
	font-size: 12px;
	color: #fff;
	line-height: 1;
	float: right;
	margin-top: 6px;
	margin-left: 5px;
	padding: 6px 8px 7px;
	display: inline-block;
	background-color: #959581;
}
.form .replace {
	color: #999999;
	letter-spacing: 0;
	margin-top: 5px;
	display: inline-block;
	line-height: 1.2;
	font-size: 90%;
}
.form .text_normal p {
	display: inline-block;
}
.form .text_normal .input_t-normal {
	width: 100%;
}
.form .text_short p {
	display: inline-block;
}
.form .text_short .input_t-normal {
	width: 31%;
}
.form .text_long .input_t-normal {
	width: 100%;
}
.form .text_long .input_t-area {
	resize: vertical;
	width: 100%;
}
.form .input_check .input_text_area {
	display: inline-block;
	font-size: 90%;
}
.form .input_t-normal {
	background-color: #f2f2ed;
	border: none;
	color: #000000;
	font-size: 18px;
	line-height: 1.75;
	padding: 5px 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.form .input_t-area {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-color: #f2f2ed;
	border: none;
	color: #000000;
	font-size: 18px;
	line-height: 1.75;
	padding: 5px 10px;
}
.form .input_t-inner {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 18px;
	padding: 1px 5px;
	-webkit-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	zoom: 1;
	background-color: #f3f2f0;
}
.form .input_t-inner:focus {
	background-color: #fff;
}
.form .input_t-inner.innerw100 {
	width: 90%;
}
.form .btn_zip {
	margin-left: 18px;
	border-radius: 3px;
	border: 1px solid #340008;
	color: #340008;
	padding: 11px 12px 11px;
	line-height: 1;
	font-weight: 500;
}
.form .btn_area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	max-width: 820px;
}
.form .btn_area .form_btn {
	margin: 0;
	width: 48%;
}
.form .form_btn {
	max-width: 400px;
	width: 90%;
	margin: auto;
	background-color: #b81c22;
	border-radius: 50px;
	position: relative;
}
.form .form_btn::after {
	content: "";
	position: absolute;
	right: 30px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-width: 6px 0 6px 7px;
	border-color: transparent transparent transparent #ffffff;
	border-style: solid;
}
.form .form_btn .btn_submit {
	width: 100%;
	display: block;
	position: relative;
	text-align: center;
	padding: 22px 20px 22px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-weight: 600;
	color: #fff;
	line-height: 1;
}
.form .form_btn.back {
	background: #dbdcdc;
}
.form .form_btn.back .btn_submit {
	color:#666464;
}
.form .form_btn.back::after {
	display: none;
}
.form .form_btn.download_btn{
	background: #e06619;
	text-align-last: center;
	margin-top: 50px;
}
.form .form_btn.download_btn:after{
	display: none;
}
.finish .message .download .form_btn.download_btn{
    margin: 25px auto 0;
}
.form .error_area {
	padding: 20px;
	margin-bottom: 1em;
	background-color: #ffef39;
}
.form .error_mes {
	color: #ea1548;
	text-align: center;
	font-weight: 800;
}
.form p.error_text {
	display: block;
	color: #ea1548;
	font-weight: 800;
	font-size: 90%;
	line-height: 2;
}
@media screen and (min-width: 769px) {
	.form p,
	.form .table_wrap,
	.form .input_t-normal,
	.form .input_t-area,
	.form .input_t-inner {
		font-size: 16px;
		line-height: 1.4;
	}
	.form .table_wrap {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		padding-top: 0;
		padding-bottom: 0;
	}
	.form .required,
	.form .optional {
		font-size: 15px;
	}
	.form .table_doc,
	.form .table_title {
		padding: 30px 0.7vw;
	}
	.confirm.form .table_doc{
		margin-top: 8px;
	}
	.form .table_title .pc-fl {
		width: 80%;
	}
	.form .input_t-inner.innerw100 {
		width: 93%;
	}
	.form .multi_line + .table_doc {
		margin-top: 0;
	}
	.form .input_check .input_text_area {
		padding-left: 20px;
	}
	.form .form_btn .btn_submit {
		font-size: 120%;
	}
}
@media screen and (min-width: 1000px) {
	.form .text_normal .input_t-normal {
		width: 63%;
	}
}
@media screen and (max-width: 428px) {
	.form p,
	.form .table_wrap,
	.form .input_t-normal,
	.form .input_t-area,
	.form .input_t-inner {
		font-size: 16px;
	}

	.form input:not([type="submit"]),
	.form textarea {
		margin-top: 5px;
	}
}
/*横１行用*/
.form .input_check.table_wrap.wid .table_doc {
	text-align: center;
}
@media screen and (min-width: 769px) {
	.form .input_check.table_wrap.wid .table_doc {
		text-align: left;
	}
}
.form .input_t-area,
.form .input_t-normal {
	border: 1px solid #cccccc;
	border-radius: 3px;
	background-color: #f2f2ed;
}
.form .input_t-area:focus,
.form .input_t-normal:focus {
	background-color: #fff;
	border: 1px solid #ccc;
}
.form :invalid{
	background: #ffc8c8;
}

/*ラジオボタン装飾*/
.form input[type="radio"] {
	appearance: none;
	display: none;
	opacity: 0;
	width: 1px;
	position: absolute;
	height: 1px;
}
.form input[type="radio"] + span {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	padding-left: 23px;
	border-radius: 4px;
	margin: 10px 1em 15px 0;
}
.form input[type="radio"] + span::before,
.form input[type="radio"] + span::after {
	position: absolute;
	content: "";
	display: block;
	border-radius: 50%;
	top: 0;
	bottom: 0;
	margin: auto 10px auto 0;
	box-sizing: border-box;
}
.form input[type="radio"] + span::before {
	width: 16px;
	height: 16px;
	background: #f2f2ed;
	border: 1px solid #cccccc;
	left: 0;
}
.form input[type="radio"] + span::after {
	width: 8px;
	height: 8px;
	background: #E9F4F9;
	left: 4px;
	opacity: 0;
}
.form input[type="radio"]:checked + span::before {
	background-color: #ffffff;
}
.form input[type="radio"]:checked + span::after {
	background: #a1cc56;
	opacity: 1;
}
.form input + span.uni {
	vertical-align: middle;
	padding-left: 10px;
}
@media screen and (min-width: 769px) {
	.form input[type="radio"] + span {
		padding-left: 34px;
		margin-right: 2em;
	}
	.form input[type="radio"] + span::before {
		width: 24px;
		height: 24px;
	}
	.form input[type="radio"] + span::after {
		width: 12px;
		height: 12px;
		left: 6px;
	}
}

/*チェックボックス装飾*/
.form .checkbox_label {
	position: relative;
	padding-left: 23px;
}
.form .checkbox_label::before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	top: 4px;
	width: 16px;
	height: 16px;
	border-radius: 3px;
	background-color: #f3f2f0;
	-webkit-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	zoom: 1;
	border: 1px solid #ccc;
}
.form .checkbox_label::after {
	content: "";
	display: inline-block;
	position: absolute;
	left: 5px;
	top: 6px;
	height: 11px;
	width: 6px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	border-bottom: 3px solid #f3f2f0;
	border-right: 3px solid #f3f2f0;
}
.form .checkbox:checked + .checkbox_label::before {
	background-color: #ffffff;
}
.form .checkbox:checked + .checkbox_label::after {
	border-bottom: 3px solid #a1cc56;
	border-right: 3px solid #a1cc56;
}
@media screen and (min-width: 769px) {
	.form .checkbox_label {
		padding-left: 30px;
	}
	.form .checkbox_label::before {
		left: 0;
		top: 0;
		width: 19px;
		height: 19px;
	}
	.form .checkbox_label::after {
		left: 7px;
		top: 1px;
		height: 13px;
		width: 5px;
	}
}
@media screen and (max-width: 428px) {
	.form .checkbox_label::before {
		top: 0;
	}
	.form .checkbox_label::after {
		top: 2px;
	}
}

/*privacy*/
.form #form_privacy {
	border: 1px solid #e8e9dc;
}
.form #form_privacy .privacy_wrap {
	padding: 20px 5px;
	margin: 0;
	background: #fff;
}
.form #form_privacy .privacy_inner {
	padding: 10px 20px 20px 20px;
	width: auto;
	overflow: auto;
	max-height: 260px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.form #form_privacy .privacy_inner::-webkit-scrollbar {
	width: 10px;
}
.form #form_privacy .privacy_inner::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 0 6px #f3f2f0;
	box-shadow: inset 0 0 0 6px #f3f2f0;
}
.form #form_privacy .privacy_inner::-webkit-scrollbar-thumb {
	background-color: #a1cc56;
	border-radius: 10px;
	-webkit-box-shadow: 0 0 0 #a1cc56;
	box-shadow: 0 0 0 #a1cc56;
}
.form #form_privacy .privacy_title {
	font-size: 18px;
	letter-spacing: 0.1em;
	font-weight: 600;
	margin-bottom: 1em;
}
.form #form_privacy .privacy_read,
.form #form_privacy dt,
.form #form_privacy dd {
	font-size: 14px;
	line-height: 1.6;
	letter-spacing: 0;
}
.form #form_privacy .privacy_read {
	margin-bottom: 1em;
}
.form #form_privacy dt {
	font-weight: 600;
}
.form #form_privacy dd {
	margin-bottom: 1em;
}
@media screen and (min-width: 769px) {
	.form #form_privacy .privacy_wrap {
		padding: 32px 20px;
	}
	.form #form_privacy .privacy_title {
		font-size: 20px;
	}
	.form #form_privacy .privacy_read,
	.form #form_privacy dt,
	.form #form_privacy dd {
		font-size: 16px;
		line-height: 1.6;
		letter-spacing: 0;
	}
}

/*冒頭*/
.form .intro p {
	font-size: 100%;
	line-height: 1.6;
}
@media screen and (min-width: 769px) {
	.form .intro {
		text-align: center;
	}
	.form .intro p {
		font-size: 16px;
		line-height: 1.75;
	}	
}
/*確認画面*/

/*完了画面*/
.finish {
	text-align: center;
}
.finish .message {
	margin-bottom: 2em;
}
.finish p {
	font-size: 18px;
	line-height: 1.75;
	margin-bottom: 1em;
}
.finish .title {
	line-height: 1.4;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 1em;
}
.finish .address {
	font-size: 16px;
	line-height: 1.2;
	text-align: left;
	margin: 0 auto 70px;
	display: inline-block;
	padding: 30px 30px;
	border-radius: 20px;
	background-color: #f3f2f0;
}
.finish .button_area a {
	margin: auto;
	background-color: #3fa840;
	display: block;
	position: relative;
	text-align: center;
	max-width: 400px;
	padding: 18px 20px 14px;
	border-radius: 50px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: #fff;
	line-height: 1.8;
}
.finish .button_area a::after {
	content: "";
	position: absolute;
	right: 30px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-width: 6px 0 6px 7px;
	border-color: transparent transparent transparent #fff;
	border-style: solid;
}
.finish li {
	font-size: 18px;
	line-height: 1.75;
	font-weight: 400;
	color: #340008;
}
@media screen and (min-width: 769px) {
	.finish .message{
		text-align-last: center;
	}
	.finish .address {
		padding: 30px 50px;
	}
}
@media screen and (max-width: 430px) {
	.finish .message p {
		text-align: left;
	}
}