@charset "utf-8";

/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated:	2010-09-17
Author:	Richard Clark - http: //richclarkdesign.com 
Twitter:	@rich_clark
*/

/* 要素のフォントサイズやマージン・パディングをリセット */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	color: #000;
	}

/* 行の高さをフォントサイズと同じ値に変更（guts フォント関連を追加） */
body {
	line-height: 1;
	font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo/*,'ＭＳ Ｐゴシック','MS PGothic'*/,sans-serif;
	font-size: 13px;
	*font-size: small;
	/* font-family: Arial, Helvetica, sans-serif; */
	-webkit-text-size-adjust: 100%;
	}
/* SP（479px以下）
@media screen and (max-width: 479px){
	body {
		font-size: 14px;
		}
	} */

/* HTML5の新規要素をブロック要素へ変更 */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { 
	display: block;
	}

/* nav要素内のリストスタイルを非表示 */
ol, ul {
	list-style: none;
	}

/* 引用符を非表示 */
blockquote, q {
	quotes: none;
	}

/* 引用要素前後のコンテンツ追加を不可 */
blockquote: before, blockquote: after,
q: before, q: after {
	content: '';
	content: none;
	}

/* a要素のフォントサイズのリセット。フォントの縦揃えを親要素のベースラインに変更 */
a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	}

/* ins要素のデフォルト設定 */
ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
	}

/* mark要素のデフォルト設定（mark要素は検索結果時のハイライト表示等） */
mark {
	background-color: #ff9;
	color: #000; 
	font-style: italic;
	font-weight: bold;
	}

/* del要素を打ち消し線に変更 */
del {
	text-decoration: line-through;
	}

/* abbr,dfn要素のIEでの下部点線表示。オンマウス時のヘルプカーソル表示 */
abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
	}

/* 隣接するボーダーを重ねて表示。ボーダー間隔を0に指定。空白セルを表示 */
table {
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show; /* guts 追加 */
	}

/* hr要素の立体表示をリセット */
hr {
	clear: both;
	display: block;
	height: 1em;
	border: 0;
	border-bottom: 1px solid #ccc;
	margin: 0;
	padding: 0;
	*color: #ffffff; /* ie7以下 */
	}

/* input,select要素を縦揃えを中央揃えに変更 */
input, select {
	vertical-align: middle;
	}

/* 画像縦並び時の余白を削除（日本語訳した人が追加） */
img {
	vertical-align: top;
	font-size: 0;
	line-height: 0;
	}
