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


.form {
	width: clamp(1000px,83vw,1600px);margin: auto;
	background-color: #fff;
	padding-bottom:clamp(40px,3vw,60px);
}

.form ul {font-size:clamp(12px,  1vw,18px);padding:3em 0;width: 90%;margin: auto;}
.form li {
	list-style: none;
	border-bottom: 1px dotted #ccc;
	padding:0.5em 0 1em 0;
	display: flex;
	justify-content:flex-start;
	align-items: center;
}
.form li:not(:last-of-type) {
	margin-bottom: 1em;
}
.form ::placeholder {
	color:#999;
	font-size: 0.8em;
}
.form li input {
	margin-right: 0.8em;
}
.form input,
.form select
{height: 2em;border: 1px solid #ccc;}

.form li span {
	width: 6em;
	text-align: center;
	font-weight: 600;
}


.form .note {
	font-size: 0.8em;
	color: #d83221;
	padding-top: 0.3em;
}

#submit {
	text-align: center;
}

#submit button {
	border: 0;
	color: #fff;
	text-align: center;
	transition: 0.4s;
	padding:0.5em 2em;
	font-size:clamp(15px,1.3vw,24px);
}
#submit button:hover {cursor: pointer;}
#submit button[type=submit] {background: #d83221;}
#submit button[type=button] {background: #999;}
#submit button[type=submit]:hover {background: #c00;}
#submit button[type=button]:hover {background: #888;}

.red {color:red;}

.anq_ttl {
	font-size: 90%;
	margin-bottom: 0.8em;
}

#agree {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 1.5em;
	color: blue;
}
#agree label:hover {
	cursor: pointer;
}
#policy {
	text-align: center;
	padding-bottom: 4em;
	font-size: 90%;
}

@media only screen and (max-width: 720px) { /* --[SP対応]-------------------------------------------------------------------------------------------*/
.lead ,.form {width: 96vw;}

.form li {
	display:block;
}
.form li span {font-size: 4vw;}

.form input,
.form textarea {
	width: 100%!important;
	margin-top: 0.5em;
}
.form #agree input {
	width: inherit!important;
}

.note {font-size: 3vw;}

}












