@charset "utf-8";
/*================================================

base.css

================================================*/


/*=======================================
Reset Stylesheet
=======================================*/

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, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video { 
	margin:0;
	padding:0;
	border:0;
	outline:0;
	vertical-align:baseline;
	background:transparent;
	}

body {
	/* line-height:1; */
	}

article, aside, dialog, figure, footer, header,
hgroup, nav, section {
	display:block;
	}
	
ol, ul {
	list-style: none;
	}

blockquote, q {
	quotes:none;
	}

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

a {
	margin:0;
	padding:0;
	border:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
	}

ins {
	background-color:#ff9;
	color:#000;
	text-decoration:none;
	}

mark {
	background-color:#ff9;
	color:#000;
	font-style:italic;
	font-weight:bold;
	}

del {
	text-decoration: line-through;
	}

abbr[title], dfn[title] {
	border-bottom:1px dotted #000;
	cursor:help;
	}

table {
	border-collapse:collapse;
	border-spacing:0;
	}

hr {
	display:block;
	height:1px;
	border:0;
	border-top:1px solid #ccc;
	margin:1em 0;
	padding:0;
	}

input, select {
	vertical-align:middle;
	}


/*----------------------------------------
reset +
----------------------------------------*/
a {
	text-decoration: none;
	outline: none;/*リンクをクリックしたときに表示される点線を消去*/
	}
	
ul li { list-style-type: none; }
	
p { 
	margin:0; 
	line-height:1.0;
	}



/*=======================================
Basic Set
=======================================*/

/*----------------------------------------
__書体
----------------------------------------*/
	
body, textarea {
	font-family: "游ゴシック", "YuGothic", 'ヒラギノ角ゴ ProN W3', "Hiragino Kaku Gothic ProN", "Meiryo", Helvetica, Arial, sans-serif;
	}
	
/*----------------------------------------
__IMG rollOver
----------------------------------------*/
img{
	border:0;
	}
	
a img {
	border:0;
	}
	
.rf07 a:hover img{
	filter:alpha(opacity=70);  /* IE7以下用 */
	-ms-filter: "alpha(opacity=70)"; /* IE8用 */
	opacity: 0.7; /* Firefox 1.5以上, Opera, Safari用 */
	}

/*----------------------------------------
__回り込みさせない（p class=など）
----------------------------------------*/
.no-wrap{
    overflow:hidden;
    _zoom:1;
	}

/*----------------------------------------
__ float （サイズwidthは各所で設定）
----------------------------------------*/
.f_right {
	float: right;
	display: inline;
	}
.f_left {
	float: left;
	display: inline;
	}

/*----------------------------------------
__ clearfix
----------------------------------------*/
.clearfix:after {
	content: ".";  /* 新しい要素を作る */
	display: block;  /* ブロックレベル要素に */
	clear: both;
	height: 0;
	visibility: hidden;
	}

.clearfix {
	min-height: 1px;
	}

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



/*=======================================
Nearly OFF
=======================================*/

/*----------------------------------------
__IE7のみ／サムネイル縮小表示用
----------------------------------------*/
body img {
	-ms-interpolation-mode: bicubic;
	} 

/*----------------------------------------
__IE6用下部スペース潰し
----------------------------------------*/
img {
	vertical-align:bottom;
	}
