@charset "UTF-8";


/* ブラウザ間の差異をリセット *⁄
/* ================================================================================ */
/* タグがをリセット */
html,body, p, a, img,
h1, h2, h3, h4, h5, h6,
ul, li, ol, dl, dt, dd,
table, th, td,
caption, form, address, input, select {
	margin: 0;
	padding: 0;
	border: 0;
	font-style: normal;
	font-weight: normal;
	text-decoration: none;
	list-style-type: none;
	font-size: 100%;
}


/* 各タグの初期設定 */
/* ================================================================================ */
/* スクロールバー常時表示 */
html {
	overflow-y: scroll;
}
/* 必ず【strong】タグが反映されるように設定 */
strong {
	font-weight: bold !important;
}
/* 画像の下にできる隙間をなくす *⁄
/* ================================================================================ */
img {
 vertical-align: bottom;
 }
/* 画像の下にできる隙間をなくす *⁄
/* ================================================================================ */
textarea {
	margin: 0 0 5px 0;
	padding: 0;
	font-style: normal;
	font-size: 100%;
	width: 100%;
}


/* FireFox リンク選択時の点線を消す */
/* ================================================================================ */
a {
    overflow: hidden;
    outline: none;
}


/* clearfix *⁄
/* ================================================================================ */
.clearfix {
	min-height: 1%;
}
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
* html .clearfix {
	height: 1%;
	height: auto;
	overflow: hidden;
}