@charset "utf-8";

    /**
    * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
    * http://cssreset.com
    */
    html, body, div, span, applet, object, iframe,
    h1, h2, h3, h4, h5, h6, p, blockquote, pre,
    a, abbr, acronym, address, big, cite, code,
    del, dfn, em, img, ins, kbd, q, s, samp,
    small, strike, strong, sub, sup, tt, var,
    b, u, i, center,
    dl, dt, dd, ol, ul, li,
    fieldset, form, label, legend,
    table, caption, tbody, tfoot, thead, tr, th, td,
    article, aside, canvas, details, embed,
    figure, figcaption, footer, header, hgroup,
    menu, nav, output, ruby, section, summary,
    time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    }
    /* HTML5 display-role reset for older browsers */
    article, aside, details, figcaption, figure,
    footer, header, hgroup, menu, nav, section {
    display: block;
    }
    body {
    line-height: 1;
    }
    ol, ul {
    list-style: none;
    }
    blockquote, q {
    quotes: none;
    }
    blockquote:before, blockquote:after,
    q:before, q:after {
    content: '';
    content: none;
    }
    table {
    border-collapse: collapse;
    border-spacing: 0;
    }
    img{vertical-align:bottom;}
    /**
    * Vanilla CSS 1.0.2
    * http://cssreset.com
    */
    body {
    font: 9pt/1.5em sans-serif;
    }
    pre, code, tt {
    font: 1em/1.5em 'Andale Mono', 'Lucida Console', monospace;
    }
    h1, h2, h3, h4, h5, h6, b, strong {
    font-weight: bold;
    }
    em, i, dfn {
    font-style: italic;
    }
    dfn {
    font-weight:bold;
    }
    p, code, pre, kbd {
    margin:0 0 1.5em 0;
    }
    blockquote {
    margin:0 1.5em 1.5em 1.5em;
    }
    cite {
    font-style: italic;
    }
    li ul, li ol {
    margin:0;
    padding:0;
    }
    ul, ol {
    margin:0;
    padding:0;
    }
    ul {
    list-style-type:disc;
    }
    ol {
    list-style-type:decimal;
    }
    ol ol {
    list-style: upper-alpha;
    }
    ol ol ol {
    list-style: lower-roman;
    }
    ol ol ol ol {
    list-style: lower-alpha;
    }
    dl {
    margin:0 0 1.5em 0;
    }
    dl dt {
    font-weight:bold;
    }
    dd {
    margin-left:1.5em;
    }
    table {
    margin-bottom:1.4em;
    width:100%;
    }
    th {
    font-weight:bold;
    }
    th, td, caption {
    padding:4px 10px 4px 5px;
    }
    tfoot {
    font-style:italic;
    }
    sup, sub {
    line-height:0;
    }
    abbr, acronym {
    border-bottom: 1px dotted;
    }
    address {
    margin:0 0 1.5em;
    font-style:italic;
    }
    del {
    text-decoration: line-through;
    }
    pre {
    margin:1.5em 0;
    white-space:pre;
    }
    img.centered, .aligncenter, div.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    }
    img.alignright {
    display: inline;
    }
    img.alignleft {
    display: inline;
    }
    .alignright {
    float: right;
    margin-left: 10px;
    }
    .alignleft {
    float: left;
    margin-right: 10px;
    }
    img {
    max-width: 100%;
    }
    * html .clearfix {
    height: 1%;
    }
    * + html .clearfix {
    display: inline-block;
    }
    .clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    }
    * html .group {
    height: 1%;
    }
    * + html .group {
    display: inline-block;
    }
    .group:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    }
    /**
    * End Vanilla CSS
    */


a {
  color: #3579bf;
}
a:hover {
  color: <{$link_hover}>;
}

/*
 * layout
 */

#contents .topicpath-nav {
  margin-bottom: 15px;
}

#contents .topicpath-nav li {
    display: inline;
    padding: 0;
}
#contents .topicpath-nav a {
    margin-left: 5px;
    vertical-align: bottom;
  }
#contents .topicpath-nav img {
    vertical-align: bottom;
}

.dis-non {display: none;}
/*
 * side
 */

#side .unstyled img {
  display: block;
  margin-bottom: 5px;
}

/*
 * temp
 */

/* font */
.txt_l { text-align: left; }
.txt_c { text-align: center; }
.txt_r { text-align: right; }
.txt_fwn { font-weight: normal; }
.txt_fwb { font-weight: bold; }
.txt_10 { font-size: 10px; }
.txt_12 { font-size: 12px; }
.txt_14 { font-size: 14px; }
.txt_16 { font-size: 16px; }
.txt_18 { font-size: 18px; }
.txt_20 { font-size: 20px; }
.txt_24 { font-size: 24px; }
.txt_28 { font-size: 28px; }
.txt_c_333 {color: #333;}

/* background */
.bgc_gray {
  background-color: #f1f1f1;
}

/* margin */
.mar_auto { margin: 0 auto; }
.mar_0 { margin: 0; }
.mar_t_0 { margin-top: 0; }
.mar_r_0 { margin-right: 0; }
.mar_b_0 { margin-bottom: 0; }
.mar_l_0 { margin-left: 0; }
.mar_5 { margin: 5px; }
.mar_t_5 { margin-top: 5px; }
.mar_r_5 { margin-right: 5px; }
.mar_b_5 { margin-bottom: 5px; }
.mar_l_5 { margin-left: 5px; }
.mar_t_10 { margin-top: 10px; }
.mar_r_10 { margin-right: 10px; }
.mar_b_10 { margin-bottom: 10px; }
.mar_l_10 { margin-left: 10px; }
.mar_t_20 { margin-top: 20px; }
.mar_r_20 { margin-right: 20px; }
.mar_b_20 { margin-bottom: 20px; }
.mar_l_20 { margin-left: 20px; }
.mar_t_30 { margin-top: 30px; }
.mar_r_30 { margin-right: 30px; }
.mar_b_30 { margin-bottom: 30px; }
.mar_l_30 { margin-left: 30px; }
.mar_t_50 { margin-top: 50px; }
.mar_r_50 { margin-right: 50px; }
.mar_b_50 { margin-bottom: 50px; }
.mar_l_50 { margin-left: 50px; }

/* padding */
.pad_v_10 { padding: 10px 0; }
.pad_v_20 { padding: 20px 0; }
.pad_v_30 { padding: 30px 0; }
.pad_0 { padding: 0; }
.pad_t_0 { padding-top: 0; }
.pad_r_0 { padding-right: 0; }
.pad_b_0 { padding-bottom: 0; }
.pad_l_0 { padding-left: 0; }
.pad_5 { padding: 5px; }
.pad_t_5 { padding-top: 5px; }
.pad_r_5 { padding-right: 5px; }
.pad_b_5 { padding-bottom: 5px; }
.pad_l_5 { padding-left: 5px; }
.pad_10 { padding: 10px; }
.pad_t_10 { padding-top: 10px; }
.pad_r_10 { padding-right: 10px; }
.pad_b_10 { padding-bottom: 10px; }
.pad_l_10 { padding-left: 10px; }
.pad_20 { padding: 20px; }
.pad_t_20 { padding-top: 20px; }
.pad_r_20 { padding-right: 20px; }
.pad_b_20 { padding-bottom: 20px; }
.pad_l_20 { padding-left: 20px; }
.pad_30 { padding: 30px}
.pad_t_30 { padding-top: 30px; }
.pad_r_30 { padding-right: 30px; }
.pad_b_30 { padding-bottom: 30px; }
.pad_l_30 { padding-left: 30px; }

/* border */
.bor_t_1 { border-top: 1px solid #eee; }
.bor_r_1 { border-right: 1px solid #eee; }
.bor_b_1 { border-bottom: 1px solid #eee; }
.bor_l_1 { border-left: 1px solid #eee; }

/* vertical align */
.va-10 { vertical-align: -10%; }
.va-20 { vertical-align: -20%; }
.va-30 { vertical-align: -30%; }
.va-35 { vertical-align: -35%; }
.va-40 { vertical-align: -40%; }

.box{
    display: block;
}

@media (max-width: 980px) {
  /* ~980px */
  #base_gmoWrapp,
  #gmo_CMSPbar {
    overflow: hidden;
    min-width: 100% !important;
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  /* ~768px */
  #contents {
    padding-left: 0;
  }
}
@media (max-width: 480px) {
  /* ~480px */
}

/*
 * icons
 */
.icon-user { background-position: -208px 0px; }
.icon-lg-b.icon-user { background-position: -312px 0px; }
.icon-adduser { background-position: -240px 0px; }
.icon-lg-b.icon-adduser { background-position: -360px 0px; }
.icon-login { background-position: -48px -80px; }
.icon-lg-b.icon-login { background-position: -72px -120px; }
.icon-logout { background-position: -32px -80px; }
.icon-lg-b.icon-logout { background-position: -48px -120px; }
.icon-home { background-position: -176px -16px; }
.icon-lg-b.icon-home { background-position: -264px -24px; }
.icon-mail { background-position: -64px 0px; }
.icon-lg-b.icon-mail { background-position: -96px 0px; }
.icon-pencil { background-position: -96px 0px; }
.icon-lg-b.icon-pencil { background-position: -144px 0px; }
.icon-help { background-position: -272px -80px; }
.icon-lg-b.icon-help { background-position: -408px -120px; }
.icon-cart { background-position: -176px -64px; }
.icon-lg-b.icon-cart { background-position: -264px -96px; }
.icon-search { background-position: -208px -16px; }
.icon-lg-b.icon-search { background-position: -312px -24px; }
.icon-chevron_up { background-position: -0px -144px; }
.icon-lg-b.icon-chevron_up { background-position: -0px -216px; }
.icon-chevron_down { background-position: -352px -128px; }
.icon-lg-b.icon-chevron_down { background-position: -528px -192px; }

.icon-b,
.icon-w {
  width: 16px;
  height: 16px;
  display: inline-block;
}
.icon-lg-b,
.icon-lg-w {
  width: 24px;
  height: 24px;
  display: inline-block;
}

.icon-b { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon16_b.png); }
.icon-w { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon16_w.png); }
.icon-lg-b { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_b.png); }
.icon-lg-w { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_w.png); }

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .icon-b,
  .icon-w {
    -webkit-background-size: 368px 320px;
    background-size: 368px 320px;
  }

  .icon-lg-b,
  .icon-lg-w {
    -webkit-background-size: 552px 480px;
    background-size: 552px 480px;
  }

  .icon-b { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon16_2x_b.png); }
  .icon-w { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon16_2x_w.png); }
  .icon-lg-b { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_2x_b.png); }
  .icon-lg-w { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_2x_w.png); }
}
@media (max-width: 768px) {
  .icon-b { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_b.png); }
  .icon-w { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_w.png); }
}
@media only screen and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 768px) and (min--moz-device-pixel-ratio: 2), only screen and (max-width: 768px) and (-o-min-device-pixel-ratio: 2 / 1), only screen and (max-width: 768px) and (min-device-pixel-ratio: 2), only screen and (max-width: 768px) and (min-resolution: 192dpi), only screen and (max-width: 768px) and (min-resolution: 2dppx) {
  .icon-b { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_2x_b.png); }
  .icon-w { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_2x_w.png); }
}

/********************デザイン修正**************************************************/
h1, h2, h3, h4, h5, h6 {
    clear: both;
}
.clear {
    overflow: hidden;
    clear: both;
}
ol, ul {
    list-style: none outside none;
}
.fleft{
    float:left;
}
.fright{
    float:right;
}

body{
	background: url("https://img13.shop-pro.jp/PA01275/352/etc/bg_body.jpg?20140515091901") 0 0 repeat-x fixed;
	color:#ffffff;
	font-size: 1rem;
	text-rendering: optimizelegibility;
	vertical-align: baseline;
	}

div#wrapper {
    margin-top: -20px;
    width: 100%;
    padding-top: 0;
}

#container{ width: 960px;
            margin: 0 auto;
}
.container {
    width: 100%;
}
#site-header {
	background: url("https://img13.shop-pro.jp/PA01275/352/etc/bg_cloth2.png") repeat scroll 0 0 #FFF0D5;
	border-bottom: 2px solid #886C44;
	color: #666666;
	display: block;
	}

#site-header #header {
    height: 90px;
    margin: 10px auto 0;
    position: relative;
    width: 960px;
}

#site-header #header h1 {
    color: #333333;
    font-weight: bold;
    left: 6px;
    position:absolute;
    top: 10px;
}


#site-header .sub {
    color: #333333;
    font-size: 12px;
    position: absolute;
    top: 6px;
    left: -2px;
}

#site-header .h_subtitle {
    color: #333333;
    position: relative;
    top: 53px;
}
.logo {
    color: #333333;
    font-size: 13px;
}
.logo img {
    float:left;
    margin-right: -6px;
    left: -6px;
    position: relative;
    top: 16px;
}

#h_member {
    position: absolute;
    right: 0;
    top: 21px;
}

#h_member li {
    background: url("https://img13.shop-pro.jp/PA01275/352/etc/list-style.png") no-repeat scroll 8px center ;
    border-left: 1px solid #666666;
    color: #866c44;
    float: left;

    height: 20px;
    list-style-position: inside;
    margin-right: 10px;
    padding-left: 21px;
    line-height:20px;
}

#h_member li:first-child {
    background: none;
    border-left: medium none;
}
#h_member li a {
    color: #886c44;
    font-size: 14px;
}
#h_member li a:hover{
    color: #21759B;
    text-decoration: none;
}
#h_member li .welcome
.icon_head{
    display: inline-block;
    height: 16px;
    width: 16px;
}
/*商品検索*/

#h_search {
    margin-left: 548px;
    position: absolute;
    top: 52px;
    width: 410px;
}
#h_search select {
    color: #886C44;
    margin-left: 50px;
    margin-top: 5px;
    text-align: left;
    text-indent: 0;
    padding: 2px 0;
}

#h_search select .dis-non {
    display: none;
}
#h_search .h_search {
    float: right;
    margin-top: 4px;
}

#h_search .h_search input[type="text"] {
    width: 140px;
}
#h_search option {
    color: #886C44;
    font-weight: normal;
    line-height: 1em;
    margin: -1px 0 0;
}
input[type="submit"] {
}
/*スライダー*/
.nivoSlider {
    height: 324px;
    margin: 0 auto 0;
    position: relative;
      overflow:hidden;
}
#h_slider {
    background: #ffffff url("https://img13.shop-pro.jp/PA01275/352/etc/bg_cloth.jpg?20140515090529") repeat scroll 0 0;
    border-top: 2px solid #886c44;
    clear: both;
    height: 324px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

/*ナビゲーション*/
#main-nav {
    background: url("https://img13.shop-pro.jp/PA01275/352/etc/bg-nav_min.png?20140515103331") repeat-x scroll 0 0 #646830;
    border-top: 2px solid #886C44;
    clear: both;
    height: 40px;
    margin: 0;
}
#main-nav ul {
    background: url("https://img13.shop-pro.jp/PA01275/352/etc/nav_border.png?20140523165144") no-repeat scroll 0 0;
    height: 40px;
    margin: auto;
    width: 960px;
}
#main-nav ul li {
    display: block;
    float: left;
    margin-left: 2px;
    margin-right: 2px;
    text-align: center;
    width: 156px;
}

#main-nav ul li img {
    margin-top: -9px;
}
#main-nav ul li img:hover, #main-nav ul .current img {
    margin-top: -54px;
}
#main-nav ul li a {
    color: #F1E5D2;
    display: block;
    font-size: 15px;
    font-weight: normal;
    letter-spacing: 0.15em;
    padding-bottom: 10px;
    padding-top: 10px;
    text-shadow: 2px 2px 2px #333333;
}
#main-nav ul li a:hover, #main-nav ul .current {
    background: url("https://img13.shop-pro.jp/PA01275/352/etc/bg_cloth.png?20140515091037") repeat-x scroll 0 0 #FFFFFF;
    color: #646830;
    text-decoration: none;
    text-shadow: none;
}
#main-nav ul li a {
    color: #F1E5D2;
    display: block;
    font-size: 15px;
    font-weight: normal;
    letter-spacing: 0.15em;
    padding-bottom: 10px;
    padding-top: 10px;
    text-shadow: 2px 2px 2px #333333;
}
#contents {
    display: block;
    float: right;
    margin: 30px 0 0;
    padding: 0;
    width: 650px;
}
#side {
    float: left;
    margin: 30px 0 0;
    overflow: hidden;
    padding: 0;
    width: 280px;
}
.banner {
    margin: 0;
    padding: 0;
}

.banner li {
    height: 90px;
    margin-bottom: 20px;
    width: 280px;
}

.banner img {

}
.banner li a:hover img {
    opacity: 0.7;
    transition-delay: 100ms;
    transition-duration: 300ms;
}


/*ご利用の方へ*/
.use_box {
    background: url("https://www.tokkoen.co.jp/images/bg_cloth.jpg") repeat scroll 0 0 #ebe6d0;
    border: 2px solid #656830;
    display: block;
    margin-bottom: 20px;
}
.use_box h3 {
    background: none repeat scroll 0 0 #646830;
    border-bottom: 1px solid #646830;
    color: #ffffff;
    padding: 15px 0 10px 15px;
}
.use_box ul {
    margin: 0;
    padding: 10px;
}
.use_box li{
    background: url("https://img13.shop-pro.jp/PA01275/352/etc/link-cursol.png?20140811133606") no-repeat scroll left center;
    padding: 5px 20px;
}
.use_box li a{
    font-size: 13px;

    transition: all 0ms ease 0s;
    color: #886c44;
    text-decoration: underline;
}
.use_box li a:hover{
    color: #21759b;
    text-decoration:none;
}

/*商品カテゴリ*/
#side_category {
    background: #ffffff url("https://img13.shop-pro.jp/PA01275/352/etc/bg_sidecategory.gif") no-repeat scroll 0 0;
    border: 2px solid #656830;
    margin-bottom: 20px;
    padding: 13px 0;
}
#category_box {
    padding-top: 47px;
}
.category_box_list {
    font-size: 13px;
    font-weight: bold;
    transition:300ms;
    padding: 9px 10px;
}
.category_box_list a {
    box-sizing: border-box;
    color: #886c44;
    display: block;
    margin-left: 0;
    padding: 12px 30px 12px 50px;
    text-decoration: none;
    text-indent: -9999px;
}
/*******************************************************************************************************************************************************/
/*新茶*/
.category_box_list.cbid-2718924 a {
    background: url("https://img13.shop-pro.jp/PA01275/352/etc_base64/Y2F0LW5ld3RlYV8yMDIw.png?cmsp_timestamp=20230515160246") 0 0 no-repeat;
}
/*******
.category_box_list.cbid-2718924  {
    display: none;
    height: 0;
}  *****/

/*夏の贈り物*/
.category_box_list.cbid-262780 {
    display: none;
    height: 0;
}  
.category_box_list.cbid-2627805 a{
 background: url(https://img13.shop-pro.jp/PA01275/352/etc/cat-season_summer.png?cmsp_timestamp=20200629100151) 0 0 no-repeat;
}
/*敬老の日*/
.category_box_list.cbid-2650748 a {
    background: url(https://img13.shop-pro.jp/PA01275/352/etc/cat-keiro.png?cmsp_timestamp=20200831152855) 0 0 no-repeat;
}
/*蔵出し茶*/
.category_box_list.cbid-2882763 a {
	background: url(https://img13.shop-pro.jp/PA01275/352/etc_base64/Y2F0LXNlYXNvbl9rdXJhZGFzaGk.png?cmsp_timestamp=20250818113745) 0 0 no-repeat;
}

/*冷凍口切茶　2023/11/1切り替え */
/*
.category_box_list.cbid-2882763 a {
	background: url(https://img13.shop-pro.jp/PA01275/352/etc_base64/Y2F0LXNlYXNvbjIwMjI.png?cmsp_timestamp=20231031133941) 0 0 no-repeat;
}*/

/*春待ち茶*/
.category_box_list.cbid-2650891 a {
    background: url(https://img13.shop-pro.jp/PA01275/352/etc/cat-season-spring.png?cmsp_timestamp=20230206145452) 0 0 no-repeat;
}
/*送料一律*/
.category_box_list.cbid-2650839 a {
    background: url(https://img13.shop-pro.jp/PA01275/352/etc/cat-send_cost.png?cmsp_timestamp=20210806151053) 0 0 no-repeat;
}
/*母の日*/
.category_box_list.cbid-2713751 a{
    background: url("https://img13.shop-pro.jp/PA01275/352/etc/cat-mothersday.png?cmsp_timestamp=20200420170025")  0 0 no-repeat;
}

/*
.category_box_list.cbid-2713751{
  	display: none;
  	height: 0;
}
*/

/*父の日*/
.category_box_list.cbid-2724962 a{
    background: url("https://img13.shop-pro.jp/PA01275/352/etc/cat-fathersday.png?cmsp_timestamp=20210514105017")  0 0 no-repeat;
}
/*走り新茶*/
.category_box_list.cbid-2716044 a {
 background: url("https://img13.shop-pro.jp/PA01275/352/etc_base64/Y2F0LWhhc2hpcmk.png?cmsp_timestamp=20240408100324") 0 0 no-repeat;
 display:none;
}
.category_box_list.cbid-2716044{
	display: none;
	height: 0;  
}

/*季節のお茶*/
.category_box_list.cbid-1976056 a {
 background: url("https://img13.shop-pro.jp/PA01275/352/etc/cat-kuchikiri.png?cmsp_timestamp=2021110110455") 0 0 no-repeat;
}

/*送料一律330円*/
.category_box_list.cbid-2797017 a {
	background: url("https://img13.shop-pro.jp/PA01275/352/etc_base64/Y2F0LXNlbmRfY29zdDMzMF8z.png?cmsp_timestamp=20230601061704") 0 0 no-repeat;
}
/*送料一律440円*/
.category_box_list.cbid-2907788 a {
	background: url("https://img13.shop-pro.jp/PA01275/352/etc_base64/Y2F0LXNlbmRfY29zdDQ0MA.png?cmsp_timestamp=20240602105454") 0 0 no-repeat;
}

/*新茶ご予約*/
.category_box_list.cbid-2797383 {
	display: none;
	height: 0;
}
/*走り新茶*/


/*御年賀*/
.category_box_list.cbid-2064211 a {
background:  url("https://img13.shop-pro.jp/PA01275/352/etc/cat-onenga.png?cmsp_timestamp=2145")  0 0 no-repeat;
}





/*ギフト1000円*/
.category_box_list.cbid-2719637{ 
    display: none;
    height: 0;
}
/*ギフト2000円*/
.category_box_list.cbid-2719601 {
    display: none;
    height: 0;
}

/*ギフト3000円*/
.category_box_list.cbid-2719695 {
    display: none;
    height: 0;
}

/*ギフト4000円*/
.category_box_list.cbid-2719696 {
    display: none;
    height: 0;
}

/*ギフト5000円*/
.category_box_list.cbid-2719748 {
    display: none;
    height: 0;
}

/*ギフト6000円*/
.category_box_list.cbid-2719749 {
    display: none;
    height: 0;
}
/*新茶承り*/
.category_box_list.cbid-2507663 {
    display: none;
    height: 0;
}

.category_box_list.cbid-2507664 {
    display: none;
}
/*新茶ご予約*/
.category_box_list.cbid-2507664 a {
   background: url("https://img13.shop-pro.jp/PA01275/352/etc/cat-newtea_reservation.png?cmsp_timestamp=20210330113218") 0 0 no-repeat;
}
.category_box_list.cbid-1720352 a{
 background: url("https://img13.shop-pro.jp/PA01275/352/etc/cat-wakatsumi.png?202403210450") 0 0 no-repeat;
}
.category_box_list.cbid-1720353 a{
 background: url("https://img13.shop-pro.jp/PA01275/352/etc/cat-yukifuka.png?202505141813") 0 0 no-repeat;
}
.category_box_list.cbid-1720462 a{
 background: url("https://img13.shop-pro.jp/PA01275/352/etc/cat-tokumushi.png?202403213611") 0 0 no-repeat;
}
.category_box_list.cbid-1720469 a{
 background: url("https://img13.shop-pro.jp/PA01275/352/etc/cat-chirancha.png?202403213642") 0 0 no-repeat;
}
.category_box_list.cbid-1720551 a{
 background: url("https://img13.shop-pro.jp/PA01275/352/etc_base64/Y2F0X3l1a2lzYWliYWk.png?cmsp_timestamp=20240709161920") 0 0 no-repeat;
}
.category_box_list.cbid-1927368 a {
 background: url("https://img13.shop-pro.jp/PA01275/352/etc/cat-newtea.png?20150410111647") 0 0 no-repeat;
}
.category_box_list.cbid-1976536 a {
 background: url("https://img13.shop-pro.jp/PA01275/352/etc/cat-teabag_2021.png?cmsp_timestamp=20210224091109") 0 0 no-repeat;
}
.category_box_list.cbid-2330677 a {
    background: rgba(0, 0, 0, 0) url("https://img13.shop-pro.jp/PA01275/352/etc/cat-funmatsu.png?cmsp_timestamp=20170823154703") no-repeat scroll 0 0;
}
.category_box_list.cbid-2332231 a {
    background: rgba(0, 0, 0, 0) url("https://img13.shop-pro.jp/PA01275/352/etc/cat-mizudashi_2021.png?cmsp_timestamp=20210224112616") no-repeat scroll 0 0;
}



/*新茶カテゴリ*/
.category_box_list.cbid-2277037 a {
    background: rgba(0, 0, 0, 0) url("https://img13.shop-pro.jp/PA01275/352/etc/cat-wakatsumi.png?202403210450") no-repeat scroll 0 0;
}
.category_box_list.cbid-2277183 a {
    background: rgba(0, 0, 0, 0) url("https://img13.shop-pro.jp/PA01275/352/etc/cat-yukifuka.png?202505141813") no-repeat scroll 0 0;
}
.category_box_list.cbid-2277593 a {
    background: rgba(0, 0, 0, 0) url("https://img13.shop-pro.jp/PA01275/352/etc/cat-chirancha.png?202403213642") no-repeat scroll 0 0;
}
.category_box_list.cbid-2283164 a {
    background: rgba(0, 0, 0, 0) url("https://img13.shop-pro.jp/PA01275/352/etc/cat-tokumushi.png?202403213611") no-repeat scroll 0 0;
}
/*少量パック*/
.category_box_list.cbid-2311590 a {
    background: rgba(0, 0, 0, 0) url("https://img13.shop-pro.jp/PA01275/352/etc/cat-pack.png") no-repeat scroll 0 0;
}

.cbid-2064211 {

}
.category_box_list.cbid-1845717 a{
    display:none;
}
.category_box_list.cbid-1927368 a{
    display:none;
}
.category_box_list.cbid-2278868 a{
    display:none;
}
.category_box_list.cbid-2277565 a {
    display: none;
}
.category_box_list.cbid-2277565,.category_box_list.cbid-2278868,.category_box_list.cbid-1845717{
    height: 0;
    margin: 0 !important;
    padding: 0 !important;
}

.category_box_list.cbid-1927368{
    height: 0;
    margin: 0 !important;
    padding: 0 !important;
}
#fathers_day a{
    background: url("https://img13.shop-pro.jp/PA01275/352/etc/cat-fathersday.png?cmsp_timestamp=20200525142222") no-repeat scroll 0 0 #FFF;
     transition: 300ms;
}
#mothers_day a{
    background: url("https://img13.shop-pro.jp/PA01275/352/etc/cat-mothersday.png?cmsp_timestamp=20200420170025") no-repeat scroll 0 0 #FFF;
     transition: 300ms;
     display:none;
}
#list_hashiri a{
    background: url("https://img13.shop-pro.jp/PA01275/352/etc_base64/Y2F0LWhhc2hpcmk.png?cmsp_timestamp=20240408100324") no-repeat scroll 0 0 #FFF;
     transition: 300ms;
}


#list_newtea_hashiri a {
	background: url("https://img13.shop-pro.jp/PA01275/352/etc/cat-hashiri.png?cmsp_timestamp=20210409102121") no-repeat scroll 0 0 #FFF;
	transition: 300mx;
  height:36px;
}
#list_newtea_reservation_hashiri a{
    background: url("https://img13.shop-pro.jp/PA01275/352/etc/cat-hashiri.png?cmsp_timestamp=20210409102121") no-repeat scroll 0 0 #FFF;
     transition: 300ms;
}
#list_newtea_reservation a{
    background: url("https://img13.shop-pro.jp/PA01275/352/etc/cat-newtea_reservation.png?cmsp_timestamp=20200410145642") no-repeat scroll 0 0 #FFF;
     transition: 300ms;
}
#list_seasontea a {
    background: #ffffff url("https://img13.shop-pro.jp/PA01275/352/etc/cat-season_newteayoyaku.png?cmsp_timestamp=20190402192400") no-repeat scroll 0 0;
    transition: all 300ms ease 0s;
}
#list_mothers_day a {
	background: url("https://img13.shop-pro.jp/PA01275/352/etc/cat-mothersday.png?cmsp_timestamp=20200420170025") no-repeat scroll 0 0 #FFF;
	transition: 300ms;
	height: 36px;
}
#gift-page.category_box_list a {
    background: url("https://img13.shop-pro.jp/PA01275/352/etc/cat-gift.png?202507154847") no-repeat scroll 0 0 #FFF;
     transition: 300ms;
}
#gift-box.category_box_list a {
    background: url("https://img13.shop-pro.jp/PA01275/352/etc_base64/Y2F0X2dpZnRib3g.png?cmsp_timestamp=20240710152155") no-repeat scroll 0 0 #FFF;
     transition: 300ms;
}
#gift-page.category_box_list a:hover,#list_newtea a:hover,#list_newtea_reservation a:hover,#list_hashiri a:hover,#list_seasontea a:hover{
    background-color: #F7F3DA;
     transition: 300ms;
}
#gift-box.category_box_list a:hover,#list_newtea a:hover,#list_newtea_reservation a:hover,#list_hashiri a:hover,#list_seasontea a:hover{
    background-color: #F7F3DA;
     transition: 300ms;
}
.category_box_list:hover a {
    background-color: #F7F3DA !important;
     transition: 300ms;
}

#gift-page.category_box_list a:hover,.category_box_list:hover {
/*    background: url("https://img13.shop-pro.jp/PA01275/352/etc/bg_categorylist.gif") no-repeat scroll 22px 0; */
    background-color: #F7F3DA;
    text-decoration: none;
}
 #category_box .side_all{
    opacity: 0.8;
}
#category_box .side_all {
    background: url("https://img13.shop-pro.jp/PA01275/352/etc/bg-sidecaegory-bottom1.png?cmsp_timestamp=20160229131643") repeat scroll 4px -20px;
    font-size: 14px;
    height: 50px;
    text-align: right;
    padding-top:25px;
    padding-right: 10px;
    width:265px;
}
#category_box .side_all a{
    color: #886C44;
    text-decoration: underline;
}
#category_box .side_all a:hover {
    color: #21759B;
    text-decoration: none;
}
/*ショッピングカート*/
#shoppig_cart {
    margin-bottom: 10px;
    overflow: hidden;
    width: 258px;
    padding: 10px;
    background: #f6f2d7;
    border: 1px solid #ccc;
}

#shoppig_cart a{
 display:block;
 -webkit-transition: 300ms;
 -ms-transition: 300ms;
 transition: 300ms;
}

#shoppig_cart a:hover {
    opacity: 0.8;
}
.welcome-msg{
 font-size: 14px;
 color: #333;
}
.member-name{
 font-weight: bold;
}
/*ログイン*/


#side_login .login a {
    background: url("https://img13.shop-pro.jp/PA01275/352/etc/bnr_login.png?20140501090804") repeat scroll 281px 0 #FFFFFF;
    border: 2px solid #656830;
}
#side_login li a {
    background: url("https://img13.shop-pro.jp/PA01275/352/etc/myacont.png?20140509144713") repeat scroll 0 0 #FFFFFF;
    border: 2px solid #D2691E;
}
#side_login li a {
    cursor: pointer;
    display: block;
    height: 60px;
    margin-bottom: 20px;
    overflow: hidden;
    width: 278px;
    text-indent: -9999px;
}

#side_login a:hover {
    background-color: #FFFFFF;
    background-position: 0px 0px;
    opacity: 0.85;
}


/*facebook*/
#h_fb {
    background:url("https://img13.shop-pro.jp/PA01275/352/etc/fb_logo.png?20140805193741") no-repeat scroll 0 3px;
    color: #FFFFFF;
    display: block;
    font-size: 15px;
    margin: 0;
    padding: 5px 0;
    text-align: center;
}
#facebook {
    margin-bottom: 20px;
}
#side h2 {
    border-bottom: 1px solid #FFFFFF;
    font-size: 24px;
    letter-spacing: 0;
    margin-bottom: 5px;
    padding: 5px 40px;
    text-align: left;
}
/*CM_youtube*/
#side_cm a {
    background: url("https://img13.shop-pro.jp/PA01275/352/etc/bnr_cm_02.jpg?cmsp_timestamp=20181121183053") repeat scroll 0 0 #FFFFFF;
    display: block;
    height: 240px;
    margin-bottom: 30px;
    width: 280px;
    transition: all 0ms ease 0s;
}

#side_cm a:hover {
    background-position: 0 240px;
    transition: all 0ms ease 0s;
}



/* フッター */
#site-footer {
    background: url("https://img13.shop-pro.jp/PA01275/352/etc/filter-black10.png?20140805142542") repeat scroll 0 0 #886C44;
    padding: 10px 0;
    clear: both;
}
#footer {
    margin:auto;
    width: 960px;
}

.footer_menu {
    margin: 25px 0;
    text-align: center;
}
.footer_menu li {
    display: inline;
    padding: 0 6px;
}
.footer_menu .lastChild {
    border: medium none;
    padding-right: 0;
}

.footer_menu li a {
    background: url("https://img13.shop-pro.jp/PA01275/352/etc/footer_leaf.gif?20140805142455") no-repeat scroll 3px 0;
    color: #FFFFFF;

    font-size: 12px;
    font-weight: normal;
    padding-left: 20px;
    transition: all 300ms ease 0s;
}
.footer_menu .home a {
    background: none;
    padding-left: 0;
}
.footer_menu li a:hover {
    color: #0F3647;
    text-decoration: none;
    transition: all 300ms ease 0s;
}

.footer_menu .lastChild{
    position:relative;
    border: medium none;
    padding-right: 0;
}

hr{
   margin:24px 0;
   margin-bottom:1.71rem;
}
hr.style{
    border: 0;
    height: 1px;
    background:#886C44;
    background-image: -webkit-linear-gradient(left, #886C44, #FFF, #886C44);
    background-image:    -moz-linear-gradient(left, #886C44, #FFF, #886C44);
    background-image:     -ms-linear-gradient(left, #886C44, #FFF, #886C44);
    background-image:      -o-linear-gradient(left, #886C44, #FFF, #886C44);
}

.copyright{
   font-size:14px;
   text-align: center;
   letter-spacing: 0.1em;
   padding-bottom:15px;
   z-index:100;
   margin-bottom: 0;
}

/*戻るボタン*/
div.tothetopfixed {
    position: fixed;
    right: 40px;
    bottom: 138px;
    transition: 0ms;
}

div.tothetopfixed a {
    display: block;
    background: url("https://img13.shop-pro.jp/PA01275/352/etc/go2top.png?202406173906")  no-repeat 0 0;
    /*background:#EBE6D0;*/
    color:#646830;
    text-align:center;
        text-indent: -9999px;
    width:60px;
    padding: 25px 10px;
    margin: 0;
    font-size: 12px;
}

div.tothetopfixed a:hover {
}

/*************************************************/
h1, h2, h3, h4, h5, h6 {
    clear: both;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    vertical-align: baseline;
}
h2, *:-moz-any(article, aside, nav, section) h1 {
    font-weight: bold;
}
address, address[dir], article, article[dir], aside, aside[dir], blockquote, blockquote[dir], body, body[dir], caption, caption[dir], center, center[dir], col, col[dir], colgroup, colgroup[dir], dd, dd[dir], dir, dir[dir], div, div[dir], dl, dl[dir], dt, dt[dir], fieldset, fieldset[dir], figcaption, figcaption[dir], figure, figure[dir], footer, footer[dir], form, form[dir], h1, h1[dir], h2, h2[dir], h3, h3[dir], h4, h4[dir], h5, h5[dir], h6, h6[dir], header, header[dir], hgroup, hgroup[dir], hr, hr[dir], html, html[dir], legend, legend[dir], li, li[dir], listing, listing[dir], main, main[dir], marquee, marquee[dir], menu, menu[dir], nav, nav[dir], noframes, noframes[dir], ol, ol[dir], p, p[dir], plaintext, plaintext[dir], pre, pre[dir], section, section[dir], summary, summary[dir], table, table[dir], tbody, tbody[dir], td, td[dir], tfoot, tfoot[dir], th, th[dir], thead, thead[dir], tr, tr[dir], ul, ul[dir], xmp, xmp[dir] {
    unicode-bidi: -moz-isolate;
}
body {
    color: #ffffff;
    font-family: "Lucida Grande","Lucida Sans Unicode","Hiragino Kaku Gothic Pro",Meiryo,Helvetica,Arial,Verdana,sans-serif;
}
body {
    text-rendering: optimizelegibility;
}
body {
    line-height: 1;
}
[dir="ltr"] {
    direction: ltr;
}
a {
    color: #464E54;
}
a {
    text-decoration: none;
}
:-moz-any-link {
    cursor: pointer;
}
.h_sale {
    font-size: 24px;
}
h1, h2, h3, h4, h5, h6 {

}
h2, *:-moz-any(article, aside, nav, section) h1 {
    font-weight: bold;
     font-size: 24px;
}
body {
    line-height: 1.5;
}
[dir="ltr"] {
    direction: ltr;
}


body {
    text-rendering: optimizelegibility;
}
body {
    line-height: 1;
}
[dir="ltr"] {
    direction: ltr;
}
p {
    line-height: 1.7em;
}

/*スライダー停止*/
#h_slider .silder_test a {
    display: block;
    margin: -13px auto 0;
    width: 960px;
}


/*フッターテスト*/
div#nav {
  overflow: hidden; /* はみ出したものは隠す */
  _height: 1.5em; /* IE6用。祖先要素に幅や高さが指定していれば必要ないので，今回のサンプルではなくても問題なし。*/
}

#nav ul {
  margin-left: -1px; /* 一番左のボーダー幅と同じ値の負のマージン */
}

#nav ul li {
  padding: javascript:jf_UpperSubmit();0 10px;
  display: inline; /* 横並びにさせる */
  border-left: 1px solid #fff; /* 区切り線 */
}
.new_mark_img2 {
    margin-left: 5px !important;
}

/* パンくずリスト */
#contents .topicpath-nav a {
    color: #FFFFFF;
    font-size: 12px;
    margin-left: 5px;
    text-decoration: underline;
}
#contents .topicpath-nav a:hover, #contents .topicpath-nav .current, #contents .topicpath-nav .current a {
    color: #545820;
    text-decoration: none;
}

/*うまいお茶部門プラチナ大賞受賞*/
.side_award{
    margin-bottom: 20px;
    background-color: #ffffff;
}

.side_award a:hover img {
    opacity: 0.8;
}
#onenga  {
    display: block;
}

#onenga a {
    background: rgba(0, 0, 0, 0) url("https://img13.shop-pro.jp/PA01275/352/etc/cat-onenga.png?cmsp_timestamp=2105") no-repeat scroll 0 0;
    color: #fff;
    display: block;
    padding: 12px 30px 12px 50px;
    height: 36px;
}