@charset "UTF-8";
/* --------------------------------
	reset.css
--------------------------------
reset.cssは初期化用のCSSファイルです。
各HTMLに適用されるブラウザの初期値を定義します。
-------------------------------- */

 
body, div, form, h1, h2, h3, h4, h5, h6, p, address, dl, dt, dd, ul, ol, li, table, th, td {
	margin: 0;
	padding: 0;
	border: none;
	font-size: 100%;
	font-style: normal;
}
html {
	font-size: 62.5%;
}
body {
	background: #fff;
	color: #000;
	font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','Yu Gothic', YuGothic,'メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
	-webkit-text-size-adjust: none;
}
hr {
	display: none;
}
h1, h2, h3, h4, h5, h6, dt, th, strong, em {
	font-style: normal;
	font-weight: bold;
}
li {
	list-style: none;
}
img {
	margin: 0;
	padding: 0;
	border: none;
	vertical-align: bottom;
}
table {
	border-collapse: collapse;
}
label {
	cursor: pointer;
}
input {
	padding: 0;
	margin: 0;
}
input:focus {
	/* background: #f6e2e7;*/
	outline: none;
}
textarea:focus {
	/* background: #f6e2e7;*/
	outline: none;
}
a {
	color: #000;
	text-decoration: none;
	outline: none;
}
a:visited {
	color: #000;
}

 input::placeholder {
 color: #ccc;
}
 textarea::placeholder {
 color: #ccc;
}

/* IE */
input:-ms-input-placeholder {
 color: #ccc;
}

/* Edge */
input::-ms-input-placeholder {
 color: #ccc;
}
