@charset "UTF-8";

html, body, h1, h2, h3, h4, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	font-weight: normal;
	font-size: 100%;
	vertical-align:baseline;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}

html {
	font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
}

article, header, footer, aside, figure, figcaption, nav, section { 
	display:block;
}

body {
	font-size:14px;
	line-height: 1.3;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
ol, ul {
	list-style: none;
	list-style-type: none;
}

a{
	text-decoration:none;
	color:#00479d;
}


label {
	line-height: 135%;
	position: relative;
	margin: 0 20px 10px 0;
	cursor: pointer;
	display: inline-block;
}

input[type="checkbox"]{
	position: relative;
	margin: 0 10px 0 0;
	cursor: pointer;
	border:none;
	border-radius: 0;

}

input[type="checkbox"]:before {
	position: absolute;
	z-index: 1;
	top: 0.125rem;
	left: 0.1875rem;
	width: 0.75rem;
	height: 0.375rem;
	content: '';
	-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
	transition:         transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
	-webkit-transform: rotate(-45deg) scale(0, 0);
	transform: rotate(-45deg) scale(0, 0);
	border: 2px solid #00479d;
	border-top-style: none;
	border-right-style: none;
}

input[type="checkbox"]:checked:before {
	-webkit-transform: rotate(-45deg) scale(1, 1);
	transform: rotate(-45deg) scale(1, 1);
}

input[type="checkbox"]:after {
	position: absolute;
	top: -0.125rem;
	left: -1px;
	width: 1rem;
	height: 1rem;
	content: '';
	cursor: pointer;
	border: 2px solid #f2f2f2;
	background: #ffffff;
}

select {
	border: 2px solid #f2f2f2;
	width: 200px;
	padding: 5px;
	text-align: center;
	margin-bottom: 10px;
	margin-right:20px;
}

textarea {
	width: 100%;
	padding: 5px 0;
	height:100px;
	margin-bottom:10px;
}

input[type="text"], input[type="password"] {
	width: 100%;
	padding: 5px 0;
	margin-bottom:10px;
}