
/*---------------------------------------------
	h1
---------------------------------------------*/
.entry.form .h1-box:before{
	background-image: url(../../../_images/entry/h1-bg-form.jpg);
	background-position: left bottom;
}
@supports (background-image: url('image.webp')) {
	.entry.form .h1-box:before {
		background-image: url(../../../_images/entry/h1-bg-form.webp);
	}
}

/*エントリー-index*/
.entry.form .h1-box h1:before{
	content: "ENTRY";
}


/*---------------------------------------------
	form
---------------------------------------------*/
form{ font-size: 1.2rem;}

select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
select::-ms-expand {
    display: none;
}

input,
select,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	width: 100%;
	background-color: #f6ebe3;
	margin: 5px 0;
	padding: 15px 10px;
	font-size: 1.2rem;
	border: none;
	border-radius: 10px;
	transition: all 0.1s ease;
    font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

input:focus,
select:focus,
textarea:focus {
	box-shadow: 0 0 0 2px #ffc092;
	z-index: 10;
    outline: 0;
}
input::placeholder,
select::placeholder,
textarea::placeholder {
	color: #818181;
}

input[type="file"] {
	background-color: #fff;
}

input[type="tel"] {
	width: 25%;
	margin-right: 5px;
}


.w15{ width: 15%;}
.w30{ width: 30%;}
.w50{ width: 50%;}
.w90{ width: 90%;}

@media screen and (max-width: 810px) {
	.w15{ width: 25%;}
	.w30{ width: 50%;}
	.w50{ width: 80%;}
	.w90{ width: 90%;}
}
@media screen and (max-width: 480px) {
    .w15{ width: 50%;}
    .w30{ width: 70%;}
    .w50{ width: 85%;}
	.w90{ width: 90%;}
}


/*---------------フォーム装飾---------------*/

/*ボタン*/
input[type="button"]{
	background-color: #fff;
	text-align: center;
	border: 2px solid #ddd;
	border-radius: 8px;
}
input[type="button"].selected{
	background-color: #b3f4ff;
	border-color: #36c4dd;
}

input[disabled="disabled"]{
	background-color: #ddd;
	opacity: 0.5;
}

/*数量*/
input[type="number"]{
	margin-right: 5px;
}

/**/
.form-box label{
	display: block;
	padding: 8px 5px;
	border-radius: 8px;
}

.form-box label input:checked ~ div{
	display: block;
	font-weight: 600;
	border-radius: 3px;
}


/*セレクトボックス*/
.formSelect{
    display: block;
	max-width: 350px;
    position: relative;
}
.formSelect:after{
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-top: 10px solid #333;
    position: absolute;
    right: 8px;
    top: 5px;
    bottom: 0;
    margin: auto;
}
.formSelect select{
	padding-right: 20px;
}


/*ラジオボタン*/
label.radio-input input[type="radio"]{
    display: none;
}
label.radio-input > div{
    display: block;
    padding-left: 40px;
	text-align: left;
    position: relative;
}
label.radio-input > div:before{
    content: "";
    display: block;
    width: 26px;
    height: 26px;
	background-color: #fff;
    border: 2px solid #c1c1c1;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}
label.radio-input input:checked ~ div:after{
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    background: #ea1640;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 4px;
}

/*チェックボックス*/
label.check-input input[type="checkbox"]{
    display: none;
}

label.check-input > div{
    display: block;
    padding-left: 30px;
    position:relative;
}
label.check-input > div img{
	margin-bottom: 5px;
}
label.check-input > div:before{
    content: "";
    display: block;
    width: 20px;
    height: 20px;
	background-color: #fff;
    border: 2px solid #c1c1c1;
    position: absolute;
    top: 5px;
    left: 2px;
}
label.check-input input:checked ~ div{
    color: #ad0000;
}
label.check-input input:checked ~ div:after{
    content: "";
    display: block;
    width: 12px;
    height: 17px;
	border-bottom: 5px solid #d01137;
	border-right: 4px solid #d01137;
	transform: rotate(45deg);
    position: absolute;
    top: 2px;
    left: 7px;
}

label.check-input input:checked ~ div em{
	color: #d81e1e;
}

/*------エラーテキスト------*/
.error-text{
	display: block;
	width: 100%;
	margin: 0 5px 5px;
}
.error-text span{
	display: block;
	width: fit-content;
	background-color: #fff;
	color: #C00;
	margin: 0 0 15px;
	padding: 5px 10px;
	padding-left: 45px;
	font-size: 1rem;
	line-height: 1.8em;
	border: 1px solid #ff2b22;
	box-shadow: 0px 2px 0 #ff2b22;
	border-radius: 5px;
	position: relative;
}
.error-text span:before{
	content: "！";
	display: block;
	width: 24px;
	height: 24px;
	background-color: #ff2b22;
	color: #fff;
	border-radius: 50%;
	font-size: 1.0rem;
	font-weight: 600;
	line-height: 24px;
	text-align: center;
	position: absolute;
	left: 10px;
	top: 0;
	bottom: 0;
	margin: auto;
}
.error-text span:after{
	content: "";
	display: block;
	width: 0;
	height: 0;
	border: 10px solid transparent;
	border-top: 15px solid #ff2b22;
	position: absolute;
	left: 50px;
	bottom: -25px;
	margin: auto;
}

/**/
.error-text{
	display: block;
	width: 100%;
	margin: 0 5px 5px;
}
.error-text span{
	display: block;
	width: fit-content;
	background-color: #fff;
	color: #C00;
	margin: 0 0 15px;
	padding: 5px 10px;
	padding-left: 45px;
	font-size: 1rem;
	line-height: 1.8em;
	border: 1px solid #ff2b22;
	box-shadow: 0px 2px 0 #ff2b22;
	border-radius: 5px;
	position: relative;
}
.error-text span:before{
	content: "！";
	display: block;
	width: 24px;
	height: 24px;
	background-color: #ff2b22;
	color: #fff;
	border-radius: 50%;
	font-size: 1.0rem;
	font-weight: 600;
	line-height: 24px;
	text-align: center;
	position: absolute;
	left: 10px;
	top: 0;
	bottom: 0;
	margin: auto;
}
.error-text span:after{
	content: "";
	display: block;
	width: 0;
	height: 0;
	border: 10px solid transparent;
	border-top: 15px solid #ff2b22;
	position: absolute;
	left: 50px;
	bottom: -25px;
	margin: auto;
}
/**/
.error-text.error-file{
	width: 80%;
	max-width: 580px;
	margin: auto;
}
.error-text.error-file span{
	color: #13346f;
	font-size: 1.1rem;
	border-color: #13346f;
	box-shadow: 0px 2px 0 #13346f;
}
.error-text.error-file span:after{
	border-top-color: #13346f;
	left: 0;
	right: 0;
}


/*----------送信ボタン------------*/
.sendBtn{
	margin: 40px auto;
	text-align: center;
}
.sendBtn a{
	display: block;
	margin: 5px 0;
}
.sendBtn input,
.sendBtn a{
	width: 60%;
	background-image: none;
	color: #fff;
	margin: auto;
	padding: 20px;
	font-size: 1.6rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	border: none;
	border-radius: 0;
	cursor: pointer;
}

.sendBtn .next input,
.sendBtn .next a{
	background-color: #db4949;
}
.sendBtn .back input,
.sendBtn .back a{
	background-color: #666;
}

.sendBtn .estimate input{
	background-color: #58b3cd;
}
.sendBtn .buy input{
	background-color: #ee511a;
}

.sendBtn ul{
	display: flex;
	justify-content: center;
	gap: 20px;
}
.sendBtn ul li{
	width: 50%;
}
.sendBtn ul li a,
.sendBtn ul li input{
	width: 90%;
	margin: auto;
}

/*-----------注意事項---------*/
.cautionBox{
	width: 100%;
	margin: 20px auto 50px;
	padding: 15px;
	border-radius: 10px;
	border: 3px double #004073;
}
.cautionBox dt{
	margin-bottom: 10px;
	padding: 3px 10px;
	font-size: 1.2rem;
	font-weight: 600;
	border-left: 5px solid #004073;
	position: relative;
}
.cautionBox dd p{
	font-size: 1.1rem;
}
.cautionBox dd ul{
	display: flex;
	gap: 15px;
	margin-top: 20px;
}
.cautionBox dd ul li{
	background-color: #e5ecf2;
	width: 50%;
	padding: 10px;
	font-size: 1.1rem;
	line-height: 1.4em;
	letter-spacing: 0.08em;
	text-align: center;
}
.cautionBox dd ul li span{
	display: block;
	margin-bottom: 5px;
	padding: 5px;
	font-size: 1.2rem;
	font-weight: 600;
	border-bottom: 1px solid #004073;
}


@media screen and (max-width: 1200px) {
	/*----------送信ボタン------------*/
	.sendBtn a,
	.sendBtn input{
		width: 60%;
		background-image: none;
		color: #fff;
		padding: 20px;
		font-size: 1.6rem;
		font-weight: 600;
		letter-spacing: 0.08em;
		border: none;
		border-radius: 0;
		cursor: pointer;
	}
}
@media screen and (max-width: 810px) {
	/*-----------注意事項---------*/
	.cautionBox dt{
		font-size: 1.1rem;
	}
	.cautionBox dd p{
		font-size: 1.05rem;
	}
	.cautionBox dd ul li{
		font-size: 1.0rem;
		word-break: break-all;
	}
	.cautionBox dd ul li span{
		font-size: 1.1rem;
	}
}

@media screen and (max-width: 480px) {
	.sendBtn a,
	.sendBtn input{
		width: 80%;
		font-size: 1.4rem;
	}

	.sendBtn > ul{
		width: 80%;
		flex-wrap: wrap;
		flex-direction: column-reverse;
		margin: auto;
	}
	.sendBtn > ul > li{
		width: 100%;
	}
	.sendBtn ul li a,
	.sendBtn ul li input{
		width: 100%;
		margin: auto;
		font-size: 1.4rem;
	}
	
	
	/*-----------注意事項---------*/
	.cautionBox dd ul{
		flex-wrap: wrap;
	}
	.cautionBox dd ul li{
		width: 100%;
		font-size: 0.95rem;
	}
}


/*---------------------------------------------
	フォーム項目
---------------------------------------------*/
.form-box{
	width: 95%;
	max-width: 1280px;
	margin: auto;
	padding: 40px 0;
}

/*----リード----*/
.form-box .form-about{
	margin: 0 auto 40px;
}
.form-box .form-about > p{
	font-size: 1.2rem;
	line-height: 2em;
}
.form-box .form-about > p > span{
	margin-left: 15px;
}
.form-box .form-about > p > span a{
	display: inline-block;
	color: #248ee0;
}
.form-box .form-about > p > span a:before{
	content: "⇒";
	display: inline-block;
	margin-right: 10px;
}

/*--------*/
.form-box h2{
	margin-bottom: 20px;
	padding-left: 30px;
	font-size: 2.6rem;
	letter-spacing: 0.08em;
	position: relative;
}
.form-box h2:before{
	content: "";
	display: block;
	width: 15px;
	height: 15px;
	background-color: #ff2b22;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

/*----職種----*/
.form-box .job-list{
	background-color: #f6ebe3;
	padding: 15px 10px;
	border-radius: 10px;
}
.form-box .job-list ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 10px;
}
.form-box .job-list ul > li {
	width: calc((100% / 4) - 10px);
}
.form-box .job-list + p{
	margin: 10px 0 0;
	text-align: right;
}

/**/
.form-box .job-list ul > li.none {
	display: none;
}


/*----フォーム入力----*/
.form-box .form-list{
	display: flex;
	flex-direction: column;
	gap: 50px;
	margin: 40px auto;
}
.form-box .form-list > div{
	display: flex;
	align-items: center;
	gap: 10px;
}
.form-box .form-list > div > dt{
	width: 20%;
	font-weight: 600;
	position: relative;
}
.form-box .form-list > div > dt:after{
	content: "必 須";
	display: inline-block;
	color: #ff0000;
	margin-left: 10px;
	padding: 3px 8px;
	font-size: 0.8rem;
	line-height: 1.0em;
	text-align: center;
	vertical-align: middle;
	border-radius: 5px;
	border: 2px solid #ff0000;
}
.form-box .form-list > div > dt.any:after{
	content: "任 意";
	color: #182f84;
	border-color: #182f84;
}

.form-box .form-list > div > dd{
	width: 80%;
}
.form-box .form-list > div > dd > ul{
	display: flex;
	width: 100%;
}

/**/
.form-box .form-list.confirm-text > div > dd p.title{
	background-color: #d7e4eb;
	padding: 0 5px;
	border-radius: 10px 0 0 10px;
}

/*縦並び*/
.form-box .form-list > div.type-column{
	flex-direction: column;
	align-items: flex-start;
	gap: 5px;
}
.form-box .form-list > div.type-column > dt,
.form-box .form-list > div.type-column > dd{
	width: 100%;
}
.form-box .form-list > div.type-column > dd > ul{
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: 100%;
}
.form-box .form-list > div.type-column > dd > ul li{
	display: flex;
	align-items: center;
	gap: 10px;
	position: relative;
}
.form-box .form-list > div.type-column > dd > ul li p.title{
	width: 100px;
	text-align: right;
	position: absolute;
	left: -115px;
}


/*名前*/
.form-box .form-list > div.type-column.form-name > dd{
	padding-left: 20.5%;
}
.form-box .form-list > div.type-column.form-name > dd ul li input{
	width: 40%;
}

/*生年月日*/
.form-box .form-list > div.form-birth > dd ul{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
}
.form-box .form-list > div.form-birth > dd ul li:nth-of-type(1){
	width: 180px;
}
.form-box .form-list > div.form-birth > dd ul li:nth-of-type(2),
.form-box .form-list > div.form-birth > dd ul li:nth-of-type(3){
	width: 130px;
}
.form-box .form-list > div.form-birth > dd ul li > div{
	width: 80%;
	display: inline-block;
	margin-right: 5px;
}

/*住所*/
.form-box .form-list > div.type-column.form-address > dd{
	padding-left: 20.5%;
}
.form-box .form-list > div.type-column.form-address > dd ul li span.point{
	display: block;
	width: fit-content;
	background-color: #e5ecf2;
	padding: 3px 15px;
	font-size: 1.0rem;
	border-radius: 30px;
}


/*書類アップロード*/
.form-box .form-list > div.type-column.form-upload p.bg-bgray{
	display: block;
	width: fit-content;
	background-color: #e5ecf2;
	margin: 5px 0;
	padding: 3px 15px;
	font-size: 1.0rem;
	border-radius: 30px;
}

.form-box .form-list > div.type-column.form-upload > dd{
	padding-left: 20.5%;
}
.form-box .form-list > div.type-column.form-upload > dd input{
	border: 1px solid #ccc;
}

/*----個人情報----*/
.form-box .privacy-box{
	max-height: 200px;
	border: 1px solid #ccc;
	border-radius: 10px;
	overflow-y: auto;
}
.form-box .privacy-box > dl{
	padding: 20px;
}
.form-box .privacy-box > dl > dt{
	margin-bottom: 10px;
	font-size: 1.15rem;
	font-weight: 600;
	border-bottom: 1px solid #ccc;
}
.form-box .privacy-box > dl > dd{
	font-size: 1.1rem;
	line-height: 1.8em;
}
.form-box .privacy-box > dl > dd > dl{
	padding: 10px;
}
.form-box .privacy-box > dl > dd > dl > dt{
	font-weight: 600;
}
.form-box .privacy-box > dl > dd > dl > dd{
	margin-left: 10px;
	margin-bottom: 15px;
}
.form-box .privacy-box > dl > dd > dl > dd > ul > li{
	padding-left: 15px;
	position: relative;
}
.form-box .privacy-box > dl > dd > dl > dd > ul > li:before{
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	background-color: #333;
	border-radius: 50%;
	position: absolute;
	top: 15px;
	left: 0;
	margin: auto;
}

.form-box .privacy-box > dl > dd > dl > dd.notice p{
	margin: 5px 0;
}
.form-box .privacy-box > dl > dd > dl > dd.notice p span{
	display: block;
	width: fit-content;
	background-color: #dedede;
	margin-right: 10px;
	padding: 0 5px;
}


/**/
.form-box .privacy-check{
	display: block;
	width: fit-content;
	margin: 30px auto;
	padding: 10px;
	font-size: 1.3rem;
	font-weight: 600;
}

.form-box .privacy-check div{
	padding: 15px;
	padding-left: 40px;
	border: 1px solid #c1c1c1;
}
.form-box .privacy-check div:before{
	top: 0;
	bottom: 0;
	left: 8px;
	margin: auto;
}
.form-box .privacy-check input:checked ~ div:after{
	top: 0;
	bottom: 10px;
	left: 12px;
	right: auto;
	margin: auto;
}

.form-box .privacy-check input:checked ~ div{
	background-color: #ffeaea;
}

.form-box .privacy-check div.on{
	background-color: #ffeaea;
	position: relative;
}
.form-box .privacy-check div.on p {
	border-radius: 10px;
}
.form-box .privacy-check div.on p:before {
	content: "";
	display: block;
	width: 12px;
	height: 18px;
	border-bottom: 5px solid #C00;
	border-right: 4px solid #C00;
	transform: rotate(45deg);
	position: absolute;
	left: 15px;
	top: 0;
	bottom: 10px;
	margin: auto;
}


@media screen and ( max-width: 1200px ){
	/*----リード----*/
	.form-box .form-about > p{
		font-size: 1.2rem;
		line-height: 2em;
	}

	/*--------*/
	.form-box h2{
		font-size: 2.4rem;
	}

	/*----職種----*/
	.form-box .job-list ul{
		flex-wrap: wrap;
	}

	/*縦並び*/
	.form-box .form-list > div.type-column > dd > ul li p.title{
		width: 100px;
		text-align: right;
		position: absolute;
		left: -115px;
	}

}

@media screen and ( max-width: 1000px ){
	/*----リード----*/
	.form-box .form-about > p{
		font-size: 1.05rem;
		line-height: 2em;
	}
	.form-box .form-about > p > span{
		margin-left: 0;
	}

	/*--------*/
	.form-box h2{
		font-size: 2.0rem;
	}

	/*----職種----*/
	.form-box .job-list ul{
		flex-wrap: wrap;
	}
	.form-box .job-list ul > li {
		width: calc((100% / 2) - 10px);
	}
	.form-box .job-list + p{
		font-size: 1.1rem;
	}

	/*----個人情報----*/
	.form-box .privacy-box > dl{
		padding: 15px;
	}
	.form-box .privacy-box > dl > dt{
		font-size: 1.15rem;
	}
	.form-box .privacy-box > dl > dd{
		font-size: 1rem;
	}
	.form-box .privacy-box > dl > dd > dl > dd{
		margin-bottom: 10px;
	}


	.form-box .privacy-check{
		font-size: 1.2rem;
	}

}

@media screen and ( max-width: 810px ){
	/*----リード----*/
	.form-box .form-about > p{
		font-size: 1.0rem;
	}

	/*--------*/
	.form-box h2{
		font-size: 1.8rem;
	}

	/*----フォーム入力----*/
	.form-box .form-list > div{
		flex-direction: column;
		align-items: flex-end;
	}
	.form-box .form-list > div > dt{
		width: 100%;
	}
	.form-box .form-list > div > dd{
		width: 90%;
	}
	.form-box .form-list > div > dd > ul{
		display: flex;
		flex-wrap: wrap;
		width: 100%;
	}

	/*縦並び*/
	.form-box .form-list > div.type-column{
		flex-direction: column;
		align-items: flex-end;
	}
	.form-box .form-list > div.type-column > dt{
		width: 100%;
		padding: 0;
	}
	.form-box .form-list > div.type-column > dd{
		width: 90%;
		padding: 0;
	}
	.form-box .form-list > div.type-column > dd > ul li{
		flex-wrap: wrap;
		gap: 5px 10px;
	}
	.form-box .form-list > div.type-column > dd > ul li p.title{
		width: 100%;
		margin-bottom: 0;
		font-size: 1.05rem;
		font-weight: 600;
		text-align: left;
		position: static;
	}


	/*名前*/
	.form-box .form-list > div.type-column.form-name > dd{
		padding-left: 0;
	}
	.form-box .form-list > div.type-column.form-name > dd ul li input{
		width: 45%;
	}

	/*生年月日*/
	.form-box .form-list > div.form-birth > dd ul li:nth-of-type(1){
		width: 150px;
	}

	/*住所*/
	.form-box .form-list > div.type-column.form-address > dd{
		padding-left: 0;
	}
	.form-box .form-list > div.type-column.form-address > dd ul{
		gap: 20px;
	}
	.form-box .form-list > div.type-column.form-address > dd ul li span.point{
		width: auto;
		font-size: 0.9rem;
	}


	/*書類アップロード*/
	.form-box .form-list > div.type-column.form-upload > dd{
		padding-left: 0;
	}

	/*----個人情報----*/
	.form-box .privacy-box > dl{
		padding: 10px;
	}
	.form-box .privacy-box > dl > dt{
		font-size: 1.15rem;
	}
	.form-box .privacy-box > dl > dd{
		font-size: 1rem;
	}
	.form-box .privacy-box > dl > dd > dl > dd{
		margin-bottom: 10px;
	}
}

@media screen and ( max-width: 480px ){
	/*----リード----*/
	.form-box .form-about > p{
		font-size: 1.0rem;
	}

	/*--------*/
	.form-box h2{
		font-size: 1.8rem;
	}

	/*----職種----*/
	.form-box .job-list ul {
		gap: 5px;
	}
	.form-box .job-list ul > li {
		width: 100%;
	}
	.form-box .job-list + p{
		font-size: 1.0rem;
		text-align: left;
	}

	/*----フォーム入力----*/
	.form-box .form-list > div > dt{
		padding-bottom: 10px;
		border-bottom: 1px solid #e0c1aa;
	}
	.form-box .form-list > div > dd{
		width: 95%;
	}

	/*縦並び*/
	.form-box .form-list > div.type-column{
		flex-direction: column;
		align-items: flex-end;
	}
	.form-box .form-list > div.type-column > dt{
		width: 100%;
		padding-bottom: 10px;
	}
	.form-box .form-list > div.type-column > dd{
		width: 95%;
		padding: 0;
	}
	.form-box .form-list > div.type-column > dd > ul li{
		width: 100%;
		flex-wrap: wrap;
	}


	/*生年月日*/
	.form-box .form-list > div.form-birth > dd ul{
		flex-wrap: wrap;
	}
	.form-box .form-list > div.form-birth > dd ul li:nth-of-type(1),
	.form-box .form-list > div.form-birth > dd ul li:nth-of-type(2),
	.form-box .form-list > div.form-birth > dd ul li:nth-of-type(3){
		width: 100%;
	}
	.form-box .form-list > div.form-birth > dd ul li:nth-of-type(1) div{
		width: 150px;
	}
	.form-box .form-list > div.form-birth > dd ul li:nth-of-type(2) div,
	.form-box .form-list > div.form-birth > dd ul li:nth-of-type(3) div{
		width: 120px;
	}

	/*----個人情報----*/
	.form-box .privacy-box > dl > dt{
		font-size: 1.1rem;
	}
	.form-box .privacy-box > dl > dd{
		font-size: 1rem;
	}
	.form-box .privacy-box > dl > dd > dl{
		padding: 5px;
	}

}


/*---送信完了---*/
.form-box .form-end p{
	font-size: 1.1rem;
	line-height: 1.5em;
}
.form-box .form-end p:not(:last-child){
	margin-bottom: 30px;
}



