
h1 {
	text-align: center;
	font-size: 1em;
	font-weight: bold;
	margin: 50px auto;
	width: 90%;
}
h2 {
	text-align: center;
	font-size: 0.9em;
	font-weight: bold;
	margin: auto auto 30px;
}
section {
	background: #F6F6F6;
	padding: 50px 5%;
	max-width: 800px;
	width: 90%;
	margin: auto;
	border-radius: 10px;
}

.logo {
	max-width: 300px;
	width: 30%;
	display: block;
	margin: 30px auto;
}
.annotation {
	background: #FFF;
	border-radius: 10px;
	padding: 10px;
	margin: 20px auto;
	max-width: 800px;
	width: 100%;
}
.annotation p {
	font-size: 0.6em;
	margin: auto auto 10px;
	line-height: 1.6em;
}
.annotation p:last-child {
	margin: auto;
}
.login-link {
	text-align: center;
}
.login-link a {
	font-size: 0.8em;
	text-decoration: underline;
}



.form {
	margin: auto auto 30px;
}
.form-label {
	font-size: 0.7em;
	margin-bottom: 10px;
}
.label-block {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
	padding-bottom: 10px;
	max-width: 300px;
	border-bottom: 1px solid #FFF;
	cursor: pointer;
}
.label-block:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	background: #f6f6f6;
	z-index: 2;
	width: 50%;
}
.label-block.on:before {
	display: none;
}
.label-block select {
	width: 100px;
}

.label-block.radio:before {
	display: none;
}
textarea,
input,
select {
	display: block;
	background: #FFF;
	width: 100%;
	font-size: 16px;
	padding: 10px;
	border: 0;
	border-bottom: 1px solid #60BAFF;
}
select option {
	font-size: 12px;
}
/*** custom checkboxes ***/

input[type=checkbox],
input[type=radio] { display:none; } /* to hide the checkbox itself */
input[type=checkbox] + label,
input[type=radio] + label {
	cursor: pointer;
	font-size: 0.9em;
}
input[type=radio] + label {
	width: 100%;
}
input[type=checkbox] + label:before,
input[type=radio] + label:before {
  font-family: FontAwesome;
  display: inline-block;
}

input[type=checkbox] + label:before,
input[type=radio] + label:before { content: "\f096"; color: #00C84A; } /* unchecked icon */
input[type=checkbox] + label:before,
input[type=radio] + label:before { letter-spacing: 10px; } /* space between checkbox and label */

input[type=checkbox]:checked + label:before,
input[type=radio]:checked + label:before { content: "\f046"; } /* checked icon */
input[type=checkbox]:checked + label:before,
input[type=radio]:checked + label:before { letter-spacing: 5px; } /* allow space for check mark */
img {
	width: 100%;
	vertical-align: bottom;
}
.name {}
.name .form {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.name .form .form-nameblock {
	width: 48%;
}
.birthday {}
.birthday .form {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.birthday .form select {
	width: calc(90% / 3);
}

.btn.true {
	padding-left: 20px;
}

/*===========================
=============================
SP ~750
=============================
===========================*/
@media screen and (min-width:750px) {
}