@charset "euc-jp";
#container {
  padding-top: 30px;
}

.header-headline-nav li a {
  color: #4d4d4d;
  text-decoration: none;
  font-weight: normal;
  font-size: 13px;
}
.header-global-nav a,
.header-global-nav span {
  padding-bottom: 5px;
  color: #4d4d4d;
  text-decoration: none;
  font-weight: normal;
  font-size: 18px;
  cursor: pointer;
}
#nav a {
  color: #4d4d4d;
}

#slideshow-block {
  margin-bottom: 0px;
}
#supersized-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  margin: -30px 0 0 -30px;
  width: 60px;
  height: 60px;
  background: url(https://img.shop-pro.jp/tmpl_img/68/progress.gif) no-repeat center center;
  text-indent: -999em;
}
#supersized {
  position: absolute;
  left: 0;
  z-index: 1;
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
}
  #supersized .row {
    position: relative;
  }
  #supersized img {
    position: absolute;
    display: none;
    width: auto !important;
    height: auto !important;
    outline: none;
    border: none;
  }
  #supersized.speed img {
    -ms-interpolation-mode:nearest-neighbor;
    image-rendering: -moz-crisp-edges;
  }
  #supersized.quality img {
    -ms-interpolation-mode:bicubic;
    image-rendering: optimizeQuality;
  }
  #supersized li {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -30;
    display: block;
    overflow: hidden;
    width: 100%;
    height: auto;
    background-color: #fff;
    list-style: none;
  }
  #supersized li.prevslide {
    z-index: -20;
  }
  #supersized li.activeslide {
    z-index: -10;
  }
  #supersized li.image-loading {
    width: 100%;
    height: 100%;
    background: #111 url(https://img.shop-pro.jp/tmpl_img/68/progress.gif) no-repeat center center;
  }
  #supersized li.image-loading img {
    visibility: hidden;
  }
  #supersized li.prevslide img,
  #supersized li.activeslide img {
    display: inline;
  }
#slide-list {
  position: absolute;
  bottom: 20px;
  margin: 0 !important;
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: .85em;
  font-family: Arial;
}
  #slide-list li {
    display: inline-block;
    *zoom: 1;
    *display: inline;
  }
  #slide-list a {
    display: block;
    margin: 0 5px;
    width: 70px;
    height: 10px;
    outline: 0;
    background: #5e5e5e;
    text-indent: -9999px;
    opacity: 0.7;
    cursor: pointer;
  }
  #slide-list a:hover,
  #slide-list .current-slide a {
    background: #808080;
    opacity: 1;
  }
#controls-wrapper {
  position: absolute;
  left: 0;
  width: 100%;
  height: 10px;
  *z-index: 50;
}
#controls {
  position: relative;
  z-index: 50;
  height: 100%;
}
#slidecaption {
  position: absolute;
  left: 1%;
  z-index: 2;
  padding-bottom: 20px;
  color: #fff;
  font-size: 40px;
  line-height: 1.2;
}
  #controls-wrapper.mode-static {
    position: static;
    padding: 15px 0;
    height: auto;
  }
  #controls-wrapper.mode-static #slide-list {
    position: static;
  }

@media only screen and (max-width: 980px) {
  #supersized {
    top: 60px;
  }
  #controls-wrapper {
    position: static;
    height: auto;
  }
  #slide-list {
    position: static;
    padding-top: 15px;
  }
    #slide-list a {
      width: 15px;
      height: 15px;
    }
  #slidecaption {
    left: 3%;
    padding-bottom: 6px;
    font-size: 20px;
  }
}

@media only screen and (max-width: 768px) {
  #slidecaption {
    left: 20px;
    padding-bottom: 10px;
  }
}

/* ▼▼▼ 編集箇所：価格表示ここから ▼▼▼ */

/* 初期状態では、通常価格・SALE価格・OFF表示を隠す */
.prd-lst-price-wrap .prd-lst-regular,
.prd-lst-price-wrap .prd-lst-sale-price,
.prd-lst-price-wrap .prd-lst-discount {
  display: none !important;
}

/* 初期状態では、通常商品用の販売価格のみ表示 */
.prd-lst-price-wrap .prd-lst-normal-price {
  display: block !important;
  color: #999 !important;
  font-weight: normal !important;
  text-decoration: none !important;
}

/* セール判定時：通常商品用の販売価格を非表示 */
.prd-lst-price-wrap.is-sale .prd-lst-normal-price {
  display: none !important;
}

/* セール判定時：通常価格を取り消し線で表示 */
.prd-lst-price-wrap.is-sale .prd-lst-regular {
  display: block !important;
  color: #999 !important;
  font-weight: normal !important;
  text-decoration: line-through !important;
}

/* セール判定時：SALE価格を赤字・太字で表示 */
.prd-lst-price-wrap.is-sale .prd-lst-sale-price {
  display: block !important;
  color: #d00000 !important;
  font-weight: bold !important;
  text-decoration: none !important;
}

/* セール判定時：OFF表示を赤字・太字で表示 */
.prd-lst-price-wrap.is-sale .prd-lst-discount {
  display: block !important;
  color: #d00000 !important;
  font-weight: bold !important;
  text-decoration: none !important;
}

/* SOLD OUT */
.prd-lst-soldout {
  display: block !important;
  color: #d00000 !important;
  font-weight: normal !important;
  text-decoration: none !important;
}

/* ▲▲▲ 編集箇所：価格表示ここまで ▲▲▲ */

/* ▼▼▼ 編集箇所：商品カード Flexbox安定化ここから ▼▼▼ */
.prd-lst-price-wrap {
  position: static !important;
  display: block;
  clear: both;
  width: 100%;
  height: auto !important;
  min-height: 0;
  box-sizing: border-box;
}
.prd-lst-regular,
.prd-lst-sale-price,
.prd-lst-discount,
.prd-lst-normal-price,
.prd-lst-soldout {
  position: static !important;
  float: none !important;
  clear: both;
  width: 100%;
  box-sizing: border-box;
}
.prd_lst_link { display: block; width: 100%; }
.prd-lst-img { display: block; width: 100%; height: auto; }
/* ▲▲▲ 編集箇所：商品カード Flexbox安定化ここまで ▲▲▲ */


/* ▼▼▼ 編集箇所：トップページ Flexbox最終版ここから ▼▼▼ */
.new-item-block > ul.unstyled,
.recommend-block > ul.unstyled,
.bestseller-block > ul.unstyled {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: stretch !important;
  width: 100%;
  margin: 0;
  padding: 0;
}
.new-item-block > ul.unstyled > .prd-lst-unit,
.recommend-block > ul.unstyled > .prd-lst-unit,
.bestseller-block > ul.unstyled > .prd-lst-unit {
  float: none !important;
  display: flex !important;
  flex: 0 0 33.333333%;
  flex-direction: column;
  width: 33.333333% !important;
  max-width: 33.333333%;
  height: auto !important;
  min-height: 0 !important;
  box-sizing: border-box;
  overflow: visible !important;
}
@media only screen and (max-width: 980px) {
  .new-item-block > ul.unstyled > .prd-lst-unit,
  .recommend-block > ul.unstyled > .prd-lst-unit,
  .bestseller-block > ul.unstyled > .prd-lst-unit {
    flex: 0 0 50%;
    width: 50% !important;
    max-width: 50%;
    height: auto !important;
    min-height: 0 !important;
  }
}
@media only screen and (max-width: 480px) {
  .new-item-block > ul.unstyled > .prd-lst-unit,
  .recommend-block > ul.unstyled > .prd-lst-unit,
  .bestseller-block > ul.unstyled > .prd-lst-unit {
    word-break: break-word;
    overflow-wrap: anywhere;
  }
}
/* ▲▲▲ 編集箇所：トップページ Flexbox最終版ここまで ▲▲▲ */

/* ▼▼▼ 編集箇所：スマートフォン「もっと見る」修正ここから ▼▼▼ */

/*
 * Flexboxの display:flex !important よりも後に指定し、
 * スマートフォンでは7商品目以降を確実に非表示にします。
 */
@media only screen and (max-width: 768px) {
  .new-item-block > ul.unstyled > .prd-lst-unit.hidden-phone,
  .recommend-block > ul.unstyled > .prd-lst-unit.hidden-phone,
  .bestseller-block > ul.unstyled > .prd-lst-unit.hidden-phone {
    display: none !important;
  }

  /*
   * hidden-phoneが外れた商品はFlexboxの2列表示へ戻します。
   */
  .new-item-block > ul.unstyled > .prd-lst-unit:not(.hidden-phone),
  .recommend-block > ul.unstyled > .prd-lst-unit:not(.hidden-phone),
  .bestseller-block > ul.unstyled > .prd-lst-unit:not(.hidden-phone) {
    display: flex !important;
  }

  .more-prd {
    display: block;
    cursor: pointer;
  }
}

/* ▲▲▲ 編集箇所：スマートフォン「もっと見る」修正ここまで ▲▲▲ */
