@charset "utf-8";

/* ////////////////////////////////////////////////////////////////////////////////////////////////////
 *
 * ■□■□■　ブラウザデフォルト初期化CSS　■□■□■
 *
 * >>> INDEX
 *
 *  1.マージンとパディングの初期化
 *  2.FirefoxとOperaでのスクロールバー強制表示
 *  3.テキスト関連の初期化
 *  4.リンク関連の初期化
 *  5.リスト関連の初期化
 *  6.テーブル関連の初期化
 *  7.フォーム関連の初期化
 *  8.イメージ関連の初期化
 *  9.その他の初期化
 *
 * ///////////////////////////////////////////////////////////////////////////////////////////////// */

/* ----------------------------------------------------------------------------------------------------
 * ▼　1.マージンとパディングの初期化
 * --------------------------------------------------------------------------------------------------*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
	margin:0;
	padding:0;
}

/* ----------------------------------------------------------------------------------------------------
 * ▼　2.FirefoxとOperaでのスクロールバー強制表示
 * --------------------------------------------------------------------------------------------------*/
html {
	overflow-y: scroll;
}

/* ----------------------------------------------------------------------------------------------------
 * ▼　3.テキスト関連の初期化
 * --------------------------------------------------------------------------------------------------*/
address,
cite,
code,
dfn,
em,
strong,
th,
var {
	font-style: normal;
	font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: normal;
}

q:before,
q:after {
	content: '';
}

abbr,
acronym {
	border: 0;
}

sup,
sub {
	vertical-align: baseline;
	position: relative;
}

sup {
	top: -4px;
}

sub {
	top: 4px;
}

del {
	text-decoration: line-through;
}

ins {
	text-decoration: none;
}

/* ----------------------------------------------------------------------------------------------------
 * ▼　4.リンク関連の初期化
 * --------------------------------------------------------------------------------------------------*/
a {
	text-decoration: none;
	outline: none;
}

/* ----------------------------------------------------------------------------------------------------
 * ▼　5.リスト関連の初期化
 * --------------------------------------------------------------------------------------------------*/
ol,
ul {
	list-style: none outside;
}
dt {
	font-weight: normal;
}

/* ----------------------------------------------------------------------------------------------------
 * ▼　6.テーブル関連の初期化
 * --------------------------------------------------------------------------------------------------*/
table {
	border-collapse: collapse;
	border: none;
	border-spacing: 0;
	font-family: inherit;
	display: block;
}

caption {
	text-align: left;
	font-weight: normal;
}

th {
	vertical-align: top;
	font-weight: normal;
	text-align: left;
}

td {
	vertical-align: top;
}

/* ----------------------------------------------------------------------------------------------------
 * ▼　7.フォーム関連の初期化
 * --------------------------------------------------------------------------------------------------*/
fieldset {
	border: 0;
}
input {
	line-height: 1;
	padding: 0 5px;
	vertical-align: middle;
}
select {
	vertical-align: middle;
}
select option {
	padding: 0 5px;
}
optgroup {
	font-style: normal;
	font-weight: normal;
}
input,
select,
textarea,
optgroup {
	font-family: inherit;
}
label {
	cursor: pointer;
}

/* ----------------------------------------------------------------------------------------------------
 * ▼　8.イメージ関連の初期化
 * --------------------------------------------------------------------------------------------------*/
img,
object,
embed {
	border: none;
	vertical-align: bottom;
}

/* ----------------------------------------------------------------------------------------------------
 * ▼　9.その他の初期化
 * --------------------------------------------------------------------------------------------------*/
hr {
  height: 0;
  margin: 5px 0;
  border: none;
  border-top: 1px solid #000;
}
* html hr {/* for IE6 */
  margin: 0;
}
*:first-child + html hr {/* for IE7 */
  margin: 0;
}
