/*★文字コード--------------------------------------------------*/
@charset "Shift_Jis";
/*★画面全体----------------------------------------------------*/
BODY{
	margin:0px;
	padding:0px;
	width:100%;
	height:100%;
	/*☆画面全体の背景色*/
	background:#fff2f7 url('/pc/img/background1.gif');
	/*☆画面全体の配置*/
	text-align:center;
	/*☆フォント設定*/
	color:#000000;
	font-size:x-small;
	font-family:"MS PGothic","MS Gothic";
	/*☆スクロールバーの色*/
	scrollbar-arrow-color:#ff7f9e;
	scrollbar-face-color:#ffe5ef;
	scrollbar-track-color:#ffffff; 
	scrollbar-highlight-color:#ffffff;
	scrollbar-shadow-color:#ffcce0;
	scrollbar-3dlight-color:#ffffff;
	scrollbar-darkshadow-color:#ffcce0;
}
/*☆Netscape用にここでも背景色を指定*/
#screen{
	background:#fff2f7 url('/pc/img/background1.gif');
}
/*★コンテンツ領域----------------------------------------------
　中央に配置=> margin:0 auto 0;   BODY{}の中も書き換え=> text-align:center;
　右側に配置=> margin:0 0 0 auto; BODY{}の中も書き換え=> text-align:right;
　左側に配置=> margin:0 auto 0 0; BODY{}の中も書き換え=> text-align:left;
*/
#content{
	height:100%;
	width:780px;
	margin:0 auto 0;
	background:#ffffff url('/pc/img/background2.gif');
	border:2px #bc3a91 solid;
	font-size:x-small;
	text-align:left;
}
/*★ヘッダー領域------------------------------------------------
　使用しない=> display:none;
　使用する  => display:block;
*/
#header{
	display:block;
	clear:both;
	height:150px;
	width:780px;
}
/*☆ログアウト状態のヘッダー
　使用しない=> display:none;
　使用する  => display:block;
*/
#header .logout_img{
	/*☆画像の場合*/
	display:block;
	clear:both;
	height:150px;
	width:780px;
	background-image:url("/pc/img/header1.png");
}
#header .logout_swf{
	/*☆Flashの場合(ファイル名は logout.swf)*/
	display:none;
	clear:both;
	height:150px;
	width:780px;
}
/*☆ログイン状態のヘッダー
　使用しない=> display:none;
　使用する  => display:block;
*/
#header .login_img{
	/*☆画像の場合*/
	display:none;
	clear:both;
	height:150px;
	width:780px;
	background-image:url("/pc/img/header2.png");
}
#header .login_swf{
	/*☆Flashの場合(ファイル名は login.swf)*/
	display:block;
	clear:both;
	height:150px;
	width:780px;
}
/*★メニュー部分------------------------------------------------
　右よせ配置=> float:right;
　左よせ配置=> float:left;
*/
#menu{
	position:rerative;
	float:left;
	margin:10px 0px 10px 5px;
	width:200px;

}
#menu #login{
	display:block;
	width:200px;
	padding-left:10px;
}
#menu #mobile{
	display:block;
	width:200px;
	padding-left:10px;
}
/*★メイン領域--------------------------------------------------
　右よせ配置=> float:right;
　左よせ配置=> float:left;
*/
#main{
	position:rerative;
	clear:right;
	float:left;
	padding:10px 0px 10px 10px;
	width:550px;
}
/*★フッター領域------------------------------------------------
　使用しない=> display:none;
　使用する  => display:block;
*/
#footer{
	clear:both;
	display:block;
	height:10px;
	width:780px;
}
/*☆ログアウト状態の画像*/
#footer .logout{
	clear:both;
	display:none;
	height:50px;
	width:780px;
	background-image:url("/pc/img/footer.png");
}
/*☆ログイン状態の画像*/
#footer .login{
	clear:both;
	display:none;
	height:50px;
	width:780px;
	background-image:url("/pc/img/footer.png");
}
/*★以下は細かいデザインについて--------------------------------*/
/*☆ページタイトル*/
SPAN.title{
	display:block;
	margin:10px 0px 10px;
	text-align:center;
	font-size:x-large;
	color:#bc3a91;
}
/*☆罫線色*/
SPAN HR{
	display:none;
}
SPAN.line{
	display:block;
	margin-top:0px;
	margin-bottom:10px;
	height:15px;
	width:540px;
	background:url("/pc/img/line.gif") repeat-x bottom;
}
/*☆強調色*/
STRONG{
	color:#bc3a91;
}
/*☆FORM要素*/
FORM{
	display:block;
	margin:0px;
}
INPUT.text,TEXTAREA,SELECT{
	border:1px #999999 solid;
	color:#bc3a91;
	background-color:#ffffff;
}
INPUT.button{
	cursor:hand;
	height:30px;
	border:2px #f7e1f7 outset;
	text-align:center;
	font-weight:bold;
	font-size:10pt;
	color:#bc3a91;
	background-color:#ffe6ff;
}
/*☆テーブル要素*/
TABLE.layout{
	display:block;
	border-collapse:collapse;
	empty-cells:show;
	border:none;
	font-size:x-small;
}
.layout TH{
	padding:2px;
	border:1px #d1cbd2 solid;
	background-color:#ffe6ff;
	color:#bc3a91;
}
.layout TD{
	padding:2px;
	border:1px #d1cbd2 solid;
	background-color:#ffffff;
	color:#bc3a91;
}
/*☆リスト要素*/
DL{
	display:block;
}
DT{
	margin-top:0px;
	padding-left:20px;
	height:15px;
	background:url("/pc/img/list.gif") no-repeat;
	background-position-x:left;
	background-position-y:top;
	color:#bc3a91;
}
DT STRONG{
	color:#bc3a91;
	font-weight:bold;
}
DD{
	margin-left:20px;
}
/*☆無料登録ボタンの画像(サイズ調整はここで)*/
IMG#regist{
	border:none;
	height:63px;
	width:249px;
}
