﻿@charset "utf-8";

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

	reset.css
	Last Up Date 2013/12/18

 -----------------------------------------
	INDEX
 -----------------------------------------
	1. Browser Reset
	   & Default Setting CSS
	
	2. Default Setting
	
	3. Scrooll Bar Setting
	
	4. Print Setting CSS for IE
	
	5. Clearfix

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


/* Browser Reset
   & Default Setting CSS
========================================== */
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;
}
body{
	background: #d1d1d1;
	font-size: 12px;
	/*font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, Vendana, sans-serif;*/
    font-family: Lucida Grande, Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic Pro, "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", sans-serif;
    line-height: 1.5;
	color: #666;
}
/* ie8 */
html>/**/body { font-size /*¥**/: 75%¥9;}
table {
	font-size: inherit;
	font: 100%;
	width: auto;
	border-spacing: 0;
	border-collapse: collapse;
	/border-collapse: collapse; /* ie6,7 */
	word-break: break-all;
	word-wrap: break-word;
}
fieldset,img { 
	border: 0;
}
address,caption,cite,code,dfn,em,strong,th,var {
	font-style: normal;
	font-weight: normal;
}
ol,ul {
	list-style: none;
}
caption,th {
	text-align: left;
}
a {
	outline: none;
}
h1,h2,h3,h4,h5,h6 {
	font-size: 100%;
	font-weight: normal;
}
q:before,q:after {
	content:'';
}
abbr,acronym {
	border: 0;
}
li img { 
	font-size: 0;
	line-height: 0;
	vertical-align:top;
}
/* Scrooll Bar Setting CSS
========================================== */
html { /* Always show scroll bars */
	overflow-y: scroll;
	/overflow-y: auto;
	height: 100%;
	margin-bottom: 1px;
}
/* Print Setting CSS for IE
========================================== */
@media print {
	body {
		_zoom: 66%; /*WinIE only */
		-ms-zoom: 66%; /*WinIE only */
	}
	#containt_top_right {
		_margin-left: -1px;
	}
	#containt_right {
		_margin-left: -1px;
	}
}
/* Clearfix CSS
========================================== */
.clearfix:before,
.clearfix:after {
	content: "";
	display: table;
}
.clearfix:after {
	clear: both;
}
/* for IE 6/7 */
.clearfix {
	zoom:1;
}
