@charset "utf-8";
/* CSS Document */

/* よく登場する要素のリセット */
h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd, span,
table, caption, th, td, img, form {
        margin: 0;
        padding: 0;
        border: none;
        font-style: normal;
        font-weight: normal;
        font-size: 100%;
        list-style-type: none;
}

/* テキストエリア内文字サイズのブラウザ間での差異をなくす */
textarea { font-size: 100%; }

/* hr 要素は不可視で使う */
hr { display: none; }

/* clearfix */
/* For modern browsers */
.clearfix:before,
.clearfix:after {
	content:"";
	display:block;
	overflow:hidden;
}
.clearfix:after {
	clear:both;
}
/* For IE 6/7 (trigger hasLayout) */
.clearfix {
	zoom:1;
}
/* input 初期化 */
input[type="submit"],
input[type="button"],
input[type="password"],
input[type="text"],
textarea {
	-webkit-appearance: none;
	appearance: none;
	border: none;
	border-radius: 0;
	box-sizing: border-box;
}
input[type="submit"]:-webkit-search-decoration,
input[type="button"]:-webkit-search-decoration,
input[type="password"]:-webkit-search-decoration,
input[type="text"]:-webkit-search-decoration {
	display: none;
}
input[type="submit"]:focus,
input[type="button"]:focus,
input[type="password"]:focus,
input[type="text"]:focus,
textarea:focus {
	-webkit-appearance: none;
	appearance: none;
	cursor: auto;
	outline: none;
}
/* For IE 10/11 テキストボックスの表示されるバツマークを非表示にする */
input::-ms-clear {
	display:none;
}
input[type="text"],
input[type="password"],
input[type="button"],
input[type="submit"] {
	font-family : inherit;
	vertical-align: middle;
	font-size: inherit;
	outline: none;
	line-height: 1;
	box-sizing: border-box;
	cursor: pointer;
}
/* select */
select {
	font-family : inherit;
	vertical-align: middle;
	font-size: inherit;
	outline: none;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
  cursor: pointer;
}
::-ms-expand {
	display: none;
}
