@charset "UTF-8";

/* 本ファイルでは、クラス指定のない HTML タグのみでの初期状態を設定します */

* {-webkit-box-sizing:border-box}/* Safari, Chrome */
* {-moz-box-sizing:border-box}/* Firefox */
* {-ms-box-sizing:border-box}/* IE */
* {box-sizing:border-box}/* Opera */

body {
	color: hsl(0, 0%, 38%);
	font-family: Meiryo,'メイリオ','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3';
	font-size: 14px;
	margin: 0;
}
h1,h2,h3,h4,h5,h6 {
	font-size: inherit; 
	font-weight: normal; 
	line-height: 176%; 
	margin: 0; 
}
input[type="checkbox"] {
	cursor: pointer;
}
input[type="number"], 
input[type="tel"], 
input[type="password"], 
input[type="text"], 
select, 
textarea {
	border: solid 1px hsl(0, 0%, 85%);
	color: hsl(0, 0%, 15%);
	font-family: inherit;
	font-size: inherit;
	outline: none;
	padding: 6px;
	
	/* 角を丸くする */
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
input[type="button"], 
input[type="submit"], 
input[type="reset"] {
	color: hsl(0, 0%, 15%); 
	font-family: inherit;
	font-size: inherit;
}
input::placeholder {
	color: hsl(0, 0%, 85%); 
}
.margin-bottom-2px {
	margin-bottom: 2px; 
}
p {
	line-height: 176%;
	margin: 0;
}
table {
	border-spacing: 0;
	font-size: inherit;
}
table th {
	font-weight: normal;
}
textarea::placeholder {
	color: hsl(0, 0%, 85%); 
}
ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
