@charset "shift_jis";


/*共通設定
■文字サイズを変更したい場合、body項目内のfontにある「12px」を変更する。
■strong(強調文字)色を変更したい場合、strong項目内の「#993300」を変更する。現在は赤色になっている。
----------------------------------------------------------------------------------*/
body {
	color: #333333;
	margin: 0px;
	padding: 0px;
	text-align: center;
	background: #FFFFCC url(images/bg.gif) repeat-x top;
	font: 12px Arial, Helvetica, sans-serif;
}
h1,h2,h3,p,ul,li{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
}
img {
	border: none;
	vertical-align: bottom;
}
strong {
	color: #CC6600;
	font-weight: normal;
}
p {
	padding-bottom: 3px;
	padding-top: 3px;
}


/*コンテナー
----------------------------------------------------------------------------------*/
#container {
	width: 450px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 30px;
}

/*商品の各テーブル設定
■テーブルのフチを変えたい場合、.t1項目内の「double」を変える。単なる直線なら「solid」。
　破線なら「dashed」、点線なら「dotted」。他にも色々あるので試すといいでしょう。
■テーブルのフチ色を変えたい場合、.t1項目内の「#CCCCCC」を変える。現在はグレー色。
■写真のフチ色を変えたい場合、.t1 img項目内の「#CCCCCC」を変える。現在はグレー色。
　また、写真とフチの間のスペースにも色を付けられる。.t1 img項目内の「#FFFFFF」で変える。現在は白。
----------------------------------------------------------------------------------*/
.t1 {
	border: 2px double #CCCCCC;
	padding: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
	width: 430px;
	background: url(images/item_bg.gif) repeat-x bottom;
}
/*What's new欄の矢印とアンダーライン
■下線の色を変えたい場合、#CCCCCCを希望色にする。ちなみに、dottedは点線なので直線にしたいならsolidにする。
----------------------------------------------------------------------------------*/
.u-line2 li {
	border-top: 1px dotted #999999;
	border-bottom: 1px dotted #999999;
	line-height: 2em;
	text-align: left;
}
.u-line3 li {
	border-bottom: 1px dotted #999999;
	line-height: 2em;
	text-align: left;
}


/*clearfix（変更しないこと）
----------------------------------------------------------------------------------*/
#container:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
#container { display: inline-block; }

/* Hides from IE-mac \*/
*html #container { height: 1%; }
#container { display: block; }
/* End hide from IE-mac */

