@charset "utf-8";
/* *********************************************************
リセットCSS
Modified  : 2012-01-12

Base     : normalize.css (2011-08-12)
Auther   : Nicolas Gallagher and Jonathan Neal
URI      : http://necolas.github.com/normalize.css/
※日本語参考サイト http://nvm.jp/web/xhtml_css/normalize-css-japanese/
********************************************************* */
/* HTML5 新要素
--------------------------------------------------------- */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
	display: block;
}
audio,
canvas,
video {
	display: inline-block;
	*display: inline;
	*zoom: 1;
}
audio:not([controls]) {
	display: none;
}
[hidden] {
	display: none;
}
/* ベース
--------------------------------------------------------- */
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;
}
html {
	height: 100%; /* スクロールバーを常に表示 */
	overflow-y: scroll; /* スクロールバーを常に表示 */
	font-size: 100%; /* IE6-7 */
	-webkit-tap-highlight-color: rgba(0,0,0,0); /* iOS、Android：タップ時のハイライトカラーを消す */
	-webkit-text-size-adjust: 100%; /* iOS：画面向きによる文字サイズの自動調整を停止 */
	-ms-text-size-adjust: 100%; /* iOS：画面向きによる文字サイズの自動調整を停止 */
}
body {
	word-wrap: break-word; /* 必要に応じて単語の途中で改行(日本語には対応していない) */
	letter-spacing: 0; /* IE7：ページの拡大によるレイアウト崩れを防ぐ */
}
body,
button,
input,
select,
textarea {
	font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ ゴシック", "Osaka", sans-serif;
}
/* タイポグラフィ
--------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: normal;
}
address,
cite,
code,
em,
i,
var,
mark {
	font-style: normal;
}
b,
strong {
	font-weight: bold;
}
ins {
	text-decoration: none;
}
s,
del {
	text-decoration: line-through;
}
mark {
	background: #ff0;
	color: #000;
}
small {
	font-size: 100%; /* サイズを本文と揃える */
}
abbr,
dfn {
	border: 0;
	font-style: normal;
	font-variant: normal;
}
abbr[title],
dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}
pre,
code,
kbd,
samp {
	font-family: monospace, monospace;
	_font-family: 'courier new', monospace;
	font-size: 1em;
}
pre {
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
}
sup {
	vertical-align: text-top;
}
sub {
	vertical-align: text-bottom;
}
/* リンク
--------------------------------------------------------- */
a {
	text-decoration: underline;
}
a:hover {
	outline: 0; 
}
a:focus {
	outline: thin dotted;
}
a:active {
	outline: 0; 
}
/* 置換要素
--------------------------------------------------------- */
img {
	-ms-interpolation-mode:bicubic; /* IE7：拡大縮小時の表示をなめらかに */
}
img,
object,
param,
embed {
	border: 0;
	outline: 0; /* Firefox：Flashクリック時の点線を消す */
	vertical-align: bottom; /* 下の隙間をなくす */
	line-height: 0;
}
svg:not(:root) {
	overflow: hidden; /* IE9：verflowの表示問題を修正 */
}
hr {
	display: none;
}
/* リスト
--------------------------------------------------------- */
ol,
ul {
	list-style: none;
}
/* テーブル
--------------------------------------------------------- */
table {
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
	table-layout: fixed;
}
th,
caption {
	font-weight: normal;
	text-align: left; 
}
th,
td {
	vertical-align: top;
}
/* フォーム関連
--------------------------------------------------------- */
legend {
	border: 0;
	*margin-left: -7px;
}
button,
input,
select,
textarea {
	font-size: 100%; /* 上位要素のfont-sizeが継承されないので指定が必要 */
	margin: 0;
	vertical-align: baseline;
	*vertical-align: middle;
}
button,
input {
	line-height: normal;
	*overflow: visible;
}
table button,
table input {
	*overflow: auto;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	cursor: pointer;
	-webkit-appearance: button; /* iOS：スタイルが適用されない問題を修正 */
}
input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
}
input[type="search"] {
	-webkit-appearance: textfield;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}
textarea {
	overflow: auto;
	vertical-align: top;
}
/* clearfix
--------------------------------------------------------- */
.clearfix:before,
.clearfix:after {
	content: "";
	display: table;
}
.clearfix:after {
	clear: both;
}
.clearfix {
	zoom:1; /* IE6-7 */
}
