.catch_copy span {
  transition: 1s;
  opacity: 0;
  transform: translateY(20px);
  display: block;
}
.catch_copy span:first-child {
  animation: catch_anime 1.4s forwards 1s;　
}
.catch_copy span:nth-child(2) {
  animation: catch_anime 1.4s forwards 2s;
}
.catch_copy span:nth-child(3) {
  animation: catch_anime 1.4s forwards 3s;
}
.catch_copy span:nth-child(4) {
  animation: catch_anime 1.4s forwards 4s;
}

@keyframes catch_anime {
  0% {
    transform: translateY(20px);
  }
   100% {
    opacity: 1;
    transform: translateY(0);
  }
}
















/* 16px black */
.icon-b.icon-box {
  background-position: -192px -64px;
}
/* 16px white */
.icon-w.icon-box {
  background-position: -192px -64px;
}
/* 24px black */
.icon-lg-b.icon-box {
  background-position: -288px -96px;
}
/* 24px white */
.icon-lg-w.icon-box {
  background-position: -288px -96px;
}

/* 16px black */
.icon-b.icon-cycle {
  background-position: -336px -80px;
}
/* 16px white */
.icon-w.icon-cycle {
  background-position: -336px -80px;
}
/* 24px black */
.icon-lg-b.icon-cycle {
  background-position: -504px -120px;
}
/* 24px white */
.icon-lg-w.icon-cycle {
  background-position: -504px -120px;
}




/* 16px black */
.icon-b.icon-globe {
  background-position: -240px -48px;
}
/* 16px white */
.icon-w.icon-globe {
  background-position: -240px -48px;
}
/* 24px black */
.icon-lg-b.icon-globe {
  background-position: -360px -72px;
}
/* 24px white */
.icon-lg-w.icon-globe {
  background-position: -360px -72px;
}


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

.buttons {
    margin: 10%;
    text-align: center;
}

.btn-hover {
    width: 200px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    margin: 20px;
    height: 55px;
    text-align:center;
    border: none;
    background-size: 300% 100%;

    border-radius: 50px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn-hover:hover {
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn-hover:focus {
    outline: none;
}

.btn-hover.color-1 {
    background-image: linear-gradient(to right, #25aae1, #40e495, #30dd8a, #2bb673);
    box-shadow: 0 4px 15px 0 rgba(49, 196, 190, 0.75);
}
.btn-hover.color-2 {
    background-image: linear-gradient(to right, #f5ce62, #e43603, #fa7199, #e85a19);
    box-shadow: 0 4px 15px 0 rgba(229, 66, 10, 0.75);
}
.btn-hover.color-3 {
    background-image: linear-gradient(to right, #667eea, #764ba2, #6B8DD6, #8E37D7);
    box-shadow: 0 4px 15px 0 rgba(116, 79, 168, 0.75);
}
.btn-hover.color-4 {
    background-image: linear-gradient(to right, #fc6076, #ff9a44, #ef9d43, #e75516);
    box-shadow: 0 4px 15px 0 rgba(252, 104, 110, 0.75);
}
.btn-hover.color-5 {
    background-image: linear-gradient(to right, #0ba360, #3cba92, #30dd8a, #2bb673);
    box-shadow: 0 4px 15px 0 rgba(23, 168, 108, 0.75);
}
.btn-hover.color-6 {
    background-image: linear-gradient(to right, #009245, #FCEE21, #00A8C5, #D9E021);
    box-shadow: 0 4px 15px 0 rgba(83, 176, 57, 0.75);
}
.btn-hover.color-7 {
    background-image: linear-gradient(to right, #6253e1, #852D91, #A3A1FF, #F24645);
    box-shadow: 0 4px 15px 0 rgba(126, 52, 161, 0.75);
}
.btn-hover.color-8 {
    background-image: linear-gradient(to right, #3f4d5c, #6c7f94, #2b5876, #4e4376);
    box-shadow: 0 2px 4px 0 rgba(45, 54, 65, 0.55);
}
.btn-hover.color-9 {
    background-image: linear-gradient(to right, #25aae1, #4481eb, #04befe, #3f86ed);
    box-shadow: 0 4px 15px 0 rgba(65, 132, 234, 0.75);
}
.btn-hover.color-10 {
        background-image: linear-gradient(to right, #ed6ea0, #ec8c69, #f7186a , #FBB03B);
    box-shadow: 0 4px 15px 0 rgba(236, 116, 149, 0.75);
}
.btn-hover.color-11 {
       background-image: linear-gradient(to right, #eb3941, #f15e64, #e14e53, #e2373f);  box-shadow: 0 5px 15px rgba(242, 97, 103, .4);
}





/* 開いて実行されるアニメーションを設定*/
details[open] .content {
  animation: fadeIn 2.0s ease-in-out;
}
@keyframes fadeIn {
  0% {
    opacity: 0; /* Transparent */
    transform: translateX(+100px); 
    /* translateX(+100px)：右から表示 */
    /* translateX(-100px)：左から表示 */
    /* translateY(+100px)：下から表示 */
    /* translateY(-100px)：上から表示 */

  }
  100% {
    opacity: 1;
    transform: none;
  }
}


/* 16px black */
.icon-b.icon-chevron_thin_down {
  background-position: -112px -144px;
}
/* 16px white */
.icon-w.icon-chevron_thin_down {
  background-position: -112px -144px;
}
/* 24px black */
.icon-lg-b.icon-chevron_thin_down {
  background-position: -168px -216px;
}
/* 24px white */
.icon-lg-w.icon-chevron_thin_down {
  background-position: -168px -216px;
}



/* 16px black */
.icon-b.icon-newspaper {
  background-position: -160px -32px;
}
/* 16px white */
.icon-w.icon-newspaper {
  background-position: -160px -32px;
}
/* 24px black */
.icon-lg-b.icon-newspaper {
  background-position: -240px -48px;
}
/* 24px white */
.icon-lg-w.icon-newspaper {
  background-position: -240px -48px;
}


img {
-webkit-user-drag: none;
}

@charset "euc-jp";

/* font size */
body {
  font: 14px/1.231 arial,helvetica,clean,sans-serif;
  *font-size: small; /* for IE */
  *font: x-small; /* for IE in quirks mode */
}
select, input, button, textarea {
  font: 99% arial,helvetica,clean,sans-serif;
}
table {
  font: 100%;
  font-size: inherit;
}
pre, code, kbd, samp, tt {
  font-family: monospace;
  line-height: 100%;
  *font-size: 108%;
}

/* common */
body {
  font-family: 'DIN Next W01 Medium',"Helvetica Neue", Helvetica, Arial, /*'TsukuGoPro-B',*/ 'Noto Sans JP', sans-serif, YuGothic, '游ゴシック',"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  word-break: normal !important;
  word-wrap: normal !important;
}
/*
font-family:'DIN Next W01 Light';
font-family:'DIN Next LT W01 Heavy';
font-family:'DIN Next W01 Medium';
font-family:'DIN Next LT W01 Bold';
font-family:'DIN Next W01 Regular';
font-family:'DINNextLTW01-UltraLight_706122';
font-family:'DIN Next W01 Black';
*/
body { font-size:14px; line-height: 1; letter-spacing: 0.06em; font-family: 'DIN Next W01 Medium', 'Noto Sans JP' }
body p, body span { line-height: 2; letter-spacing: 0.12em; font-family: 'DIN Next W01 Medium', 'Noto Sans JP' }
body li { line-height: 2; letter-spacing: 0.06em; font-family: 'DIN Next W01 Medium', 'Noto Sans JP'; font-weight: 500 }
body th, body td { line-height: 2; letter-spacing: 0.12em; font-family: 'DIN Next W01 Medium', 'Noto Sans JP'  }
body dt { line-height: 2; letter-spacing: 0.12em; font-family: 'DIN Next W01 Regular', 'Noto Sans JP' }
body dd { line-height: 2; letter-spacing: 0.12em; font-family: 'DIN Next W01 Regular', 'Noto Sans JP'  }

strong, .b { font-family: 'Noto Sans JP'; font-weight: 700 }

h2 { font-size: 38px; letter-spacing: 0.16em; font-family: 'DIN Next LT W01 Bold', 'Noto Sans JP'; font-weight: 700 }
h3 { font-size: 24px; letter-spacing: 0.16em; font-family: 'DIN Next LT W01 Bold', 'Noto Sans JP'; font-weight: 700 }
h4 { font-size: 18px; letter-spacing: 0.16em; font-family: 'DIN Next LT W01 Bold', 'Noto Sans JP'; font-weight: 700 }
p.cap { font-size: 14px; letter-spacing: 0.08em; font-family: 'DIN Next W01 Regular', 'Noto Sans JP'; font-weight: 500 }

body {
  background-color: #fff;
  background-image: url();
  color: #939393;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #777777;
  font-weight: 500;
}

a:hover {
  color: #666666;
  text-decoration: none;
  font-weight: 600;
}

ul.lists1 { padding: 0; }
ul.lists1 li { list-style: none; padding: 0 0 1em 1em; text-indent: -1em; margin-left: -1em }
ul.lists2 { padding: 0; }
ul.lists2 li { list-style: none; padding: 0 0 0 1.2em; text-indent: -1.2em; margin-left: -1.5em }
ul.lists3 { padding: 0; }
ul.lists3 li { list-style: none; padding: 0 0 0 1em; text-indent: -1em; }
ul.lists4 { padding: 0; }
ul.lists4 li { list-style: none; padding: 0 0 0 1.7em; text-indent: -1.7em; margin-left: -1.7em }
ol { padding: 0 }
ol li {  }
.bbox { border: solid 1px #c7c7c7; padding: 1em 2em 0 1em; display: inline-block }
.pbox { padding: 1em }

/*
 * layout
 */

#wrapper {
  position: relative;
}

.container {
}

/* common */
.heading {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  padding-bottom: 20px;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #ccc;
}

.lists {
  margin: 0;
  border-bottom: 1px solid #333;
}

.list {
  border-top: 1px solid #ccc;
  font-weight: normal;
}

.list:first-child {
  border-top: none;
}

.list_link {
  padding: 20px 0;
}

.list_link_name {
  display: block;
  padding-right: 30px;
}

.list_link_img {
  margin-bottom: 5px;
}

.list_icon_arrow {
  float: right;
  margin-right: 10px;
}

.item_img {
  margin: 20 auto;
}
.item_img:hover {
  opacity: 0.8;
}
.item_name {
  padding-top: 25px;
  letter-spacing: 0px;
}
.item_regular_price {
  text-decoration: line-through;
}
.item_price {
  font-weight: normal;
  padding-top: 10px;
  letter-spacing:2px
}
.item_price_discount {
  color: #cf0400;
}
.item_discount_rate {
  color: #cf0400;
}
.item_soldout {
  color: #cf0400;
}

.rank_box {
  position: absolute;
  width: 25px;
  height: 25px;
  background-color: #333;
  display: block;
  z-index: 5;
}
.rank_box_color_1 {
  background-color: #dccc18;
}

.rank_box_color_2 {
  background-color: #bab9c1;
}

.rank_box_color_3 {
  background-color: #e18961;
}

.rank_number {
  color: #fff;
  display: block;
  padding-top: 1px;
  font-size: 14px;
}

.btn-more {
  width: 96%;
  margin: 0 auto 60px;
  padding: 10px 12px;
}

/*
 * header
 */

#header {
  margin-bottom: 5px;
  padding-top: 5px;
}

.header_top {
  width: 100%;
  height: 50px;
  padding-top: 1px;
  padding-bottom: 1px;
  border-bottom: 0px solid #eee;
  position: fixed;
  top: 0;
  background-color: #f2f2f2;
  z-index: 10;
  opacity: 1;
}

.header_top_cmspbar {
  position: fixed;
}
.header_top_inner {
  max-width: 97%;
  margin: 0 auto;
}

.search_form {
  margin: 0;
  padding-top: 10px;
  float: left;
}

.search_select {
  width: 150px;
  border: 1px solid #f5f5f5;
  font-size: 10px;
  height: 28px;
}

.search_box {
  width: 215px;
  border: 1px solid #fff;
  font-size: 10px;
  height: 25px;
}

.btn_search {
  padding: 1px 1px 1px 3px;
  border: 0px solid #f5f5f5;
}

.btn_search i {
  vertical-align: middle;
}

.header_nav_headline {
  text-align: right;
  font-size: 9px;
  margin-top: 15px;
  letter-spacing: 0.3em;
  float: right;
}

.header_nav_headline li a i {
  vertical-align: -40%;
}

.header_nav_headline li a {
  color: #888888;
  margin-right: 15px;
}

.header_nav_headline li a:hover {
  color: #000;
  text-decoration: none;
}

.header_nav_headline .headline_viewcart {
  padding-left: 30px;
  border-left: 1px solid #c0c0c0;
}

.header_mid {
  width: 100%;
  height: 60px;
  padding-top: 15px;
  padding-bottom: 25px;
  border-bottom: 0px solid #f3f3f3;
  position: fixed;
  top: 30px;
  background-color: rgba(250,250,250,0.8);
  z-index: 9;
}

.header_mid_cmspbar {
  position: fixed;
}

.header_mid_inner {
  max-width: 90%;
  margin: 0 auto;
  position: relative;
}

.header_nav_global {
  font-size: 14px;
  margin-top: 14px;
}

ul.header_nav_global > li {
  padding: 0 5px 0 0;
}

.header_nav_global li a i {
  vertical-align: -24%;
  margin-right: 5px;
}

.header_nav_global li a {
}

.header_nav_global li a:hover {
  text-decoration: none;
}

.header_nav_global_box {
  display: none;
  width: 100%;
  height: auto;
  background-color: rgba(151,151,151,0.8);
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc; 
  border-right: 1px solid #ccc;
  position: absolute;
  top: 40px;
  left: -1px;
  padding: 0;
}
.header_nav_global_box_heading {
  color: #ffffff;
  font-size: 16px;
  margin: 0;
  padding-top: 30px;
  text-align: center;
  letter-spacing: 0.3em;
}
.header_nav_global_box_detail {
  background-color: #FCFCFC;
  padding: 30px 20px 20px;
  letter-spacing: 0.8em;
  font-size: 14px;
}

.header_nav_global_left {
  float: left;
  margin: 0;
}

.header_nav_global_left li {
  padding-bottom: 15px;
}

.header_nav_global_right {
  float: right;
}

.header_nav_global_social {
  padding-left: px;
}

ul.header_nav_global_social > li {
  padding: 0;
}

.header_nav_global_social li a i {
  vertical-align: -40%;
}

.header_btm {
  max-width: 89%;
  padding: 90px 0 3px;
  margin: 0 auto;
  
}

.header_logo {
  margin: 0 auto;
  padding-top: 13px;
  float: left;
}

.header_lead {
  padding-top: 13px;
  font-size: 15px;
  color: #000;
  letter-spacing: 0.5em;
  float: right;
}

.header_nav_phone {
  z-index: 99;
  float: right;
  height: 100px;
}
.header_nav_lst_phone {
  position: absolute;
  left: 80%;
  display: none;
  margin-left: -50%;
  width: 65%;
  border: 1px solid #ccc;
  background-color: rgba(255,255,255,0.9);
 
}
.header_nav_lst_phone ul {
  margin: 15;
  
}
.header_nav_lst_phone li {
  padding: 0;
  border-bottom: 1px solid #ccc;
  text-align: center;
  font-size: 16px;
  
}
.header_nav_lst_phone li:last-child {
  border-bottom: none;
  
}
.header_nav_lst_phone a {
  display: block;
  padding: 5px 0;
  
}
.header_nav_lst_phone a:hover {
  background: #fff;
  text-decoration: none;
  color: #000;

}
.nav_btn_phone {
  font-size: 16px;
  font-weight: none;
  color: #000;

}
.nav_btn_phone i {
  vertical-align: middle;
  
}

/*
 * main
 */

.main {
  max-width: 1200px;
}

/*
 * contents
 */

.contents {
  padding: 0;
  float: right;
  line-height: 2;
  word-break: normal !important;
  word-wrap: normal !important;
}

/* pankuzu */
.pankuzu_lists {
  font-size: 12px;
}
ul.pankuzu_lists > li {
  padding: 0;
}
.pankuzu_list {
}

/* info */
.info {
  margin-bottom: 60px;
  margin-top:60px
}

.info_heading {
  
}

.info_detail {
  margin: 30px 0 0;
  font-size: 14px;
}

.info_detail_lists {
}

.info_detail_list_dt {
  padding: 20px 0 5px;
}

.info_detail_list_dt:first-child {
  padding: 0 0 5px;
}

.info_detail_list_dd {
  margin: 0;
}

/* ranking（seller） */
.seller {
  margin-bottom: 20px;
}

.seller_heading {
}

.seller_lists {
  margin-top: 20px;
  font-size: 12px;
}

.seller_list {
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

/* recommend */
.recommend {
  margin-bottom: 20px;
}

.recommend_heading {
}

.recommend_lists {
  margin-top: 20px;
  font-size: 12px;
}

.recommend_list {
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

/* free_space */
.free_space {
}

/*
 * side
 */

.side {
  padding: 0;
}

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

.side_banner {
  margin: 0 0 40px;
}
.side_banner_lists {
}
.side_banner_list {
  margin-top: 10px;
}
.side_banner_list:first-child {
  margin-top: 0;
}

.side_category {
  margin: 20;
  
}
.side_category_list {
  position: relative;
}
.side_subcategory_lists {
  width: 80%;
  padding: 15px 20px;
  position: absolute;
  top: -21px;
  right: -180px;
  border: 1px solid #dcdcdc;
  background-color: #fff;
  z-index: 7;
  display: none;
}
.side_subcategory_list {
  border-top: none;
}
.side_subcategory_lists li a {
  padding: 7px 0;
}

.side_group {
  margin-top: 60px;
}
.side_group_heading {
}
.side_group_lists {
}
.side_group_list {
}

.side_freepage {
  margin-top: 60px;
}
.side_freepage_heading {
  margin-bottom: 20px;
}
.side_freepage_lists {
}
.side_freepage_list {
  padding-top: 0;
  border: none;
}
.side_freepage_list a {
  padding: 0 0 20px 0;
}

.side_mobile_shop {
  margin-top: 50px;
}
.side_mobile_shop_heading {
  margin-bottom: 20px;
}
.side_mobile_shop_img {
  text-align: center;
}

.side_banner_long {
  margin-top: 40px;
}
#pageTop {
  position: fixed;
  bottom: 10px;
  right:5px;
}
 
#pageTop i {
  padding-top: 6px
}
 
#pageTop a {
  display: block;
  z-index: 999;
  padding: 8px;
}
#pageTop a img {
  width: 150px
}
/*
 * footer
 */

.footer {
  width: 100%;
  margin-top: 40px;
}

.footer_inner {
  max-width: 90%;
  margin: 0 auto;
}

.footer_heading {
}
.footer_lists {
  margin-top: 20px;
}
.footer_list {
  padding: 0 10px;
  text-align: center;
}
.footer_list_img {
  margin: 0 auto;
}

.footer_seller,
.footer_recommend,
.footer_checked {
  margin-bottom: 40px;
}

.footer_seller_lists,
.footer_recommend_lists,
.footer_checked_lists {
  font-size: 10px;
}

.footer_seller_list,
.footer_recommend_list,
.footer_checked_list{
  margin-bottom: 10px;
}

.footer_banner {
  padding: 30px 0 60px;
  margin: 0 auto;
}

.footer_pagetop {
  text-align: center;
  background-color: #000000;
}
.footer_pagetop a {
  display: block;
  width: 100%;
  height: 50px;
}
.footer_pagetop_icon {
  margin-top: 15px;
}

.footer_notice {
  padding: 90px 0;
  background-color: #e8e8e8;
}
.footer_notice dt { font-size: 14px }
.footer_notice dd { font-size: 13px }
h3.footer_notice_heading {
  padding-bottom: 40px;
  border-bottom: none;
}
.footer_notice_lists {
  margin: 0;
}
.footer_notice_list_dt {
  padding: 20px 5px 10px;
}
.footer_notice_list_dt:first-child {
  padding: 0 5px 10px;
}
.footer_notice_list_dd {
  padding: 0 5px;
  margin: 0;
  line-height: 1.8;
  letter-spacing: 0.04em !important;
}
.footer_notice_cal_table {
}
.footer_notice_cal_memo {
}

.tbl_calendar {
  margin-bottom: 20px;
  max-width: 260px;
  width: 100%;
  font-size: 84.615%;
}
  .tbl_calendar caption {
    text-align: center;
  }
  .tbl_calendar th {
    padding: .3em 0;
    border-bottom: 1px solid #ccc;
    text-align: center;
  }
  .tbl_calendar td {
    padding: .5em 0;
    width: 14.2%;
    border-bottom: 1px solid #ccc;
    text-align: center;
  }
.cal_memo {
  margin-top: 1em;
  font-size: 84.615%;
}

.footer_nav {
  padding: 120px 0;
  background-color:#f3f3f3;
}

.footer_nav_shopinfo {
  color: #000;
}
.footer_nav_shopinfo_img {
  padding: 0;
  text-align: left;
}
.footer_nav_shopinfo_img img {
  width: 180px;
}
.footer_nav_shopinfo_caption {
  padding: 0 30px;
  letter-spacing: 0.8px;
}
.footer_nav_shopinfo_name {
  padding: 5px 0;
}
.footer_nav_shopinfo_memo {
}
.footer_nav_shopinfo_memo p {
  word-break: normal;
  word-wrap: normal
}
.footer_nav_lists {
}
.footer_nav_list {
  color: #c7c7c7;
  padding-top: 15px;
  font-size: 12px;
}
.footer_nav_list:first-child {
  padding-top: 0;
}
.footer_nav_list_link {
  color: #666;
}
.footer_nav_list_link:hover {
  color: #000;
  text-decoration: none;
}

.footer_copyright {
  text-align: center;
  padding: 5em 0 0;
}
.footer_powered {
  display: block;
  padding: 40px 0;
  font-family:'DIN Next W01 Regular';
  font-size: 12px;
}
.footer_powered img { vertical-align: middle !important }

/*
 * Slider
 */

.slider {
  position: relative;
  margin-bottom: 40px;
}

.bx-wrapper {
  z-index: 0;
}

.bx-wrapper img {
  width: 100%;
  height: auto;
}

.slider .bx-wrapper .bx-viewport {
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  left: 0 !important;
  border: none !important;
}

.slider .bx-wrapper .bx-caption {
  background: #000\9;
  background: rgba(0, 0, 0, 0.60);
}

.slider .bx-wrapper .bx-caption span {
  font-size: 14px;
  padding: 10px 10px 10px 20px;
}

/*
 * sk privacy
 */

.skpr_box {
  padding-top: 120px;
  margin-top: -60px
}

.skpr_box:first-child {
  padding-top: 0;
  margin-top: 0;
}

.skpr_detail,
.privacy_lead {
  margin: 20px 0 0;
  font-size: 13px;
}

.skpr_detail_lists {
}

.skpr_detail_list_dt {
  padding: 20px 0 5px;
}

.skpr_detail_list_dt:first-child {
  padding: 0 0 5px;
}

.skpr_detail_list_dd {
  margin: 0;
}

/*
 * temp
 */

/* textarea input */
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
  border: 1px solid #101010;
  background-color: #fff;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
  outline: 0;
  outline: thin dotted \9;
  border-color: rgba(82, 168, 236, 0.8);
}

/*
 * icons
 */
.icon-b.icon-user { background-position: -208px -0px; }
.icon-w.icon-user { background-position: -208px -0px; }
.icon-lg-b.icon-user { background-position: -312px -0px; }
.icon-lg-w.icon-user { background-position: -312px -0px; }
.icon-b.icon-adduser { background-position: -240px -0px; }
.icon-w.icon-adduser { background-position: -240px -0px; }
.icon-lg-b.icon-adduser { background-position: -360px -0px; }
.icon-lg-w.icon-adduser { background-position: -360px -0px; }
.icon-b.icon-login { background-position: -48px -80px; }
.icon-w.icon-login { background-position: -48px -80px; }
.icon-lg-b.icon-login { background-position: -72px -120px; }
.icon-lg-w.icon-login { background-position: -72px -120px; }
.icon-b.icon-logout { background-position: -32px -80px; }
.icon-w.icon-logout { background-position: -32px -80px; }
.icon-lg-b.icon-logout { background-position: -48px -120px; }
.icon-lg-w.icon-logout { background-position: -48px -120px; }
.icon-b.icon-cart { background-position: -176px -64px; }
.icon-w.icon-cart { background-position: -176px -64px; }
.icon-lg-b.icon-cart { background-position: -264px -96px; }
.icon-lg-w.icon-cart { background-position: -264px -96px; }
.icon-b.icon-search { background-position: -208px -16px; }
.icon-w.icon-search { background-position: -208px -16px; }
.icon-lg-b.icon-search { background-position: -312px -24px; }
.icon-lg-w.icon-search { background-position: -312px -24px; }
.icon-b.icon-mail { background-position: -64px -0px; }
.icon-w.icon-mail { background-position: -64px -0px; }
.icon-lg-b.icon-mail { background-position: -96px -0px; }
.icon-lg-w.icon-mail { background-position: -96px -0px; }
.icon-b.icon-book { background-position: -144px -32px; }
.icon-w.icon-book { background-position: -144px -32px; }
.icon-lg-b.icon-book { background-position: -216px -48px; }
.icon-lg-w.icon-book { background-position: -216px -48px; }
.icon-b.icon-help { background-position: -288px -80px; }
.icon-w.icon-help { background-position: -288px -80px; }
.icon-lg-b.icon-help { background-position: -432px -120px; }
.icon-lg-w.icon-help { background-position: -432px -120px; }
.icon-b.icon-c_twitter { background-position: -112px -176px; }
.icon-w.icon-c_twitter { background-position: -112px -176px; }
.icon-lg-b.icon-c_twitter { background-position: -168px -264px; }
.icon-lg-w.icon-c_twitter { background-position: -168px -264px; }
.icon-b.icon-c_facebook { background-position: -144px -176px; }
.icon-w.icon-c_facebook { background-position: -144px -176px; }
.icon-lg-b.icon-c_facebook { background-position: -216px -264px; }
.icon-lg-w.icon-c_facebook { background-position: -216px -264px; }
.icon-b.icon-c_google { background-position: -192px -176px; }
.icon-w.icon-c_google { background-position: -192px -176px; }
.icon-lg-b.icon-c_google { background-position: -288px -264px; }
.icon-lg-w.icon-c_google { background-position: -288px -264px; }
.icon-b.icon-c_pinterest { background-position: -224px -176px; }
.icon-w.icon-c_pinterest { background-position: -224px -176px; }
.icon-lg-b.icon-c_pinterest { background-position: -336px -264px; }
.icon-lg-w.icon-c_pinterest { background-position: -336px -264px; }
.icon-b.icon-chevron_right { background-position: -16px -144px; }
.icon-w.icon-chevron_right { background-position: -16px -144px; }
.icon-lg-b.icon-chevron_right { background-position: -24px -216px; }
.icon-lg-w.icon-chevron_right { background-position: -24px -216px; }
.icon-b.icon-chevron_down { background-position: -352px -128px; }
.icon-w.icon-chevron_down { background-position: -352px -128px; }
.icon-lg-b.icon-chevron_down { background-position: -528px -192px; }
.icon-lg-w.icon-chevron_down { background-position: -528px -192px; }
.icon-b.icon-chevron_up { background-position: -0px -144px; }
.icon-w.icon-chevron_up { background-position: -0px -144px; }
.icon-lg-b.icon-chevron_up { background-position: -0px -216px; }
.icon-lg-w.icon-chevron_up { background-position: -0px -216px; }
.icon-b.icon-chevron_left { background-position: -336px -128px; }
.icon-w.icon-chevron_left { background-position: -336px -128px; }
.icon-lg-b.icon-chevron_left { background-position: -504px -192px; }
.icon-lg-w.icon-chevron_left { background-position: -504px -192px; }
.icon-b.icon-list { background-position: -192px -96px; }
.icon-w.icon-list { background-position: -192px -96px; }
.icon-lg-b.icon-list { background-position: -288px -144px; }
.icon-lg-w.icon-list { background-position: -288px -144px; }
.icon-b.icon-pencil { background-position: -96px -0px; }
.icon-w.icon-pencil { background-position: -96px -0px; }
.icon-lg-b.icon-pencil { background-position: -144px -0px; }
.icon-lg-w.icon-pencil { background-position: -144px -0px; }

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

.icon-b { background-image: url(https://img.shop-pro.jp/tmpl_img/76/icon16_b.png); }
.icon-w { background-image: url(https://img.shop-pro.jp/tmpl_img/76/icon16_w.png); }
.icon-lg-b { background-image: url(https://img.shop-pro.jp/tmpl_img/76/icon24_b.png); }
.icon-lg-w { background-image: url(https://img.shop-pro.jp/tmpl_img/76/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/76/icon16_2x_b.png); }
  .icon-w { background-image: url(https://img.shop-pro.jp/tmpl_img/76/icon16_2x_w.png); }
  .icon-lg-b { background-image: url(https://img.shop-pro.jp/tmpl_img/76/icon24_2x_b.png); }
  .icon-lg-w { background-image: url(https://img.shop-pro.jp/tmpl_img/76/icon24_2x_w.png); }
}
@media (max-width: 768px) {
  .icon-b { background-image: url(https://img.shop-pro.jp/tmpl_img/76/icon24_b.png); }
  .icon-w { background-image: url(https://img.shop-pro.jp/tmpl_img/76/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/76/icon24_2x_b.png); }
  .icon-w { background-image: url(https://img.shop-pro.jp/tmpl_img/76/icon24_2x_w.png); }
}

/*
 * Media Queries
 */

@media (min-width: 1080px) {
  .contents {
    width: 830px;
  }

  .contents_detail {
    width: 100%;
  }

  .side {
    width: 320px;
  }

  .header_nav_global_right li {
    display: inline-block !important;
  }
}

@media (min-width: 769px) {
  .footer_list {
    width: 10%;
  }
}

@media (max-width: 1080px) {
  #base_gmoWrapp,
  #gmo_CMSPbar {
    overflow: hidden;
    min-width: 100% !important;
    width: 100% !important;
  }

  /*.contents,
  .side,
  .footer_heading {
    padding-right: 1%;
    padding-left: 1%;
  }*/
  .contents {
    width: 70%;
  }
  .side {
    width: 25%;
  }

  .header_nav_phone {
    margin-right: 10px;
  }
  .header_nav_phone {
    margin-right: 0;
  }
  .nav_btn_phone {
    display: block;
    height: 40px;
    padding-top: 15px;
  }
}

@media (max-width: 768px) {
  .contents,
  .side,
  .footer_heading {
    padding: 0;
  }
  .contents {
    width: 100%;
  }
  .side {
    width: 100%;
  }
  .productlist_lists {
    padding: 0 15px 20px;
  }
  .guide { padding: 0 15px }
  
  #header {
  margin-bottom: 0;
  padding-top: 0;
}

.header_top {
  width: 100%;
  height: 40px;
  padding-top: 0;
  padding-bottom: 0;
  position: fixed;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,0);
}

  .header_btm {
    padding-top: 50px;
    text-align: center
  }

  .header_logo {
    float: none;
  }
  .header_logo img {
    width: 180px;
    height: auto;
  }
  .header_lead {
    padding: 20px 0;
    float: none;
  }
  .header_lead img {
    width: 220px;
    height: auto;
  }

  .header_nav_global_social {
    padding: 20px 0;
  }

  .search_form {
    float: none;
    padding: 0 50px
  }

  .search_select {
    width: 100%;
    margin-bottom: 15px;
    font-size: 11px;
  }
  
  .search_box {
    width: 75%;
    float: left;
    background: #f5f5f5;
  border: none;
  height: 30px;
  }
  
.search_container{
  box-sizing: border-box;
}
.search_container input[type="text"]{
  border: none;
  height: 40px;
  outline : none;
  background: #f5f5f5
}

  .btn_search {
    width: 20%;
    float: right;
    vertical-align: middle; 
  }

  .slider {
    margin-top: 8px;
    margin-bottom: 10px;
  }

  .side_group,
  .side_freepage {
    margin-top: 0;
  }

  .info_detail,
  .seller_lists,
  .recommend_lists {
    padding: 0 15px 20px;
  }

  .free_space {
    font-size: 12px;
    padding: 0 15px 60px;
  }


  .list {
    padding: 0;
  }

  .list_link {
    padding: 10px 15px;
  }

  .list_icon_arrow {
    margin-right: 0;
  }

  .side_banner {
    margin-bottom: 40px;
    text-align: center;
  }

  .side_banner_list {
    margin-top: 0;
  }

  .side_freepage_heading {
    margin-bottom: 0;
  }
  .side_freepage_list {
    padding: 0;
    border-top: 1px solid #ccc;
  }
  .side_freepage_list a {
    padding: 10px 15px;
  }

  .heading {
    font-size: 13px;
    font-weight: bold;
    padding: 0 15px 20px;
  }

  .side_category {
    margin-top: 0;
  }
  .side_category_list {
    position: static;
    cursor: pointer;
  }
  .side_subcategory_lists {
    width: 100%;
    padding: 0;
    position: static;
    border: none;
    background-color: #f5f5f5;
    display: none;
  }
  .side_subcategory_list {
    border-top: 1px solid #ccc;
  }
  .side_subcategory_list:first-child {
    border-top: 1px solid #ccc;
  }
  .side_subcategory_lists li a {
    padding: 10px 15px;
  }


  .side_category_heading,
  .side_group_heading,
  .side_freepage_heading,
  .footer_seller_heading,
  .footer_recommend_heading,
  .footer_checked_heading{
    color: #fff;
    background-color: #c7c7c7;
    padding: 15px 0 15px 15px;
  }

  .footer {
    margin-top: 0;
  }

  .footer_lists {
    padding: 0 15px 20px;
  }

  .footer_list {
    padding-right: 1%;
    padding-left: 1%;
  }

  .footer_checked {
    border-bottom: 1px solid #333;
  }

  .footer_banner {
    text-align: center;
    padding: 0 15px 60px;
  }
  .footer_banner li {
    padding: 5px;
  }


  .footer_seller_lists,
  .footer_recommend_lists,
  .footer_checked_lists {
    font-size: 12px;
  }
  .footer_seller_list,
  .footer_recommend_list {
    margin-bottom: 40px;
  }
  .footer_checked_list {
    margin-bottom: 10px;
  }

  .footer_notice {
    padding: 0;
    display: none
  }

  .footer_nav {
    padding: 0;
  }
  .footer_nav_shopinfo {
    padding: 30px 0;
  }
  .footer_nav_shopinfo_img {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
  }
  .footer_nav_shopinfo_img img {
    width: 160px;
    height: auto;
  }
  .footer_nav_shopinfo_caption {
    text-align: center;
  }
  .footer_nav_shopinfo_name {
    padding-left: 0;
    padding-bottom: 10px;
  }
  .footer_nav_shopinfo_name img {
    width: 200px;
    height: auto;
  }
  .footer_nav_shopinfo_memo {
    padding-left: 0;
    text-align: left
  }

  .footer_nav_menu_right {
    padding: 50;
    border-top: 1px solid #c7c7c7;
  }
    .footer_nav_menu_right li {
      margin: 0;
      padding: 0;
      border-bottom: 1px solid #c7c7c7;
    }
    .footer_nav_menu_right li:nth-child(odd) {
      border-right: 1px solid #c7c7c7;
    }
    .footer_nav_menu_right a {
      display: block;
      padding: 12px 10px;
      color: #141414;
      text-decoration: none;
      font-size: 14px;
    }

  .footer_nav_menu {
    padding: 30px;
    text-align: center;
    font-size: 14px;
    background-color: #f2f2f2;
    color: #000;
  }

  .footer_nav_list {
    padding-top: 20px;
  }

  .footer_copyright {
    font-size: 10px;
  }

  .skpr_detail,
  .privacy_lead {
    padding: 0 15px 20px;
  }

  .skpr_box {
    padding-top: 70px;
    margin-top: -10px
  }
  
  .skpr_box:first-child {
    padding-top: 0;
    margin-top: 0;
  }
  #pageTop {
  position: fixed;
  bottom: 0;
  right: 0;
}
#pageTop a {
  display: block;
  z-index: 999;
  padding: 0;
}
#pageTop a img {
  width: 80px
}
}

@media (max-width: 480px) {
  .side_banner_list {
    margin-top: 19px;
  }
  .side_banner_list:first-child {
    margin-top: 0;
  }
}

@media (max-width: 320px) {
.header_logo img {
    width: 200px;
    height: auto;
  }
  .header_lead img {
    width: 220px;
    height: auto;
  }
}

.info { border-bottom: none !important }

