@charset "shift_jis";


/* ------------------------------------------------------------------------------------------ *
	各HTMLタグの初期化とBODYタグ、Aタグの指定
	
	■目次
		□body 初期設定
		□Reset & 初期設定
		□Aタグ指定
		□基本フォントサイズ指定
* ------------------------------------------------------------------------------------------ */


/** -------------------------------- **
	body 初期設定
*** ----------------------------------------------------------------- ***/


* {
margin: 0px;
padding: 0px;
}

html {
width:100%;
height:100%;
background-color:#ffffff;
overflow-y:scroll;/* For Mozilla's bug */
}

body {
height:100%;
margin:0;
padding:0px;
text-align:center;
color:#130032;
font-size:12px;
background:url(../common/images/bg_body.jpg) center top;
}


/** -------------------------------- **
	Reset & 初期設定
*** ----------------------------------------------------------------- ***/

h1, h2, h3, h4, h5, h6, p, span, ul, ol, li, dl, dt, dd, table, th, td, input, legend, div, form, hr, address {
margin:0;
padding:0;
list-style:none;
font-weight: normal;
font-style: normal;
}

p, h1, h2, h3, h4, h5, h6, ul, ol, dl, div, pre, blockquote, input {
word-break:break-all;
}

hr {display: none;}

a {
/*\*/
overflow: hidden;
/**/
}


/** -------------------------------- **
	Aタグ指定
*** ----------------------------------------------------------------- ***/

a:link {text-decoration:none; color:#0000A0;}
a:visited {text-decoration:none; color:#0000A0;}
a:hover, a:active {text-decoration:underline; color:#0000A0;}

a img {border:none;}


/** -------------------------------- **
	基本フォントサイズ指定
*** ----------------------------------------------------------------- ***/

.small {
font-size: 10px;
line-height: 14px;
}

.normal {
font-size: 12px;
line-height: 18px;
}

.large {
font-size: 14px;
line-height: 21px;
}

.x-large {
font-size: 18px;
line-height: 24px;
}

