/* ************************************************
 * ------------------------------------------------
 *	共通設定
 * ------------------------------------------------
 * ************************************************ */

/* --- Reset Start ---
   --- 各ブラウザ間の表示を統一する為の記述です --- */

/* default property reset */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,
form,fieldset,input,textarea,
th,td,p {margin:0;padding:0;}
table {border-collapse:collapse;border-spacing:0;}
fieldset,img {border:0;}
ol,ul {list-style:none;}
caption,th {text-align:left;}
h1,h2,h3,h4,h5,h6 {font-size:100%;font-weight:normal; margin:0; padding:0;}
q:before,q:after {content:'';}
abbr,acronym {border:0;}


/* body * {line-height:1.22em;} */
/* body * {line-height:1.22em;} について */
/*
各フォントサイズ毎に行間を算出する指定です。
この指定を削除すると、全体の行間は統一される為、
見た目のレイアウトが変更される場合があります。
*/



/* --- Reset End --- */


/* ************************************************
 * ------------------------------------------------
 *	汎用性高いオプション
 * ------------------------------------------------
 * ************************************************ */
a.button-blue:link {
  color:#FFF;
}
.button-blue {
   border: 1px solid #0a3c59;
   background: #3e779d;
   background: -webkit-gradient(linear, left top, left bottom, from(#65a9d7), to(#3e779d));
   background: -webkit-linear-gradient(top, #65a9d7, #3e779d);
   background: -moz-linear-gradient(top, #65a9d7, #3e779d);
   background: -ms-linear-gradient(top, #65a9d7, #3e779d);
   background: -o-linear-gradient(top, #65a9d7, #3e779d);
   background-image: -ms-linear-gradient(top, #65a9d7 0%, #3e779d 100%);
   padding: 9.5px 19px;
   -webkit-border-radius: 6px;
   -moz-border-radius: 6px;
   border-radius: 6px;
   -webkit-box-shadow: rgba(255,255,255,0.4) 0 0px 0, inset rgba(255,255,255,0.4) 0 1px 0;
   -moz-box-shadow: rgba(255,255,255,0.4) 0 0px 0, inset rgba(255,255,255,0.4) 0 1px 0;
   box-shadow: rgba(255,255,255,0.4) 0 0px 0, inset rgba(255,255,255,0.4) 0 1px 0;
   text-shadow: #7ea4bd 0 1px 0;
   color: #06426c;
   font-size: 14px;
   font-family: helvetica, serif;
   text-decoration: none;
   vertical-align: middle;
}
.button-blue:hover {
   border: 1px solid #0a3c59;
   text-shadow: #1e4158 0 1px 0;
   background: #3e779d;
   background: -webkit-gradient(linear, left top, left bottom, from(#65a9d7), to(#3e779d));
   background: -webkit-linear-gradient(top, #65a9d7, #3e779d);
   background: -moz-linear-gradient(top, #65a9d7, #3e779d);
   background: -ms-linear-gradient(top, #65a9d7, #3e779d);
   background: -o-linear-gradient(top, #65a9d7, #3e779d);
   background-image: -ms-linear-gradient(top, #65a9d7 0%, #3e779d 100%);
   color: #fff;
   }
.button-blue:active {
   text-shadow: #1e4158 0 1px 0;
   border: 1px solid #0a3c59;
   background: #65a9d7;
   background: -webkit-gradient(linear, left top, left bottom, from(#3e779d), to(#3e779d));
   background: -webkit-linear-gradient(top, #3e779d, #65a9d7);
   background: -moz-linear-gradient(top, #3e779d, #65a9d7);
   background: -ms-linear-gradient(top, #3e779d, #65a9d7);
   background: -o-linear-gradient(top, #3e779d, #65a9d7);
   background-image: -ms-linear-gradient(top, #3e779d 0%, #65a9d7 100%);
   color: #fff;
}


body {
	font-family:'ヒラギノ丸ゴ Pro W4', 'Hiragino Maru Gothic Pro','Verdana','メイリオ',Meiryo,'ＭＳ Ｐゴシック', sans-serif;
	font-size: 12px;
	line-height:170%;
	background-color:#FFEEEE;
	color: #333333;
	margin: 0px;
	padding: 0px;
	text-align: center;
	}

img {
	 vertical-align:bottom;
	}

.bold {
	font-weight:bold;
	}

.cell_mar {
	margin: 0px 5px 0px 15px;
	}

a:link    { color:#eb5050;}
a:visited { color:#eb5050;text-decoration:none;}
a:active  { color:#eb5050;text-decoration:none;}
a:hover   { color:#ff7a21;text-decoration:none;}
a:hover img {opacity:0.6;}



/*共通*/

.clear {
clear:both;
}

.textRed {
color:#FF0000;
}

.textBlue {
color:#003399;
}

.mgBottom5 {
margin-bottom:5px;
}

.mgBottom10 {
margin-bottom:10px;
}

.mgBottom20 {
margin-bottom:20px;
}

.flBox {
    float:left;
}
.flBox:after {
  content: "."; /* Netscapeブラウザのバグ対策 */
  display: block;
  height: 0; /* .による高さを隠すため */
  font-size:0; /* .自体を隠すため */
  clear: both;
  visibility:hidden; /* ボックスを非表示にする（ボックスによる空間は保持） */
}

.frBox {
    float:right;
}
.frBox:after {
  content: "."; /* Netscapeブラウザのバグ対策 */
  display: block;
  height: 0; /* .による高さを隠すため */
  font-size:0; /* .自体を隠すため */
  clear: both;
  visibility:hidden; /* ボックスを非表示にする（ボックスによる空間は保持） */
}

.redtext {
color:#FF0000;
}

/* このクリアフィックスを無効化する
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
} */

.clearfix {zoom:1;}
.clearfix:after {
content: "";
display: block;
clear: both;
}

.txt-small {
    font-size: 0.75em;
    letter-spacing: 0.3;
    margin-left: -5px;
    margin-right: -5px;
}

.mb-small {
  margin-bottom: 10px;
}
.mb-medium {
  margin-bottom: 25px;
}
.mb-large {
  margin-bottom: 40px;
}


/* ************************************************
 *	ヘッダーメニュー
 * ************************************************ */

#header {
	background:url('https://img21.shop-pro.jp/PA01395/431/etc/header.png?cmsp_timestamp=20170726190627') no-repeat;
	width:950px;
	height:127px;
	}

h1 {
	width:364px;
	height:114px;
	margin-top:13px;
	float:left;
}

h1 a {
	display:block;
	width:364px;
	height:114px;
	text-indent:-9999px;
	outline:none;
}

div#searchBox {
	width:400px;
	height:25px;
	float:right;
	margin:12px 2px 0 0;
	padding:8px 5px 5px 15px;
	background:url(https://file002.shop-pro.jp/PA01395/431/img/serch_bg.jpg) no-repeat;
}

div#headNav {
  background: url('https://img21.shop-pro.jp/PA01345/757/etc/header-line.png?cmsp_timestamp=20160222220005') repeat-x scroll left bottom;
  clear: both;
  height: 43px;
  padding: 6px 0 10px 4px;
}
div#headNav ul {
	display: flex;
	margin:0;
	padding:0;
}

#headNav .headNav_li {
	margin:0;
	padding:0;
	margin-right: 3px;
	display:inline;
}

/*コンテンツラップ*/
div#contentWrap {
	width:950px;
	padding:5px 0;
	clear:both;
}



/*左サイド*/
div#sideWrap {
	width:210px;
	float:left;
}

h3.sideTitle {
	margin:0;
	padding:0;
}

div#sideWrap ul.itemMenu {
	font-size:12px;
	background:#E6E6E6;
	padding:5px;
	margin-bottom:10px;
}
div#sideWrap ul.itemMenu li {
	background:#FFFFFF;
	border-bottom:dotted 1px #999999;
}
div#sideWrap ul.itemMenu li a {
	color:#333333;
	text-decoration:none;
	display:block;
	padding:5px 3px 5px 5px;
	background:url(https://img02.shop-pro.jp/PA01124/804/etc/icon01.gif) no-repeat 4px center;
}
div#sideWrap ul.itemMenu li a:hover {
	color:#EE537A;
	text-decoration:none;
	display:block;
	padding:5px 3px 5px 5px;
	background:#FFEED0 url(https://img02.shop-pro.jp/PA01124/804/etc/icon01.gif) no-repeat 4px center;
}



div#sideWrap ul.itemMenu2 {
	font-size:12px;
	background:#FFB02D;
	padding:10px;
	margin-bottom:10px;
}
div#sideWrap ul.itemMenu2 li {
	background:#FFFFFF;
	border-bottom:dotted 1px #999999;
}
div#sideWrap ul.itemMenu2 li a {
	color:#333333;
	text-decoration:none;
	display:block;
	padding:5px 3px 5px 20px;
	background:url(https://img02.shop-pro.jp/PA01124/804/etc/icon01.gif) no-repeat 4px center;
}
div#sideWrap ul.itemMenu2 li a:hover {
	color:#EE537A;
	text-decoration:none;
	display:block;
	padding:5px 3px 5px 20px;
	background:#FFEED0 url(https://img02.shop-pro.jp/PA01124/804/etc/icon01.gif) no-repeat 4px center;
}

/*購入メニュー*/
.item-category {
  background: url(https://img02.shop-pro.jp/PA01124/804/etc/shoping_bg.jpg) no-repeat #EFE2AD;
}
div#sideWrap ul.itemMenu3 {
	font-size:12px;
	padding:0px 11px 10px;
	margin-bottom:10px;
}
div#sideWrap ul.itemMenu3 li {
margin-bottom:2px;
}
div#sideWrap ul.itemMenu3 li a {

}
div#sideWrap ul.itemMenu3 li a:hover {

}



div#sideWrap ul.subMenu {
	width:200px;
	margin:0 5px 10px;
	padding:0;
	clear:both;
}
div#sideWrap ul.subMenu li {
	margin:0 0 5px 0;
	padding:0;
}
div#sideWrap ul.subMenu li.noMg {
	margin:0;
}

div#carenderBox {
	font-size:12px;
	width:174px;
	margin:5px auto;
}
div#carenderBox table {
	border:1px solid #CCCCCC;
	font-size:12px;
	width:190px;
	margin:5px auto;
}

div#carenderBox table.calendsmall {
width:20px;
height:2px;
float:left;
background:#E8EEF9;
}

/*右サイド*/
div#mainWrap {
	width:720px;
	float:right;
}


/*フッター*/
div#footerWrap {
	width:950px;
	clear:both;
	padding:10px 0 0 0;
	color:#F14532;
	font-size:12px;
}

div#footerWrap div#copy {
	background:#F8988C;
	color:#FFFFFF;
	font-size:11px;
	padding:3px;
	text-align:center;
}

div#footerWrap a {
	color:#F14532;
}

div#footerWrap a:hover {
	color:#FBAEA6;
}

div#menu_2 {
	border-top:1px dotted #F14532;
	padding-top:5px;
}


/*ホーム・マイアカウント・お問合せリンク*/
.menu_1 {
	padding:0px;
	margin:0px;
	line-height:0em;
	text-align:right;
}
.menu_1 img{
	vertical-align:top;
}

a#linkHome,
a#linkMyAccount {
	margin-right:25px;
}

/* ************************************************
 *	左側メニュー
 * ************************************************ */


.sidemenu {
	width:190px;
	color:#333333;
	margin-bottom: 20px;
	}

.side_title {
	height:30px;
	background:transparent url(https://img.shop-pro.jp/tmpl_img/26/side_cat_title_bg.jpg) 0px 0px no-repeat;
	color:#6d2916;
	padding-left:15px;
	font-weight:bold;
	}

.side_text {
	background-color:#f9f4eb;
	padding:13px;
	}

.side_text ul li{
	padding-bottom:10px;
	}

.side_text ul li img{
	vertical-align:middle;
	}

.side_bottom {
	height:4px;
	background-color:#f9f4eb;
	background: url(https://img.shop-pro.jp/tmpl_img/26/side_bottom_bg.gif) no-repeat;
	}
#cartVew {
background:#FEFFD7;
padding:5px;
margin-bottom:10px;
}

#cartVew dt {
margin-bottom:5px;
}

#cartVew dd {
width:192px;
border:1px dotted #CCCCCC;
background:#FFFFFF;
font-size:12px;
padding:5px 3px;
}

/* -------------------------------------
 *	商品カテゴリｰエリア背景色
 * ------------------------------------- */

.side_cat_bg {
	width:190px;
	background:transparent url(https://img.shop-pro.jp/tmpl_img/26/side_cat_bg.gif) 0px 0px repeat-y;
	margin-bottom:25px;
	}

.side_cat_title {
	height:30px;
	background:transparent url(https://img.shop-pro.jp/tmpl_img/26/side_cat_title_bg.jpg) no-repeat;
	color:#6d2916;
	padding-left:15px;
	font-weight:bold;
	}

.side_cat_text {
	border-bottom:1px #dacdb9 solid;
	padding:10px 15px 10px 30px;
	background:transparent url(https://img.shop-pro.jp/tmpl_img/26/icon_side01.gif) no-repeat 15px 13px;
	line-height:0px;
	}

.side_cat_bottom {
	height:18px;
	background: url(https://img.shop-pro.jp/tmpl_img/26/side_cat_bottom_bg.jpg) no-repeat;
	}

.side_cat_text a {color: #eb5050;}
.side_cat_text a:link    {color: #eb5050;text-decoration: none;}
.side_cat_text a:visited {color: #eb5050;text-decoration: none;}
.side_cat_text a:active  {color: #eb5050;text-decoration: none;}
.side_cat_text a:hover   {color: #ff7a21;text-decoration: none;}


/* -------------------------------------
 *	カートの中 - 商品名・価格ボタン色/枠線色
 * ------------------------------------- */
.cart_item {
	border-left: 3px solid #dacdb9;
	border-right: 3px solid #dacdb9;
	margin: 3px 0px 3px 0px;
	padding-left:5px;
	font-size:80%;
	}


/* -------------------------------------
 *	会員専用ページ
 * ------------------------------------- */
#btn_members_login,
#btn_members_logout {
	text-align:center;
	}
#btn_members_signup {
	padding:7px 0px 0px;
	margin:10px 0px 0px;
	border-top:#dacdb9 dotted 1px;
	text-align:center;
	}
#btn_members_signup span,
#btn_members_logout span {
	display:block;
	font-size:10px;
	line-height:1.1em;
	padding-bottom:3px;
	text-align:center;
	}

/* ************************************************
 *	フッターメニュー
 * ************************************************ */

#footer {
	width: 785px;
	height: 79px;
	color: #432A16;
	font-size:80%;
	text-align: center;
	background: url(https://img.shop-pro.jp/tmpl_img/26/footer_bg.jpg) no-repeat;
	margin-top: 30px;
	margin-bottom: 15px;
	}

#menu_2 {
	text-align:center;
	margin-bottom: 5px;
	}

#copy {
	text-align:center;
	color:#333333;
	}

#footer a {color: #432A16;}
#footer a:link    {color: #432A16;text-decoration: none;}
#footer a:visited {color: #432A16;text-decoration: none;}
#footer a:active  {color: #432A16;text-decoration: none;}
#footer a:hover   {color: #7E5E44;text-decoration: none;}



/* ************************************************
 *	コンテンツ共通
 * ************************************************ */

h3.cateTitle {
	background:url('https://file002.shop-pro.jp/PA01394/059/img/h_title_bg.jpg') no-repeat;
	height:27px;
	width:704px;
	color:#9D0D31;
	font-size:14px;
	font-weight:bold;
	padding:6px 0 0 10px;
	margin-bottom:10px;
}


.main_title {
	background:url(https://file002.shop-pro.jp/PA01395/431/img/contents_title_bg.jpg) no-repeat;
	height:27px;
	width:704px;
	color:#9D0D31;
	font-size:14px;
	font-weight:bold;
	padding:6px 0 3px 10px;
	margin-bottom:10px;
	}

.main_title td{
	padding-left:15px;
	}

.main_title td img{
	vertical-align:middle;
	}

/* -------------------------------------
 *	会員専用価格の表示　トップページ用
 * ------------------------------------- */
.regular_price_top {
	padding:0px;
	margin:0px;
	font-size:11px;
	text-decoration:line-through;
	color:#666666;
}

.price_top {
	padding:0px;
	margin:0px;
}

.discount_rate_top {
	padding:0px;
	margin:0px;
	color:#ff0000;
}

/* ************************************************
 *	TOPコンテンツ
 * ************************************************ */

/* -------------------------------------
 *	お知らせエリア
 *	箇条書きでお知らせを掲載する際にご利用ください
 *	※初期設定では適用されていません
 * ------------------------------------- */

.info_bg {
	background:transparent url(https://img.shop-pro.jp/tmpl_img/26/info_bg.jpg) 0px 0px repeat-y;
	padding:0px 0px 5px;
	width:565px;
	}

.info_title {
	background:transparent url(https://img.shop-pro.jp/tmpl_img/26/info_top_bg.jpg) 0px 0px no-repeat;
	color:#6d2916;
	font-weight:bold;
	padding:7px 15px;
	margin:0px;
	}

.info_text {
	color:#333333;
	padding:0px 15px;
	}

.info_text_bottom {
	margin-top:10px;
	}

.info_block {
	width:550px;
	margin:0px auto;
	padding:15px 0px 0px;
	background:#ffffff;
}

.info_bottom {
	background:transparent url(https://img.shop-pro.jp/tmpl_img/26/info_bottom_bg.jpg) 0px 0px no-repeat;
	height:5px;
	margin-bottom:20px;
	}

.index_freespace_box {
  border: 3px solid #ffd3d4;
  border-radius: 4px;
  margin: 0 10px;
  padding: 0;
  width: 700;
}
.index_freespace_box p:first-child {
  background-color: #ffd3d4;
  border-radius: 1px 1px 0 0;
  padding: 4px 10px;
}
.free_space {
  font-size: 12px;
  height: 356px;
  line-height: 1.5em;
  margin: 5px 20px;
  overflow: auto;
  scrollbar-face-color: #ff8c00;
  scrollbar-track-color: #fff8dc;
  scrollbar-arrow-color: #ffffff;
  scrollbar-highlight-color: #fff8dc;
  scrollbar-shadow-color: #d2691e;
  scrollbar-3dlight-color: #ffebcd;
  scrollbar-darkshadow-color: #8b0000;
  width: 650px;
}

/* -------------------------------------
 *	フリースペース
 * ------------------------------------- */
.free_space {
	color:#333333;
	margin-bottom: 15px;
	}


/* ************************************************
 *	商品一覧　レイアウト
 * ************************************************ */


/* -------------------------------------
 *	一覧表示　並び順を変更(商品一覧）
 * ------------------------------------- */
.sort_01 {
	width: 564px;
	height: 30px;
	color: #432A16;
	font-size:80%;
	background: url(https://img.shop-pro.jp/tmpl_img/26/sort_bg.gif) no-repeat;
	margin-bottom: 1px;
	}

.sort_01 a,
.sort_01 a:link,
.sort_01 a:visited {
	color:#eb5050;
	text-decoration:none;
	}

.sort_01 a:active,
.sort_01 a:hover {
	color:#ff7a21;
	text-decoration:none;
	}

/* 会員専用価格の表示 商品一覧用 */
.regular_price_all {
	padding:0px 0px 2px;
	font-size:11px;
	text-decoration:line-through;
	color:#666666;
	margin:0px;
}

.price_all {
	padding:0px;
	margin:0px;
}

.discount_rate_all {
	padding:2px 0px 0px;
	color:#ff0000;
	margin:0px;
}


/* -------------------------------------
 *	一覧表示　並び順を変更(商品検索結果）
 * ------------------------------------- */

.sort_02 {
	width: 564px;
	height: 28px;
	color: #432A16;
	font-size:80%;
	background: url(https://img.shop-pro.jp/tmpl_img/26/sort_bg.gif) no-repeat;
	margin-bottom: 1px;
	}

.sort_02 a,
.sort_02 a:link,
.sort_02 a:visited {
	color:#eb5050;
	text-decoration:none;
	}

.sort_02 a:active,
.sort_02 a:hover {
	color:#ff7a21;
	text-decoration:none;
	}

/* 会員専用価格の表示 商品検索結果用 */
.regular_price_search {
	padding:0px 0px 2px;
	font-size:11px;
	text-decoration:line-through;
	color:#666666;
	margin:0px;
}

.price_search {
	padding:0px;
	margin:0px;
}

.discount_rate_search {
	padding:2px 0px 0px;
	color:#ff0000;
	margin:0px;
}


/* -------------------------------------
 *	一覧表示　商品数と表示数
 * ------------------------------------- */
.pagenavi {
	width: 714px;
	height: 30px;
	color: #432A16;
	font-size:80%;
	background:#E6E6E6;
	margin-bottom: 15px;
	}


/* -------------------------------------
 *	商品一覧表示のレイアウト
 * ------------------------------------- */

div#mainWrap p.tabProduct {
	width:204px;
	height:24px;
	background:#FF9B58 url(https://img02.shop-pro.jp/PA01124/804/etc/contents_tab_bg_3.jpg) no-repeat;
	color:#FFFFFF;
	text-align:center;
	padding:11px 0 2px 0;
	margin-bottom:2px;
}


.product_list {
	float: left;
	width: 700px;
	padding:5px 0px 10px;
	border-bottom:1px dotted #666666;
	}


.product_item {
	width:680px;
	margin:0px;
	}

.product_item img {
	padding: 4px;
	margin-right:10px;
	border: 1px #dacdb9 solid;
	width:130px;
	float:left;
	}

.product_item .name {
	line-height: 120%;
	margin:10px 0px 0px;
	float:right;
	width:530px;
	font-size:13px;
	text-align:left;
	font-size:1.1em;
	padding-bottom:3px;
	border-bottom:1px dotted #CCCCCC;
	}

.product_item .name img{
	vertical-align:middle;
	}

.product_item .price {
	margin:5px 0px 0px;
	padding-bottom:3px;
	color: #FF0000;
	font-weight:bold;
	text-align: left;
	width:530px;
	float:right;
	border-bottom:1px dotted #CCCCCC;
	}

.product_item .expl {
	color: #333;
	font-size:1em;
	line-height:130%;
	margin:5px 0px 0px;
	padding-bottom:3px;
	text-align: left;
	width:530px;
	float:right;
	border-bottom:1px dotted #CCCCCC;
	}

.product_item .expl img{
	border:none;
	width:174px;
	padding:0
	}

.product_item .expl2 {
	color: #333;
	font-size:1em;
	line-height:130%;
	width:530px;
	margin:5px 0;
	text-align:left;
	float:right;
	}

.product_item .expl2 img{
	border:none;
	width:174px;
	padding:0
	}


.product_list a,
.product_list a:link,
.product_list a:visited {
	text-decoration:none;
	}

.product_list a:active,
.product_list a:hover {
	text-decoration:none;
	}


/* -------------------------------------
 *	一覧表示　特徴説明(商品一覧）
 * ------------------------------------- */
.item-exp___common1 {
    width: 650px;
}
.item-exp {
    border: 3px solid #96c548;
    padding: 14px 8px;
    background-color: #faf9f5;
    width: 714px;
    box-sizing: border-box;
    margin-bottom: 30px;
    text-align: center;
}
.item-exp___left {
    position: relative;
    width: 341px;
    margin-top: 25px;
}
.item-exp___left .item-name {
    text-align: center;
    margin-bottom: 20px;
}
.item-exp___left .item-name::after {
	background: url('https://file002.shop-pro.jp/PA01395/431/img/catalog/common_title.png');
	background-size: contain;
	content:" ";
	display: inline-block;
	height: 61px;
	margin: -2px 0 0 0;
	vertical-align: middle;
	width: 300px;
}
.item-exp___left .catchcopy {
    margin: 36px 0 0 27px;
    text-align: left;
    letter-spacing: 0.5;
    font-size: 1.4em;
}
.item-exp___left .catchcopy p {
    display: block;
    font-size: 1.3em;
    font-weight: bold;
    line-height: 1.25em;
    position: relative;
    z-index: 100;
}
.item-exp___left .catchcopy span.letter-s3-5 {
    letter-spacing: 3.5;
}
.item-exp___left .catchcopy span.letter-s4 {
    letter-spacing: 4;
}
.item-exp___left .catchcopy span.letter-s4-2 {
    letter-spacing: 4.2;
}
.item-exp___left .catchcopy span.letter-s5 {
    letter-spacing: 5;
}
.item-exp___left .catchcopy::after {
    content: url('https://file002.shop-pro.jp/PA01395/431/img/catalog/common_catchcopy.png');
    margin: -17px 0 0 0;
    position: absolute;
    z-index: 1;
    left: 27;
    width: 318px;
    vertical-align: middle;
}
.item-exp___left .point {
    margin-top: 57px;
    text-align: left;
    margin-left: 27px;
    margin-bottom: 18px;
}
.item-exp___left .point li {
    width: 360px;
    height: 40px;
    font-size: 1.3em;
    font-weight: bold;
}
.item-exp___left .point li::after {
    content: url('https://file002.shop-pro.jp/PA01395/431/img/catalog/common_point.png');
    margin: 20px 0 0 0;
    position: absolute;
    z-index: 1;
    left: 27px;
    width: 341px;
    vertical-align: middle;
}

.item-exp___right {
    position: relative;
    width: 300px;
}
.item-exp___right____photo {
    position: absolute;
    width: 100%;
    z-index: 100;
    top: 22px;
    right: 20px;
}

.item-exp-box01 {
    background-color: #cae0a2;
    padding: 20px;
    max-width: 641px;
    font-size: 0.8em;
    overflow: hidden;
    margin: 0 25px 28px;
}
.item-exp-box01___thumb {
    padding: 5px 0;
    background-color: #fff;
    max-width: 200px;
    width: 100%;
    text-align: center;
}
.item-exp-box01 p {
    line-height: 2em !important;
    max-width: 360px;
    width: 100%;
    margin: 0px auto auto 20px;
    text-align: left;
}

.item-exp .yakumono-head {
    display: inline-block;
    margin-left: -5px;
}
.item-exp .yakumono {
    letter-spacing: -0.35em;
}


/* -------------------------------------
 *	ぱんくずリスト
 * ------------------------------------- */
.footstamp {
	width: 714px;
	height: 30px;
	background:#ffffff;
	color: #333333;
	margin-bottom: 15px;
	}

.footstamp a {color: #eb5050;}
.footstamp a:link    {color: #eb5050;text-decoration: none;}
.footstamp a:visited {color: #eb5050;text-decoration: none;}
.footstamp a:active  {color: #eb5050;text-decoration: none;}
.footstamp a:hover   {color: #ff7a21;text-decoration: none;}

.txt-f10 {
	font-size:10px;
}

.footstamp img {
	vertical-align:middle;
}

/* -------------------------------------
 *	商品が無い時の表示
 * ------------------------------------- */
.nodata {
	width: 90%;
	padding-top: 20px;
	text-align: center;
	}



/* ************************************************
 *	商品詳細　レイアウト
 * ************************************************ */

#detail {
	text-align:center;
	color:#333333;
	}

#detail .expl {
	line-height:150%;
	text-align: left;
	margin: 10px 10px 5px 10px;
	padding:3px;
	float:left;
	width:330px;
	background:#FFF1D9;
	border:1px solid #F66EC8;
	}

#detail .main_img {
	margin: 0 0 10px 0px;
	border:1px #ccc solid;
	width: 100%;
	max-width: 360px;
}

#detail .sub {
	float: left;
	text-align: center;
	}

.product_cell .product_thumb .sub {
	margin: 0 4px 8px 0;
	padding: 4px;
	border:1px #ccc solid;
}
.product_thumb .sub:nth-child(3n) {
	margin-right: 0;
}
.product_thumb .sub img {
   	width: 108px;
}

#detail .table {
	width: 400px;
	background:transparent url(https://img.shop-pro.jp/tmpl_img/26/detail_table_bg.jpg) left top repeat-y;
	text-align:left;
	margin:20px auto 30px;
	}

#detail .table .cell_1 {

	}

#detail .table .cell_2 {

	}
.cell_2 { font-size: 12px; }

#detail .table .cell_mar {
	margin: 0px;
	}

/* 特定商取引法に基づく表記（返品など）ボタン */
p#sk_link_other {
text-align:left;
	margin-top:10px;
}

p#sk_link_other a {
	font-size:12px;
}

/* 会員専用価格の表示 商品詳細用 */
.regular_price_detail {
	padding:5px 0px 0px;
	margin:0px;
	text-decoration:line-through;
}

.price_detail {
	padding:0px;
	margin:0px;
	color:#ff0000;
	font-weight:bold;
}

.discount_rate_detail {
	padding:0px 0px 5px;
	margin:0px;
	color:#ff0000;
}

/* -------------------------------------
 *	この商品を買った人はこんな商品も買ってます
 * ------------------------------------- */

#together {
	margin: 0px 10px 0px 10px;
	}

#together .tog_main_title {
	font-weight:bold;
	margin:30px 0px 5px;
	color:#6d2916;
	padding:5px 10px;
	background:#f9f4eb;
	}

#together .together_list {
	margin:10px 3px 10px 3px;
	float:left;
	width: 170px;
	text-align:center;
	}

#together img {
	padding: 4px;
	border: 1px #dacdb9 solid;
	}

/* -------------------------------------
 *	トラックバック
 * ------------------------------------- */

#trackback {
	margin: 0px 10px 20px 10px;

	}

#trackback .tb_main_title {
	font-weight:bold;
	margin:30px 0px 5px;
	color:#6d2916;
	}


#trackback .tb_url {
	font-size:11px;
	padding:10px 13px;
	background:#f9f4eb;
	color:#6d2916;
	}

#trackback .tb {
	margin:0px 0px 5px;
	border:1px solid #dacdb9;
	}

#trackback .tb_date {
	font-size:80%;
	padding: 10px 10px 10px 10px;
	}

#trackback .tb_title {
	padding: 0px 10px 10px 10px;
	color:#6d2916;
	}

#trackback .tb_body {
	line-height: 150%;
	padding: 10px 10px 10px 10px;
	border-top: 1px dotted #dacdb9;
	border-bottom: 1px dotted #dacdb9;
	}

#trackback .tb_state {
	padding: 5px 10px 5px 10px;
	}

.product_wrap {
	display: grid;
	display: -ms-grid;
	grid-template-rows: auto auto;
	-ms-grid-row: auto auto;
	grid-column: auto;
	-ms-grid-column: auto;	grid-template-rows: auto auto;
	-ms-grid-row: auto auto;
	grid-column: auto;
	-ms-grid-column: auto;
	margin: 0 0 40px 0;
}

.product_wrap .product_cell {
	grid-row:1/2;
	grid-column: auto;
}

.product_wrap .product_cell:nth-child(1) {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
}

.product_wrap .product_cell:nth-child(2) {
	-ms-grid-row: 1;
	-ms-grid-column: 2;
}

/* .productLeft, .productRight {
  width: 48%;
  float: left;
  box-sizing: border-box;
  margin-right: 10px;
}
.productRight {
  margin-right: none;
}
.productRight:after {
  content: ".";
  display: block;
  height: 0;
  font-size:0;
  clear: both;
  visibility:hidden; 
}*/




/* ************************************************
 *	商品オプションページ
 * ************************************************ */
#Option .option_table {
	width: 564px;
	margin-bottom:5px;
	border-left: 1px solid #dacdb9;
	border-top: 1px solid #dacdb9;
	}

#Option .option_cell1 {
	font-size: 11px;
	text-align:left;
	font-weight:normal;
	padding:5px;
	border-right: 1px solid #dacdb9;
	border-bottom: 1px solid #dacdb9;
	padding-left: 6px;
	}

#Option .option_cell2 {
	font-size:80%;
	text-align:left;
	padding:5px;
	border-right: 1px solid #dacdb9;
	border-bottom: 1px solid #dacdb9;
	background-color:#FFFFFF;
	padding: 2px 6px 2px 6px;
	}

#Option .option_cell3 {
	font-size:80%;
	text-align:left;
	padding:5px;
	border-right: 1px solid #dacdb9;
	border-bottom: 1px solid #dacdb9;
	background-color:#FFFFFF;
	padding: 2px 10px 2px 6px;
	}

/* 会員専用価格の表示 オプション用 */
.regular_price_stock {
	padding:0px;
	margin:0px;
	font-size:11px;
	text-decoration:line-through;
	color:#666666;
}

.price_detail_stock {
	padding:0px;
	margin:0px;
}

.discount_rate_stock {
	padding:0px;
	margin:0px;
	color:#ff0000;
}

/* ************************************************
 *	特定商取引法・お支払い方法・配送設定について
 * ************************************************ */
.payment_img {
	width:30px;
	height:30px;
	margin:3px;
}

#ShopKeeper {
	width: 714px;
	color:#333333;
	margin-bottom: 15px;
	border-top: 1px solid #cccccc;
	border-left: 1px solid #cccccc;
	}


#ShopKeeper th {
	width: 160px;
	padding:10px;
	border-right: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
	font-size: 80%;
	font-weight: normal;
	text-align:left;
	}

#ShopKeeper td {
	border-right: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
	padding:10px;
	font-size: 80%;
	text-align:left;
	}

#ShopKeeper td table th,
#ShopKeeper td table td,
#ShopKeeper td table,
#ShopKeeper td table {
	border-right:none;
	border-top:none;
	border-left:none;
	border-bottom:none;
	}

#ShopKeeper th img,
#ShopKeeper td img {
	vertical-align:middle;
	}

/* 検索結果 */
.txt-search {
	padding:5px 10px;
	background:#f6eddf;
	border-bottom:#ffffff solid 1px;
	}

.txt-hitNum {
	margin-bottom:15px;
	padding:5px 10px;
	background:#f6eddf;
	}

.txt-search strong,
.txt-hitNum strong {
	color:#6d2916;
	font-weight:bold;
	}

/* オプションリンク */
.txt-optionLink {
	margin-bottom:15px;
	font-weight:bold;
	padding:0px 0px 0px 15px;
	background:transparent url(https://img.shop-pro.jp/tmpl_img/26/icon_side01.gif) no-repeat 0px 5px;
	line-height:0px;
}
ul.product-linkList li {
	margin-bottom:5px;
	padding:0px 0px 0px 15px;
	background:transparent url(https://img.shop-pro.jp/tmpl_img/26/icon_side01.gif) no-repeat 0px 5px;
}

/* ************************************************
 *	プライバシーポリシー
 * ************************************************ */

#PrivacyExplain {
	color:#333333;
	margin-bottom: 15px;
	font-size:0.9em;
	line-height:160%;
	}

.pe_title {
	color: #432A16;
	border-top: 1px solid #dacdb9;
	padding-top: 15px;
	font-size:0.9em;
	line-height:160%;
	}

.pe_note {
	line-height: 150%;
	margin:5px 5px 20px 30px;
	font-size:0.9em;
	line-height:160%;
	color:#333333;
	}



/**********************************************************************/

/* ************************************************
 *	商品詳細ページ
 * ************************************************ */

div.detail {margin:10px 0;}

div.detail_img {width:100%;text-align:center;}

/* -------------------------------------
 *	商品のスペック表
 * ------------------------------------- */

table.spec {
	background:#CCC;/*商品価格表-罫線の色*/
	width:330px;
	float:left;
	margin:10px;
	text-align:left;
}

table.spec th {
	background:#EFEFEF;/*商品価格表右側セルの背景色*/
	padding:5px;
	width:80px;
	color:#333;/*商品価格表右側セルの文字色*/
	font-weight:normal;
	text-align:left;
	border-bottom:1px dotted #CCCCCC;
}

table.spec td {
	background:#FFF;/*商品価格表左側セルの背景色*/
	padding:5px;
		border-bottom:1px dotted #CCCCCC;
}

table.spec table.num td {padding:0px;}

table.spec td.sales {
	color:#CC0000;/*商品価格表-販売価格の文字色*/
	font-weight:bolder;
}

/* 「カートに入れる」ボタン */
div.cart_in {
width:330px;
float:left;
	text-align:right;
	margin-top:10px;
}
div.cart_in img {
	width:132px;
	height:34px;
}

/* 商品の説明 */
div.explain {margin:10px 0;}

/* 「この商品について問い合わせる」等のボタン */
div.etc {
	text-align:center;
	margin-top:10px;
}
div.etc img {
margin:5px;
	}



/* ************************************************
 * ------------------------------------------------
 *	下層ページ
 * ------------------------------------------------
 * ************************************************ */


/*トップページ*/
div.best4L {
width:323px;
margin-left:20px;
padding-right:15px;
border-right:1px dotted #999999;
float:left;
}

div.best4R {
float:right;
width:323px;
margin-right:25px;
}


dl.best4 {
margin-bottom:3px;
padding-bottom:3px;
border-bottom:1px dashed #CCCCCC;
clear:both;
}
dl.best4 dt {
float:left;
width:103px;
}
dl.best4 dd {
float:left;
width:210px;
height:78px;
padding:5px;
background:#EBEBEB;
font-size:12px;
line-height:150%;
}

div#setPoint dl {
float:left;
margin:10px 4px 10px 0;
width:135px;
height:430px;
padding:1px;
background:#EBEBEB;
}

div#setPoint dl dd {
color:#333333;
font-size:12px;
line-height:150%;
background:#EBEBEB;
padding:5px;
margin:2px 0 4px;
border-top:4px solid #FFFFFF;
}

div#setPoint dl.point1 {
border:#FF5157 1px solid;
}
div#setPoint dl.point2 {
border:#0087E0 1px solid;
}
div#setPoint dl.point3 {
border:#76D300 1px solid;
}
div#setPoint dl.point4 {
border:#F39800 1px solid;
}
div#setPoint dl.point5 {
border:#FFA3A3 1px solid;
}

.Personal-Button3 {
	width: 680px;
	margin-left:25px;
}
.Button-ul {
list-style:none;
overflow:hidden;
margin-bottom:20px;
}
.Button-li {
float:left;
padding-right:15px;
}

table.soutei {
width:714px;
margin-bottom:10px;
font-size:12px;
line-height:150%;
	border-top: 1px solid #FF5157;
}
table.soutei th {
width:210px;
padding:5px;
	background:#FFE8B3;
	border-bottom: 1px solid #FF5157;
	border-right: 1px solid #FF5157;
	border-left: 1px solid #FF5157;
}
table.soutei td {
	background:#FFF4DD;
	padding:5px;
	border-right: 1px solid #FF5157;
	border-left: 1px solid #FF5157;
	border-bottom: 1px solid #FF5157;
}


table.soutei2 {
width:395px;
margin:0 7px 10px 0;
font-size:11px;
line-height:150%;
	border-right: 1px solid #FF5157;
}
table.soutei2 th {
padding:5px;
	background:#E1E1E1;
	border: 1px solid #FF5157;
	text-align:center;
}
table.soutei2 td {
	background:#FFF4DD;
	padding:5px;
	border-left: 1px solid #FF5157;
	border-bottom: 1px solid #FF5157;
}

table.soutei2 td.kijyun {
	background:#FFE8B3;}

div.setBox {
width:698px;
border:1px solid #FF5157;
padding:5px;
margin:0 5px 10px;
}
div.setBox img {
float:left;
}
div.setBox p {
width:340px;
float:right;
font-size:12px;
line-height:150%;
}

div.setBox:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
div.top_teikyo_img {
    padding: 10px 5px 5px 10px;
}

/*下層ページ*/
div#mainWrap h3.cateTitle {
	background:url(https://file002.shop-pro.jp/PA01395/431/img/contents_title_bg.jpg) no-repeat;
	height:27px;
	width:704px;
	color:#9D0D31;
	font-size:14px;
	font-weight:bold;
	padding:6px 0 0 10px;
	margin-bottom:10px;
}

div#mainWrap p.tab {
	width:204px;
	height:24px;
	background:#FF9B58 url(https://img02.shop-pro.jp/PA01124/804/etc/contents_tab_bg_3.jpg) no-repeat;
	color:#FFFFFF;
	text-align:center;
	padding:11px 0 2px 0;
	margin-bottom:2px;
}

p.tab {
	width:204px;
	height:24px;
	background:#FF9B58 url(https://img02.shop-pro.jp/PA01124/804/etc/contents_tab_bg_3.jpg) no-repeat;
	color:#FFFFFF;
	text-align:center;
	padding:11px 0 2px 0;
	margin-bottom:2px;
}

div#mainWrap p.tab2 {
	width:669px;
	height:27px;
	background:url(https://img02.shop-pro.jp/PA01124/804/etc/contents_tab_bg2.jpg) no-repeat;
	color:#FFFFFF;
	font-weight:bold;
	padding:12px 0 0 45px;
	margin-bottom:2px;
}
div#mainWrap p.tab3 {
	width: 708px;
	height:27px;
	background:url(https://img02.shop-pro.jp/PA01124/804/etc/contents_tab_bg2.jpg) no-repeat;
	color:#FFFFFF;
	font-weight:bold;
	padding:12px 0 0 17px;
	margin-bottom:2px;
}
div#mainWrap p.tab3_2 {
	width: 708px;
	height:27px;
	background:url(https://img02.shop-pro.jp/PA01124/804/etc/contents_tab_bg2_1.jpg?20150326180728) no-repeat;
	color:#FFFFFF;
	font-weight:bold;
	padding:12px 0 0 17px;
	margin-bottom:2px;
}

div#mainWrap p.tab4 {
	width:502px;
	height:24px;
	background:url(https://img02.shop-pro.jp/PA01124/804/etc/contents_tab_bg_4.jpg) no-repeat;
	color:#FF0000;
	font-weight:bold;
	text-align:center;
	padding:11px 0 2px 0;
	margin-bottom:2px;
	margin-left:5px;
}
div#mainWrap p.tab5 {
	width:717px;
	height:31px;
	background:url(https://img02.shop-pro.jp/PA01124/804/etc/contents_tab_bg_5.jpg) no-repeat;
	color:#FF0000;
	font-weight:bold;
	text-align:center;
	padding:13px 0 0 0;
	margin:0 0 3px 0;
}

div#mainWrap p.tabLong {
	width:304px;
	height:24px;
	background:url('https://file002.shop-pro.jp/PA01395/431/img/contents_tab_bg_long.jpg') no-repeat;
	color:#FFFFFF;
	text-align:center;
	padding:11px 0 2px 0;
	margin-bottom:2px;
}





table.condate {
	width:714px;
}

table.condate th {
	font-size:12px;
	color:#CA7E00;
	background:#EBEBEB;
	text-align:center;
	font-size:11px;
	padding:5px;
	border-top: 1px solid #FF9F00;
	border-bottom: 1px solid #FF9F00;
	border-left: 1px solid #FF9F00;
}

table.condate th.noBord1,table.condate td.noBord1 {
	border-top: none;
	border-bottom:1px solid #FFFFFF;
	border-left: 1px solid #FF9F00;
}

table.condate th.noBord2,table.condate td.noBord2 {
	border-top: none;
	border-bottom:1px solid #FFFFFF;
	border-left: none;
}

table.condate td {
font-size:12px;
	padding:5px;
	border-bottom: 1px solid #FF9F00;
	border-left: 1px solid #FF9F00;
}

table.condate th.noColor {
background:#FFFFFF;
}

.condateColor1 {
background:#FFEED0;
text-align:center;
}

.condateColor2 {
background:#FAF892;
}

.condateColor3 {
background:#AAFD8A;
}

.condateColor4 {
background:#A7E1FE;
}
.condateColor5 {
background:#FFFFCC;
}

.condateColor6 {
background:#FFF5D2;
}

.condateColor7 {
background:#fbf1f3;
}

table.condate th#enelgy {
background:#FFECAC;
}

table.condate td img {
background:#FFFFFF;
padding:3px;
}
table.condate td img.buybt {
background:none;
padding:0px;
}

.tabelBg1 {
	background:#FF9F00;
	vertical-align:top;
	text-align:center;
}

.tabelBg1 img {
margin-bottom:3px;
}

.tabelBg1 input {
cursor:pointer;
width:95px;
}


.tabelBg2 {
	background:#6CC200;
	vertical-align:top;
	text-align:center;
}
.tabelBg2 img {
margin-bottom:3px;
}

.tabelBg2 input {
cursor:pointer;
width:95px;
}


/********1週間セットのボタン*********/
table.setBuy {
border:none;
}

table.setBuy td {
padding:0 7px 0 0;
}



/*栄養成分表*/
table.seibun1 {
	width:712px;
	margin:0 0 10px 0;
	font-size:11px;
	line-height:150%;
	border-right: 1px solid #FF5157;
}
table.seibun1 th {
	padding:5px;
	background:#E1E1E1;
	border: 1px solid #FF5157;
	text-align:center;
}
table.seibun1 td {
	background:#FFF4DD;
	padding:5px;
	border-left: 1px solid #FF5157;
	border-bottom: 1px solid #FF5157;
}

table.seibun1 td.color1 {
	background: #A4F1FF;
}
table td.color1 {
	background: #CCFFFF;
}
table td.color1_2 {
	background: #A4F1FF;
}
table td.color1_3 {
	background: #FFFFCC;
}
table td.color1_4 {
	background: #FFFF99;
}

/*栄養成分表その２*/

div.eiyouBox {
clear:both;
margin-bottom:10px;
}

.eiyouBox dl {
width:343px;
border:1px solid #CCCCCC;
padding:2px;
}
.eiyouBox dl dt {
background:url(https://img02.shop-pro.jp/PA01124/804/etc/list_title_bg.jpg) no-repeat;
color:#993300;
font-weight:bold;
width:333px;
height:16px;
padding:10px 0 8px 10px;
margin-bottom:3px;
}

.eiyouBox dl dd.photo {
width:125px;
margin-right:3px;
float:left;
}
.eiyouBox dl dd.text {
width:205px;
float:right;
font-size:12px;
line-height:150%;
background:#F6F6F6;
border:1px solid #DDDDDD;
padding:3px;
}

.eiyouBox dl dd.text span {
font-weight:bold;
border-bottom:1px dotted #CCCCCC;
display:block;
margin:0 0 3px 0;
padding:3px 0;
}

dl.eiyouL {
float:left;
margin-right:10px;
}

p.eiyouCoution {
color:#FF0000;
}

/*栄養成分表その３
１カラムで規約リストを表示する*/
div.eiyouBox_1col {
clear:both;
margin-bottom:60px;
}

.eiyouBox_1col dl {
width: 708px;
border:1px solid #CCCCCC;
padding:2px;
}
.eiyouBox_1col dl dt {
background:url(https://img02.shop-pro.jp/PA01124/804/etc/list_title_bg2.jpg?20150326184109) no-repeat;
color:#993300;
font-weight:bold;
width:708px;
height:16px;
padding:10px 0 8px 10px;
margin-bottom:3px;
}

.eiyouBox_1col dl dd.photo {
width:125px;
margin-right:3px;
float:left;
}
.eiyouBox_1col dl dd.text {
width: 580px;
float:right;
font-size:12px;
line-height:150%;
background:#F6F6F6;
border:1px solid #DDDDDD;
box-sizing: border-box;
padding:3px;
}

.eiyouBox_1col dl dd.text span {
font-weight:bold;
border-bottom:1px dotted #CCCCCC;
display:block;
margin:0 0 3px 0;
padding:3px 0;
}

p.eiyouCoution {
color:#FF0000;
}

div#flowContents {
	font-size:12px;}
dl.flowNo dt {
	margin-bottom:5px;
	clear:both;
}
dl.flowNo dd.flowImage {
	float:left;
	margin:0 5px 5px 10px;
	width:94px;
}
p.flowtext {
	width:680px;
	padding:10px;
	background:#FFF4D2;
	border:1px solid #EC7D86;
	margin:10px auto;
}
.flowNo_imgbig {
	display: flex;
	margin-bottom: 20px;
}
.flowNo_title {
	margin: 17px 0;
}
/* .flowNo_title img {
	width: 100%;
} */
.flowNo_imgbig_flowimage {
	margin:0 16px 0 0;
	width: 200px;
	height: 150px;
}
.flowNo_imgbig_text {
	font-size: 15px;
	line-height: 1.4em;
}
p.flowtext {
	width:680px;
	padding:10px;
	background:#FFF4D2;
	border:1px solid #EC7D86;
	margin:10px auto;
}
div.plan1 {
	width:340px;
	float:left;
	margin-left:10px;
}
div.plan1In {
	border:1px solid #FF9651;
	padding:4px;
	line-height:140%;
}
div.plan1In dt {
	clear:both;
	margin-bottom:10px;
}
dl dd.flowImage {
	float:left;
	margin-right:5px;
	margin-bottom:10px;
}
div.plan2 {
	width:340PX;
	float:right;
	margin-right:10px;
}
div.plan2In {
	border:1px solid #209665;
	padding:4px;
	line-height:140%;
}
div.plan2In p {
margin-bottom:10px;
}
div.plan2In dl dt {
	font-weight:bold;}
div.plan2In dl dd {
	clear:both;}
div.plan2In dl dd.planImage {
	float:left;
	clear:none;
	margin:0 3px 5px 0;
}
div#flowContents ol.caution {
	list-style-position: inside;
	list-style-type: decimal;
	background:#FFFAE8;
	padding:5px;
	margin:10px;
}
div#flowContents ol.caution li {
	margin-bottom:10px;}



/* **献立の栄養成分表** */
table.seibunlist {
	width:100%;
	border-right: 1px solid #FF9F00;
}
table.seibunlist th {
	font-size:12px;
	color:#CA7E00;
	text-align:center;
	font-size:11px;
	padding:5px;
	border-top: 1px solid #FF9F00;
	border-bottom: 1px solid #FF9F00;
	border-left: 1px solid #FF9F00;
}
table.seibunlist td {
	font-size:12px;
	padding:5px;
	border-bottom: 1px solid #FF9F00;
	border-left: 1px solid #FF9F00;
}
table.condate th.noColor {
	background:#FFFFFF;}
.condateColorgr {
	background:#E3E3E3;}
table.condate th#enelgy {
	background:#FFECAC;}
table.seibunlist2 {
	border-right: 1px solid #FF9F00;
	text-align:center;
	margin-bottom:10px;
	width:95%;
}
table.seibunlist2 th {
	color:#CA7E00;
	text-align:center;
	font-size:10px;
	padding:5px 1px;
	border-top: 1px solid #FF9F00;
	border-bottom: 1px solid #FF9F00;
	border-left: 1px solid #FF9F00;
	width:24px;
}
table.seibunlist2 td {
	font-size:10px;
	width:24px;
	padding:5px 1px;
	border-bottom: 1px solid #FF9F00;
	border-left: 1px solid #FF9F00;
}

　
/*
************* f2 *************
*/
div.schedule { /* 余分にルールを書かないとp.prelunchbox_sceが一向に反映されないから */
}
div.schedule p.prelunchbox_sce {
  background: url(https://file002.shop-pro.jp/PA01395/431/images/sce_bg_2.jpg) no-repeat;
  width:493px;
  height:46px;
  font-size:22px;
  font-weight:bold;
  text-align:center;
  padding-top:17px;
  padding-left:20px;
  color:#FFFFFF;
  margin-left:5px;
}
div.schedule p.prelunchbox_sce a:link, div.schedule p.prelunchbox_sce a:active, div.schedule p.prelunchbox_sce a:hover {
  color:#FFFFFF !important;}
div.schedule p.prelunchbox_sce a:hover {
 text-decoration:none;}



/* ********納期表示************** */

div.schedule {
width:100%;
margin-bottom:10px;
}
div.schedule p.sce {
background: url(https://img02.shop-pro.jp/PA01124/804/etc/sce_bg_2.jpg) no-repeat;
width:493px;
height:46px;
font-size:22px;
font-weight:bold;
text-align:center;
padding-top:17px;
color:#FFFFFF;
margin-left:5px;
}

div#condate div.schedule table.scet {
	float:right;
	width:270px;
	margin-right:10px;
	border-bottom:1px solid #DC8A00;
	border-right:1px solid #DC8A00;
	font-size:12px;
}

div#condate div.schedule table.scet th {
padding:6px 3px;
border-top:1px solid #DC8A00;
border-left:1px solid #DC8A00;
background:#FFEFD2;
color:#B26504;
width:80px;
}

div#condate div.schedule table.scet td {
padding:6px 3px;
border-top:1px solid #DC8A00;
border-left:1px solid #DC8A00;
font-size:14px;
font-weight:bold;
}


div.detailLink {
text-align:center;
margin-bottom:10px;
}

/*********再加熱***************/

p.kanetsutop {
font-size:13px;
margin-bottom:10px;
margin-right:5px;
padding:5px;
line-height:160%;
border:1px solid #F4A623;
background:#FFEED0;
}

div#kLef {
float:left;
width:340px;
margin-left:5px;
}

div#kRig {
float:right;
width:340px;
margin-right:5px;
}
dl.kanetsu {
width:340px;
clear:both;
}
dl.kanetsu dt {
margin-bottom:5px;
}

dl.kanetsu dd.photo {
width:192px;
float:left;
margin-bottom:10px;
}

dl.kanetsu dd.photo span {
font-size:11px;
line-height:140%;
padding:0 10px;
width:172px;
display:block;
}

dl.kanetsu dd.kictext {
width:130px;
margin-bottom:10px;
float:right;
padding:5px;
font-size:0.8em;
line-height:160%;
background:#FFEED0;
}


dl.kanetsu dd.allw {
clear:both;
font-size:0.75em;
line-height:160%;
padding:5px;
border-top:1px dotted #CCCCCC;
}

p.caution1 {
color:#333333;
font-size:12px;
line-height:150%;
}


/*FAX用紙*/
div#print {
text-align:center;
}


div#print p.bt {
border-top:1px dotted #999999;
padding-top:10px;
}

div#print p.ptintText {
font-size:12px;
line-height:140%;
text-align:left;
padding-bottom:10px;
border-bottom:1px dotted #999999;
}

h4.customer {
width:690px;
margin:20px 0 10px 0;
padding:0 0 0 10px;
font-weight:bold;
	padding-bottom:10px;
	border-bottom:1px dotted #999999;
}

/* =========== IE用印刷設定CSS =========== */

@media print{

body {
_zoom: 67%; /*WinIE only */
background:#FFFFFF;
}
div#header {
display:none;
}
div#searchBox {
display:none;
}
div#headNav {
display:none;
}
div#sideWrap {
display:none;
}

div#mainWrap {
float:none;
margin:0;
padding:0;
}


div#footerWrap {
display:none;
}

h3.cateTitle {
display:none;
}

p.bt {
display:none;
}

div#print {
text-align:left;
}

}

/*========= Add SNIPPETS =========*/
/* 共通 */
/*
a:link {
  color: #6481BC;
  text-decoration: none;
}
a:active {
  color: #6481BC;
}
*/
body {
  background: url('https://file002.shop-pro.jp/PA01395/431/img/background.jpg') repeat top left;
}
#header {
  background: url('https://img21.shop-pro.jp/PA01395/431/etc/header.png?cmsp_timestamp=20170726190627');
}
.side_login_box {
  border: 3px solid #ffd3d4;
  border-radius: 4px;
  margin-top: 10px;
  padding: 4px;
}
.text-center {text-align: center;}
/* 共通-フッター */
div#footerWrap {color: #6481BC;}
div#footerWrap a { color: #6481BC;}
div#footerWrap a:hover { color: #B9C5DC;}
div#footerWrap div#copy {background: #6481BC none repeat scroll 0 0;}
div#menu_2 {border-top: 1px dotted #6481BC;}

table.seibunlist2 {border-top: 1px solid #ff9f00;}
.product_item .expl2 img {width: 175px;}
/* f4 */
dl.kanetsu dd.photo2 {
  width: auto !important;
}
dl.kanetsu dd.kictext2 {
  background: #ffeed0 none repeat scroll 0 0;
  float: left;
  font-size: 0.8em;
  line-height: 160%;
  margin-bottom: 10px;
  padding: 5px;
  width: 284px;
}
.kanetsu dt {
  background: url('https://img21.shop-pro.jp/PA01345/757/etc/f4-flow-title.png?cmsp_timestamp=20160311182517') no-repeat top left;
  background-size: cover;
  box-sizing: border-box;
  margin-left: 0;
  padding: 10px 0 0 8px;
  width: 340px; height: 34px;
}
.kanetsu dt.green {color: #416B00;}
.kanetsu dt.orange {color: #C27B00;}

/* f5 */
#agreement dl {
  border-top: 1px solid #ccc;
  font-size: 1.2em;
  line-height: 1.5em;
  margin: 20px 30px 20px 12px;
  padding-top: 10px;
}
#agreement dl dt {font-weight: bold;}
#agreement h4 {
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 20px;
}
#agreement ul {
  list-style: disc;
  margin-left: 40px;
}
/* f13 */
.line-EC7D86 {
  border-top: 1px solid #EC7D86;
  height: 0;
  margin: 14px 0;
  width: 712px;
}
.f13-okazuset-title { margin-left: -4px; }
.tabflow img {margin-bottom: 8px;}
.ul-default {
  list-style: disc;
}
.ul-default li {
  margin-bottom: 1em;
  margin-left: 1.5em;
}
/* f_各種商品詳細 */
.thumbnail {
  box-sizing: border-box;
  float: left;
  margin-right: 10px;
  width: 350px;
}
.thumbnail:after {
  content: ' ';
  clear: both;
}
/* 特定商取引法 */
#ShopKeeper th {font-size: 100%;}
#ShopKeeper td {font-size: 100%;}
/* プライバシーポリシ− */
#PrivacyExplain {font-size: 1.1em;}

.mb10 {margin-bottom: 10px;}
.mb20 {margin-bottom: 20px;}
.mb30 {margin-bottom: 30px;}


.t-top_common_box {
  width: 710px;
  border: 1px dashed #CBB095;
  background-color: #f9ecdc;
  padding: 1em;
  line-height: 1.75em;
  box-sizing: border-box;
}


.f47_mainimg {
	width: 100%;
	padding-right: 6px;
	margin-bottom: 32px;
	box-sizing: border-box;
}
.about_point_mainimage {
	width: 100%;
}

.text_normal {
	font-size: 14px;
	line-height: 22.5px;
}
.text_final_is_one {
	letter-spacing: 0;
}

.box_member_option {
	position: relative;
	box-sizing: border-box;
	width: 714px;
	height: 282px;
	margin: 17px 1px 36px 3px;
	padding: 19px 20px 19px 21px;
	border-radius: 9px;
	background-color: rgba(253,253,159,0.3);
}
.box_member_option_title {
	display: block;
	text-align: center;
}
.box_member_regist {
	position: absolute;
	top: 20px;
	right: 20px;
}
.box_member_outline {
	display: flex;
}
.text_winered {
	color: #a91a3c;
}
.text_winered_bold {
	color: #a91a3c;
	font-weight: bold;
}
.wrapper_attetion_side_by_side {
	display: flex;
	justify-items: center;
	align-items: center;
	box-sizing: border-box;
	width: 702px;
	margin: 26px 8px 37px;
	padding: 13px 50px 14px;
	border-radius: 9px;
	background-color: #f5f5f5;
}
.wrapper_attetion_side_by_side____item:first-child {
	margin-right: 20px;
}
.wrapper_attetion_side_by_side____item img {
	width: 55px;
	height: 50px;
}
.wrapper_attetion_signboard {
	position: relative;
	box-sizing: border-box;
	width: 714px;
	margin: 62px 0 37px;
	padding: 55px 50px 45px 60px;
	border-radius: 9px;
	background-color: #f5f5f5;
}
.wrapper_attetion_signboard____item:first-child {
	position: absolute;
	top: -30px;
	left: calc(50% - 27px);
}
.wrapper_attetion_signboard____item:first-child img {
	width: 55px;
}
.wrapper_attetion_signboard____list {
	list-style-type:disc;
}
.wrapper_attetion_signboard____list li {
	margin-bottom: 5px;
}
.wrapper_attetion_signboard____list li:last-child {
	margin-bottom: 0;
}
.review_step_wrapper {

}
.review_step_title {
	text-align: center;
	padding-top: 4px;
}
.review_step_number {
	color: #4c73bb;
	font-size: 20px;
}
.review_step_subtitle {
	font-size: 1.1rem;
}
.review_step_title img {
	width: 416px;
}
.review_step_flex {
	display: flex;
	justify-content: center;
}
.review_step_flex____item {
	box-sizing: border-box;
	width: 204px;
	margin-right: 20px;
	padding: 20px 20px 26px 24px;
	border-radius: 30px;
	border: solid 1px #4c73bb;
	text-align: left;
}
.review_step_flex____item:last-child {
	margin-right: 0;
}
.review_step_flex____item img {
	width: 157px;
}
.review_step_steptitle {
	text-align: center;
}
.box_member_outline_tokuten1,
.box_member_outline_tokuten2 {
	box-sizing: border-box;
	width: 327px;
	height: 100px;
	margin: 20px 19px 18px 0;
	padding: 22px 17px 23px;
	border-radius: 9px;
	background-color: #4c73bb;
	text-align: center;
}
.box_member_outline_tokuten1 img,
.box_member_outline_tokuten2 img {
	width: 293px;
}
.box_member_outline_tokuten1_lead {
	display: flex;
	justify-content: center;
	align-items: center;
}
.box_member_outline_tokuten1_lead_item {
	display: inline-block;
}
.box_member_outline_tokuten1_lead_item:first-child {
	margin-right: 20px;
}
.box_member_outline_tokuten1_lead_item:first-child img {
	width: 60px;
}
.box_member_outline_tokuten2_lead {
	text-align: center;
}