@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 {
	color: hsl(0, 0%, 15%);
	font-size: inherit;
	font-weight: normal;
	margin: 0; 
}
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="button"], 
input[type="submit"], 
input[type="reset"] {
	color: hsl(0, 0%, 15%); 
	font-family: inherit;
	font-size: inherit;
}
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;
}
ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

@media only screen and (max-width:767px) {
	p {
		line-height: 162%;
	}
}
