@charset "utf-8";
/* CSS Document */

.contact-request{
	padding: 0;
}
.contact-request .sec-head{
	position: relative;
	z-index: 1;
	margin-bottom: 0;
}
.contact-request .box{
	background-color: #fff;
	margin-top: -50px;
	padding: 106px 50px 50px;
	text-align: center;
}
.contact-request .box > p{
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 30px;
	color: #333;
}
.contact-request .more{
	margin: 32px auto 0;
	display: flex;
	justify-content: center;
}
.contact-request .more a{
	width: 280px;
}
.contact-request .more a p,
.contact-form .more a p,
.contact-form .more button p{
	color: #fff;
}

.contact-form{
	padding: 150px 0 0;
}
.contact-form .lead_txt{
	text-align: center;
	font-size: 16px;
	line-height: 32px;
	margin-bottom: 50px;
}
.form-item{
	display: flex;
	align-items: flex-start;
	flex-wrap: nowrap;
	width: 100%;
	max-width: 100%;
	margin: 0 0 20px;
}
.form-item .label{
	width: 200px;
	flex-shrink: 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 35px;
	color: #222;
	padding-top: 7px;
}
.form-item .req{
	width: 80px;
	flex-shrink: 0;
	padding-top: 9px;
}
.form-item .req p{
	display: inline-block;
	background-color: #cb0000;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 24.5px;
	padding: 0 8px;
	border-radius: 3px;
}
.form-item .input{
	flex: 1;
	min-width: 0;
}
.form-item input,
.form-item textarea{
	width: 100%;
	background-color: #fff;
	border: 2px solid #f3f4f8;
	border-radius: 5px;
	padding: 11px 20px;
	font-size: 15px;
	font-weight: 500;
	line-height: 26.25px;
	color: #333;
}
.form-item input::placeholder,
.form-item textarea::placeholder{
	color: #333;
	opacity: 0.5;
}
.form-item textarea{
	height: 247px;
	resize: vertical;
}
.form-agree{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin: 40px 0 30px;
}
.form-agree input{
	width: 18px;
	height: 18px;
	border: 1px solid #9d9898;
	background-color: #fff;
	flex-shrink: 0;
	margin: 0;
	cursor: pointer;
}
.form-agree .privacy-bt{
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.02em;
	line-height: 28.8px;
	color: #333;
	border-bottom: 1px solid #c2c2c2;
}
.contact-form .more{
	margin: 0 auto;
	display: flex;
	justify-content: center;
}

/* ---------- privacy ---------- */
.privacypolicy{
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	box-sizing: border-box;
	padding: 100px;
	background-color: rgba(51,51,51,0.90);
	color: #fff;
	z-index: 99999;
	overflow: auto;
}
.privacypolicy .contents h2{
	color: #fff;
}
.privacypolicy .box-wrap{
	padding-top: 50px;
}
.privacypolicy .box-wrap .box:not(:last-of-type){
	margin-bottom: 80px;
}
.privacypolicy .box-wrap a{
	display: inline-block;
}
.privacypolicy .box-wrap p,
.privacypolicy .box-wrap a p{
	color: #fff;
}
.privacypolicy .close-bt{
	position: fixed;
	top: 20px;
	right: 20px;
	width: 60px;
	height: 60px;
	background-color: #333;
	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: #fff;
}
.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 #fff;
	color: #fff;
}

.contact-faq{
	padding: 150px 0 80px;
}
.faq-item{
	background-color: #fff;
	margin-bottom: 20px;
	cursor: pointer;
}
.faq-item .q{
	display: flex;
	align-items: center;
	padding: 20px 40px;
}
.faq-item .q .sign,
.faq-item .a .sign{
	font-family: "Lato", sans-serif;
	font-size: 38px;
	line-height: 38px;
	width: 53px;
	flex-shrink: 0;
	text-align: center;
	background: none;
	padding: 0;
}
.faq-item .q .sign{
	color: #121212;
}
.faq-item .q .txt{
	flex: 1;
	min-width: 0;
	font-size: 22px;
	font-weight: 500;
	line-height: 38px;
	padding-right: 20px;
	word-break: break-word;
}
.faq-item .q .icon{
	width: 42px;
	height: 42px;
	position: relative;
	flex-shrink: 0;
	background-color: #121212;
	border-radius: 50%;
}
.faq-item .q .icon::before,
.faq-item .q .icon::after{
	content: "";
	position: absolute;
	background-color: #fff;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	transition: transform 0.35s ease;
}
.faq-item .q .icon::before{
	width: 14px;
	height: 2px;
}
.faq-item .q .icon::after{
	width: 2px;
	height: 14px;
}
.faq-item.open .q .icon::after{
	transform: translate(-50%,-50%) rotate(90deg);
}
.faq-item .a{
	display: none;
	overflow: hidden;
}
body.gjs-dashed .faq-item .a{
	display: block!important;
}
.faq-item .a .inner{
	display: flex;
	align-items: flex-start;
	padding: 20px 40px 30px;
	border-top: 1px solid #eee;
}
.faq-item .a .sign{
	color: #9d9d9d;
}
.faq-item .a .txt{
	flex: 1;
	min-width: 0;
	font-size: 15px;
	line-height: 27px;
	letter-spacing: 0.02em;
	color: #333;
}

@media screen and (max-width: 768px){
	.contact-request .more a{
		width: 260px;
	}
	.contact-request .box{
		padding: 60px 24px 40px;
	}
	.contact-form,
	.contact-faq{
		padding-top: 100px;
	}
	.form-item{
		flex-wrap: wrap;
	}
	.form-item .label{
		width: auto;
		padding-right: 12px;
	}
	.form-item .input{
		width: 100%;
		flex: auto;
		margin-top: 8px;
	}
	.faq-item .q{
		padding: 16px 16px;
	}
	.faq-item .q .txt{
		font-size: 16px;
		line-height: 1.6;
	}
	.faq-item .a .inner{
		padding: 16px 16px 20px;
	}
	.privacypolicy{
		padding: 80px 20px 40px;
	}
	.privacypolicy .close-bt{
		width: 44px;
		height: 44px;
	}
	.privacypolicy .close-bt::before,
	.privacypolicy .close-bt::after{
		width: 28px;
	}
	.privacypolicy .box-wrap .box:not(:last-of-type){
		margin-bottom: 40px;
	}
	.privacypolicy .box-wrap .box h3{
		font-size: 16px;
	}
}
@media screen and (max-width: 576px){
	.contact-form,
	.contact-faq{
		padding-top: 80px;
	}
	.contact-request .box > p{
		font-size: 14px;
		letter-spacing: 0.04em;
	}
}
