html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video, input, textarea, button{ 
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}
p{
	line-height: 1.8;
}
sup{
	vertical-align: text-top;
    font-size: 10px;
}
html, body{
	font-size: 16px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-feature-settings: "halt" 1;
	color: #111;
}
a{
	color: inherit;
}
img{
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: bottom;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
	table-layout: fixed;
}
.clearfix:before, .clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}
.clearfix {
    *zoom: 1;
}


input, button, select, textarea {
    -webkit-appearance: none;
    outline: none;
}
input[type="text"],
input[type="email"],
select{
	border: 1px solid #CCCCCC;
	background: #F8F7F7;
	border-radius: 2px;
	height: 40px;
	font-size: 12px;
	padding: 0 10px;
}
select:hover,
label:hover{
	cursor: pointer;
}
input[type="radio"]{
  display: none;
}
input[type="radio"] + label{
	padding-left: 21px;
	position:relative;
	margin-right: 21px;
}
input[type="radio"] + label::before{
	content: "";
	display: block;
	position: absolute;
	top: -1px;
	left: 0;
	width: 14px;
	height: 14px;
	border: 1px solid #9E9E9E;
	border-radius: 50%;
}
input[type="radio"]:checked + label::after{
	content: "";
	display: block;
	position: absolute;
	top: 2px;
	left: 3px;
	width: 10px;
	height: 10px;
	background: #868CAD;
	border-radius: 50%;
}

input[type="checkbox"]{
	display: none;
}
input[type="checkbox"] + label{
	padding-left: 20px;
	position:relative;
	margin-right: 20px;
}
input[type="checkbox"] + label::before{
	content: "";
	display: block;
	position: absolute;
	top: -1px;
	left: 0;
	width: 15px;
	height: 15px;
	border: 1px solid #999;
	border-radius: 4px;
}
input[type="checkbox"]:checked + label::after{
	content: "";
	display: block;
	position: absolute;
	top: -1px;
	left: 5px;
	width: 5px;
	height: 10px;
	transform: rotate(40deg);
	border-bottom: 2px solid #868CAD;
	border-right: 2px solid #868CAD;
}