@charset "utf-8";



/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
html, body {height: 100%;overflow-x: hidden;}
body {
	margin: 0px;
	padding: 0px;
	color: #000;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 15px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #a81d1d url();	/*背景色、背景画像の読み込み*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #b60a16;	/*リンクテキストの色*/
	transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
a:hover {
	color: #2736eb;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*inner共通
---------------------------------------------------------------------------*/
.inner {
	max-width: 1200px;	/*サイトの最大幅　※下の方の「画面幅1200px以上の設定」にも関連するので変更の際は注意して下さい。*/
	margin: 0 auto;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background: #b6250f;	/*背景色*/
}
header .inner {
	position: relative;
	height: 100px;	/*ヘッダーの高さ*/
}
/*ロゴ画像*/
header #logo img {
	width: 600px;	/*画像幅*/
	position: absolute;
	left: 0px;		/*ヘッダーに対して左から0pxの場所に配置*/
	bottom: 15px;	/*ヘッダーに対して下から32pxの場所に配置*/
}

/*ヘッダーの「CART」およびサブコンテンツの「カートをみる」ボタン
---------------------------------------------------------------------------*/
/*共通設定*/
.cart a{
	text-decoration: none;
	display: block;
	background: #c2ac47;	/*背景色（古いブラウザ用）*/
	background: url(../images/icon_cart.png) no-repeat 15% center/50px, linear-gradient(#f9eaa7, #c2ac47);	/*背景画像(左から15%の場所に配置、画像サイズは幅を20pxに指定)と、グラデーション url(../images/icon_cart.png)*/
	border-radius: 3px;	/*角丸のサイズ*/
	text-align: center;
	color: #000;	/*文字色*/
	padding: 10px 0px 10px 10px;	/*上10、右0、下10、左10への余白*/
}
/*マウスオン時*/
.cart a:hover {
	background: #f9eaa7 url(../images/icon_cart.png) no-repeat 15% center/50px;	/*背景色だけ変更する*/
}
/*ヘッダーのボタンへの追加設定*/
header .cart a {
	position: absolute;
	right: 0px;		/*ヘッダーに対して右から0pxの場所に配置*/
	bottom: 24px;	/*ヘッダーに対して下から40pxの場所に配置*/
	width: 150px;	/*ボタン幅*/
}
/*サブコンテンツのボタンへの追加設定*/
#sub .cart a {
	margin-bottom: 20px;	/*ボタンの下に空けるスペース*/
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.2は透明度20%の事。*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	clear: both;
	overflow: hidden;
	background: #484848;	/*背景色（グラデーションが使えない古いブラウザ向け）*/
	background: linear-gradient(#484848, #171717);	/*グラデーション*/
	box-shadow: 0px 0px 20px rgba(0,0,0,0.4);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.4は透明度40%の事。*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	width: 20%;		/*メニュー幅（100÷5個=20%）※下の方の「画面幅1200px以上の設定」にも関連するので変更の際は注意して下さい。*/
}
#menubar li a {
	display:  block;
	text-decoration: none;
	text-align: center;
	color: #fff;	/*文字色*/
	padding: 10px 0;	/*上下、左右へのボックス内の余白*/
}
/*マウスオン時*/
#menubar li a:hover {
	background: #b6aa77;	/*背景色*/
	color: #b60a16;		/*文字色*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}

/*ドロップダウンメニュー用
----------------------------------------------------------------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar ul.ddmenu {
	position:absolute;
	visibility: hidden;
	z-index: 10;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.4);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.1は透明度10%の事。*/
	width: 20%;	/*幅。上の「#menubar li」と合わせる。*/
}
/*メニュー１個あたりの設定*/
#menubar ul.ddmenu li {
	float: none;
	width: 100%;
}
#menubar ul.ddmenu li a {
	width: 100%;
	border-bottom: 1px solid #fff;	/*下線の幅、線種、色（古いブラウザ用）*/
	border-bottom: 1px solid rgba(255,255,255,0.3);	/*下線の幅、線種、色。255,255,255は白のことで0.3は透明度30%のこと。*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.9);	/*背景色。0,0,0は黒の事で0.9は透明度90%の事。*/
}
/*マウスオン時*/
#menubar ul.ddmenu li a:hover {
	background: #fff;	/*背景色*/
}

/*コンテンツ（mainとsubを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: both;
	padding-top: 3%;	/*上に空けるスペース、メインメニューの下のスペースです。*/
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: left;	/*左に回り込み*/
	width: 72%;		/*幅*/
}
/*１カラム時*/
body.c1 #main {
	float: none;
	width: auto;
}
/*h2タグの設定*/
#main h2 {
	clear: both;
	font-size: 18px;	/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔*/
	margin-bottom: 20px;	/*見出しの下にとるスペース*/
	padding: 5px 20px 7px;		/*上、左右、下への余白*/
	background: #812222;	/*背景色（グラデーションが使えない古いブラウザ向け）*/
	background: linear-gradient(#812222, #510b0b);	/*グラデーション*/
	border-top: 4px solid #b6aa77;	/*上の線の幅、線種、色*/
	text-shadow: 0px 0px #f5fb3c;	/*テキストの影510b0b。右へ、下へ、色。*/
}
/*h3タグの設定*/
#main h3 {
	clear: both;
	margin-bottom: 20px;	/*見出しの下にとるスペース*/
	padding: 0px 20px;		/*上下、左右への余白*/
	color: #000;		/*文字色*/
	background: rgba(0,0,0,0.2);	/*背景色。0,0,0は黒の事で0.2は透明度20%の事。*/
	border: 1px solid #812222;		/*枠線の幅、線種、色*/
}
/*段落タグ設定*/
#main p {
	padding: 0px 20px 15px;	/*上、左右、下への余白*/
}
#main h2 + p,
#main h3 + p {
	margin-top: -10px;
}

/*box
---------------------------------------------------------------------------*/
/*main,subのbox共通*/
.box {
	overflow: hidden;
	background: #fff;			/*背景色*/
	border: 10px solid #fff;	/*枠線の幅、線種、色*/
	padding: 20px;				/*ボックス内の余白*/
	margin-bottom: 20px;		/*ボックスの下に空けるスペース*/
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.2は透明度20%の事。*/
}
/*subのboxへの追加設定*/
#sub .box {
	padding: 5px;	/*余白を少し小さくセットしなおす*/
}

/*商品一覧ページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list {
	position: relative;overflow: hidden;
	width: 25%;				/*ボックスの幅*/
	margin-bottom: 20px;	/*ボックスの下に空けるスペース*/
	float: left;			/*左に回り込み*/
	line-height: 1.5;		/*行間を少し狭くする設定1.5*/
}
#main .list a {
	text-decoration: none;overflow: hidden;
	display: block;
/*	height: 450px;	/*270pxボックスの高さ*/
	padding: 10px;	/*ボックス内の余白*/
	border-right: 1px solid #fff;	/*右の線の幅、線種、色（古いブラウザ用）*/
	border-right: 1px solid rgba(255,255,255,0.2);	/*右の線の幅、線種、色。255,255,255は白の事で0.2は透明度20%の事。*/
}
/*１、５、１０個目…のボックスへの追加設定*/
#main .list:nth-of-type(4n+1) a {
	border-left: 1px solid #fff;	/*左の線の幅、線種、色（古いブラウザ用）*/
	border-left: 1px solid rgba(255,255,255,0.2);	/*左の線の幅、線種、色。255,255,255は白の事で0.2は透明度20%の事。*/
}
/*マウスオン時*/
#main .list a:hover {
	background: #fff;	/*背景色*/
}
/*ボックス内のh4タグ設定*/
#main .box .list h4 {
	color: #b6aa77;		/*文字色*/
}
/*ボックス内の段落(p)タグ設定*/
#main .list p {
	padding: 0;
	font-size: 12px;	/*文字サイズ*/
}
/*ボックス内の写真設定*/
#main .list figure img {
	width: 100%;
}
/*SOLD OUT表示。<div class="list option2">と指定した場合に画像を30%透明度にする設定。*/
.list.option2 figure img {
	opacity: 0.3;	/*透明度30%の事*/
}

/*商品詳細ページの画像切り替え
---------------------------------------------------------------------------*/
/*大きな画像のボックスと説明文を入れるボックス*/
#item-image {
	position: relative;
	margin-bottom: 20px;
}
/*大きな画像の１行目*/
#item-image #item_image1 {
	z-index:2;
	position:relative;
	overflow:hidden;
}
/*大きな画像の２行目*/
#item-image #item_image2 {
	z-index:1;
	position:absolute;
	left:0px;
	top:0px;
	overflow:hidden;
}
/*サムネイル画像*/
.thumbnail {
	width: 80px;	/*画像の幅*/
	height: 80px;	/*画像の高さ*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	margin-bottom: 20px;
}
.thumbnail:hover {
	border: 1px solid #b6aa77;	/*マウスオン時の枠線の幅、線種、色*/
}

/*subコンテンツ
---------------------------------------------------------------------------*/
/*subブロック*/
#sub {
	float: right;	/*右に回り込み*/
	width: 24%;		/*幅*/
}
/*１カラム時*/
body.c1 #sub {
	display: none;
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	margin-bottom: 0;
	box-shadow: none;
	font-size: 16px;	/*文字サイズ*/
	text-align: center;	/*内容をセンタリング*/
	padding: 5px 15px;		/*上下、左右へのボックス内の余白*/
	background: #812222;	/*背景色（グラデーションが使えない古いブラウザ向け）*/
	background: linear-gradient(#812222, #510b0b);	/*グラデーション*/
}

/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub ul.submenu {
	border-top: 1px solid #fff;	/*上の線の幅、線種、色*/
	margin-bottom: 20px;	/*ブロックの下に空けるスペース*/
}
/*メニュー１個ごとの設定*/
#sub ul.submenu li a {
	text-decoration: none;
	display: block;
	padding: 5px 10px;	/*メニュー内の余白。上下、左右への設定。*/
	border-bottom: solid 1px #fff;	/*下の線の線種、幅、色*/
}
/*マウスオン時の背景色*/
#sub ul.submenu li a:hover {
	background: #fff;	/*背景色*/
}
/*h2タグにメニューが続いた場合に１つ目のメニューの上の線を消す設定*/
#sub h2+ul.submenu {
	border-top: none;
}
/*box内のメニューブロックの設定*/
#sub .box ul.submenu {
	margin-bottom:  0;
}

/*サブコンテンツ内の一覧ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#sub .list {
	position: relative;
	overflow: hidden;
	font-size: 11px;	/*文字サイズ*/
	line-height: 1.2;	/*行間を狭くする*/
}
#sub .list a {
	text-decoration: none;
	display: block;
	overflow: hidden;
	padding: 10px;	/*ボックス内の余白*/
	border-bottom: 1px solid #fff;	/*上の線の幅、線種、色*/
	background: #000;	/*背景色*/
}
/*一番上のボックスへの追加設定*/
#sub .list:first-of-type a {
	border-top: 1px solid #fff;	/*上の線の幅、線種、色*/
}
/*一番下のボックスへの追加設定*/
#sub .list:last-of-type a {
	margin-bottom: 20px;	/*ブロックの下に空けるスペース*/
}
/*box内の一番下のボックスへの設定*/
#sub .box .list:last-of-type a {
	margin-bottom: 0px;
}
/*マウスオン時*/
#sub .list a:hover {
	background: #fff;
}
/*ボックス内のh4タグ設定*/
#sub .list h4 {
	color: #b6aa77;		/*文字色*/
}
/*ボックス内の写真設定*/
#sub .list figure img {
	float: left;	/*画像を左へ回り込み*/
	width: 20%;		/*写真の幅*/
	margin-right: 5px;	/*写真の右側に空ける余白*/
}
/*h2直下のlistボックスの上の線を消す設定*/
#sub h2+.list:first-of-type a {
	border-top: none;
}
/*ランキング設定（CMS用）*/
#sub .list .ranking {
	display: block;
	background: url(../images/icon_ranking.png) no-repeat right center/20px;	/*王冠画像の読み込み。右(right)、天地中央(center)、画像幅20px。*/
	line-height: 20px;	/*高さ*/
	text-align: right;	/*文字を右寄せ*/
	padding-right: 30px;	/*背景画像に重ならないように余白を設定*/
	color: #eef109;			/*文字色*/
}

/*商品検索ボックス
---------------------------------------------------------------------------*/
#search {
	text-align: center;
	padding: 20px 0;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	background: #fff;	/*背景色*/
	font-size: 85%;	/*文字サイズ*/
}
footer .pr {
	display: block;
	font-size: 80%;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	overflow: hidden;
	padding: 20px 0;
}
/*１行分の設定*/
#footermenu ul {
	float: left;	/*左に回り込み*/
	width: 18%;		/*幅。今回は５列作ったのでここの幅18%と下のpadding(合計の2%)でトータル20%になるよう設定。列に応じて調整して下さい。*/
	padding-right: 1%;
	padding-left: 1%;
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	background: #333;	/*背景色*/
}
#copyright a {
	text-decoration: none;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding-left: 20px;
	margin-bottom: 20px;
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;		/*幅*/
	color: #b6aa77;	/*文字色*/
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
	border-bottom: 1px solid #333;	/*下線の幅、線種、色*/
}

/*ABOUTページ
---------------------------------------------------------------------------*/
/*リストタグ（１ステップ分）*/
ol.step li {
	padding-bottom: 100px;	/*↓マーク分の高さを確保する*/
	position: relative;
}
/*h4見出し*/
ol.step li h4 {
	color: #fff;		/*文字色*/
	font-size: 22px;	/*文字サイズ*/
}
/*h4見出し（※box1内で使う場合の追加設定）*/
.box ol.step li h4 {
	color: #b6aa77;		/*文字色*/
}
/*↓マーク*/
ol.step li::after {
	content: "↓";	/*表示させる矢印。変更しても構いませんが機種依存文字は化けるので使わない。*/
	position: absolute;
	bottom: 0px;
	left: 45%;
	font-size: 50px;	/*サイズ*/
	color: #444;		/*色*/
}
/*最後のブロックには↓マークを表示しない*/
ol.step li:last-of-type::after {
	content: none;
}

/*よく頂く質問ページ
---------------------------------------------------------------------------*/
/*ブロック全体*/
.faq {
	padding: 0px 20px;	/*上下、左右への余白*/
}
/*質問の設定*/
.faq dt {
	color: #b6aa77;	/*文字色*/
	padding-top: 15px;
}
.faq dt a {
	color: #b6aa77;	/*文字色*/
}
/*回答の設定*/
.faq dd {
	border-bottom: 1px solid #fff;	/*下線の幅、線種、色*/
	overflow: hidden;
	padding-bottom: 15px;
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
	width: 100%;
	margin: 0 auto 20px;
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #fff;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #222;	/*背景色*/
	font-size: 18px;	/*文字サイズ*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;	/*幅*/
	text-align: center;	/*センタリング*/
	font-weight: normal;
}
/*左側ボックスに画像を入れた場合の設定*/
.ta1 th img {
	width: 100%;
}

/*ボタン(btn)の設定。詳細ページ(item.html)のかごに入れるボタンと、カートページで使用。
---------------------------------------------------------------------------*/
input[type="submit"].btn,
input[type="button"].btn {
	width: 100%;
	padding: 15px 0px;	/*上下、左右へのボタン内の余白*/
	margin-bottom: 20px;
	border: 2px solid #910000;	/*枠線の幅、線種、色*/
	border-radius: 3px;	/*角丸のサイズ*/
	background: #ea0000;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#ea0000, #b40000 50%, #910000 50%);	/*グラデーション*/
	font-size: 20px;	/*文字サイズ*/
	color: #fff;	/*文字色*/
}
/*マウスオン時の設定*/
input[type="submit"].btn:hover,
input[type="button"].btn:hover {
	border: 2px solid #c10000;	/*枠線の幅、線種、色*/
	background: #fe0000;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#fe0000, #d50000 50%, #c10000 50%);	/*グラデーション*/
	position: relative;top: 1px;left: 1px;	/*マウスオン時に上から1px、左から1px場所を移動する*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
	padding-top: 40px;
}
#pagetop a {
	color: #fff;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
	background: #000;	/*背景色*/
	text-decoration: none;
	text-align: center;
	display: block;
	float: right;
	width: 60px;	/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 10px;	/*角丸のサイズ*/
	border: 3px solid #fff;	/*枠線の幅、線種、色*/
	box-shadow: 0px 5px 15px rgba(0,0,0,0.2);	/*ボックスの影*/
	margin-bottom: 20px;
}
/*マウスオン時*/
#pagetop a:hover {
	background: #333;	/*背景色*/
}

/*一覧ページのボックス内のアイコン
（CMSの場合は管理ページの「オプション1」～のプルダウンと、setup.phpの「オプション選択肢」に関連します）
---------------------------------------------------------------------------*/
/*option1,option2共通*/
span.option1, span.option2 {
	text-align: center;
	display: block;
	font-size: 10px;	/*文字サイズ*/
	width: 100px;		/*幅*/
	position: absolute;
	right: 0px;	/*ボックスに対して右から0pxの場所に配置*/
	top: 0px;	/*ボックスに対して上から0pxの場所に配置*/
	transform: rotate(45deg) translate(32px,-9px);	/**/
	color: #FFF;	/*文字色*/
	background: #666;	/*背景色*/
}
/*option1への追加設定*/
span.option1 {
	color: #FFF;		/*文字色*/
	background: #F00;	/*背景色*/
}
/*h2タグ内で使った場合のoption1とoption2*/
h2 span.option1, h2 span.option2 {
	text-shadow: none;
	width: auto;
	padding: 2px 5px;
	position: static;
	transform: none;
	display: inline-block;
	font-size: 15px;
	margin-left: 10px;
}

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 70%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}

/*checkブロック。赤い注意書きブロックです。
---------------------------------------------------------------------------*/
p.check {
	background: #ff0000;
	color:#fff;
	padding: 10px 25px !important;
	margin-bottom: 20px;
}
p.check a {color: #fff;}

/*その他
---------------------------------------------------------------------------*/
.look {background: #222;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb30 {margin-bottom: 30px !important;}
.p0 {padding:0 !important;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px;list-style: disc;}
.color1, .color1 a {color: #F00;}
.bg1 {background: #f6f5f2;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
img.fr {float: right;margin-left: 10px;margin-bottom: 10px;}
img.fl {float: left;margin-right: 10px;margin-bottom: 10px;}
.big1 {font-size: 20px;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.mini2 {font-size: 15px;display: inline-block;line-height: 1.5;}
.sh {display: none;}



/*画面幅1200px以上の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width:1200px){

/*inner共通
---------------------------------------------------------------------------*/
.inner {
	width: 1200px;	/*サイト幅*/
}

/*メインメニューとドロップダウンメニューの設定変更。
上の共通設定で、max-widthを1200pxにしており、メニュー数が５個なので、1200÷5=240pxになります。
---------------------------------------------------------------------------*/
#menubar li, #menubar ul.ddmenu {
	width: 240px;
}

}



/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){

/*inner共通
---------------------------------------------------------------------------*/
.inner {
	width: auto;
}

/*ヘッダーの「CART」およびサブコンテンツの「カートをみる」ボタン
---------------------------------------------------------------------------*/
/*中のテキスト*/
header .cart a span {
	display: none;	/*非表示にする*/
}
/*ヘッダーのボタンへの追加設定*/
header .cart a {
	padding: 0;
	width: 44px;	/*幅*/
	height: 44px;	/*高さ*/
	right: 70px;		/*右から70pxの場所に配置*/
	bottom: 28px;	/*下から28pxの場所に配置*/
	background-position: center center;	/*背景画像の場所のみ再指定。左右中央＆天地中央。*/
}
/*マウスオン時*/
.cart a:hover {
	background-position: center center;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明度(opacity)0%から透明度100%にする指定。*/
@keyframes menu1 {
0% {opacity: 0;}
100% {opacity: 1;}
}
/*スマホ用メニューを非表示から表示に切り替える*/
#menubar-s {
	display: block;
	overflow: hidden;
	position: absolute;
	border-top: 1px solid #fff;
	width: 100%;
	z-index: 10;
	animation-name: menu1;		/*上のkeyframesの名前*/
	animation-duration: 0.5S;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;
	text-decoration: none;
	padding: 10px 5%;
	border-bottom: 1px solid #fff;
	background: #000;
}
/*PC用メニューを非表示にする*/
#menubar {
	display: none;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;
	top: 28px;		/*上から28pxの場所に配置*/
	right: 20px;	/*右から20pxの場所に配置*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 30px;	/*幅*/
	height: 30px;	/*高さ*/
	border: 7px solid #fff;	/*枠線の幅、線種、色。padding(余白)の代わりです。*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #fff url(../images/icon_menu.png) no-repeat center top/30px;
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #fff url(../images/icon_menu.png) no-repeat center bottom/30px;
}

/*コンテンツ（mainとsubを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	padding: 3%;
}

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

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	margin-right: 3%;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #footermenu,.m-n {display: none;}

}



/*画面幅650px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:650px){

/*商品一覧ページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list {
	width: auto;
	float: none;
	margin-bottom: 0;
}
#main .list a {
	height: auto;
	border-right: none;
	border-bottom: 1px solid rgba(255,255,255,0.2);
}
/*１、５、１０個目…のボックスへの追加設定*/
#main .list:nth-of-type(4n+1) a {
	border-left: none;
}
/*ボックス内の写真設定*/
#main .list figure img {
	width: 20%;
	float: left;
	margin-right: 3%;
}
/*一番上のボックスへの追加設定*/
#main .list:first-of-type a {
	border-top: 1px solid rgba(255,255,255,0.2);
}
/*一番下のボックスへの追加設定*/
#main .list:last-of-type a {
	margin-bottom: 20px;
}

}



/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;	/*文字サイズ*/
	line-height: 1.5;	/*行間*/
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo img {
	width: 250px;	/*画像幅*/
	bottom: 37px;	/*ヘッダーに対して下から37pxの場所に配置*/
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
#main h2, #main h3 {
	font-size: 14px;
	padding-left: 10px;
	padding-right: 10px;
}
/*段落タグ設定*/
#main p {
	padding: 0px 10px 15px;	/*上、左右、下への余白*/
}

/*box
---------------------------------------------------------------------------*/
/*main,subのbox共通*/
.box {
	border: 5px solid #fff;	/*枠線の幅、線種、色*/
	padding: 10px;				/*ボックス内の余白*/
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	display: none;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding-left: 10px;
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1, .ta1 td, .ta1 th {
	padding: 5px;	/*ボックス内の余白*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	font-size: 14px;	/*文字サイズ*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 100px;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
.big1 {font-size: 16px;}
img.fr,img.fl {float: none;margin: 0;width: 100%;}
.sh {display:block;}
.pc {display:none;}

}



/*画面幅400px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:400px){

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo img {
	width: 170px;	/*画像幅*/
	bottom: 40px;	/*ヘッダーに対して下から40pxの場所に配置*/
}


}