@charset "shift_jis";

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
	margin-right: 6px;
	margin-left: 6px;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	text-align: center;
	height: auto;
	margin-bottom: 15px;
}
/*h1ロゴの設定*/
header h1 {
	position: static;
	padding: 10px 0px;	/*ロゴの上下にあける余白が10px*/
}
/*電話番号ボックスの設定*/
header address {
	position: static;
	width: 300px;	/*ボックス幅*/
	margin: 0px auto;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
nav#menu ul li {
	margin-left: 1%;	/*メニューの左右間の余白*/
	width: 49%;			/*メニュー幅*/
}
nav#menu ul li a {
	margin: 0;
}
/*奇数番目のメニューの設定*/
nav#menu ul li:nth-child(odd) {
	margin-left: 0;
	width: 50%;
}
/*最後のメニューの設定*/
nav#menu ul li:last-child {
	margin-bottom: 20px;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}

/*トップページのメイン画像
---------------------------------------------------------------------------*/
#mainimg {
	height: auto;
	width: 100%;
}
#slide_image {
	height: auto;
	width: 100%;
	position: relative;
}
#slide_image2 {
	height: auto;
	width: 100%;
	position: absolute;
	left:0px;
	top:0px;
}
/*商品一覧ページ用ボックス
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list,
.c1 #main section.list {
	margin: 0px 1.5% 15px;
	width: 22%;
	height: 220px;
}
/*ボックス内の写真設定*/
#main section.list a figure img {
	width: 100%;
	height: auto;
	padding: 3%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}


/*その他
---------------------------------------------------------------------------*/
/*写真の設定*/
img.wa {
	width: 100%;
	height: auto;
}
/*<body class="s-n">指定の場合にsubブロックを表示させない設定*/
body.s-n #sub {
	display: none;
}
img.fa {
	width: 100%;
	height: auto;
}
/*フッター固定表示
---------------------------------------------------------------------------*/
#footerFloatingMenu {
    display: block;
    width: 100%;
    position: fixed;
    left: 0px;
    bottom: 2px;
    z-index: 9999;
    text-align: center;
    padding: 0 auto;
}
 
#footerFloatingMenu img {
	max-width: 17%;
	width: 20%;
}
img:hover {
    filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}
