@charset "UTF-8";

/* default.cssについて
	このCSSは、全ページに共通したスタイルを定義するものです。
	ページ内容そのものを記述する#contentsは各ページごとに
	異なるため、別のCSSで定義を行っています。
*/



/********** ◆ 基本HTML設定 ◆ ****************/


/*ブラウザ依存を防ぐため、全ての余白を削除*/
*
{
	margin:0px;
	padding:0px;
}

/*bodyの背景、文字色、センタリングの指定*/
body
{
	background-color:#ffffff;
 	color:#333333;
	text-align:center;
	/*IEのバグ対策*/
	padding-left:1px;
}

/*アンカーにマウスが触れた場合、色変えたり下線を消す*/
a:hover
{
	color:#0099cc;
	text-decoration:none;
}

/*ページ最上段のタイトル文字サイズ変更*/
h1
{
	font-size:80%;
}

/* SEO対策。タイトル画像に背景を使用しているので、テキストを非表示にする */



h2 span, h3 span
{
	display:none;
}

#menu_tab h2{
	font-size:1px;
}




/*強調文字列（強）。色を赤くするときなどに。*/
strong
{	
	color:#dd0000;
}

/*強調文字列（弱）。文字を太くするときなどに。*/
em
{
	font-style:normal;
	font-weight:bold;
}

/*画像の周りに出てくる線を削除*/
img
{	border:0px;}

/*フォームの横幅を指定（本来はIDの方が適切ですね）*/
form .f_text
{
	width:137px;
}

/*「float:left;」を行った時の段組をリセットする*/
hr
{
	width:0px;
	height:0px;
	display:block;
	margin-bottom:0px;
	clear:both;
}

/*100201okino DOCTYPE変更によるレイアウト崩れ調整*/

table{
	border-collapse: collapse;
}

td,th{
vertical-align: top;
}


td img , th img{
	display:block;
	vertical-align: top;
}


/********** ◆ ヘッダー（メーカーロゴやタイトル画像など ◆ ****************/


/*グローバルナビゲーションの強制改行を削除*/

#header{
	width:750px;
	height:90px;
	margin:0 auto;
}



#menu_tab{
	/*margin-bottom:10px;*/
	height:70px;
	font-size:1px;
}

#menu_tab ul{
	zoom:100%;
	width:750px;
	margin:0 auto;
}

#menu_tab ul:after{
	content:" ";
	display:block;
	visibility:hidden;
	height:1px;
	clear:both;
}

#menu_tab ul li{
	float:left;
}


#menu_tab ul li {
	display:inline;
}

/*サイトの表示領域を、センタリングで横幅750で固定。*/
#main
{
	width:750px;

	/*IEのセンタリング*/
	text-align:center;

	/*firefoxなどのセンタリング*/
	margin:auto;
}



/********** ◆ サイドバー（横に表示されるメニュー ◆ ****************/


/*サイドバーを左側に設置。テキストなどのセンタリング*/
#sidebar
{
	text-align:center;
	float : left ;
	width:150px;
	margin:10px auto;
	font-size:80%;
}

/*pタグの指定。マージンのみ。*/
#sidebar p
{
	margin:10px 0px;
}

/*リストタグの指定。左寄せでデフォルトの「●」を削除*/
#sidebar ul, #sidebar ol
{
	list-style-type: none;
	text-align:left;
}

/*『商品一覧』のタイトル（商品一覧）画像を指定*/
#sidebar #category_title
{
	background-position:left;
        background-repeat:no-repeat;
	background-image:url(/shared/sidebar/l_title01.gif);
        height : 30px;
	margin-top:10px;
}
/*↓↓↓IEで謎の空白が表示されるバグ対策↓↓↓	*/
#sidebar #category ul li {
	line-height:0;
}

#sidebar #category ul li img {
 	 display: block;
} 

#sidebar #category ul li a {
	line-height:normal;
}
/*↑↑↑IEで謎の空白が表示されるバグ対策↑↑↑*/


/*『ご利用案内』のタイトル（ご利用案内）画像を指定*/
#sidebar #menu_title
{
	background-position:left;
        background-repeat:no-repeat;
	background-image:url(/shared/sidebar/l_title02.gif);
        height : 30px;
	margin-top:10px;
}

/*『ご利用案内』の表示領域（線の画像を表示）*/
#sidebar #menu {
	background-position:left;
        background-repeat:repeat-y;
	background-image:url(/shared/sidebar/l_list_bg.gif);
	margin-bottom:10px;
}

/*『ご利用案内』の表示領域（リストに表示するマークを指定）*/
#sidebar #menu ul {
	list-style-image:url(/shared/sidebar/l_list_ar.gif);
	margin:15px 0px 15px 18px;
}

/*『ご利用案内』の表示領域（行間・マージン）*/
#sidebar #menu ul li {
	line-height:150%;
	margin:4px;
}



/* okino メインエリア調整用・2010/01/26追加*/


#contents{
	width:590px;
	zoom:100%;
	float:left;
	margin-left:5px;
	position:relative;
	top:0;
}

#contents:after{
	content:" ";
	display:block;
	height:1px;
	visibility:hidden;
	clear:both;
}


/*------*/

#content {
	margin-top:10px;
		font-size:0.95em;
line-height:1.2;
letter-spacing:0.4pt;
	width:590px!important;
	margin-left:10px;
	float:right;
	text-align:left;
	position:relative;
	top:0;
	overflow:visible!important;
}







/********** ◆ フッター（下のインフォメーション ◆ ****************/


#footer{
	padding-bottom:50px;
	background:url(/shared/footer/foot_img.png) no-repeat center bottom;
	zoom:100%;
}

#footer:after{
	content:" ";
	display:block;
	height:1px;
	visibility:hidden;
	clear:both;
}


/*『インフォメーション』のタイトル（インフォメーション）画像を指定*/
#footer #footer_title {
	background-position:center;
        background-repeat:no-repeat;
	background-image:url(/shared/footer/f_info_b.jpg);
        height : 34px;
	margin:0px;
}

/*段組指定。左右の領域を375pxずつに。*/
#footer .box {
	float : left ;
	width:375px;
	_width:370px;/*okinoIE6カラム落ち対策追加*/
	text-align:left;
	color:#555555;
}

/*↓↓↓各タイトル画像の指定↓↓↓*/
#footer #footer_otodoke {
	background-position:left;
        background-repeat:no-repeat;
	background-image:url(/shared/footer/f_info_01.jpg);
        height : 34px;
	margin-top:10px;
}
#footer #footer_souryou {
	background-position:left;
        background-repeat:no-repeat;
	background-image:url(/shared/footer/f_info_02.jpg);
        height : 34px;
	margin-top:10px;
}
#footer #footer_henkou {
	background-position:left;
        background-repeat:no-repeat;
	background-image:url(/shared/footer/f_info_03.jpg);
        height : 34px;
	margin-top:30px;
}
#footer #footer_henpin {
	background-position:left;
        background-repeat:no-repeat;
	background-image:url(/shared/footer/f_info_04.jpg);
        height : 34px;
	margin-top:30px;
}
#footer #footer_kozin {
	background-position:left;
        background-repeat:no-repeat;
	background-image:url(/shared/footer/f_info_05.jpg);
        height : 34px;
	margin-top:30px;
}
#footer #footer_mail {
	background-position:left;
        background-repeat:no-repeat;
	background-image:url(/shared/footer/f_info_06.jpg);
        height : 34px;
	margin-top:30px;
}
/*↑↑↑各タイトル画像の指定↑↑↑*/


/*行間、マージンの初期化、文字サイズ指定*/
#footer h3, 
#footer h4, 
#footer p, 
#footer ul li 
{
	line-height:100%;
	margin:0px;
	font-size:80%;
}

/*マージンの再指定*/
#footer h4 {
	margin:0px;
}

/*マージンの再指定*/
#footer p {
	line-height:120%;
	margin:0px 20px 1em 0px;
}

/*マージンの再指定*/
#footer ul li {
	margin:5px 25px;
}



/********** ◆ その他 ◆ ****************/


/*強制センタリング*/
#contents p.showy, #sidebar p.showy {
	text-align:center;
	margin:5px 0px;
}

/*強制右寄せ*/
#contents p.renew, #sidebar p.renew {
	text-align:right;
	margin:2px 0px;
	color: #c00;
}

/*商品説明用の文字指定*/
.itemclass {
	font-size: 12px;
}

.itemclass-height {
	font-size: 12px;
	line-height: 15px;
	}


.itemtableclass {
	margin: 0px;
}

.itemclass2 {
	font-size: 14px;
}

.itemclass2 img {
	float:left;
	margin-bottom:10px;
}

.itemclass2 b{
	display:inline-block;
	clear:both;
}


p.itemmargin {
	margin:0px;
	padding:0px;
}

.itemclass3 {
	font-size: 12px;
	line-height: 14px;
}

.strong_w {
	font-size: 12px;
	color: crimson;
	font-weight: bold;
	}
	
/*マサール商品説明*/

.masale-font {
	font-size: 12px;
	line-height: 17px;
	}
	
	
/*温度帯説明*/

td#ondo_icon{
	vertical-align:middle;
}

/*fフォーム系共通項目*/

#form-btn{
text-align:center;
margin:5px 0;
}

.nocontent{
	width:90%;
	margin:10px auto;
	border:1px solid #CCCCCC;
	padding:10px;
}

/*ミニカート用スタイル*/

#minicart{
	border:1px solid #EFE195;
	padding:1px;
	font-size:13px;
	color:#666666;
	margin-bottom:5px;
}

#minicart .inner{
	background:#FFF6CB;
	padding:5px;
	margin:1px;
	text-align:center;
}

#minicart .cartlist{
	display:inline-block;
	margin-left:5px;
	padding-left:10px;
	background:url(/shared/images/arrow-minicart.png) left center no-repeat;
	/*border-left:1px dotted #FF0000;*/
}

/*pager*/

.pager {
margin:0 auto;
text-align:center;
width:580px;
margin:10px 0;
}
.pager a {
border:1px solid #E4BC96;
font-size:12px;
line-height:200%;
margin-left:5px;
padding:2px 5px;
}
.pager a:link {
color:#666666;
font-size:12px;
text-decoration:none;
}
.pager a:visited {
color:#666666;
font-size:12px;
text-decoration:none;
}
.pager a:hover {

background:#FFE3AB none repeat scroll 0 0;
color:#666666;
font-size:12px;
text-decoration:none;
}
.pager a:active {

background:#FFE3AB none repeat scroll 0 0;
color:#666666;
font-size:12px;
text-decoration:none;
}
.pager .on {

background:#FFE3AB none repeat scroll 0 0;
border:1px solid #E4BC96;
font-size:12px;
margin-left:5px;
padding:2px 5px;
}



/**/


.secure{
background:#F0F0F0 none repeat scroll 0 0;
border-bottom:1px dotted #CCCCCC;
border-top:1px dotted #CCCCCC;
float:left;
padding:15px;
}


.seal{
width:140px;
float:left;
}

.securecontent{
padding:10px;
float:left;
}

.title{
	font-weight:bold;
}

.secure p{
	font-size:12px;
}

.security-cd{
	width:70%;
	margin:0 auto;
	
}

.c-company{
	font-weight:bold;
	font-size:123%;
	color:#CC6600;
	padding-bottom:10px;
	
}

/*サイドバー メンバーメニュー*/

#member_menu{
	text-align:center;
	width:150px;
}

#member_menu h2{
	width:150px;
	height:35px;
	overflow:hidden;
}

#member_menu ul{
	border: 1px solid #534741;
	border-top:0px!important;
	width:148px;
	overflow:hidden;
	padding:3px 0;
	text-align:center;
}

#member_menu ul li{
	margin:2px 0;
	border-bottom:1px solid #DED0CB;

}

#member_menu ul img{
}


#sidebar #twitterarea{
	margin:10px 0;
}




