@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="text"] {
	border: solid 1px hsl(0, 0%, 85%);
	color: hsl(0, 0%, 15%); 
	font-family: inherit;
	font-size: inherit;
	ime-mode: active;
	padding: 6px;
	
	/* 角を丸くする */
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
input[type="number"], 
input[type="tel"], 
input[type="password"] {
	border: solid 1px hsl(0, 0%, 85%);
	color: hsl(0, 0%, 15%);
	font-family: inherit;
	font-size: inherit;
	ime-mode: disabled;
	padding: 6px;
	
	/* 角を丸くする */
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
input[type="number"] {
	text-align: right;
}
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%, 76%);
}
.margin-top-4px {margin-top: 4px;}
.margin-top-8px {margin-top: 8px;}
.margin-top-12px {margin-top: 12px;}
.margin-top-16px {margin-top: 16px;}
.margin-top-30px {margin-top: 30px;}
p {
	line-height: 176%;
	margin: 0;
}
select {
	border: solid 1px hsl(0, 0%, 85%);
	color: hsl(0, 0%, 15%);
	font-family: inherit;
	font-size: inherit;
	padding: 6px;
	
	/* 角を丸くする */
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
table {
	border-spacing: 0;
	font-size: inherit;
}
table th {
	font-weight: normal;
}
textarea {
	border: solid 1px hsl(0, 0%, 85%);
	color: hsl(0, 0%, 15%);
	font-family: inherit;
	font-size: inherit;
	ime-mode: active;
	padding: 6px;
	
	/* 角を丸くする */
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
textarea::placeholder {
	color: hsl(0, 0%, 76%);
}
ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
