/* ************************************************ 
 *	共通設定
 * ************************************************ */
* {
	margin: 0px;
	padding: 0px;
}

body {
	color: #000000;
	font-size: 11px;
	font-family: "Verdana", "ヒラギノ丸ゴ Pro W3";
	line-height: 1.6em;
	background-color: #ffffff;
	text-align:center;
}

/*ショップ名文字サイズ*/
h1 {
	font-size: 16px;
font-weight: bold;

}

/*ページタイトル部分*/
h2 {
	font-size: 12px;
font-weight: bold;

}

h3 {
	font-size: 11px;
 font-weight: lighter;

}

br.clear {
	clear: both;
	font: 0pt/0pt sans-serif;
}

img {
	border: 0px;
}


/* ------------------------------------- 
 *	ページレイアウト
 * ------------------------------------- 
 *※ページ全体の幅は1000pxとなっています。
    幅を広げる場合は、以下の値を変更してください。
    .left（200px）･･･左メニューの幅
    .right（200px）･･･右メニューの幅
    .main（600px）･･･中央部分の幅
    #container（1000px）･･･全体の幅（.left、.right、.wrapperの合計値）
    #wrapper（800px）･･･3カラムレイアウト用（.left、.mainの合計値）
 * ------------------------------------- */

/*ページ全体の幅、レイアウトをセンタリング*/
#container {
	margin:10px auto;
	width:960px;
	text-align:left;
}

/*ヘッダー（ページタイトル、グローバルメニュー）*/
.header {
 width:100%;
 clear:left;
}

/*leftとmainを囲む*/
.wrapper {
 width:760px;
 float:left;
}

/*　左側メニューの幅　*/
.left {
	float: center;
	width:210px;

}

/*　中央の幅　*/
.main {
	float: right;
	width: 550px;
}

/*　右側メニューの幅　*/
.right {
	float: right;
	width:180px;
}

/*　フッター（コピーライト）　*/
.footer {
 width:100%;
 clear:left;
}


