/* 参加申込フォーム */
.required {
	color: #ff0000;
	font-size: 14px;
}
.message {
	color: #ff0000;
	margin-bottom: 10px;
}
#application-form p.title {
	font-size: 20px;
	font-weight: bold;
	border-bottom: 1px solid #ffb6c1;
	margin-bottom: 5px;
}
#application-form div.title {
	min-width: 80px;
	line-height: 2.5rem;
}
#application-form .textbox {
	width: 300px;
	padding: 3px 7px;
	border-radius: 5px;
	height: 40px;
}
#application-form .textbox:focus {
	outline: 0;
	border: 2px solid #2196f3;
}
#application-form .radio {
	margin: 10px 10px;
	transform:scale(1.5);
}
#application-form .textbox-address {
	width: 70%;
	padding: 3px 7px;
	border-radius: 5px;
	height: 40px;
}
#application-form .textbox-zip {
	width: 150px;
	margin-left: 2px;
}
#application-form input::placeholder {
	color: #CCC;
}
#application-form .btn {
	display: block;
	text-align: center;
	text-decoration: none;
	width: 120px;
	margin: auto;
	font-weight: bold;
	border: 2px solid #27acd9;
	background: #27acd9;
	color: #fff;
	transition: 0.5s;
}
#application-form .btn:hover {
	color: #27acd9;
	background: #fff;
}
#application-message {
	display: none;
	width: 100%;
	padding: 10px 20px;
	border-radius: 10px;
	background-color: #98fb98;
	margin-bottom: 10px;
}
#application-error-message {
	display: none;
	width: 100%;
	padding: 10px 20px;
	border-radius: 10px;
	background-color: #ffc0cb;
	margin-bottom: 10px;
}
