@charset "utf-8";
/* CSS Document */
.form-box .box-wrap{
	max-width: 1000px;
}
.form-box .box-wrap .box{
	margin-bottom: 40px;
}
.form-box .box-wrap .box h3{
	width: 300px;
	font-weight: 500;
	position: relative;
	padding-right: 80px;
}
.form-box .box-wrap .box.required-box h3::after{
	content: "必須";
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	background-color: #BF272D;
	border-radius: 3px;
	padding: 2px 20px 3px;
	color: #fff;
	font-size: 14px;
	font-family: "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",  sans-serif;

}
.form-box .box-wrap .box .inputbox{
	width: calc(100% - 300px);
	padding-left: 30px;
}
.form-box .box-wrap .box .inputbox > input,.form-box .box-wrap .box .inputbox textarea{
	background-color: #F0F0F0;
	border-radius: 3px;
	width: 100%;
	box-sizing: border-box;
	padding: 15px;
	border: none;
	font-family: "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",  sans-serif;
}
.form-box .box-wrap .box .inputbox input::placeholder,.form-box .box-wrap .box .inputbox textarea::placeholder{
	color: #666666;
	font-size: 14px;
}
.form-box .box-wrap .box .inputbox textarea{
	height: 300px;
}
.form-box .box-wrap .box .inputbox .check-wrap{
	justify-content: flex-start;
	gap: 30px;
}
.form-box .box-wrap .box .inputbox .check-wrap .check-box{
	gap: 10px;
}
.form-box .box-wrap .box .inputbox .check-wrap .check-box input{
}
.send,.check-area{
	text-align: center;
}
.privacy-bt{
	cursor: pointer;
}
.send .send-bt button{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	opacity: 0;
	cursor: pointer;
}
.send .send-bt{
	position: relative;
	z-index: 1;
}

.privacypolicy{
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	box-sizing: border-box;
	padding: 100px 100px;
	background-color: rgba(0,0,0,0.90);
	color: #ffffff;
	z-index: 99999;
	overflow: auto;
}
.privacypolicy .box-wrap{
	padding-top: 50px;
}
.privacypolicy .box-wrap .box:not(:last-of-type){
	margin-bottom: 80px;
}
.privacypolicy .box-wrap a{
	display: inline-block;
	opacity: 1;
	transition: ease 0.3s;
}
.privacypolicy .box-wrap a:hover{
	opacity: 0.5;
}
.privacypolicy .box-wrap p{
	color: #fff!important;
}
.privacypolicy .close-bt{
	position: fixed;
	top: 20px;
	right: 20px;
	width: 60px;
	height: 60px;
	background-color:rgba(0,0,0,0.90);
	transition: ease 0.3s;
	cursor: pointer;
}
.privacypolicy .close-bt:hover{opacity: 0.6}
.privacypolicy .close-bt::before,.privacypolicy .close-bt::after{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 42px;
	height: 3px;
	background-color: #ffffff;
}
.privacypolicy .close-bt::before{
	transform: translate(-50%,-50%) rotate(45deg);
}

.privacypolicy .close-bt::after{
	transform: translate(-50%,-50%) rotate(-45deg);
}
.privacypolicy .box-wrap .box h3{
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
	padding-bottom: 5px;
	border-bottom: 2px solid #ffffff;
	color: #fff!important;
}
.privacypolicy .box-wrap .box p a{
	color: #fff!important;
}



/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
	.form-box .box-wrap .box h3{
		width: 250px;
	}
	.form-box .box-wrap .box .inputbox{
		width: calc(100% - 250px);
	}
	.send,.check-area{
		margin-left: 250px;
	}
	
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
	.form-box .box-wrap .box h3{
		width: 100%;
		margin-bottom: 10px;
	}
	.form-box .box-wrap .box .inputbox{
		width: 100%;
		padding-left: 0;
	}
	.form-box .box-wrap .box.required-box h3{
		padding-right: 0;
		padding-left: 0px;
	}
	.form-box .box-wrap .box.required-box h3::after{
		position: static;
		display: inline-block;
		margin-left: 20px;
		font-size: 13px;
		transform: translateY(-2px);
	}
	.form-box .box-wrap .box .inputbox{
	}
	.form-box .box-wrap .box .inputbox .check-wrap{
		padding-top: 10px;
		gap: 20px;
	}
	.form-box .box-wrap .box .inputbox .check-wrap1 .check-box{
		box-sizing: border-box;
	}
	.send,.check-area{
		margin-left: 0px;
	}
	
	.privacypolicy{
		padding: 100px 50px;
	}
	.privacypolicy .box-wrap{
		padding-left: 30px;
		padding-top: 50px;
	}
	.privacypolicy .box-wrap .box h3{
		font-size: 18px;
	}
	.privacypolicy p{
		font-size: 14px;
	}
	.privacypolicy .close-bt{
		top: 20px;
		right: 20px;
		width: 50px;
		height: 50px;
	}
	.privacypolicy .close-bt::before,.privacypolicy .close-bt::after{
		width: 36px;
		height: 2px;
	}
	
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
	.form-box .box-wrap .box .inputbox > input,.form-box .box-wrap .box .inputbox textarea{
		font-size: 14px;
	}
	.form-box .box-wrap .box .inputbox{
		padding-left: 0;
	}
	.form-box .box-wrap .box .inputbox .check-wrap{
		padding-top: 20px;
		gap: 20px;
	}
	.form-box .box-wrap .box .inputbox .check-wrap1 .check-box{
		width: 100%;
		box-sizing: border-box;
	}
	.form-box .box-wrap .box.required-box h3::after{
		font-size: 12px;
		padding: 2px 10px;
	}
	.form-box .box-wrap .box h3{
		padding-left: 0px;
	}
	.form-box .box-wrap .box.required-box h3{
	}
	.privacypolicy{
		padding: 80px 20px;
	}
	.privacypolicy .box-wrap .box:not(:last-of-type){
		margin-bottom: 50px;
	}
	.privacypolicy .box-wrap{
		padding-top: 30px;
		padding-left: 0;
	}
	.send-bt p{font-size: 18px!important;}
	.send .send-bt{min-width: 200px;}
	.main-wrap > h2 br:first-of-type{display: none;}
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

