@charset "utf-8"; 
/* ===================================================================
CSS information
 file name  :  default.css
 style info :  リセット及びbody初期設定 (このスタイルシートは基本的に変更しない)
=================================================================== */
/*--- reset */
html, body	{
	margin: 0;
	padding: 0;
	height:100%; 
	_height: 100%;   
	_overflow: auto;  
}

html {
	overflow-y: scroll;
	min-height:100%;
}
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;
}
address,caption,cite,code,dfn,em,strong,th,var {
	font-style: normal;
	font-weight: normal;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption,th {
	text-align: left;
}
q:before,q:after {
	content: '';
}
object,
embed {
	vertical-align: top;
}
hr,legend {
	display: none;
}
h1,h2,h3,h4,h5,h6 {
	font-size: 100%;
	font-weight: normal;
}
img,abbr,acronym,fieldset {
	border: 0;
}
li {
	list-style-type: none;
}
img {
	border: 0;
	vertical-align:bottom;
}
.cl {
	clear: both;
}
.center {
	text-align: center;
	overflow: hidden;
}

/*--- default ----------------------------------*/
body {
	width:100%;
	text-align: justify;
	text-justify: inter-ideograph;
	text-align: left;
	font-size: 14px;
	line-height: 140%;
	color: #333333;
	min-width: 950px;
	background-color: #ffffff;
	font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
* html body {	/* for IF6 */
	font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif
}

a:link {
color: #333333;
text-decoration: none;

}

a:visited {
color: #333333;
text-decoration: none;
}

a:hover {
text-decoration: underline;
color: #333333;
}

a:active {
color: #333333;
}
a img  {  
    -webkit-transition: 0.3s ease-in-out;  
       -moz-transition: 0.3s ease-in-out;  
         -o-transition: 0.3s ease-in-out;  
            transition: 0.3s ease-in-out;  
}  
a:hover img  {  
    opacity: 0.8;  
    filter: alpha(opacity=80);  
}   