/* Form Session */
#form {
	padding-top: 20px;
	background-color: var(--white);
}

#form .intro {
	margin-bottom: 60px;
}

#form .intro ul {
	margin-top: 20px;
	padding-left: 20px;
	font-size: 1em;
	list-style-type: none;
}
#form .intro ul li::before {
	display: inline-block;
	margin-right: 4px;
	content: "※";
}

#form p {
	font-size: 1.2em;
}
@media screen and (max-width: 700px) {
	#form p {
		font-size: 1.0em;
	}
}

#form .subtitle {
	font-size: 1.4em;
}
@media screen and (max-width: 700px) {
	#form .subtitle {
		font-size: 1.2em;
	}
}

#form .form {
	margin-bottom: 20px;
}

#form .form .title {
	margin-top: 4px;
	margin-bottom: 4px;
	font-size: 1.2em;
	font-weight: bold;
}

#form .form .alert {
	margin-bottom: 4px;
	font-size: 0.8em;
	color: var(--red);
}

#form .form input {
	padding: 0.2em 0.4em;
	border-radius: 4px;
	font-size: 1.2em;
	pointer-events: auto;
}

#form .form label {
	display: block;
	font-size: 1.2em;
	pointer-events: auto;
}

#form .form .terms {
	position: relative;
	margin-bottom: 4px;
	padding: 0.2em 1em;
	width: calc(100% - var(--side-padding) * 2);
	height: 300px;
	border: 1px solid var(--gray);
	box-shadow: 0 -6px 6px rgba(0, 0, 0, 0.2) inset, 0 6px 6px rgba(0, 0, 0, 0.2) inset;
	overflow-y: scroll;
	pointer-events: auto;
}
#form .form .terms h1 {
	font-size: 1.2em;
}
#form .form .terms h2 {
	margin: 0;
	font-size: 1.0em;
	text-align: left;
	-webkit-text-stroke: 0;
	text-stroke: 0;
}
#form .form .terms p {
	font-size: 0.8em;
}

#form .form .download_link {
	display: block;
	margin-left: calc(100% - 120px);
	width: 120px;
	color: var(--blue);
	font-size: 0.8em;
	text-decoration: none;
	text-align: right;
	pointer-events: auto;
}
#form .form .download_link:hover {
	color: var(--light-blue);
}

#form .submit_btn {
	display: block;
	margin: 30px auto;
	width: 50%;
	max-width: 200px;
}