         
/* ************************************************ 
 * ------------------------------------------------
 *	共通設定
 * ------------------------------------------------
 * ************************************************ */
/* --- 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 {margin:0px; padding:0px;}
table {border-collapse:collapse; border-spacing:0px;}
fieldset,img {border:0px;}
ol,ul {list-style:none;}
caption,th {text-align:left;}
h1,h2,h3,h4,h5,h6 {font-size:12px; font-weight:normal;}
q:before,q:after {content:'';}
abbr,acronym {border:0px;}
   
body * {line-height:1.5em; word-break:break-all;}
/* line-height:1.22em;について */
/*
各フォントサイズ毎に行間を算出する指定です。
この指定を削除すると、全体の行間は統一される為、
見た目のレイアウトが変更される場合があります。
*/


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

body {
	font-family:"メイリオ", Osaka, "ヒラギノ角ゴ Pro W3";
	line-height:170%;
	margin:0px;
	padding:0px;
	font-size:12px;
	color:#696969;
}

.cell_mar { margin:0px 5px 0px 15px; }
a:link    {color:#696969;text-decoration:underline;}
a:visited {color:#696969;text-decoration:underline;}
a:active  {color:#FE7901;text-decoration:underline;}
a:hover   {color:#FE7901;text-decoration:underline;}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}

html, body { height: 100%; }

body {
	margin: 0px;
	padding: 0px;
}
a{
    text-decoration: none;
}
/* --- //Reset End --- */


/*-- ヘッダーcss ------------------------------------------*/
header {
    width: 100%;
}
.header-container{
    max-width: 1100px;
    margin: 0.5% auto 1.5%;
}
.header-box{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.header-logo{
    width: 40%;
}
.header-logo img{
    width: 100%;
}
.header-nav{
    width: 59%;
    margin-top: 1%;
    text-align: right;
}
.header-nav form{
    display: block;
    width: 100%;
} 
.nav-down{
    margin-top: 2%;
}
.nav-item{
    display: inline-block;
    margin-right: 1%;
}
.find_form_input {
	width: 30%;
	height: 20px;
    border: 1px solid #c0c0c0;
}
.form_bugs{
    width: 13px;
    margin-left: 8px;
}
.fav_btn_box{
    width: 100%;
    margin-top: 3%;
}
.fav-btn{
    display: block; 
    width: 18%;
    color: #808080;
    font-size: 0.8rem;
    border: 1px solid #808080;
    padding: 0.8em 0;
    margin-left: 81%;
    text-align: center;
}
.fav-btn img{
    width: 15px;
    margin-right: 3px;
}
.sp-header{
    display: none;
    max-width: 450px;
}
.globalMenuSp{
    display: none;
}
/* スマホverのcss */
@media only screen and (max-width: 850px) {
    .header-box{
        display: none;
    }
    .sp-header{
        display: block;
        max-width: 50%;
    }
    .hamburger {
        display : block;
        position: fixed;
        z-index : 3;
        right : 13px;
        top   : 12px;
        width : 42px;
        height: 42px;
        cursor: pointer;
        text-align: center;
    }
    .hamburger span {
        display : block;
        position: absolute;
        width   : 30px;
        height  : 2px ;
        left    : 6px;
        background : #555;
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition   : 0.3s ease-in-out;
        transition        : 0.3s ease-in-out;
    }
    .hamburger span:nth-child(1) {
        top: 10px;
    }
    .hamburger span:nth-child(2) {
        top: 20px;
    }
    .hamburger span:nth-child(3) {
        top: 30px;
    }

/* ナビ開いてる時のボタン */
    .hamburger.active span{
        background :#fff;
    }
    .hamburger.active span:nth-child(1) {
        -webkit-transform: translateY(6px);
        -moz-transform   : translateY(6px);
        transform        : translateY(6px);
    }
        .hamburger.active span:nth-child(2){
        -webkit-transform: translateY(-4px);
        -moz-transform   : translateY(-4px);
        transform        : translateY(-4px);
    }  

    .hamburger.active span:nth-child(3) {
        -webkit-transform: translateY(-14px);
        -moz-transform   : translateY(-14px);
        transform        : translateY(-14px);
    }
    .s_header-nav{
        width: 100%;
        margin: 2% auto 2%;
    }
    .s_find_form_input{
        width: 40%;
        height: 28px;
    }
    .s_form_bugs{
        width: 2%;
        margin-left: 2%;
    }
    .nav-down{
        width: 35%;
        margin: 2% auto;
    }
    .nav-item{
        display: inline-block;
        margin-right: 5%;
    }
    .s_log{
        color: #fff;
    }
    .s_cart{
        color: #fff;
    }
    nav.globalMenuSp {
        display: block;
        position: fixed;
        z-index : 1;
        top  : 0;
        left : 0;
        color: #fff;
        background: rgba(0,0,0,0.7);
        text-align: center;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity .6s ease, visibility .6s ease;
      visibility: hidden;
    }
    .s_header_line{
        content: "";
        width: 85%;
        margin: 3% auto 2%;
        border-bottom: 1px solid #fff;
    }
    nav.globalMenuSp ul {
        margin: 0 auto;
        padding: 0;
        width: 100%;
    }
    nav.globalMenuSp ul li {
        list-style-type: none;
        padding: 0;
        width: 100%;
        transition: .4s all;
        display:flex;
        justify-content: center;
    }
    nav.globalMenuSp ul li:last-child {
        padding-bottom: 0;
    }
    nav.globalMenuSp ul li:hover{
        background :#b0c4de;
    }

    nav.globalMenuSp ul li a {
        display: block;
        color: #fff;
        padding: 1em 0;
        text-decoration :none;
    }
    .s_ips_box{
        width: 100%;
        margin: 0 auto;
    }
    .s_ips_box p{
        color: #fff;
        letter-spacing: 2px;
        line-height: 2;
    }
/* このクラスを、jQueryで付与・削除する */
    nav.globalMenuSp.active {
    opacity: 100;
    visibility: visible;
    }
}
@media only screen and (max-width: 700px) {
    .s_find_form_input{
        width: 55%;
        height: 28px;
    }
    .s_form_bugs{
        width: 2.5%;
        margin-left: 2.5%;
    }
    .nav-down{
        width: 80%;
    }
}
@media only screen and (max-width: 500px) {
    .s_form_bugs{
        width: 3%;
        margin-left: 3%;
    }
}
/* スマホverのcss 完*/

/*-- ヘッダーcss 完------------------------------------------*/    


/*-- サイドエリアcss -----------------------------------------*/

.content-container{
    width: 100%;
}
.content-box{
    max-width: 1100px;
    margin: 1% auto;
    display: flex;
    justify-content: space-between;
}
.side_area{
    width: 25%;
    margin-left: 0;
}  
@media only screen and (max-width: 850px) {
    .side_area{
        display: none;
    }
    .content-box{
        display: block;
        max-width: 850px;
    }
}

/* 店舗情報 */

.time-box{
    margin-bottom: 4%;
}

/* 店舗情報 完*/

/* 検索ボックス */

.search-box{
    width: 100%;
    margin: 1% auto;
}
.search-box form{
    width: 100%;
}
.side_form_select{
    display: block;
    width: 100%;
}
.search-down{
    margin: 2% 0;
}
.side_form_input{
    margin: 2% 0;
    width: 80%;
    height: 25px;
    border: 1px solid #d3d3d3;
}
.side-form-bugs{
    width: 15px;
}
/* 検索ボックス 完*/

/* カテゴリ */
.side-category{
    width: 100%;
    margin: 6% 0 2%;
}
.side-category-title{
    font-size: 13px;
    color: #fff;
    letter-spacing: 2px;
    text-align: center;
    background-color: #b0c4de;
    padding: 0.6em 0;
}
.accordion {
    width: 100%;
    margin: 10px auto 20px;
    background: #FFF;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.accordion .link {
    cursor: pointer;
    display: block;
    padding: 15px 15px 15px 20px;
    color: #4D4D4D;
    font-size: 14px;
    border-bottom: 1px solid #CCC;
    position: relative;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.accordion .link a{
    color: #696969;
    text-decoration: none;
}
.accordion .link a:hover{
    opacity: 0.6;
}
.accordion li:last-child .link {
    border-bottom: 0;
}
.accordion li i {
    position: absolute;
    top: 16px;
    left: 12px;
    font-size: 18px;
    color: #595959;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.accordion li i.fa-chevron-down {
    right: 12px;
    left: auto;
    font-size: 16px;
}
.accordion li.open .link {
    color: #b63b4d;
}

.accordion li.open i {
    color: #b63b4d;
}
.accordion li.open i.fa-chevron-down {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
.accordion li.default .submenu {display: block;}
/* アコーディオンメニューcss */
.submenu {
    display: none;
    background: #f5f5f5;
    font-size: 14px;
 }

 .submenu li {
    border-bottom: 1px solid #d3d3d3;
 }

 .submenu a {
    display: block;
    text-decoration: none;
    color: #595959;
    padding: 12px;
    padding-left: 42px;
    -webkit-transition: all 0.25s ease;
     -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
 }

 .submenu a:hover {
    background: #b0c4de;
    color: #FFF;
 }


/* カテゴリ 完*/

/* カレンダー */

.side_cal{
    width: 100%;
    margin-bottom: 10px;
}
.cal-title{
    text-align: center;
    letter-spacing: 2px;
    font-size: 13px;
    color: #fff;
    background-color: #b0c4de;
    color: #4D4D4D;
    padding: 0.6em 0;
    margin-bottom: 6%;
}    
.side_section side_section_cal{
    margin: 20px 0 25px;
}
.tbl_calendar {
    width: 100%;
    margin-bottom: 10px;
    border: none !important;
    border-collapse: collapse !important;
    border-spacing: 0 !important;
}
.tbl_calendar th, .tbl_calendar td {
    padding: 4px !important;
    text-align: center !important;
    border-bottom: 1px solid #ccc !important;
}
.tbl_calendar {
    border: none !important;
    border-collapse: collapse !important;
    border-spacing: 0 !important;
}
.tbl_calendar th, .tbl_calendar td {
    padding: 4px !important;
    text-align: center !important;
    border-bottom: 1px solid #ccc !important;
}      
/* カレンダー 完*/

/* レビュープレゼント */

.side-review{
    margin: 8% 0 8%;
}
/* レビュープレゼント 完*/

/* SNS */
.side-sns{
    width: 100%;
    margin: 5% auto;
}
.sns-insta{
    width: 100%;
    margin: 1% auto;
}
/* SNS 完 */

/* フリーページ */

.side-free{
    margin: 8% 0 4%;
}

/* フリーページ 完*/

/*- サイドエリアcss 完 -------------------------------------*/

/* フッター */

.footer-container{
    width: 100%;
    background-color: #b0c4de;
}
.footer-box{
    max-width: 870px;
    margin: 1% auto;
    padding-top: 0.5%;
}
.footer-box ul{
    margin-top: 3%;
    text-align: center;
}
.footer-box li{
    display: inline-block;
    font-size: 0.9rem;
    margin-right: 2%;
}
.foot-text{
    color: #fff;
    margin-top: 3%;
}
.foot-copy{
    text-align: center;
    color: #fff;
    padding-bottom: 3%;
}

/* フッター 完*/


.main-box{
    width: 73%;
    margin-right: 0;
}
@media only screen and (max-width: 850px) {
    .main-box{
        width: 100%;
    }
}
.diy-box li{
    font-size: 0.8rem;
    margin-bottom: 8px;
}
.diy-box li a{
    text-decoration: none;
    color: #00008b;
}
.diy-box li a:hover{
    opacity: 0.8;
}



/* ------------------------------------- 
 *	カートの中 - 商品名・価格ボタン色/枠線色
 * ------------------------------------- */
.cart_item {
	width:175px;
	overflow:hidden;
	margin:3px 0px 3px 0px;
	padding:5px;
	font-size:10px;
	border-left:3px solid #DDDDDD;
	border-right:3px solid #DDDDDD;
	}
.incart_name {
	text-align:left;
}
.subtotal {
	padding:5px 0;
}
.stotal {
	text-align:right;
}
.total {
	padding:5px 0;
	border-top:1px dotted #C3C3C3;
	text-align:right;
	margin:0;
}

.postage {
	border-top:1px solid #C3C3C3;
	border-bottom:1px solid #C3C3C3;
	padding:5px 0;
}

.postage li {
	margin:5px 0;
	color:red;
	text-align:left;
}

.viewcart {
	padding:5px 0;
	text-align:center;
}	
/* ------------------------------------- 
 *	会員専用ページ
 * ------------------------------------- */
#btn_members_login,
#btn_members_logout,
#btn_members_signup{
	text-align:center;
	}

#btn_members_signup span,
#btn_members_logout span {
	display:block;
	font-size:10px;
	line-height:1.1em;
	padding:8px 0px 3px;
	text-align:center;
	}

/* ************************************************ 
 *	フッターメニュー
 * ************************************************ */
#footer #copy{
	border-top:1px #e6e6e6 solid;
	width:950px;
	text-align:center;
	padding-top:20px;
	margin:30px 0px;
	color:#E6E6E6;
	}
	
#footer .calamel_logo {
	width: 950px;
	text-align:center;
}

#footer a         {color:#1278DE; text-decoration:underline;}
#footer a:link    {color:#1278DE; text-decoration:underline;}
#footer a:visited {color:#1278DE; text-decoration:underline;}
#footer a:active  {color:#FE7901; text-decoration:underline;}
#footer a:hover   {color:#FE7901; text-decoration:underline;}


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

.main_title {
	width:726px;
	padding-bottom:15px;
	}
	
/* ------------------------------------- 
 *	会員専用価格の表示　トップページ用
 * ------------------------------------- */
.regular_price_top {
	padding:0px;
	margin:0px;
	text-decoration:line-through;
	color:#999999;
	}

.price_top {
	padding:0px;
	margin:0px;
	font-size:14px;
	color:#ff0000;
	}

.discount_rate_top {
	padding:0px;
	margin:0px;
	color:#333333;
	}
	
.common_image img{
	margin-bottom:15px;
	display:block;
}

	
/* ------------------------------------- 
 *	コンテンツ下部 決済・配送方法指定
 * ------------------------------------- */
#shop_info {
	margin-top:60px;
}

#shop_info_pay .tit,
#shop_info_deli .tit {
	
}

#shop_info .cont {
	padding:15px 20px;
}

#shop_info_pay {background:transparent url(http://img.shop-pro.jp/tmpl_img/61/shop_info_pay_bg.gif) 0px 0px repeat-y;}
#shop_info_deli {background:transparent url(http://img.shop-pro.jp/tmpl_img/61/shop_info_deli_bg.gif) 0px 0px repeat-y;}
#shop_info_sct_img {margin-top:20px;}

#right_pay_deli_bg {
	height:2px;
	background:transparent url(http://img.shop-pro.jp/tmpl_img/61/right-pay_deli_bg.gif) 0px 0px no-repeat;
	width:726px;
}


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

/* ------------------------------------- 
 *	お知らせエリア
 *	箇条書きでお知らせを掲載する際にご利用ください
 *	※初期設定では適用されていません
 * ------------------------------------- */
.info_block {
	width:726px;
	margin:0px 0px 30px;
	border:#e5e5e5 solid 1px;
	}
	
.info_title {
	font-weight:bold;
	margin:0px 0px 10px;
	padding:15px 15px 0px;
}

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


/* ------------------------------------- 
 *	フリースペース
 * ------------------------------------- */
.free_space {
	text-align:left;
	color:#333333;
	}

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

/* ------------------------------------- 
 *	一覧表示　並び順を変更(商品一覧）
 * ------------------------------------- */
.sort_01 {
	width:900px;
	height:45px;
	color: #000;
	background: #f0f8ff;
	margin-bottom: 10px;
	}

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

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

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

.price_all {
	padding:0px;
	margin:0px;
	font-size:14px;
	color:#ff0000;
	}

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


/* ------------------------------------- 
 *	一覧表示　並び順を変更(商品検索結果）
 * ------------------------------------- */
.sort_02 {
	width:726px;
	height:28px;
	color:#333333;
	background:#e7e7e7;
	margin-bottom:1px;
	}

.sort_02 a,
.sort_02 a:link,
.sort_02 a:visited {
	text-decoration:underline;
	color:#1278DE;
	}

.sort_02 a:active,
.sort_02 a:hover {
	text-decoration:underline;
	color:#FE7901;
	}

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

.price_search {
	padding:0px;
	margin:0px;
	font-size:14px;
	color:#ff0000;
	}

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

/* ------------------------------------- 
 *	一覧表示　商品数と表示数
 * ------------------------------------- */
.pagenavi {
	width:900px;
	height:45px;
	background:#f0f8ff;
	margin-bottom:15px;
	padding: 0.5em 1em;
	}

.pagenavi a {
	color:#1278DE;
	text-decoration:none;
	}


/* ------------------------------------- 
 *	商品一覧表示のレイアウト
 * ------------------------------------- */
.product_list {
	float:left;
	width:200px;
	text-align:center;
	margin:0px;
	}

.product_item {
	text-align:center;
	padding:0px 0px 50px;
	}

.product_item img {
  max-width: 190px;
	}

.product_item .name {
	margin:10px 0px 0px;
	color:#333333;
	}
	
.product_item .name img{
	vertical-align:middle;
	}

.product_item .price {
	margin:5px 0px 0px;
	font-weight:bold;
	}

.product_item .expl {
	color:#333333;
	line-height:2;
	text-align:left;
	margin:5px 0px 5px 3px;
	}

.product_list a         {color:#000080; text-decoration:none;}
.product_list a:link    {color:#000080; text-decoration:none;}
.product_list a:visited {color:#000080; text-decoration:none;}


/* ------------------------------------- 
 *	ぱんくずリスト
 * ------------------------------------- */

.footstamp {
	width:726px;
	color:#333333;
	margin-bottom:15px;
	}

.footstamp a         {color:#1278DE; text-decoration:underline;}
.footstamp a:link    {color:#1278DE; text-decoration:underline;}
.footstamp a:visited {color:#1278DE; text-decoration:underline;}
.footstamp a:active  {color:#FE7901; text-decoration:underline;}
.footstamp a:hover   {color:#FE7901; text-decoration:underline;}

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

.footstamp img {
	vertical-align:middle;
	}

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

/* ------------------------------------- 
 *	最近チェックした商品
 * ------------------------------------- */

.ci_main_title {
	border-bottom: 5px solid #ABABAB;
	font-weight: bolder;
	margin-top: 30px;
	padding-bottom: 5px;
	text-align: left;
	}

.checkitem_list {
	float:left;
	margin: 15px 0;
	padding: 0 9px 0 12px;
	width: 100px;
	}

.checkitem .price {
	font-weight:bold;
	}

.checkitem .ci_img {
	width:98px;
	margin-bottom:3px;
	border:1px solid #999999;
	}

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

.detail_cont {
	width:726px;
}

.detail_img_block {
	width:405px;
	float:left;
}

.detail_txt_block {
	width:294px;
	float:right;
	text-align:left;
}


.detail_img_block img {
	border:1px solid #999999;
        max-width: 100%;
}

.product_name {
	font-size:18px;
	font-weight:bold;
	margin-bottom:10px;
}

.expl_block {
	margin-bottom:30px;
}

.detail_img {
	margin-bottom:20px;
}

.detail_other {
	width:405px;
}

.detail_other .sub {
	width:135px;
	float:left;
}

.detail_other .sub_tp {
	padding-top:15px;
}

.detail_other .sub img {
	width: 120px;
}

.detail_txt_block table.table {
	width:294px;
	border-left:#e7e7e7 solid 1px;
	border-top:#e7e7e7 solid 1px;
	margin-bottom:20px;
}

.detail_txt_block table.table td.tit,
.detail_txt_block table.table td.cont {
	padding:15px;
	border-right:#e7e7e7 solid 1px;
	border-bottom:#e7e7e7 solid 1px;
}

.detail_txt_block table.table td.tit {
	width:100px;
}

.sk_link_other {
	margin-bottom:20px;
}

.txt_option {
	margin-bottom:20px;
	background:transparent url(http://img.shop-pro.jp/tmpl_img/61/icon_option.gif) 0px 3px no-repeat;
	padding-left:15px;
}

.txt_back {
	margin-bottom:10px;
	background:transparent url(http://img.shop-pro.jp/tmpl_img/61/icon_back.gif) 0px 0px no-repeat;
	padding-left:22px;
}

.txt_tell {
	margin-bottom:10px;
	background:transparent url(http://img.shop-pro.jp/tmpl_img/61/icon_tell.gif) 0px 3px no-repeat;
	padding-left:22px;
}

.txt_inq {
	margin-bottom:10px;
	background:transparent url(http://img.shop-pro.jp/tmpl_img/61/icon_inq.gif) 0px 0px no-repeat;
	padding-left:22px;
}

.txt_review {
	margin-bottom:10px;
	background:transparent url(http://img.shop-pro.jp/tmpl_img/61/icon_review.gif) 0px 0px no-repeat;
	padding-left:22px;
}
.txt_reviewpost {
	margin-bottom:20px;
	background:transparent url(http://img.shop-pro.jp/tmpl_img/61/icon_post.gif) 0px 0px no-repeat;
	padding-left:22px;
}

/* オプションリンク */
.txt-optionLink {
	margin-bottom:20px;
}

.rs_pd_cart_btn {
	margin-bottom:10px;
}

.btn_quick {
}


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

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

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

p#sk_link_other {
	text-align:center;
	margin-top:10px;
}

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

/* ------------------------------------- 
 *	この商品を買った人はこんな商品も買ってます
 * ------------------------------------- */
#together {
	margin:65px 0px 0px;
	}

#together .tog_main_title {
	margin:0px 0px 15px;
	}

#together .together_list {
	margin:0px 3px;
	float:left;
	width:175px;
	}

#together .together_list img {
	border:1px solid #999999;
        max-width: 155px;
	}

/* ------------------------------------- 
 *	トラックバック
 * ------------------------------------- */
#trackback {
	margin:30px 0px 15px;
}

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


#trackback .tb_url {
	padding:6px 8px;
	border:1px solid #e7e7e7;
	}

#trackback .tb {
	}

#trackback .tb_date {
	padding:10px 0px;
	}

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

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

#trackback .tb_state {
	padding:0px;
	}

/* ************************************************ 
 *	商品オプションページ
 * ************************************************ */
#Option .main_title {
	margin:15px auto;
	padding:5px 0px;
	background:#e7e7e7;
	height:auto;
	width:564px;
}

#Option .main_title .cont {
	padding:0px 5px;
}
 
 
#Option .option_table {
	width:564px;
	margin-bottom:5px;
	border-left:1px solid #DDDDDD;
	border-top:1px solid #DDDDDD;
	}

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

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

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

div#Option table.main_title td{
	text-align:left;
}

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

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

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

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

#ShopKeeper {
	width:726px;
	margin-bottom:15px;
	color:#333333;
	border-top:1px solid #DDDDDD;
	}

#ShopKeeper th {
	width:200px;
	overflow:hidden;
	padding:10px;
	font-weight:normal;
	text-align:left;
	border-left:1px solid #DDDDDD;
	border-right:1px solid #DDDDDD;
	border-bottom:1px solid #DDDDDD;
	}

#ShopKeeper td {
	padding:10px;
	text-align:left;
	border-right:1px solid #DDDDDD;
	border-bottom:1px solid #DDDDDD;
	}
	
#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:#e7e7e7;
	border-bottom:1px solid #FFFFFF;
	}

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

.txt-search strong,
.txt-hitNum strong {
	font-weight:bold;
	}


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

#PrivacyExplain {
	margin-bottom:15px;
	color:#333333;
	}

.pe_title {
	text-align:left;
	padding-top:15px;
	color:#333333;
	border-top:1px solid #DDDDDD;
	}

.pe_note {
	text-align:left;
	color:#333333;
	line-height:150%;
	margin:5px 5px 20px 30px;
	}

/* ************************************************ 
 *	float解除
 * ************************************************ */


.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility:
	hidden;
	}
	
.clearfix {
	display:inline-block;
	}
	
/* Hides from IE-mac */
* html .clearfix {
	height: 1%;
	}
	
.clearfix {
	display: block;
	}
/* End hide from IE-mac */

/* -------------------------------------
*     商品オプション 表形式
* ------------------------------------- */
#option_tbl {
     border-collapse:collapse;
     margin:10px auto 10px;
     border-top:1px solid #ccc;
     border-left:1px solid #ccc;
     width:100%;
}
#option_tbl th{
     padding:5px;
     border-bottom:1px solid #ccc;
     border-right:1px solid #ccc;
}
#option_tbl td input{
     float:none;
     margin:0 0 5px;
     width:auto;
}
#option_tbl th,
#option_tbl td.none {
     background:#eee;
}
#option_tbl td {
     padding:5px;
     text-align:center;
     border-bottom:1px solid #ccc;
     border-right:1px solid #ccc;
}
.stock_zero {
     color:red;
}          
.swiper-slide a{
    text-decoration: none;
}

/* -------------------------------------------- */
ここからフリーページ用のcss
/* -------------------------------------------- */

/* 場所から商品を選ぶのcss */
.place-topbox{
        width: 75%;
        margin: 3% auto;
    }
    .place-topbox p{
        font-size: 1.1rem;
        letter-spacing: 2px;
        line-height: 2;
        margin-top: 3%;
    }
    .place-box{
        width: 100%;
        margin: 5% auto 3%;
    }
    .s-place-box{
        display: none;
        width: 100%;
        margin: 5% auto 3%;
    }
    .place-box > span{
        display: block;
        width: 90%;
        margin: 0 auto;
        border-bottom: 1px solid #696969;
        padding-bottom: 0.5em;
        font-size: 1.2rem;
    }
    .place-bag{
        width: 90%;
        margin: 4% auto 2%;
        display: flex;
        justify-content: space-between;
    }
    .place-item{
        width: 28%;
        margin: 1% auto;
    }
    .place-title{
        display: block;
        width: 100%;
        font-weight: bold;
        text-align: center;
        margin: 6% 0;
        color: #696969;
    }
    .place-exp{
        font-size: 0.8rem;
        line-height: 2;
    }
    .place-price{
        margin-top: -0.1%;
        font-size: 0.9rem;
    }
    .place-btn{
        width: 85%;
        margin: 0 auto;
        font-size: 0.8rem;
        letter-spacing: 2px;
        padding: 0.4em 0;
        text-align: center;
        background-color: #b0c4de;
        color: #fff;
    }
    @media only screen and (max-width: 750px){
        .place-box{
            display: none;
    }
        .s-place-box{
            display: block;
    }
        .s-place-box > span{
            display: block;
            width: 95%;
            margin: 0 auto;
            border-bottom: 1px solid #696969;
            padding-bottom: 0.5em;
            font-size: 0.9rem;
    }
        .s-place-bag{
            width: 90%;
            margin: 4% auto 2%;
            display: flex;
            justify-content: space-between;
    }
        .s-place-item{
            width: 45%;
            margin: 1% auto;
    }
        .s-place-title{
            display: block;
            width: 100%;
            font-weight: bold;
            text-align: center;
            margin: 6% 0;
            color: #696969;
    }
        .s-place-exp{
            font-size: 0.8rem;
            line-height: 2;
    }
        .s-place-price{
            margin-top: -0.1%;
            font-size: 0.9rem;
    }
        .s-place-btn{
            width: 85%;
            margin: 0 auto;
            font-size: 0.8rem;
            letter-spacing: 2px;
            padding: 0.4em 0;
            text-align: center;
            background-color: #b0c4de;
            color: #fff;
    }
    }
    @media only screen and (max-width: 750px){
        .place-topbox{
            width: 95%;
    }
        .place-topbox p{
            font-size: 1rem;
            letter-spacing: 2px;
            line-height: 2;
    }
        .s-place-title{
            font-weight: bold;
            font-size: 0.8rem;
    }
        .s-place-exp{
            font-size: 0.7rem;
            line-height: 1.2;
    }
        .s-place-price{
            margin-top: -0.1%;
            font-size: 0.9rem;
    }
        .s-place-btn{
            width: 85%;
            margin: 0 auto;
            font-size: 0.8rem;
            letter-spacing: 2px;
            padding: 0.4em 0;
            text-align: center;
            background-color: #b0c4de;
            color: #fff;
    }
    }
/* 場所から商品を選ぶのcss 完*/

/* お気に入り一覧のcss */
    .favorite__section{
        width: 100%;    
    }
    .fav-title{
        width: 100%;
        font-size: 1rem;
        line-height: 3;
        border-bottom: 1px solid #808080;
        padding-bottom: 0.7%;
    }
    .fav-list{
        width: 95%;
        margin: 2% auto;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .fav-list-item{
        width: 23%;
        margin: 1% auto;
    }
    .fav_list_name{
        font-size: 0.75rem;
        text-decoration: none;
        margin: 2% 0;
        letter-spacing: 1.5px;
        line-height: 1.7;
    }
    .fav-list-prices{
        margin-top: 0.8%;
        font-size: 0.8rem;
    }
    @media only screen and (max-width: 850px){
        .fav-title{
            width: 95%;
            margin: 0 auto;
            font-size: 0.9rem;
    }
        .fav_list_name{
            font-size: 0.7rem;
    }
    }
    @media only screen and (max-width: 600px){
        .fav_list_name{
            font-size: 0.6rem;
            letter-spacing: 1px;
            line-height: 1;
    }
        .fav-list-item{
            width: 30%;
    }
    }
/* お気に入り一覧のcss 完*/
