@charset "utf-8";
.page-contents-wrap .contact{
	width: 800px;
	margin: 0 auto;
}
.must,.require{
	color: red;
}
.contact .message {
	font-size: 1.6rem;
	margin-bottom: 15px;
}
.contact .privacy-area {
	padding: 15px;
	background: #f0f0f0;
	font-size: 1.4rem;
	line-height: 1.6;
	margin-bottom: 30px;
}
.contact .privacy-area a{
	text-decoration: underline;
}

/* フォーム */
.contact table {
	border-collapse: collapse;
	width: 100%;
	margin-bottom: 30px;
}
.contact table th {
	width: 300px;
	background: #f0f0f0;
	vertical-align: top;
	padding: 20px 20px 0 20px;
	box-sizing: border-box;
	font-size: 16px;
	font-weight: bold;
	border-top: #dcdcdc 1px solid;
	border-bottom: #dcdcdc 1px solid;
}
.contact table td {
	padding: 20px 20px 20px 30px;
	border-top: #dcdcdc 1px solid;
	border-bottom: #dcdcdc 1px solid;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="password"], textarea {
	-webkit-appearance: none;
	appearance: none;
	padding: 10px!important;
	background: #fff;
	border: 1px solid #dcdcdc;
	width: 80%;
}
textarea {
	width: 90%;
}

input[type="submit"] {
	background: var(--blk);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	font-weight: bold;
	position: relative;
	transition: all .3s ease 0s;
	width: 300px;
	padding: 20px 0;
	margin: 30px auto 0;
	cursor: pointer;
	border: none;
	border-radius: 10px;
}
input[type="submit"]:hover{
	opacity: .7;
}


/* サンクスページ */
.thanks{
	width: 1000px;
	margin: 0 auto;
}
.thanks h2 {
	font-size: 2.4rem;
	font-weight: bold;
	margin-bottom: 10px;
}
.thanks p {
	margin-bottom: 50px;
}
.h-back a {
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1;
	display: block;
	position: relative;
	background: var(--blk);
	color: #fff;
	width: 250px;
	text-align: center;
	padding: 16px;
	border-radius: 30px;
}
.h-back a::before {
	content: '';
	width: 6px;
	height: 6px;
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
	position: absolute;
	top: 50%;
	left: 20px;
	transform: translateY(-50%) rotate(-45deg);
	transition: all .3s ease 0s;
}