/* ===================================================================
CSS information
 file name  :  default.css
 style info :  リセット及びbody初期設定 (このスタイルシートは基本的に変更しない)
=================================================================== */
*{
    -webkit-appearance: none;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
html,
body{
	width:100%;
	height:100%;
}
body{
	line-height:1;
	margin:0;
  -webkit-text-size-adjust: 100%;
}
h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ul, ol, li, figure, small, p {
	margin: 0;
	padding:0;
	font-size:100%;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
  display:block;
}
hr{
	display:block;
	height:1px;
	border:0;
	border-top:1px solid #cccccc;
	margin:1em 0;
	padding:0;
}
ul{
	list-style:none;
	padding:0;
	margin:0;
}
li {
  padding:0;
	margin:0;
}

input[type="submit"]{
	cursor:pointer;
	border:none;
	}
textarea{
	resize:vertical;
	overflow:hidden;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	box-shadow:none;
	-moz-box-shadow:none;
	-webkit-box-shadow:none;
	-webkit-appearance:none;
	background-color:#fff;
	background-image:none;
}
a {
	-webkit-touch-callout:none;
	-webkit-tap-highlight-color:rgba(2,201,251,0.12);	
}
table{
	border-collapse:collapse;
}

.clear {
	clear: both;
}
.clearfix:before, .clearfix:after {
	content: "";
	display: block;
}
.clearfix:after {
	clear: both;
}
.clearfix {
	zoom: 1;
}
