@charset "UTF-8";

/*--------------------------------------------------

フォーム

--------------------------------------------------*/
.progress_wrap{
	margin: 50px 0 70px;
}
.progress{
	display: flex;
	width: 700px;
	margin: 0 auto;
	overflow: hidden;
}
.progress li {
	position: relative;
	width: calc(100% / 3);
	padding: 0 1em;
	text-align: center;
	box-sizing: border-box;
}
.progress li::before,
.progress li::after{
	content: "";
	display: block;
	position: absolute;
	top: 18px;
	width: 100px;
	border-top: 3px solid #e1e1e1;
}
.progress li::before{
	left: 0;
}
.progress li:after{
	right: 0;
}
.progress li:first-child::before,
.progress li:last-child::after{
	display: none;
}
.progress li .num {
	position: relative;
	display: inline-block;
	width: 35px;
	line-height: 35px;
	background: #FFF;
	border: 3px solid #e1e1e1;
  border-radius: 100%;
	color: #e1e1e1;
	font-weight: bold;
	text-align: center;
  box-sizing: content-box;
	z-index: 1;
}
.progress li.done .num,
.progress li.current .num{
	border: 3px solid #009fe8;
	color: #009fe8;
}
.progress li .txt{
	display: block;
	margin-top: 0.5em;
	font-size: 1.4rem;
}
.progress li.current .txt{
	color: #009fe8;
}

@media screen and (max-width:767px) {
	.progress_wrap{
		margin: 20px 0 30px;
	}
	.progress{
		width: 100%;
		margin: 30px 0;
	}
	.progress li{
		padding: 0;
	}
	.progress li::before,
	.progress li::after{
		width: 50%;
	}
	.progress li .txt{
		font-size: 1.3rem;
	}
	.progress li:first-child .num,
	.progress li:first-child .txt{
		margin-right: 2em;
	}
	.progress li:last-child .num,
	.progress li:last-child .txt{
		margin-left: 2em;
	}
}

/* form_content
-------------------------------------------------- */
.form_head{
	font-weight: 500;
	line-height: 1.75;
}

.icon_notempty{
	display: inline-block;
	vertical-align: middle;
	padding: 3px 0.5em;
	background: #e82521;
	border-radius: 2px;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 500;
	font-style: normal;
}
.form_content table{
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0 40px;
	table-layout: fixed;
	border-bottom: 1px solid #c0bfc7;
}
.form_content tr{
	border-top: 1px solid #c0bfc7;
}
.form_content th{
	padding: 20px;
	background-color: #eff2f4;
	box-sizing: border-box;
	font-weight: 500;
	text-align: left;
	vertical-align: middle;
	overflow-wrap: break-word;
	word-wrap: break-word;
}
.form_content th .guide{
	font-size: 75%;
}
.form_content td{
	/* width: 65%; */
	vertical-align: middle;
}
.form_content input,
.form_content textarea,
.select_wrap select,
.form_content label{
	line-height: 1.4;
	color: #333333;
}
.select_wrap select::-ms-expand {
	display: none;
}
.form_content input[type="checkbox"],
.form_content input[type="radio"]{
	margin-top: 2px;
	margin-right: 0.5em;
	-ms-transform: scale(1.2, 1.2);
  -webkit-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
}
.form_content td input[type="text"],
.form_content td input[type="email"],
.form_content td textarea {
	box-sizing: border-box;
	width: 100%;
  background-color: #fff;
  border: 1px solid #c0bfc7;
	padding: 10px;
	box-shadow: none;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance:none;
	appearance:none;
	outline: none;
}

.form_content td input[type="text"]::placeholder{color: #999;}
.form_content td input[type="text"]:-ms-input-placeholder{color: #999;}
.form_content td input[type="text"]::-ms-input-placeholder{color: #999;}

.form_content td input[type="email"]::placeholder{color: #999;}
.form_content td input[type="email"]:-ms-input-placeholder{color: #999;}
.form_content td input[type="email"]::-ms-input-placeholder{color: #999;}


.input_area{}
.input_area .empty_flag{}
.input_area .input_content{}

.fileUploadWrap .fileUploadBox + .fileUploadBox{
	margin-top: 0.5em;
}
.fileUploadWrap .fileUploadBox .btnUpload input[type="file"]{
	display: none;
}
.fileUploadWrap .fileUploadBox .btnUpload{
	display: inline-block;
	text-align: center;
	padding-top: 0.4em;
	padding-bottom: 0.5em;
	padding-left: 1em;
	padding-right: 1em;
	color: #fff;
	background: #939d9f;
	box-sizing: border-box;
}
.fileUploadWrap .fileUploadBox.active .fileUploadIn{
	display: flex;
}
.fileUploadWrap .fileUploadBox .fileUploadIn{
	display: flex;
	display: none;
	align-items: flex-start;
}
.fileUploadWrap .fileUploadBox .fileName{
	word-break: break-all;
}
.fileUploadWrap .fileUploadBox .fileRemove{
	position: relative;
	width: 19px;
	min-width: 19px;
  height: 19px;
  background: #fff;
	border: 2px solid #939d9e;
  border-radius: 50%;
	margin-left: 10px;
	overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
	cursor: pointer;
}
.fileUploadWrap .fileUploadBox .fileRemove::before,
.fileUploadWrap .fileUploadBox .fileRemove::after{
	content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 9px;
  background: #939d9e;
}
.fileUploadWrap .fileUploadBox .fileRemove::before{
	transform: translate(-50%,-50%) rotate(45deg);
}
.fileUploadWrap .fileUploadBox .fileRemove::after{
	transform: translate(-50%,-50%) rotate(-45deg);
}

.checkbox_wrap ul li,
.checkbox_wrap_col2 ul li{
	margin-top: 0.5em;
	box-sizing: border-box;
}
.checkbox_wrap ul li:first-child,
.checkbox_wrap_col2 ul li:first-child{
	margin-top: 0;
}

.select_wrap select{
	width: 100%;
	box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #d1d1d1;
	padding: 10px 35px 10px 10px;
	box-shadow: none;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance:none;
	appearance:none;
	cursor: pointer;
	outline: none;
}
.select_wrap{
	position: relative;
	display: inline-block;
	vertical-align: bottom;
	overflow: hidden;
}
.select_wrap:after{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10px;
	margin: auto;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 7px solid #30383b;
	pointer-events: none;
	cursor: pointer;
}
.form_content td .guide{
	margin-bottom: 10px;
	font-size: 1.4rem;
}
.form_content td .guide2{
	margin-top: 10px;
	font-size: 1.4rem;
}

@media print, screen and (min-width:768px) {
	.form_content th{
		width: 240px;
		padding: 30px 1.5em;
	}
	.form_content td{
		padding: 20px;
	}
	
	.form_content th .icon_notempty{
		display: none;
	}

	.input_area{
		width: 100%;
		display: flex;
		align-items: center;
	}
	.input_area .empty_flag{
		width: 110px;
	}
	.input_area .input_content{
		width: calc(100% - 82px);
	}

	.input_area .input_content input.sizeM{
		max-width: 550px;
	}
	.input_area .input_content input.sizeS{
		max-width: 210px;
	}
	.input_area .input_content .select_wrap.sizeS{
		width: 210px;
	}
	
	.fileUploadWrap .fileUploadBox{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.fileUploadWrap .fileUploadBox .btnUpload:hover{
		opacity: 0.7;
	}
	.fileUploadWrap .fileUploadBox .btnUpload{
		width: 160px;
	}
	.fileUploadWrap .fileUploadBox .fileUploadIn{
		width: calc(100% - 180px);
	}

	.checkbox_wrap_col2{
		display: flex;
	}
	.checkbox_wrap_col2 ul{
		width: 49%;
	}
	.checkbox_wrap_col2 ul:nth-child(2n){
		margin-left: 2%;
	}
}

@media screen and (max-width:767px) {
	.form_content td input[type="text"],
	.form_content td input[type="email"],
	.form_content td textarea,
	.form_content td .select_wrap{
		width: 100%;
		margin-top: 5px;
	}
	.form_content td select{
		width: 100%;
	}
	.form_content table,
	.form_content table tbody,
	.form_content table tr,
	.form_content table th,
	.form_content table td{
		display: block;
		width: 100%;
	}
	.form_content table{
		margin-bottom: 30px;
	}
	.form_content th{
		padding: 20px 10px 1em;
	}
	.form_content td{
		padding: 10px 10px 20px 10px;
		box-sizing: border-box;
	}
	
	.form_content th .icon_notempty{
		margin-left: 1em;
	}

	.input_area .empty_flag{
		display: none;
	}

	.form_content td .guide{
		margin-bottom: 5px;
	}
	.form_content td .guide2{
		margin-top: 5px;
	}

	.fileUploadWrap{
		margin-top: 10px;
	}
	.fileUploadWrap .fileUploadBox .btnUpload{
		font-size: 1.4rem;
	}
	.fileUploadWrap .fileUploadBox .fileUploadIn{
		padding-top: 5px;
		padding-bottom: 5px;
	}
	.fileUploadWrap .fileUploadBox .fileName{
		font-size: 1.4rem;
	}

	.checkbox_wrap_col2 ul{
		margin-top: 0.5em;
	}
	.checkbox_wrap_col2 ul:first-of-type{
		margin-top: 0;
	}
}

/* btn*/
.form_content input[type="submit"]{
	display: block;
	width: 100%;
	box-shadow: none;
	border: 0;
  margin: 0 auto;
	padding: 22px 20px 21px;
	background-color: #5aa9de;
	color: #fff;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 2px;
	outline: none;
	cursor: pointer;
}

.go-confirm .go-confirm-label{
	display: block;
	position: relative;
}
.go-confirm .go-confirm-label:after{
	content: "";
	width: 8px;
	height: 8px;
	margin-top: -5px;
	border-top: 2px solid #fff;
    border-right: 2px solid #fff;
	display: block;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 60px;
}

.go-confirm input:hover{
	opacity: 0.7;
}

@media print, screen and (min-width:768px) {
	.go-confirm .go-confirm-label{
		max-width: 274px;
		margin-right: auto;
		margin-left: auto;
	}
}

@media screen and (max-width:767px) {
	.form_content input[type="submit"]{
		letter-spacing: 1px;
	}
	.go-confirm .go-confirm-label{
		width: 100%;
	}
}

/* privacy_box*/
.privacy_box{
	background-color: #eff2f4;
	text-align: center;
	padding: 2em 2.5em;
	margin-bottom: 50px;
}
.privacy_box .privacy_head{
	margin-bottom: 1.5em;
	text-align: left;
}
.privacy_box .privacy_head p{
	font-weight: 500;
}
.privacy_box .privacy_head p + p{
	margin-top: 1em;
}
.privacy_box .privacy_head a{
	text-decoration: underline;
}
.privacy_box .check input[type=checkbox],
.privacy_box .check input[type=checkbox] + label{
	cursor: pointer;
}
.privacy_box .check input[type=checkbox] + label{
	font-weight: bold;
}
.privacy_box input[type=checkbox]{
	margin-top: 2px;
  margin-right: 0.5em;
}

@media screen and (max-width:767px) {
	.privacy_box{
		padding: 2em 1em;
	}
	.privacy_box .privacy_head p{
		text-align: left;
	}
}

/* form_detail*/
.form_detail{
	margin-top: 50px;
	padding-top: 2em;
	border-top: 1px solid #bbc3c7;
}


/* $ バリデーションチェック
-------------------------------------------------- */
.formSetValidation .isErr th,
.formSetValidation .isErr td,
.formSetValidation .isErr{
	/* background-color: #fad3d3; */
}
.formSetValidation .inputWrap .need{
	background-color: #fffbf4;
}
.formSetValidation .isErr .requirErr,
.formSetValidation .isErr .patternErr{
	background-color: #fad3d3;
}
.formSetValidation .errMesseage{
	margin-top: 0.5em;
	color: #ff0033;
	font-size: 1.6rem;
	font-weight: 500;
}
#dammyConfirm{
	display: block;
	width: 100%;
	border: 0;
	margin: 0 auto;
	padding: 22px 20px 21px;
	background-color: #bbc3c7;	
	color: #fff;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 2px;
	text-align: center;
	box-sizing: border-box;
	box-shadow: none;
	outline: none;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance:none;
	appearance:none;
}

@media print, screen and (min-width:768px) {
	.formSetValidation .errMesseage{
		padding-left: 82px;
	}
}