@charset "euc-jp";

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

body {
  background-color: #fff;
  color: #333;
  font-family: Helvetica, Arial, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
}

body .pure-g [class*="pure-u"] {
  font-family: Helvetica, Arial, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
}

body {
  -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
  animation: fadeIn 1.5s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

/* 各ページ共通 */
.font-b {
  font-weight: bold;
}

.txt-c {
  text-align: center;
}

.link-white {
  color: #fff;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.container.free {
  padding-top: 10px;
  padding-bottom: 25px;
}

a {
  color: #333;
  transition: .3s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.05);
}

a:hover,
a:focus {
  color: #333;
  opacity: 0.75;
  text-decoration: none;
}

h2 {
  font-size: 1.5em;
  margin: 1em 0;
  font-weight: normal;
}

h3 {
  font-weight: normal;
}

/* ヘッダー */
header#header {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  /* Safari */
  position: -webkit-sticky;
  top: 0;
  z-index: 99;
}

.header-nav {
  display: none; 
}

.header-main {
  position: relative;
}

.header-logo {
  flex-grow: 0;
  margin-right: 0;
  color: #292929;
  text-decoration: none;
}

.header-logo h1 {
  margin: 0;
}

.header-logo img {
  max-width: 160px;
  max-height: 50px;
}

.header-toolbar {
  background-color: #eee;
  font-size: 12px;
  padding: 9px 0;
  width: 100%;
}

.header-toolbar-inner {
  display: table;
  width: 100%;
}

.header-toolbar-left {
  display: table-cell;
  vertical-align: middle;
  width: 50%;
}

.header-toolbar-left i {
  margin-right: 2px;
}

.header-toolbar-right {
  display: none;
  text-align: right;
  vertical-align: middle;
  width: 50%;
}

.header-toolbar-right i {
  margin-right: 2px;
  margin-left: 1em;
}

.header-toolbar-right img {
  height: 16px;
  margin-left: 1em;
  margin-right: 2px;
  vertical-align: top;
}

.header-toolbar-ie {
  display: none;
}

header#header .flex-inner {
  display: flex;
  align-items: center;
  /*flex-wrap: wrap;*/
  background-color: #fff;
  height: 80px;
}

.header-icon-menu {
  display: block;
  font-size: 25px;
}

/* 検索窓 */
#search-form2 form {
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
}

#search-form2 input[type="text"] {
  border: 1px solid #ccc;
  border-radius: 0;
  -webkit-appearance: none;
  height: 2em;
  width: 80%;
}

.sp-search-form form {
  display: flex;
  justify-content: space-between;  
  background-color: #fff;
  margin: 0;
  padding: 20px 16px;
}

.sp-search-form input[type="text"] {
  border: 1px solid #ccc;
  border-radius: 0;
  -webkit-appearance: none;
  height: 2em;
  width: 100%;
}

.sp-search-form button {
  margin-left: 10px;
}

#search-icon {
  display: inline-block;
  padding: 10px;
}

#search-icon:hover {
  cursor: pointer;
  opacity: 0.75;
}

#search-form {
  display: none;
}

@media (min-width: 900px) {
  .sp-search-form {
    display: none;  
  }

  #search-form {
    display: flex;
    justify-content: flex-end;
    flex-grow: 1;
    flex-shrink: 1;
    text-align: right;
  }

  #search-form form {
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
    flex-shrink: 1;
    max-width: 24em;
  }

  #search-form input[type="text"] {
    border: 1px solid #ccc;
    border-radius: 0;
    -webkit-appearance: none;
    height: 2em;
    width: 80%;
  }
}

#search-form2 .pure-button-black {
  background-color: #333;
}

#search-form2 .pure-button-black i {
  color: #fff;
}

#search-form .pure-button-gray {
  background-color: #eee;
}

/***********************************
スマホ時にnavをロゴ下に配置するCSS
.header-nav {
  flex-basis: 100%;
  flex-grow: 1;
  order: 1;
  margin-left: -15px;
}
***********************************/

/* メガメニュー */
.header-navmenu {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  align-items: center;
}

.header-navmenu .navmenu-item {
  margin: 27px 15px;
  border-bottom: 1px solid transparent;
  transition: .3s;
}

.header-navmenu .navmenu-item:hover .navmenu-link {
  border-bottom: 1px solid #f60;
}

.header-navmenu .navmenu-link {
  display: block;
  font-size: 11px;
  letter-spacing: 0.8px;
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
  word-break: break-word;
  padding: 5px;
  border-bottom: 1px solid transparent;
}

.header-navmenu .navmenu-angle:hover {
  cursor: pointer;
}

.navmenu-angle:hover div.navmenu-megamenu {
  display: block;
  transition: all .5s;
}

.navmenu-megamenu {
  display: none;
  position: absolute;
  z-index: 999;
  left: 0;
  top: 45px;
  max-width: 1200px;
  width: 100%;
  background-color: transparent;
  padding-top: 25px;
  margin-top: 10px;
}

.navmenu-megamenu-inner {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  background-color: #eee;
  padding: 20px;
  margin-left: 0;
  cursor: auto;  
}

.navmenu-megamenu-inner > li {
  flex-basis: auto;
  padding: 10px;
  text-align: left;
  cursor: auto;  
}

.navmenu-megamenu-inner > li > a > div {
  font-weight: bold;
  margin-bottom: 5px; 
  /*word-break: break-all;*/
}

.navmenu-megamenu-inner > li > ul > li {
  margin-bottom: 5px; 
}

.megamenu-subc:before {
  content: "- ";
}

.navmenu-arrow {
  height: 14px;
  margin: 0 0 2px 2px;
  vertical-align: middle;
}

/* メガメニューの三角形 */
.navmenu-megamenu-inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 393px;/* メガメニューの▲位置 */
  width: 0px;
  height: 0px;
  margin: auto;
  border: 14px solid transparent;
  border-bottom-color: #eee;
}

#dropdown2 .navmenu-megamenu-inner:before {
  top: 0;
  left: 488px;/* メガメニューの▲位置 */
}

.triangle {
  width: 0;
  height: 0;
  border-top: 30px solid #4EA9D5;
  border-right: 30px solid #29c195;
  border-bottom: 30px solid #e49910;
  border-left: 30px solid #ee4f16;
}

/* ヘッダーアイコン */
.header-icon {
  display: flex;
  align-items: center;
  flex-grow: 1;
  flex-shrink: 1;
  justify-content: flex-end;
}

.header-icon i {
  font-size: 25px;
}

.header-icon-fav,
.header-icon-cart,
.header-icon-search {
  position: relative;
  width: 44px;
  /*height: 44px;*/
  margin-left: 10px;
  flex-shrink: 0;
}

.header-icon-fav a,
.header-icon-cart a,
.header-icon-search a,
.header-icon-menu a {
  display: block;
  padding: 10px;
}

.header-icon-cart-label {
  background-color: #f60;
  color: #fff;
  position: absolute;
  top: 1px;
  height: 14px;
  width: 14px;
  font-size: 10px;
  line-height: 14px;
  text-align: center;
  right: 4px;
  border-radius: 50%;
}

.header-icon-search {
  display: none;
}

/* スライドショー */
#slider {
  opacity: 0;
  transition: opacity .3s linear;
}

#slider.slick-initialized {
  opacity: 1;
}

#slider .slick-list {
  /*max-width: 1130px;*//*スライド画像が小さい場合は指定するとよい*/
  margin: 0 auto; 
}

/* スライド画像にホバーしたとき */
#slider .slick-slide a:hover {
  opacity: 1;
}

#slider.slick-slider {
  margin-bottom: 0;
  /* 画像が小さい場合*/
  /*margin: 0 auto;
  max-width: 1920px;*/
  background-color: #fff;
}

/* 画像中央を切り抜く */
#slider .slick-slide img {
  height: calc(80vh - 184px);/*80vhを変更するとよい*/
  object-fit: cover;/*IE11では使えないスタイル。スマホ用なので問題ない*/
}

/* 画像の左上を切り抜く（場合に応じて、上の代わりにこちらを使う）
#slider .slick-slide img {
  max-width: initial;
  height: calc(100vh - 184px);
}
*/

/* スライドショーのドットのサイズ */
#slider .slick-dots li button::before {
  font-size: 12px;
  content: '●'
}

#slider .slick-dots {
  margin-left: 0;
  bottom: 0;
}

/* slick キャプション */
#slider .slick-slide {
  position: relative;
}

#slider .slick-slide .caption {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  color: #eee;
  font-family: 'Zen Old Mincho', serif;
  font-size: 1.4em;
  font-weight: 700;
  width: 100%;
  height: auto;
  display: block;
  max-width: 1170px;
  text-align: center;
  transition: .3s;
  filter: drop-shadow(10px 0 10px rgba(0, 0, 0, 1));
}

/* 幅拡張 */
.full-width {
  width: 100%;
  position: relative;
  background-color: transparent;
}

.spread-width {
  list-style: none;
  margin-left: -7.5px;
  margin-right: -7.5px;
}
/* お知らせ */
.info {
  display: inline-block;
  margin-bottom: 50px;
}

.info li {
  border-bottom: 1px dashed #ccc;
}

/* SNSアイコン */
.sns-icon {
  margin: 0 0.5em;
}

.sns-icon li {
  font-size: 1.5em;
  display: inline;
  margin-left: 0.5em;
}

/* フッター */
footer {
  background-color: #333;
  color: #fff;
  font-size: 0.9em;
  line-height: 2.0;
}

footer a {
  color: #fff;
}

footer a:hover, footer a:focus {
  color: #fff;
}

footer h2 {
  font-size: 1.2em;
  border-left: 5px solid #999;
  padding-left: 0.5em;
  line-height: 1;
}


footer .footer-contents {
  flex-direction: column-reverse;
  padding-top: 50px;
  padding-bottom: 50px;
}

footer ul {
  list-style: none;
  margin-left: 0;
}

.footer-banner {
  text-align: center;
  padding: 2em;
}

.footer-banner-inner {
  border: 3px double #ccc;
  padding: 2em 0;
  overflow: hidden;
}

.footer_nav_shopinfo {
  margin-bottom: 4em;
}

.footer-content {
  padding-right: 2em;
  margin-bottom: 30px;
}

.footer-content-wrapper {
  padding-right:10%;
}

.footer-content ul li a:before {
  content: " - ";
}

.footer-shop {
  margin-top: 10px;
  margin-bottom: 0;
}

.footer-shop-pic {
  margin-bottom: 0.5em;
}

.footer-shop h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
}

small.footer-copyright {
  display: block;
  font-size: 1em;
  text-align: center;
}

.p-calendar__table {
  overflow: hidden;
}

footer table.tbl_calendar {
  text-align: center;
  width: 75%;
  margin: 0 4% 1em 0;
}
 
/* トップへ */
#pagetop {    
  position: fixed;
  left: calc(97% - 40px);
  bottom: 3%;
  z-index: 9999;
  transition: all 0.3s;
  display: none;
}
#pagetop a {
  color: #333;
}
#pagetop span {
    font-size: 10px;
    right: 10px;
    position: relative;
    top: -2px;
}
#pagetop i.icon-up, #pagetop i.icon-mail {
    color: #333;
    font-size: 40px;
    display: block;
    transition: all 0.3s;
}
#pagetop i.icon-mail {
  margin-bottom: 5px;
}

#pagetop i.icon-up:after, #pagetop i.icon-mail:after {
    position: relative;
    color: #fff;  
    bottom: 8px;
    padding: 5px;
}
#pagetop i.icon-up:after {
    content: '\f106';
    font-size: 20px;
    right: 31px;  
}
#pagetop i.icon-mail:after {
    content: '\f0e0';
    font-size: 19px;
    right: 34px;
}
#pagetop2 {
  margin-top: 10px; 
}



/** 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;}

/* 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%; }


/** 他ページで使う共通スタイル **/

/* 商品詳細とフリーページで使用 */
.faq_q {
    display: inline-block;
    margin-bottom: 0;
    padding: 4px 12px;
    border: 1px solid #f5f5f5;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background-color: #333;
    color: #ccc;
    vertical-align: middle;
    text-align: center;
    font-size: 20px;
}
.faq_a {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid #f5f5f5;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background-color: #ccc;
    color: #333;
    vertical-align: middle;
    text-align: center;
    font-size: 20px;
}
.bubble {
    display: inline-block;
    position: relative;
    border-radius: 5px;
    background: #eee;
}
.bubble:after {
    position: absolute;
    content: " ";
    height: 0;
    width: 0;
}
.bubble-left:after {
    right: 100%;
    top: 50%;
    border: 10px solid transparent;
    border-right: 10px solid #eee;
    margin-top: -10px;
}

/* 商品カード */
.product-item-card {
  margin-bottom: 30px; 
}

.product-item-card a {
  display: block;
  position: relative;
}

.add-mark {
  font-size: 12px;
  line-height: 1;
  padding: 6px;
  background-color: #680203;
  z-index: 20;
  position: absolute;
  bottom: 5px;
  left: 5px;
  color: #fff;
}

/* transformはバグりやすいので注意 */
.product-item-card img {
  transform: scale(1);
  transition-property: transform, opacity;
  transition-duration: 0.75s;
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* ホバー時に画像拡大 */
.product-item-card:hover img {
  transform: scale(1.1);
  opacity: 0.75;
}

.pic-wrapper {
  overflow: hidden;
}

.pic-name {
  margin: 10px 0 6px;
}

.pic-price a {
  font-size: 12px;
  color: #999;
}

/* ソート（商品一覧、商品検索） */
.sort {
  font-size: 12px;
  text-align: right;
  padding: 10px 0;
}

.sort a {
  color: #ccc;
}

/* 最近見た商品 */
.history-items {
  background-color: #eee;
  padding: 30px 0;
}

.history-items h2 { 
  margin-top: 0;
}

.history-items .product-item-card {
  margin-bottom: 0; 
}

/* お気に入り */
.fav-item:hover {
  animation: pulse 2s linear infinite;
}

/* お気に入りボタンのアニメーション */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
  }

  50% {
    -webkit-transform: scale(.8);
    transform: scale(.8)
  }

  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
  }

  50% {
    -webkit-transform: scale(.8);
    transform: scale(.8)
  }

  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
  }
}

.fav-item {
  position: absolute;
  right: 10px;
  top: 5px;
  width: 30px;
}

.fav-item button {
  display: block;
  width: 100%;
  padding: 0;
  cursor: pointer;
  transition: .2s;
  text-align: center;
  color: rgba(0, 0, 0, 0.2);
  border: 0;
  outline: none;
  background: transparent;
}

.fav-item svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.fav-item .is-added {
  color: rgba(255, 115, 115, 0.3);
}

/* お気に入り、一覧・検索商品なし */
.noitem-wrapper {
  height: 300px;
  position: relative;
}

.ele-c {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%,-50%);
}

/* パンくず（商品一覧、商品詳細） */
.breadcrumbs {
  font-size: 12px;
  margin: 5px 0;
  list-style: none;
  line-height: 2;
}

.breadcrumbs li {
  display: inline-block;
}

.breadcrumbs li + li::before {
  border-right: 1px solid #999;
  border-top: 1px solid #999;
  content: "";
  display: inline-block;
  height: 5px;
  margin: -1px 8px 0 2px;
  padding: 0;
  transform: rotate(45deg);
  vertical-align: middle;
  width: 5px;
}

/* ページャー（商品一覧、商品検索） */
.pagerlist {
  text-align: center; 
  margin: 0 auto;
}

.pagerlist ul {
  text-align: center;
  margin: 0;
  list-style: none;
  overflow: hidden;
}

.pagerlist li {
  text-align: center;
  line-height: 26px;
  display: inline-block;
}

.pagerlist li a,
.pagerlist li span {
  display: block;
  float: left;
  min-width: 26px;
  height: 26px;
  box-sizing: border-box;
  padding: 0 .5em;
}

.pagerlist li a i,
.pagerlist li span i {
  margin-top: 7px;
  color: #666;
}

.pagerlist li span {
  text-decoration: underline;
}

.pagerlist li a {
  color: #333;
  text-decoration: none;
  transition: .3s;
}

.pagerlist div {
  margin: 5px 0;
}

.pagerlist li span.border-n {
  border: none;
  color: #666;
  text-decoration: none;
}

.pagerlist_sp {
  text-align: center;
}

.pagerlist_sp_btm {
  margin: -20px 0 60px;
}

.pagerlist_sp li {
  display: inline;
  margin: 0 5px;
}

.pagerlist_pos {
  margin: 30px 0 1em;
}
.pagerlist_sp .pure-button {
  padding: 1em 1.5em; 
}

.pure-button.disabled {
  background-image: none;
  opacity: 0.5;
  cursor: default;
}


/* 商品カード（トップ、商品一覧、商品検索、お気に入り） */
.product-item-card {
  padding: 0 7.5px;
  text-align: center;
  position: relative;
}

.product-item-card > a {
  /*padding: 5%枠の有無
background:#f9f9f9;*/
  display: block;
}

/* スマホ用ドロワーメニュー */
.drawer-close {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.drawer-close {
  padding: 20px 25px 20px 15px;
  text-align: right;
}

.drawer-close a {
  color: #212121;
}

.drawer-close img {
  max-height: 50px;
}

.drawer i.fa-times {
  width: 14px; 
}

.drawer #search-form2 {
  display: block;
  border-bottom: 1px solid #eee;
  padding: 21px 25px 21px 20px;
  text-align: left;
  background-color: #eee;
}

.drawer-account {
  display: none;  
}

.drawer-sns {
  padding: 20px 25px;
  background-color: #333;
  color: #fff;
}

.drawer-sns ul {
  list-style: none;
  margin-left: 0;
  display: flex;
  font-size: 1.5em;
}
.drawer-sns a {
  color: #fff;
}

.drawer-sns a:hover, 
.drawer-sns a:focus {
  color: #fff;
}

.drawer.open {
  /*right: 0;*/
  transform: translateX(100%);
}

.drawer {
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 9999;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  height: 100%;
  background: #fff;
  color: #212121;
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.drawer-item {
  border-bottom: 1px solid #eee;
}

.drawer-name {
  font-size: 100%;
  font-weight: normal;
  display: table;
  line-height: 1;
  clear: both;
  width: 100%;
  margin: 0;
  padding: 20px 25px 15px;
  color: #212121;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.dn-text {
  width: 70%;
  vertical-align: middle;
}

.dn-icon--right {
  width: 10%;
  display: table-cell;
  vertical-align: middle;
  text-align: right;
  padding-right: 11px;
}

.drawer-accordion ul {
  margin: 0;
  padding: 15px 0;
  list-style: none;
}

.linklist-item {
  border-bottom: solid 1px #e0e0e0;
  list-style: none;
}

.drawer-accordion .linklist-item {
  border: none;
}

.linklist-item a {
  display: table;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  padding: 20px;
  color: #212121;
}

.drawer-accordion .linklist-item a {
  padding: 10px 30px;
}

.li-text {
  width: 80%;
  height: auto;
}

.linklist-item a span {
  display: table-cell;
  vertical-align: middle;
}

.u-ac--active {
  border-bottom: 1px solid #e0e0e0;
}

/* colormekitの上書き */
.table-bordered {border-radius: 0;}
.table-bordered thead:first-child tr:first-child > th:first-child, .table-bordered tbody:first-child tr:first-child > td:first-child, .table-bordered tbody:first-child tr:first-child > th:first-child {
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topleft: 0;
  border-top-left-radius: 0;
}
.table-bordered thead:last-child tr:last-child > th:first-child, .table-bordered tbody:last-child tr:last-child > td:first-child, .table-bordered tbody:last-child tr:last-child > th:first-child, .table-bordered tfoot:last-child tr:last-child > td:first-child, .table-bordered tfoot:last-child tr:last-child > th:first-child {
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius-bottomleft: 0;
  border-bottom-left-radius: 0;
}
/****************************/
/* IE10以上                 */
/* display: sticky不具合    */
/* margin-topが変わる       */
/****************************/
@media all and (-ms-high-contrast: none) {
  .header-toolbar {
    display: none;
  }

  .header-toolbar-ie {
    display: block;
    background-color: #eee;
    font-size: 0.8em;
    padding: 0.5em;
    width: 100%;
  }

  header#header {
    position: fixed;
    width: 100%;
  }
  
  /*ieはdisplay:fixed;のため*/
  .ie-mt {
    margin-top: 108px; /* 80px+28px=108px*/
  }
  .ie-mt2 {
    margin-top: 129px; /* h2の上マージンも含む 80px+28px+21px=129px*/
  }
  .ie-mt3 {
    margin-top: 113px; /* 商品詳細用 80px+28px+5px=113px*/
  }
  
  /* slick object-fitが動作しないため */
  #slider .slick-slide img {
    height: auto;
  }

}

/** sm **/
@media (min-width: 568px) {
  .header-icon-search {
    display: block;
  }

  #slider .slick-slide img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;    
  }
}

/** md **/
@media (min-width: 768px) {
  .header-nav {
    display: block;
  }
  
  .header-logo img {
    max-width: 100%;
  }
  
  .container {
    padding: 0 35px;
  }
  
  .container.free {
    padding-top: 20px;
    padding-bottom: 50px;
  }

  .header-logo {
    margin-right: 32px;
  }

  .header-icon i {
    font-size: 20px;
  }
  
  .header-icon i.fa-search {
    font-size: 14px;    
  }
  
  h2 {
    font-size: 1.5em;
  }

  .header-toolbar-right {
    display: table-cell;
  }
  
  .header-icon-menu {
    display: none;
  }
  
  .sp-search-form form {
    padding: 35px 35px;  
  }
  
  #search-form form {
    /*display: block; */
  }
  
  #search-form button {
    margin-left: 5px;
    margin-right: 1.5em;
  }

  #search-form input[type="text"] {
    width: 0;
    flex-grow: 1;
    flex-shrink: 1;
  }

  footer table.tbl_calendar {
    float: left;
    /*    width: 46%;    */
  }

  .isTablet {
    display: inherit !important;
  }

  .header-nav {
    /*flex-basis: 338px;*/
    flex-grow: 0;
    margin-left: 0;
    order: unset;
  }

  .header-icon {

  }

  #search-form input[type="text"] {
    /*width: 20em;*/
  }

  footer .footer-contents {
    flex-direction: row;
  }

  .footer-shop {
    margin-top: 0;
  }

  footer table.tbl_calendar {
    width: 100%;
  }
}

/** lg **/
@media (min-width: 1024px) {

}
/** megamenu **/

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
  
  .navmenu-megamenu {
    margin-left: calc((100% - 1130px) / 2);
    margin-right: calc((100% - 1130px) / 2);
    max-width: 1130px;
  }
  
  .navmenu-megamenu-inner:before {
    left: 358px;/* メガメニューの▲位置 */
  }
  #dropdown2 .navmenu-megamenu-inner:before {
    left: 453px;/* メガメニューの▲位置 */
  }  
}  
/*
@media (min-width: 1200px) and (max-width: 1279px) {
  .navmenu-megamenu {
    margin: 0 35px;
    max-width: 1279px;
    width: calc(100% - 70px);
  }
}*/
/** xl **/
@media (min-width: 1280px) {


}
