html,body,h1,h2,h3,h4,h5,h6,p,div,ul,ol,li,dl,dt,dd,table,th,td {
    font-size: inherit;
    line-height: 1;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style: none;
}

body {
	color: #333;
	font-size: 14px;
	font-family: "Hiragino Kaku Gothic ProN","ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;
	background-color: #f1f9fc;
}

p {
    line-height: 1.8;
}

hr {
	border-right: none;
	border-bottom: none;
	border-left: none;
}

.page {
    max-width: 960px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 60px;
    margin-left: auto;
    margin-right: auto;
}

form {
    margin-top: 40px;
    margin-bottom: 20px;
}

.l-center {
    text-align: center;
    padding: 20px;
}

.required {
	color: #fff;
	font-size: 12px;
	line-height: 1;
	padding: 3px;
	margin-left: 5px;
	background-color: #900;
	display: inline-block;
}

.select {
    color: #fff;
    font-size: 12px;
    line-height: 1;
    padding: 3px;
    margin-left: 3px;
    background-color: #024a5b;
    display: inline-block;
}

.schooltype {
	font-weight: bold;
	width: 5em;
	padding: 3px;
	display: inline-block;
}

.title {
    color: #2f2f2f;
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
    padding: 20px;
    margin-bottom: 40px;
    border-top: solid 1px #2f2f2f;
    border-bottom: solid 1px #2f2f2f;
}

.alert {
	color: #cc0000;
}

.error {
	display: block;
	margin-top: 10px;
	color: #cc0000;
}

h2 {
	padding-left: 10px;
	margin-top: 40px;
	margin-bottom: 10px;
	border-left: solid 4px #32b7d4;
}

form dl {
	display: flex;
	background-color: #fff;
	padding: 10px;
	margin: 10px 0 0 0;
	align-items: center;
}

form dl dt {
	font-size: 14px;
	line-height: 1.5;
	width: 200px;
}

form dl dd {
	width: 80%;
	margin: 0 0 0 1em;
	padding: 0 0 0 1em;
	border-left: solid 2px #32b7d4;
}

input[type=text],
input[type=email] {
	-webkit-appearance: none;
	font-size: 16px;
	border: solid 1px #999;
	padding: 5px;
	width: 100%;
	box-sizing: border-box;
}

input[type="text"]:focus,
input[type=email]:focus {
  border: 1px solid #32b7d4;
  outline:  1px solid #32b7d4;
}

select {
	-webkit-appearance: none;
	font-size: 16px;
	padding: 5px 25px 5px 5px;
	border: solid 1px #999;
	border-radius: 0;
	background-color: #fff;
	background-image: url(../img/icon_arrow_blue_down.svg);
	background-repeat: no-repeat;
	background-position: right 3px center;
	background-size: 20px;
}

input[type=checkbox],input[type=radio] {
  display: none;
}

label {
    display: inline-block;
    padding: 10px 0;
}

input[type=checkbox]+span {
	background-image : url(../img/icon_check.png);
	background-repeat: no-repeat;
	background-position: left center;
	padding: 4px 10px 2px 25px;
}

input[type=checkbox]:checked+span {
	background-image : url(../img/icon_check_active.png);
}

input[type=radio]+span{
	background-image : url(../img/icon_radio.png);
	background-repeat: no-repeat;
	background-position: left center;
	padding: 4px 10px 2px 25px;
}

input[type=radio]:checked+span{
	background-image : url(../img/icon_radio_active.png);
}

button,
.button {
	color: #fff;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	background-color: #32b7d4;
	border-radius: 3px;
	border: none;
	padding: 10px 50px;
	margin: 0 auto;
	cursor: pointer;
}

button:disabled {
	opacity: 0.5;
}

footer {
    text-align: center;
	margin-top: 20px;
	margin-bottom: 50px;
}

/* SP ======================================*/
@media only screen and (max-width:749px) {
/*==========================================*/

	.schooltype {
		display: block;
	}
}

