@charset "utf-8";

body {
	line-height: 1.75; }

article, aside, details, figcaption, figure, footer, header,
hgroup, menu, nav, section { display: block; }

/* img */
img,
	/*box*/
div, p, blockquote,
	/* heading */
h1, h2, h3, h4, h5, h6,
	/* list */
ul, ol, li, dl, dt, dd,
	/* form */
form, fieldset,
	/* address */
address,
	/* html5 */
article, aside, dialog, figure, footer, header, hgroup, nav, section {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
	list-style-type: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* html5 */
article, aside, dialog, figure, footer, header, hgroup, nav, section {
	display: block;
}
/* table */
table, th, td {
	border: none;
	border-collapse: collapse;
	border-spacing: 0;
	padding: 0;
	margin: 0;
}
th {
	text-align: left;
	font-weight: normal;
	vertical-align: top;
}
caption {
	text-align: left;
}


/*-----------------------------------------------
独自追加部分開始
-----------------------------------------------*/

/*
余計な隙間・ボーダーの削除
半角文字も改行可能にする
フォントサイズの初期設定（html62.5%に対する1.2remなので、12px）
タップ時の色を消す
ベースラインを揃える
背景を透過と明示する
iOSでの文字サイズの自動変更バグを改善する
*/
* {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	word-wrap: break-word;
	vertical-align: baseline;
	background: transparent;
	-webkit-text-size-adjust: 100%;
}

/*画像のverticalalignの変更*/
img{
	vertical-align: top;
	backface-visibility:hidden;
	-webkit-backface-visibility: hidden;
}

/*
文字サイズ12px
行の高さ1.75倍=21px
フォントの指定
*/
html { font-size: 62.5%; }

body {
	background-color: #fff;
	font-family: verdana, "qMmpS Pro W3", "Hiragino Kaku Gothic Pro", Osaka, Meiryo, "ＭＳ ゴシック", "MS PGothic", Sans-Serif;
}

/*chromeの文字サイズバグ対策*/
textarea{
	font-family: verdana, "qMmpS Pro W3", "Hiragino Kaku Gothic Pro", Osaka, Meiryo, "ＭＳ ゴシック", "MS PGothic", Sans-Serif;
}
/*andoroid4.2のテキストが折り返される問題の解消*/
p{
	background-image: url(../img/s.png);
}

ul, ol { list-style: none; }

.clearfix:after {
	content: "";
	display: block;
	clear: both;
}

.clearfix { zoom: 1; }

/* リンク基本設定 */
a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	background: transparent;
	text-decoration: none;
	outline: none;
}

a:link {
	color: #000;
	outline: none;
}

a:visited {
	color: #000;
	outline: none;
}

a:hover {
	color: #000;
	outline: none;
}

a:active {
	color: #000;
	outline: none;
}
