@charset "utf-8";

/*--------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font-style: normal;
	font-weight: normal;
	vertical-align: baseline;
}

/*行の高さをフォントサイズと同じにする*/
body {
	line-height: 1;
}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更する*/
/*
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
*/

html {
    overflow-y: scroll;
}

/*ol、ulのマーカー（行頭記号）を表示しない*/
/*
ol, ul {
	list-style: none;
}
*/

/*引用符の表示を出さない*/
blockquote, q {
	quotes: none;
}

/*blockquote要素、q要素の前後にコンテンツを追加しない*/
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;
}

/*隣接するセルのボーダーを重ねて表示し、間隔を0に指定する*/
table {
    border-collapse: collapse; 
    border-spacing: 0;
}

/*画像を縦に並べたときに余白を作らない*/
img {
	font-size: 0;
	line-height: 0;
	vertical-align: top;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくする*/
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #cccccc;
	margin: 1em 0;
	padding: 0;
}

/*縦方向の揃え位置を中央揃えに指定する*/
input, select {
	vertical-align: middle;
}

caption, th {
    text-align: left;
}

/*
a:focus {
	outline: none;
}
*/

.clearfix:after {
  content: ".";  /* 新しいコンテンツ */
  display: block;
  clear: both;
  height: 0;
  visibility: hidden; /* 非表示に */
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
  /*\*//*/
  height: auto;
  overflow: hidden;
  /**/
}

.both {
	clear: both;
}

.inline_block {  
	display: inline-block;  
	*display: inline;  
	*zoom: 1;  
}