@charset "utf-8";
/* CSS Document */
.mailform .form-box .box h3{
	color: #191919;
	font-weight: 400;
	position: relative;
	margin-bottom: 10px;
}
.mailform .form-box .box .inputbox input,.mailform .form-box .box .inputbox textarea{
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #191919;
	padding: 12px 10px 10px;
	background-color: #fff;
	font-family: "Poppins", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",  sans-serif;
}
.mailform .form-box .box-wrap .box .inputbox input::placeholder,.mailform .form-box .box-wrap .box .inputbox textarea::placeholder{
	font-family: "Poppins", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",  sans-serif;
	color: #979797;
	font-weight: 300;
	line-height: 1;
}

.mailform .form-box .box{
	margin-bottom: 40px;
}
.mailform .form-box .box{}
.mailform .form-box .box .inputbox.flex{
	gap: 30px;
}
.mailform .form-box .box .inputbox.flex input{
	width: calc(50% - 30px / 2);
}
.mailform .form-box .box .inputbox .check-wrap1{
	gap: 20px 30px;
}
.mailform .form-box .box .inputbox .check-box input{
	width: auto;
	margin-right: 5px;
}
.mailform .form-box .box textarea{
	height: 300px;
}
.mailform .form-box .send .send-bt{
	display: inline-block;
}
.mailform .form-box .send .send-bt{
	width: 320px;
	min-height: 64px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	border-radius: 100px;
	display:-webkit-box;
    display:-moz-box;
    display:-ms-box;
    display:-webkit-flexbox;
    display:-moz-flexbox;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:-ms-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    justify-content: center;
    align-items: center;
	flex-direction: row;
	transition: ease 0.3s;
	background-color: #000;
}
.mailform .form-box .send .send-bt:hover{opacity: 0.5;}
.mailform .form-box .send .send-bt button{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: 2;
	cursor: pointer;
}
.mailform .form-box .send .send-bt p{
	position: relative;
	z-index: 1;
	color: #fff;
	font-size: 22px;
	font-weight: 400;
	transition: ease 0.3s;
}
.mailform .form-box .send .send-bt:active p{
	transform: translateY(1px);
}
.mailform .form-box .privacy-bt{cursor: pointer;}

.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 p{
	color: #fff;
}
.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;
}
.privacypolicy .box-wrap .box p a{
	color: #ffffff;
}
.mailform .box-wrap .box.required-box h3::before{
	content: "*";
	font-family: "Oleo Script", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",  sans-serif;
	color: #8E272D;
	font-size: 30px;
}

/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
}
/* ---------- 1000px ~ ---------- */
@media screen and (max-width: 1000px){
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
	.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){
	
	.mailform .form-box .box{
		margin-bottom: 30px;
	}
	.mailform .form-box .box .inputbox.flex{
		gap: 15px;
	}
	.mailform .form-box .box .inputbox.flex input{
		width: 100%;
	}
	.mailform .form-box .send .send-bt{
		width: 280px;
	}
	.privacypolicy{
		padding: 80px 20px;
	}
	.privacypolicy .box-wrap .box h3{
		font-size: 16px;
	}
	.privacypolicy p{
		font-size: 12px;
	}
	.privacypolicy .box-wrap{
		padding-left: 0px;
		padding-top: 50px;
	}
	.privacypolicy .close-bt{
		top: 10px;
		right: 10px;
		width: 50px;
		height: 50px;
	}
	.mailform .box-wrap .box.required-box h3::before{font-size: 22px;}
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

