  @charset "UTF-8";


/*///////////////////////////////////////COMMON/////////////*/


body {
  margin: 0;
  padding: 0;
  letter-spacing: 0.1em;
  margin-right: -0.1em;  
  word-wrap: break-word;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: auto;
  -webkit-overflow-scrolling: touch; 
  line-height: 1em;
}

.ntsans { font-family: "Noto Sans Japanese", sans-serif;}
.yugo {font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;}
.yumin {font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;}

.marce{font-family: 'Marcellus',"Yu Mincho Medium", "游明朝体", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;}
.crim{font-family: 'Crimson Text',"Yu Mincho Medium", "游明朝体", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;}
.pf { font-family: 'Playfair Display', "Yu Mincho Medium", "游明朝体", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;}
.jose { font-family: 'Josefin Slab', "Yu Mincho Medium", "游明朝体", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;}
.osw{font-family: 'Oswald', "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;}
.muli { font-family: 'Muli', "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;}
.mont {font-family: 'Montserrat',"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;}
.lato {font-family: 'Lato',"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;}
.rw {font-family: 'Raleway',"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;}
.qs{font-family: 'Quicksand', "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;}
.spsc{font-family: 'Spectral SC', "Yu Mincho Medium", "游明朝体", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;}



img {
  border-width: 0; }

object, embed {
  vertical-align: bottom; }

ul, ul li, ol, ol li {
  list-style: none;
  margin: 0;
  padding: 0; }
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, select, p, blockquote, th, td{
  margin: 0;
  padding: 0; }

a {
  opacity: 1;
  text-decoration: none;
  display: block;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer; }
  a:hover{
    opacity: .7;
  }

img, a img {
  margin: 0;
  padding: 0;
  border: 0;
  border-style: none;
  text-decoration: none;
  vertical-align: top; }

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

.itemDescription a,
.aboutInnerRight a,
.appsItemDetailCustomTag_description a{
  text-decoration: underline;
  display: inline;
}

/*///////////////////////////////////////CLEARFIX/////////////*/
.clearfix:before,
.clearfix:after {
  content: "";
  display: table; }

.clearfix:after {
  clear: both; }

.clearfix {
  zoom: 1; }


/*///////////////////////////////////////LOADING/////////////*/
.overlay-load {
  position: fixed;
  z-index: 9998;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
/* loading option */
.loading,
.loading:after {
  width: 32px;
  height: 32px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -16px;
  margin-left: -16px;
  border-radius: 50%;
  z-index: 9999;
}

.loading {
  background-color: transparent;
  border-top: 2px solid rgba(0, 0, 0, 0.2);
  border-right: 2px solid rgba(0, 0, 0, 0.2);
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  border-left: 2px solid #eee;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-animation-iteration-count:infinite;
          animation-iteration-count:infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-duration: .8s;
          animation-duration: .8s;
  -webkit-animation-name: animsition-loading;
          animation-name: animsition-loading;
}

@-webkit-keyframes animsition-loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes animsition-loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/*///////////////////////////////////////GENERAL/////////////*/
/*/アイコン画像色選択////*/
.IconImageBlk img{
  -webkit-filter: invert(0);
  -moz-filter: invert(0);
  -o-filter: invert(0);
  -ms-filter: invert(0);
  filter: invert(0);
}
.IconImageWht img{
  -webkit-filter: invert(1) brightness(2);
  -moz-filter: invert(1) brightness(2);
  -o-filter: invert(1) brightness(2);
  -ms-filter: invert(1) brightness(2);
  filter: invert(1) brightness(2);
}
.IconImageBlk a .icon-search:before {
  color: #2c2c2c !important;
}
.IconImageWht a .icon-search:before {
  color: #fff !important;
}

.btn {
    text-align: center;
    position:relative;
    overflow:hidden;
}
.btn a{
  padding: 15px 0;
  cursor:pointer;
    font-size: 12px;
    font-weight: 400;
    transition:all .5s ease;
    z-index:2;
    position:relative;
    width: 100%;
    height: 100%;
}
.btn:hover a{
  opacity: 1;
}
.item-detail-inner .label_image {
}
.secArea{
  width: 100%;
  padding: 0 80px 0 280px;
  margin: 80px auto 120px;
}
.secTitle {
  display: block;
  margin-bottom: 40px;
  line-height: 1.5em;
  text-align: left;
}
.secTitle h2{
  font-size: 32px;
  font-weight: 400;
}
.subHead {
  font-weight: 400;
  line-height: 1.5em;
}
.subDesc {
  font-size: 14px;
  line-height: 1.8em;
}
.itemPrice_soldout .soldout_cover{
  display: block;
}
.itemImg .label_image{
  width: 70px !important;
  height: 70px !important;
  top: -12px !important;
  left: -12px !important;
}
@media only screen and (max-width:1080px) {
.secArea{
  padding: 0 5% 0;
  margin: 8% auto 12%;
}
.inner-conts {
  margin: 0;
}
.secTitle {
  margin-bottom: 5%;
}
.secTitle h2{
  font-size: 24px;
}
.subDesc {
  font-size: 12px;
}
.item-detail-inner .label_image,
.itemImg  .label_image{
  width: 48px !important;
  height: 48px !important;
}
.item-detail-inner .label_image {
  top: 12px !important;
  left:12px !important;
}
}


.hovline_on a:before,
.hovline_off a:before{
  content: "";
  width: 3px;
  height: 1px;
  position: absolute;
  bottom: 50%;
  left: 0;
  transition: .3s;
  transform: translateY(50%);
}
.hovline_on a:hover{
  padding: 0 0 0 13px !important;
}
.hovline_on a:hover:before{
  width: 100%;
}

#category-menu .appsItemCategoryTag_lowerchild li a:hover{
  padding: 0 0 0 13px;
}
.appsItemCategoryTag_child a:hover,
.headerLeftBottom a:hover{
  padding: 0 0 0 3px;
}




#sb-site {
  background: transparent !important;
}
.itemPrice .proper {
  text-decoration: line-through;
  font-size: 10px;
  margin-bottom: 10px;
}
.itemPrice .sale {
   color: #e74c3c;
   display: inline-block;
}
.itemPrice .discount {
   color: #e74c3c;
   font-size: 10px;
   display: inline-block;
}

.secTitle .list-ttl{
  text-align: left;
}
.secTitle .subHead{
  font-size: 32px;
  display: inline-block;
  vertical-align: middle;
  width: 80%;
}
.secTitle .view-all{
  text-align: right;
  font-size: 12px;
  width: 20%;
  display: inline-block;
  vertical-align: middle;
}
.secTitle .view-all a{
  position: relative;
  display: inline-block;
  padding-right: 3px;
  font-weight: 400;
}
.secTitle .view-all a:before {
  position: absolute;
  bottom: 50%;
  left: -10px;
  content: '';
  width: 4px;
  height: 1px;
  transition: .3s;
  -webkit-transition: .3s;
} 
.secTitle .view-all a:hover{
    padding-right: 0px;
}
.secTitle .view-all a:hover::before{
  left: 0px;
  width: 100%;
}

@media only screen and (max-width:1080px) {
.secTitle .subHead{
  font-size: 24px;
  width: 70%;
}
.secTitle .view-all{
  text-align: right;
  font-size: 12px;
  width: 30%;
}
}
@media only screen and (min-width:1081px) {
.NavOnFooter{
  display: none;
}
}
@media only screen and (max-width:1080px) {
.NavOnFooter{
  display: block;
  width: 100%;
  padding: 0 5%;
  margin-bottom: 10%;
}
.NavOnFooter .sideTitle {
  font-size: 10px;
  margin: 0 0 3% 0;
  display: block;
}
.NavOnFooter #category-menu {
  margin-bottom: 5%;
}
.NavOnFooter #category-menu .category-list ul li:before{
  display: none;
}
.NavOnFooter li{
  font-size: 12px;
  line-height: 1.2em !important;
}
.NavOnFooter .appsItemCategoryTag_child{
  border-bottom: 1px solid #ececec;
  padding: 15px 0 !important;
  margin-bottom:0 !important;
}
.NavOnFooter #category-menu .appsItemCategoryTag_lowerchild{
  margin:30px 0 0;
}
.NavOnFooter #category-menu .appsItemCategoryTag_lowerchild li{
  margin: 0 0 20px 4px;
}
.NavOnFooter .side-link ul li{
  margin-bottom: 5%;
}
.searchResult .main .NavOnFooter, 
.category .main .NavOnFooter{
  padding: 0;
}
}

/*///////////////////////////////////////HOVER IMG/////////////*/

.itemThumbImg,
.itemThumbImg img,
.CategoryImg,
.CategoryImg img,
.blogThumb,
.blogThumb img,
.relatedItems ul li a,
.relatedItems ul li a img,
.main .blogListMain>.blog_inner  .blog_head_image a,
.main .blogListMain>.blog_inner  .blog_head_image a img{
  overflow: hidden;
  backface-visibility: hidden;
}

.itemThumbImg img,
.CategoryImg img,
.blogThumb img,
.relatedItems ul li a img,
.main .blogListMain>.blog_inner  .blog_head_image a img{
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.itemThumbImg:hover img,
.CategoryImg:hover img,
.blogThumb:hover img,
.relatedItems ul li a:hover img,
.main .blogListMain>.blog_inner  .blog_head_image a:hover img{
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.itemThumbImg .imgBox:hover img {
  -webkit-transform: scale(1.0) !important;
  transform: scale(1.0) !important; 
}


/*///////////////////////////////////////HEADER/////////////*/

/*ヘッダースクロールの場合 */
.headerLeftWrapScl{
  position: fixed;
  z-index: 10000;
  height: 100%;
  width: 240px;
  top: 0px;
  left:0px;
  bottom:0;
  right: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.headerLeftWrapScl .sclInner{
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  will-change: scroll-position;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  position: relative;
  padding: 40px 20px 40px 40px;
}
.headerLeftWrapScl .headerLeftTop,
.headerLeftWrapScl .headerLeftBottom{
  position: relative;
  left: unset;
  top: unset;
  bottom: unset;
  right: unset;
}
.headerLeftWrapScl .headerLeftBottom{
  margin-top: 40px;
}
.headerLeftWrapScl .sclInner::-webkit-scrollbar{
　　display:none;
}
/*ヘッダー上下固定の場合 */
.headerLeftWrapFixed .headerLeftTop,
.headerLeftWrapFixed .headerLeftBottom{
  position: fixed;
}
.headerLeftWrapFixed .headerLeftTop,
.headerLeftWrapFixed .headerLeftBottom{
  width: 180px;
  left:40px;
}
.headerLeftWrapFixed .headerLeftTop{
  /*top: 40px;*/
  top: 0px;
  padding-top: 40px;
  z-index: 1001;
}
.headerLeftWrapFixed .headerLeftBottom{
  bottom: 40px;
  z-index: 1002;
}

.logo {
  display: block;
  line-height: 1em;
  font-size: 20px;
  width: 100%;
  margin: 0 0 40px 0;
  padding: 0;
}

.logo img{
  width: 100%;
}
.logoLs a{
  max-width: 100%;
}
.logoSq a{
  max-width: 50%;
}
@media only screen and (max-width:1080px) { 
  .logo {
    font-size: 14px;
    margin: 0;
  }
  .logo img{
    width: auto !important;
    height: 100%;
  }
  .logoLs a{
    max-width:unset;
    height: 100%;
  }
  .logoSq a{
    max-width:unset;
    height: 100%;
  } 
}

/*///////////////////////////////////////重要なお知らせ/////////////*/
.important_notice {
    display: block;
    position: relative;
    right: 0;
    top: 0;
    width: 100%;
    margin: 0 auto;
    z-index: 9998;
    text-align: center;
}
.important_noticeTxt{
  display: block;
  width: 100%;
  font-size: 11px;
  padding:8px 0;
  margin: 0 auto;
}
.important_noticeTxt,
.important_noticeTxt a{
  color: #fff;
}
#mainHeader.top32{
  top:32px !important;
}

/*///////////////////カテゴリ/////////////*/
.headerLeftWrapFixed .appsItemCategoryTag_lowerchild {
  display: none;
}
.headerLeftWrapScl .appsItemCategoryTag_lowerchild {
  display: none;
}
#category-menu {
  width: 100%;
  display: inline-block;
  position: relative;
  cursor: pointer;
  text-align: left;
}

#category-menu #appsItemCategoryTag{
  display: block;
  padding: 0px;
  /*margin-right: 10px;*/
}
#category-menu .appsItemCategoryTag_child{
  display: block;
  padding: 0;
  line-height: 1em;
  width: 100%;
  word-wrap: break-word; /*折り返し*/
  font-size: 13px;
  margin-bottom: 15px;
  position: relative;
  transition: .3s;
  cursor: default;
}
.appsItemCategoryTag_child:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
}
.appsItemCategoryTag_child a,
.appsItemCategoryTag_child .menuExpand{
  display: inline-block;
  padding: 0;
  transition: all .3s;
  cursor: pointer;
}
.menuExpand,
.menuExpand span {
  display: inline-block;
  transition: all .3s;
  box-sizing: border-box;
}
.menuExpand {
  position: relative;
  width: 16px;
  height: 16px;
  float: right;
  margin: 0;
  /*cursor: pointer;*/
}
.menuExpand span {
  position: absolute;
  left: 4px;
  width: 50%;
  height: 1px;
}
.menuExpand span:nth-of-type(1) {
  top: 7px;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}
.menuExpand span:nth-of-type(2) {
    top: 7px;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}
/*＋、－切り替え*/
.menuExpand.active span:nth-of-type(1) {
  display:none;
}
.menuExpand.active span:nth-of-type(2) {
  top: 5px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}


#category-menu .appsItemCategoryTag_lowerchild{
  margin: 15px 0 0;
}

#category-menu .appsItemCategoryTag_lowerchild li{
  display: block;
  margin: 0 0 10px 4px;
}
#category-menu .appsItemCategoryTag_lowerchild li a{
  padding: 0 0 0 10px;
  font-size: 11px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}


/*///////////////////Navメニュー/////////////*/

.headerLeftWrapFixed .headerNav,
.headerLeftWrapScl .headerNav{
  font-size: 10px;
}
.headerNav ul li{
  margin-bottom: 5px;
}
.itemSearch__form {
  width: 100%;
  position: relative;
  height: 34px;
}
.itemSearch input[type=text] {
  position: absolute;
  left: 0;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #ececec;
  outline: none;
  height: 34px;
  font-size: 12px;
  letter-spacing: 0.06em;
  width: 100%;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  box-sizing: content-box;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-appearance: none;
  border-radius: 0;
}

.headerRightTop,
.headerRightMid,
.headerRightBg {
  width: 80px;
  position: fixed;
}
.headerRightTop{
  z-index: 1003;
  top:0px;
  right: 0px;
}
.headerRightMid {
  z-index: 1004;
  top: 50%;
  right: 0px;
  margin-top: -.5em;
}
.headerRightBg{
  height: 100vh;
  width: 80px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1001;
}

.headerRightTop #baseMenu > ul > li.base {
  display: none;
}

#baseMenu {
  padding: 0 !important;
  position: static !important;
}
#baseMenu ul li {
  display: block;
  margin:0 !important;
}
#baseMenu ul li img{
  width: 20px;
  height: 20px;
}
#baseMenu > ul > li a {
  box-shadow: none !important;
  background: inherit !important;
}
#baseMenu > ul > li a:hover {
  box-shadow: none !important;
}
.headerRightTop #baseMenu{
  text-align: center;
  width: 80px;
  height: 80px;
}
#baseMenu > ul > li.cart a{
  padding: 10px !important;
  background: transparent !important;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
}
.headerRightMid .inner-conts {
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -8px;
}
.headerRightMid .inner-conts{
  width: 16px;
}
.headerRightMid .inner-conts ul li {
  width: 100%;
  margin: 0 0 32px 0;
}
.headerRightMid .inner-conts ul li:last-child {
  margin: 0;
}
.headerRightMid ul li img{
  width: 100%;
  height: 100%;
}
header{
  display: none;
}



@media only screen and (max-width:1080px){ 
.headerLeftWrapFixed,
.headerLeftWrapScl, 
.headerRightWrap{
  display: none;
}
header{
  display: block;
}
header .logo{
  position: absolute;
  margin: 0;
  position: absolute;
  left: 50%;
  z-index: 9999;
  transform: translate(-50%,-50%);
  text-align: center;
  width: 70%;
  overflow: hidden;
}
header .logoSq,
header .logoLs{
   top: 50%; 
   height: auto;
}
header .logoText .logoSq,
header .logoText .logoLs{
   top: 50%; 
   height:1em;
}
header .logoSq a{
  height: 44px !important;
  max-height: 44px !important;
}
header .logoLs a{
  height: 28px !important;
  max-height: 28px !important;
}
.mt70{
  margin-top: 70px;
}
#mainHeader{
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  margin: 0;
  z-index: 9998;
}
#shopHeader #slide-nav-open{
  position: absolute;
  left: 22px;
  top: 50%;
  float: none;
  transform: translate(0, -50%);
}
#baseMenu {
  float: none;
  margin: 0 !important;
}
#baseMenu ul li {
  margin: 0 !important;
}
#baseMenu > ul > li a {
  padding: 0px !important;
}
#baseMenu > ul > li a:hover {
  padding: 0px !important;
}

#shopHeader .cartInHeader .base {
  display: none;
}
#shopHeader .cartInHeader #baseMenu {
  position: absolute !important;
  right: 0;
  top: 0;
  width: 70px;
  height: 70px;
}
#category-menu {
  margin-bottom: 15px;
  -webkit-tap-highlight-color:rgba(0,0,0,0);
  tap-highlight-color:rgba(0,0,0,0);
}
#category-menu .category-list #appsItemCategoryTag {
  display: block;
  top: 0;
  opacity: 1;
  visibility: visible;
  padding:0;
  position: relative;
  transform: translateY(0px); 
}
#category-menu .category-list ul li:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 5px;
  height: 1px;
  margin: -1px 0 0 0;
} 
#category-menu .category-list ul li a {
  display: inline-block;
  font-size: 12px;
}
#category-menu .category-list .appsItemCategoryTag_lowerchild {
  display: none;
}
}
@media only screen and (max-width:768px){ 
.headerRightTop #baseMenu{
  width: 70px;
  height: 70px;
}
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .3s;
  box-sizing: border-box;
}
.menu-trigger {
  position: relative;
  width: 16px;
  height: 14px;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
   top: 50%;
   transform: translateY(-50%);
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger:not(.cls):hover span:nth-of-type(2) {
  width: 70%;
}
.menu-trigger:not(.cls):hover span:nth-of-type(3) {
  width: 35%;
}
.menu-trigger.cls span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(45deg);
  transform: translateY(9px) rotate(45deg);
}
.menu-trigger.cls span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.cls span:nth-of-type(3) {
  -webkit-transform: translateY(-4px) rotate(-45deg);
  transform: translateY(-4px) rotate(-45deg);
}

.nav-search {
  margin-left: 0% !important;
}
.nav-search a{
  background: #fff;
  padding:0 0 0 1px;
  border-radius: 0px;
}
.itemSearch__btn {
  border: none !important;
  background: transparent !important;
  padding: 10px 3px 10px 10px !important;
  vertical-align: middle;
  position: absolute;
  right: 0;
}
.icon-search:before {
  font-size: 14px;
  font-weight: bold;
}
.nav-search a{
  background: transparent !important;
}
div#search.closed {
  opacity: 0;
  transition: .3s;
  right: -50%;
}
div#search.opend {
  opacity: 1;
  transition: .3s;
  right: 80px;
}


.searchbox{
  width: 50%;
  text-align: center;
  position: fixed;
  top: 0;
  height: 100vh;
  padding: 0;
  margin: 0;
  z-index: 999;
}
.searchboxInner{
  padding: 0 10%;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.sbText {
  top: 40%;
  font-size: 11px;
  text-align: left;
}
.searchbox .itemSearch__form{
  width: 100%;
  position: relative;
  margin: 0 auto;
  top: 50%;
}
.searchbox input,
.searchbox button {
  display: inline-block;
}
.searchbox input[type=text] {
  position: absolute;
  left: 0;
  background-color: transparent;
    border: none;
    border-bottom: 1px solid #ececec;
    outline: none;
    height: 3rem;
    font-size: 12px;
    margin: 0;
    padding: 0;
    box-shadow: none;
    box-sizing: content-box;
    transition: 0.3s;
    width: 100%;
}
.searchbox .itemSearch__btn {
  top: 10px;
}


@media only screen and (max-width:1080px) { 
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"],
input[type="text"],
textarea {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
input[type="text"]::-webkit-search-decoration{
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus,
input[type="text"]::focus {
  outline-offset: -2px;
}
}

/*///////////////////////////////////////重要なお知らせ/////////////*/
.important_notice {
    display: block;
    position: relative;
    right: 0;
    top: 0;
    width: 100%;
    margin: 0 auto;
    z-index: 9998;
    text-align: center;
    background: #e74c3c;
}
.important_noticeTxt{
  display: block;
  width: 100%;
  font-size: 11px;
  padding:8px 0;
  margin: 0 auto;
}
.important_noticeTxt,
.important_noticeTxt a{
  color: #fff;
}
#mainHeader.top32{
  top:32px !important;
}


/*///////////////////////////////////////SLIDEBARS/////////////*/



.sb-slidebar {
  border-right: 1px solid #ececec;
}
.sb-slidebar .slideBarsInner {
  padding: 20% 12% 30% 12%;
}
.sb-slidebar nav #category-menu {
  margin: 0;
  width: 100%;
}
.sb-slidebar #category-menu .appsItemCategoryTag_child,
.sb-slidebar .side-link li,
.sb-slidebar #category-menu .appsItemCategoryTag_lowerchild li {
  padding: 10px 0;
  margin: 0;
}
.sb-slidebar  #category-menu .appsItemCategoryTag_lowerchild{
  margin-left: 2%;
}
.sb-slidebar  #category-menu li.appsItemCategoryTag_child:last-child{
  margin: 0;
}

.sb-slidebar #category-menu .appsItemCategoryTag_child a{
  font-size: 14px;
}
.sb-slidebar #category-menu .appsItemCategoryTag_lowerchild a,
.sb-slidebar .side-link li a{
  font-size: 12px;
}
.sb-slidebar .itemSearch {
  margin:20px 0 40px;
}

.sb-slidebar #baseMenu {
  float: none !important;
}
.sb-slidebar #baseMenu > ul > li {
  margin: 0 0 40px 0 !important;
}
.sb-slidebar #baseMenu > ul > li a {
  padding: 4px 8px !important;
}
.sb-slidebar #category-menu .category-list ul li:before {
  display: none;
}
.sb-slidebar .icon-search:before {
  font-size: 12px !important;
}


@media only screen and (max-width:1080px) {
.sb-slidebar .itemSearch .itemSearch__field {
  margin-bottom: 30px;
}
}



/*///////////////////////////////////////VISUAL SLIDES/////////////*/
.slick-slide {
  position: relative;
  outline: none !important;
}
.slick-list {
  overflow: hidden;
}
.slideArea {
  width: 100%;
}
.slideInner {
  display: block;
  position: relative; 
  width: 100%;
  height: 100%;
}
#mainvisual {
  width: 100%;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  letter-spacing: -.4em; /*inline-block用*/
}
#mainvisual.center {
  padding: 80px 80px 40px 80px;
}
#mainvisual.right {
  padding: 80px 80px 40px 280px;
}
.visualSlidesLeft,
.visualSlidesRight {
  width: 50%;
  display: inline-block !important;
  vertical-align: middle;
}

.slick-slide img{
  width: 100%;
}
.slick-current img{
  width: 100%;
  transform: translate3d(0,0,0);
  perspective: 1000;
  filter: blur(0);
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  transform-origin: center center;
}

.visualSlidesPC {
  display: block !important;
}
.visualSlidesSP {
  display: none !important;
}

@keyframes shrink {
    0% {transform: scale(1.5);}
    100% {transform: scale(1);}
}

.slick-current img {
    animation-duration: 1s;
    animation-name: shrink;
    animation-timing-function: 'linear';
}
@media only screen and (max-width:1080px) {
  #mainvisual.center,
  #mainvisual.right {
    padding: 0;
    margin-bottom: 5%;
  }
  .visualSlidesSP {
    display: block !important;
  }
  .visualSlidesPC {
    display: none !important;
  }
}
@media only screen and (max-width:768px){
.visualSlidesLeft {
  display: none !important;
}
.visualSlidesRight {
  width: 100%;
} 
.slick-current img {
    animation-name: unset;
}
}


/*///////////////////////////////////////PICKUPAREA/////////////*/
.PickUpArea {
  width: 100%;
}
.PickUpAreaInner {
  padding: 0;
  height: auto;
  position: relative;
}
.PickUpSlides {
  margin: 0;
  outline: none !important;
}
.PickUpAreaInner .contentBlock {
  position: relative;
  overflow: hidden;
}
.PickUpAreaInner .PickUpConts {
  position: relative;
}
.PickUpAreaInner .sliderTxt{
  width: 60%;
  position: absolute !important;
  top: 50%;
  right: 0;
  z-index: 10;
  transform: translate3d(0,-50%,0);
}
.PickUpAreaInner .sliderImages{
  width: 45%;
  z-index: 9;
}
.PickUpAreaInner .slick-prev,
.PickUpAreaInner .slick-next{
    padding: 0px;
}

/*Slick.js共通*/
.slick-prev,
.slick-next {
    padding: 20px !important;
}
.slick-prev{
  left: 0px !important;
}
.slick-next{
  right: 0px !important;
}
.slick-prev:before{
  left: 14px !important;
}
.slick-next:before{
  right: 4px !important;
}
.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}


.visualSlidesRight .slick-dots li,
.visualSlidesPC .slick-dots li,
.visualSlidesSP .slick-dots li,
.PickUpAreaInner .slick-dots li {
  width: 20px;
  font-size: 10px;
  letter-spacing: .1em !important;
}
.visualSlidesRight .slick-dots,
.visualSlidesPC .slick-dots,
.visualSlidesSP .slick-dots,
.PickUpAreaInner .slick-dots{
  text-align: right;
  height: 16px;
  width: auto !important;
  bottom: 4% !important;
  right: 4%;
}
.visualSlidesRight .slick-dots li a,
.visualSlidesPC .slick-dots li a,
.visualSlidesSP .slick-dots li a,
.PickUpAreaInner .slick-dots li a{
  opacity: .5;
}
.visualSlidesRight .slick-dots li.slick-active a,
.visualSlidesPC .slick-dots li.slick-active a,
.visualSlidesSP .slick-dots li.slick-active a,
.PickUpAreaInner .slick-dots li.slick-active a{
  opacity: 1;
  display: inline-block;
}


/*PICKUPスライドが1件の場合*/
.only .slick-list {
  padding: 0 !important;
}
.only .PickUpSlides {
  margin: 0 !important;
}
.only .slick-dots {
  display: none !important;
}

/*PICKUPレイアウト*/
.PickUpNegative .subHead{
   margin-left: -15%; 
}
.PickUpNormal .subHead{
   margin-left: 0%; 
}

.PickUpAreaInner .colInner {
  padding: 0 0 0 15%;
}
.PickUpAreaInner .PickUpLabel{
  display: inline-block;
  padding: 5px 10px;
  font-size: 12px;
  margin-bottom: 15px;   
}
.PickUpAreaInner .subHead {
  display: inline-block;
  line-height: 1.2em;
  margin-bottom: 32px;
}
.PickUpAreaInner .fs-l .subHead {
  font-size: 60px;
}
.PickUpAreaInner .fs-m .subHead {
  font-size: 32px;
}
.PickUpAreaInner .subDesc {
  font-size: 12px;
  margin-bottom: 40px;
}
.PickUpAreaInner .btn {
  width: 60%;
}
.PickUpAreaInner .subDesc,
.PickUpAreaInner .btn {
  margin-left: 0%;
}
.PickUpImg {
  position: relative;
}
.PickUpImg img{
  width: 100%;
  height: auto;
}
@media only screen and (max-width:1080px) { 
.PickUpArea {
  margin-top: 0;
}
/*.PickUpAreaInner .sliderTxt{
  width: 50%;
}
.PickUpAreaInner .colInner {
  padding: 0;
}*/
.PickUpAreaInner .subDesc, 
.PickUpAreaInner .btn{
  margin-left: 0;
}
.PickUpAreaInner .subHead {
  margin-bottom: 24px;
  padding: 0;
}
.PickUpAreaInner .fs-l .subHead {
  font-size: 32px;
}
.PickUpAreaInner .fs-m .subHead {
  font-size: 24px;
}
.PickUpAreaInner .subDesc {
  margin: 0 0 30px 0;
}
.PickUpAreaInner .btn{
  width: 75%;
}
.PickUpAreaInner .btn a{
  -webkit-text-size-adjust: 100% !important;
  font-size: 12px !important;
}
}
@media only screen and (max-width:768px) {
.PickUpAreaInner .sliderTxt,
.PickUpAreaInner .sliderImages{
  width: 100%;
}
.PickUpAreaInner .colInner {
  padding: 0;
}
.PickUpNegative .subHead{
   margin-left: 0%; 
}
.PickUpAreaInner .sliderTxt{
  position: inherit !important;
  transform: none;
}
.PickUpAreaInner .subHead{
   margin-bottom: 5% !important;
}
.PickUpAreaInner .sliderImages{
   margin-bottom: 10% !important;
}
 .PickUpAreaInner .btn{
  width: 100%;
  box-sizing: border-box;
  padding: 0 1px 0 0;
} 
}

/*///////////////////////////////////////CateogryArea/////////////*/
.CategoryArea {
  margin:80px auto 0;
}
.CategoryAreaInner {
  position: relative;
  padding: 0;
}
/*.CategoryAreaInner .ItemLists{
  display: flex;
  flex-wrap: wrap;
}
.CategoryAreaInner .item {
  width:31%;
  padding: 0; 
  margin: 0  3.5% 7% 0;
  float: left;
}
.CategoryAreaInner .ItemLists .item:nth-of-type(3n){
  margin: 0  0% 7% 0;
}
.CategoryAreaInner .ItemLists .item:nth-of-type(3n+1){
  clear:both;
}
*/
.CategoryAreaInner .catImages{
  position: relative;
}
.CategoryAreaInner .col-left,
.CategoryAreaInner .col-right{
  width: 47%;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.CategoryAreaInner .col-left {
  margin-right: 6%;
}
.CategoryAreaInner .col-left .secTitle,
.CategoryAreaInner .col-right .secTitle {
  margin: 0;
  position: relative;
  z-index: 15;
}
.CategoryAreaInner .col-img{
  margin-bottom: 10%;
}
.CategoryAreaInner .catImages .secTitle .subHead{
  width: auto;
}

/*カテゴリレイアウト - 文字と画像を重ねる*/
.negativeMargin .CategoryAreaInner .col-left .CategoryImg,
.negativeMargin .CategoryAreaInner .col-right .CategoryImg{
  width: 85%;
  margin-left: 15%;
  margin-top: -24px;
  position: relative;
  z-index: 14;
}
/*カテゴリレイアウト - 標準*/
.normalMargin .CategoryAreaInner .col-left .CategoryImg,
.normalMargin .CategoryAreaInner .col-right .CategoryImg{
  width: 100%;
  margin-left: 0%;
  margin-top: 16px;
  position: relative;
  z-index: 14;
}
.CategoryAreaInner .col-left .CategoryImg img,
.CategoryAreaInner .col-right .CategoryImg img{
  width: 100%;
}
@media only screen and (max-width:1080px){
.CategoryAreaInner .catImages .secTitle .subHead{
  font-size: 32px;
}
.negativeMargin .CategoryAreaInner .col-left .CategoryImg,
.negativeMargin .CategoryAreaInner .col-right .CategoryImg{
  margin-top: -16px;
}
.normalMargin .CategoryAreaInner .col-left .CategoryImg,
.normalMargin .CategoryAreaInner .col-right .CategoryImg{
  margin-top: 16px;
}
}
@media only screen and (max-width:768px){
.CategoryAreaInner .catImages .secTitle .subHead{
  font-size: 24px;
}
.CategoryAreaInner .col-left,
.CategoryAreaInner .col-right{
  width: 100%;
}
.CategoryAreaInner .col-left .CategoryImg,
.CategoryAreaInner .col-right .CategoryImg{
  width: 100%;
  margin-left: 0;
}
}
/*///////////////////////////////////////PRODUCTS/////////////*/

#mainContent {
}
.productInner {
  position: relative;
  padding: 0;
}
.productInner .ItemLists .item {
  width:22%;
  padding: 0; 
  margin: 0  4% 5% 0;
  float: left;
}
.productInner .ItemLists div.item:nth-of-type(4n){
  margin: 0  0% 5% 0;
}
.productInner .ItemLists div.item:nth-of-type(4n+1){
  clear:both;
}

.itemInfo {
  width: 100%;
}
.itemImg {
  width: 100%;
  margin-bottom: 15px;
}
.itemImg img{
  width: 100%;
}
.itemTitle h2{
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2em;
  margin-bottom: 10px;
}
.itemPrice{
  font-size: 13px;
  font-weight: 400;
  line-height: 1em;
}
.btnToDetail a {
  width: 50%;
}
#moreItems {
  padding:0;
}
.soldout_cover,
.waitingForSale,
.endOfSale{
  display: block;
  font-size: 11px;
  color: #e74c3c;
  margin: 10px 0 0 0;
}
.preOrderItem,
.preOrder__label,
.lottery__label,
.takeout__label {
  display: inline-block;
  font-size: 11px;
  color: #e74c3c;
  padding: 2px 6px;
  border-radius: 2px;
  border: 1px solid #e74c3c;
}
.preOrderItem{
  margin-top: 10px;
}
.preOrder__label,
.lottery__label,
.takeout__label{
  margin-bottom: 8px;
}

.communityMain .communityItems .communityItem .communityItemLabelBlock,
.limitedItem {
  font-size: 11px;
  color: #fff;
  display: inline-block;
  padding: 2px 6px;
  margin: 8px 0;
  background-color: #f2bb31;
  border-radius: 2px;
  font-weight: bold;  
}

@media only screen and (max-width:1080px){
.productInner .ItemLists .item {
  width:47.5%;
  margin: 0  5% 5% 0;
}
.productInner .ItemLists > div.item:nth-of-type(3n){
  margin: 0  5% 5% 0;
}
.productInner .ItemLists > div.item:nth-of-type(2n){
  margin: 0  0% 5% 0 !important;
}
.itemTitle h2{
  font-size: 12px;
}
.itemPrice{
  font-size: 11px;
}
#moreItems {
  padding:0;
}
}


/*///////////////////////////////////////Blog(Index)/////////////*/
.BlogArea {
  margin:80px auto;
}
#blogIndex{
  width: 100%;
}
.blogInner {
  position: relative;
  padding: 0;
}
.blogInner ul{
  display: flex;
  flex-wrap: wrap;
}
.blogInner ul li{
  width:31%;
  padding: 0; 
  margin: 0  3.5% 5% 0;
  letter-spacing: -.4em;/*inlineblock用*/
}
.blogInner .pinned ul li:not(:first-child){
  display: none;
}
.blogInner ul li:nth-child(3n){
  margin: 0  0 5% 0;
}
.blogInner .blogThumb {
  margin:0 auto 4%;
  position: relative;
  padding-top: 65%;
}
.blogInner .blogInfo{
  letter-spacing: .1em
}
.blogInner ul li img{
  position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%) scale(1) !important;
    -ms-transform: translate(-50%,-50%) scale(1) !important;
    transform: translate(-50%,-50%) scale(1) !important;
    width: 100%;
}
.blogInner .blogThumb:hover img {
    -webkit-transform: translate(-50%,-50%) scale(1.05) !important;
    -ms-transform: translate(-50%,-50%) scale(1.05) !important;
    transform: translate(-50%,-50%) scale(1.05) !important;
}

.blogInner .articleTitle{
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.5em;
}
.blogInner .date a{
  font-size: 12px;
}
.vm{
  width: 38%;
  text-align: center;
    margin: 0 auto;
}
.vm a{
    display: inline-block;
}

@media only screen and (max-width:768px){ 
.blogInner ul li{
  width:100%;
  margin: 0  0 5% 0;
}
.vm{
    margin: 20px 0 0 0;
   width: 100% !important;
}
.blogInner .blogThumb,
.blogInner .blogInfo {
    display: inline-block;
    vertical-align: middle;
} 
.blogInner .blogThumb{
    width: 35%;
    margin:0 auto;
  padding-top: 25%;
}
.blogInner .blogInfo {
    width: 65%;
    padding-left: 5%;
}
.blogInner .articleTitle{
  font-size: 12px;
}
}


/*///////////////////////////////////////CONCEPT/////////////*/
.conceptArea {
  width: 100%;  
}
.conceptInner {
  padding: 0;
  height: auto;
  position: relative;
}

.conceptInner .contentBlock {
  position: relative;
  overflow: hidden;
}
.conceptInner .col-left,
.conceptInner .col-right{
  display: inline-block;
  vertical-align: middle;
  float: none;
}
.conceptInner .col-left {
  width: 45%;
}
.conceptInner .col-right {
  width: 55%;
}
.conceptInner .colInner {
  padding: 5% 5% 5% 10%;
}

.conceptInner .col-left{
}
.conceptInner .subHead {
  font-size: 21px;
  margin-bottom: 20px;
}
.conceptInner .subDesc {
  font-size: 13px;
  margin-bottom: 40px;
}
.btnToAbout {
  width: 60%;
}
.conceptImg {
  position: relative;
}
.conceptImg img{
  width: 100%;
  height: auto;
}
@media only screen and (max-width:1080px){ 
.conceptInner .col-left,
.conceptInner .col-right{
  width: 100%;
  position: relative;
  transform: translateY(0%);
}
.conceptInner .col-right{
  margin-bottom: 30px;
}
.conceptInner .colInner {
  padding: 0;
}
.conceptInner .contentBlock {
  height: auto !important;
}
.conceptInner .col-left {
  margin-bottom: 20px;
}
.conceptInner .col-right .colInner{
  padding: 0;
}
.conceptInner .subHead{
  font-size: 18px;
  margin: 0 0 15px 0;
}
.conceptInner .subDesc {
  margin: 0 0 30px 0;
}
.btnToAbout {
  width: 100%;
}

}




/*///////////////////////////////////////ITEM DETAIL/////////////*/
.item-detail {
  margin:0 !important;
  padding: 80px 80px 0 280px;
}
.item-detail .item-detail-inner{
  width: 100%;
  margin:0px auto 120px;
  max-width: 1080px;
}
.item-detail .itemImgArea {
  width: 50%;
  position: relative;
  float: left;
}
.item-detail .itemImgArea #slideImg {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}
.item-detail .itemImgArea #slideImg .imgBox img,
.item-detail .itemImgArea .slideImgNav .imgBox img{
  width: 100%;
}
.item-detail .itemImgArea .slideImgNav .slick-current img{
  opacity: .5;
}
.item-detail .slick-counter{
  position: absolute;
  z-index: 100;
  bottom: 10px;
  right: 10px;
  font-size: 10px;
}
.item-detail .purchase{
  width:45%;
  margin:0;
  padding: 5% 0;
  float: right;
}
.item-detail .purchase .itemTitle {
  font-size: 18px;
  margin: 0 0 15px 0;
  font-weight: 400;
  line-height: 1.2em;
}
.item-detail .purchase .itemPrice{
  margin: 0 0 20px 0;
}
.item-detail .purchase .itemPrice .sale{
  margin-bottom: 5px;
}
.item-detail .purchase .itemPrice .discount{
  font-size: 12px;
}
.item-detail .purchase .itemPrice h3{
  font-size: 14px;
  font-weight: 400;
}
.item-detail .purchase .itemDescription {
  font-size: 12px;
  line-height: 1.8em;
  margin: 0 0 30px 0;
}
.item-detail .purchase .itemDescription> p{
  margin: 0 0 20px 0;
}
.item-detail .purchase #itemAttention {
  font-size: 11px;
  line-height: 1em;
  margin: 0 0 40px 0;
}
.item-detail .purchase #itemAttention p{
  margin: 0 0 10px 0;
}
.item-detail .purchase #itemSelect {
  font-size: 12px;
  margin: 0 0 25px 0;
}
.item-detail .purchase #itemSelect .purchaseElement{
  margin-bottom: 5px;
}
.item-detail .purchase #itemSelect .purchaseElement label{
  display: inline-block;
  vertical-align: middle;
  padding-bottom: 9px;
}
.item-detail .purchase #itemSelect select{
  font-size: 12px;
}




/*商品オプションApp*/
.item-detail .purchase #itemSelect .itemOption__name {
    margin: 16px 0 8px 0;
    display: block;
}

.item-detail .purchase #itemSelect .itemOption__select,
.item-detail .purchase #itemSelect .itemOption__input{
  display: block;
    margin:0 0 20px 0;
    width: 100%;
    box-sizing: border-box;
}
.item-detail .purchase #itemSelect .itemOption__caption {
    font-size: 11px;
    margin: 8px 0 8px 0;
    line-height: 1.5em;
    display: block;
    font-weight: 400;
}
.item-detail .purchase #itemSelect .itemOption__bottomCaptionBlock {
  margin-top: -12px;
  padding-bottom: 16px;
}
.item-detail .purchase #itemSelect .itemOption__count{
  float: right;
  font-size: 12px;
  display: block;
}
.item-detail .purchase #itemSelect .itemOption__bottomCaptionBlock,
.item-detail .purchase #itemSelect .itemOption__count{
  font-size: 11px;
  font-weight: 400;
}
.item-detail .purchase #itemSelect .itemOption__caption--error,
.item-detail .purchase #itemSelect .itemOption__count--error{
  color:#e74c3c;  
}
.purchaseButton button:disabled {
  opacity: 20% !important;
  cursor: default !important;
  pointer-events: none; 
}



.item-detail .purchase #purchase_form {
  width: 100%;
  margin: 15px 0 30px 0;
}
.item-detail .purchase #purchase_form .button,
.item-detail .purchase #purchase_form .purchaseButton__btn{
    font-size: 12px;
    padding: 15px 0;
    text-align: center;
    cursor: pointer;
    width: 100%;
    letter-spacing: 0.06em;
    border: 0px;
    opacity: 1;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
}
#widget {margin: 0 0 0 10px !important;}
#widget,.social,.socialWrapper,.twitter,.fb, .report {
  display: inline-block;
  vertical-align: middle;
}
.item-detail .purchase .report {
    margin: 0 0 0 10px;
    font-size: 10px;
}

.review01 {
  margin:0 0 120px 0 !important;
} 
.review01__list {
    overflow-y: scroll !important;
}

.relatedItems {
  margin: 0;
}
.relatedItems .secTitle {
  display: block;
  margin-bottom: 30px;
}
.relatedItems .secTitleEn {
  margin-bottom: 20px;
}
.relatedItems  ul  {
  display: flex;
  flex-wrap: wrap;
}
.relatedItems  ul li {
  width: 31%;
  margin: 0 3.5% 4% 0;
}
.relatedItems  ul li:nth-child(3n) {
  margin-right: 0;
}
.relatedItems  ul li .itemImg {
  margin: 0 0 5% 0;
}
.relatedItems  ul li .itemImg img{
  width: 100%;
}
.relatedItems  ul li .itemTitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2em;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}
.relatedItems  ul li .itemPrice{
  font-size: 12px;
  letter-spacing: 0.1em;
}
.item-detail .salesPeriod--term,
.item-detail .salesPeriod--willStart,
.item-detail .salesPeriod--willEnd,
.item-detail .salesPeriod--finish,
.item-detail .salesPeriod--available,
.item-detail .preOrder,
.item-detail .lottery,
.item-detail .takeout {
  color: #e74c3c;
  line-height: 1.6em;
  font-size: 12px;
  display: block;
}
.item-detail .preOrder p{
  margin:0; 
}
#salesPeriodModal .salesPeriodModal__btn {
    border-radius: 0 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    height: 50px !important;
    line-height: 50px !important;
}
#salesPeriodModal .salesPeriodModal__btn:hover {
    opacity: 1 !important;
}
#x_salesPeriodModalInput{
    box-shadow: none;
    border-radius: 0;
}

@media only screen and (max-width:1080px) { 
.item-detail {
  margin:0 !important;
  padding: 0px;
}
.item-detail .item-detail-inner{
  margin:70px auto 80px;
}
.item-detail .itemImgArea {
  width: 100%;
  margin:0 auto 10%;
  float: none;
}
.item-detail .purchase{
  width:100%;
  float: none;
}
.item-detail .itemImgArea #slideImg {
  margin-bottom: 0;
}
.item-detail .itemImgArea #slideImg .imgBox a{
}
.slideImgNav {
  display: none !important;
}
.item-detail .purchase{
  width: 100%;
  float: none;
  margin: 0 0 5% 0;
  padding: 0 5%;
}
.review01 {
  margin: 0 5% 5% !important;
}
.relatedItems {
  margin: 0 5% 5%;
}
}
@media only screen and (max-width:768px) { 
.relatedItems  ul li {
  width: 100%;
  margin: 0 0% 5% 0;
  float: none;
}
}


/*///////////////////////////////////////商品説明カスタムApp/////////////*/
.ItemDetailCustom {
  margin-top: 10%;
}
#appsItemDetailCustomTag .appsItemDetailCustomTag_heading {
  font-size: 16px !important;
}
#appsItemDetailCustomTag .appsItemDetailCustomTag_description {
  font-size: 12px !important;
}

#appsItemDetailCustom #appsItemDetailCustomTag .appsItemDetailCustomTag_heading,
#appsItemDetailCustom #appsItemDetailCustomTag .appsItemDetailCustomTag_description{
  letter-spacing: 0.08em !important;
}

/*///////////////////////////////////////年齢制限App/////////////*/
.ageVerificationWarning {
  font-size: 19px !important; /*商品価格よりも大きいfont-size*/
}

/*///////////////////////////////////////ABOUT/////////////*/
#about {
  width: 100%;
}
#about .main{
  margin: 80px 80px 0 280px;
}
#about .aboutInner {
  margin: 0 auto 120px;
}
#about .about-img {
  width: 100%;
  margin:0 auto;
}
#about .about-img img{
  width: 100%;
}
.messageArea,
.stockistArea {
    width: 100%;
    margin: 5% auto;
}
.faqArea{
    width: 100%;
    margin: 5% auto 0;  
}
#about .aboutInner .aboutInnerLeft {
  width: 25%;
  float: left;
}
#about .aboutInner .aboutInnerRight {
  width: 70%;
  float: right;
  padding-right: 5%;
}
#about .subHead {
  font-size: 24px;
  margin-bottom: 30px;
  line-height: 1.8em;
}
#about .subDesc {
  font-size: 13px;
  margin-bottom: 0px;
}
#about .faqLists li .faqQ{
  width: 100%;
  padding: 15px 10px;
  border-bottom: 1px solid #ececec;
}
#about .faqLists li .faqA{
  width: 100%;
  padding: 15px;
  margin: 10px 0 20px 0;
}
#about .faqLists li .faqQ .headTxt,
#about .faqLists li .faqA .headTxt{
  font-size: 15px;
  width:20px;
  margin-right: 6px;
}
#about .faqLists li .faqA .headTxt{
  color: #e74c3c;
}
#about .faqLists li .faqQ .sentTxt,
#about .faqLists li .faqA .sentTxt{
  font-size: 12px;
  width:94%;
}
#about .faqLists li .faqQ .headTxt,
#about .faqLists li .faqA .headTxt,
#about .faqLists li .faqQ .sentTxt,
#about .faqLists li .faqA .sentTxt{
  display:inline-block;
  vertical-align: top;
}



@media only screen and (max-width:1080px) { 
  #about .main{
    margin: 70px auto 0;
    padding: 0 5%;
  }
  #about .aboutInner {
    padding:0;
    margin: 0 auto 10%;
  }
}
@media only screen and (max-width:768px) { 
  #about .aboutInner .aboutInnerLeft {
  width: 100%;
  float: none;
  margin-bottom: 3%;
}
#about .aboutInner .aboutInnerRight {
  width: 100%;
  float: none;
  padding-right: 0%;
  margin-bottom: 10%;
}
#about .faqLists li .faqQ .sentTxt,
#about .faqLists li .faqA .sentTxt{
  width:90%;
}
}



/*///////////////////////////////////////Footer/////////////*/
#mainFooter {
  width: 100%;
  padding: 0 80px 0 280px;
  margin:20px auto 80px;
  position: relative;
}
#mainFooter .footerInner {
  display: block;
  text-align: center;
  position: relative;
  height: 32px;
}
#mainFooter .fLeft,
#mainFooter .fRight{
  width: 50%;
}
#mainFooter .fLeft {
  float: left;
}
#mainFooter .fRight {
  float: right;
}
#mainFooter .fLeftInner {
  position: absolute;
  top: 0;
  left: 0;
}
#mainFooter .fRightInner {
  position: absolute;
  top: 0;
  right: 0;
}
#mainFooter .fRight ul{
  display: inline-block;
  margin-top: 3px;
}
#mainFooter .fRight ul li {
  display: inline-block;
  text-align: right;
  font-size: 10px;
  letter-spacing: .04em;
  vertical-align: middle;
}

#mainFooter .social {
  margin: 0 0 0 10px;
}
#mainFooter .social .inner-conts ul li {
  display: inline-block;
  margin-right: 4px;
  width: 22px;
  height: 22px;
  padding: 4px;
  box-sizing: border-box;
  border-radius: 2px;
}
#mainFooter .social .inner-conts ul li:last-child {
  margin-right: 0px;
}
#mainFooter .social ul li img{
  width: 100%;
  height: 100%;
}
#mainFooter #i18 {
  display: inline-block;
  vertical-align: middle;
}

#mainFooter .IconImageBlk .poweredby a span {
  color: #999;
}
#mainFooter .IconImageWht .poweredby a span {
  color: #ececec;
}


#mainFooter .poweredby a span{
    font-size: 10px;
    display: inline-block;
    padding-left: 8px;
    vertical-align: top;
    letter-spacing: .04em;
}
#mainFooter #baseMenu > ul > li.base a{
  padding: 0;
}
#mainFooter #baseMenu > ul > li.base img {
  width: 14px;
  height: 14px;
  opacity: .7;
}
#mainFooter #baseMenu > ul > li.cart {
  display: none;
}
@media only screen and (max-width:1140px) { 
#mainFooter{
  margin:0 0 60px 0;
} 
#mainFooter .fRight ul li:last-child{
    display: block;
    margin:10% auto; 
    text-align: center;
}
#mainFooter .poweredby{
  margin:0 auto; 
}
#mainFooter .footerInner {
    height: auto;
    overflow: hidden;
}
#mainFooter .fLeft,
#mainFooter .fRight{
  width: 100%;
  float: none;
  clear: both;
}
#mainFooter .fLeft {
  margin-bottom: 30px;
}
#mainFooter .fLeftInner,
#mainFooter .fRightInner {
  position: relative;
}
#mainFooter #i18 {
  text-align: center;
    margin: 0 auto 20px;
    display: inline-block;
}
#mainFooter .footerMenu ul {
  position: static;
}
#mainFooter .footerMenu ul li {
  text-align: center;
  margin:0 auto;
}
#mainFooter .social {
  display: block;
  margin: 0 0 30px 0;
}
#mainFooter .logo {
  margin: 20px auto 10px;
    text-align: center;
    display: block;
}
#mainFooter .copyright {
  text-align: center;
  margin: 0 0 30px 0;
}
}
@media only screen and (max-width:1080px) { 
#mainFooter{
  padding: 0;
}
}



/*///////////////////////////////////////CATEGORY&SEARCHRESULT/////////////*/
.searchResult .main,
.category .main{
  width: 100%;
  padding: 0 80px 0 280px;
  margin:80px auto 120px;
}
.searchResult .main .secArea,
.category .main .secArea{
  padding: 0;
  margin:0 auto;
}
.searchResult .productInner,
.category .productInner {
  padding: 0;
}
.categoryTitle01 {
  font-size: 32px;
  text-align: left;
  font-weight: 400;
  margin: 5% 0;
  line-height: 1em;
}
.categoryTitle01  .bar {
  margin: 30px auto 60px;
}
.childCategoryList01 {
  text-align: left;
  margin: 0 auto 60px;
  font-size: 14px;
}
.childCategoryList01 li {
  display: inline-block;
  margin: 0 30px 0 0;
  line-height: 2em;
}
.childCategoryList01 .childCategoryList01_child a{
  display: inline-block;
  vertical-align: middle;
  padding:0 0 0 10px;
  position: relative;
  margin-bottom: 10px;
}
.childCategoryList01 li:last-child{
  margin:0;
}
.breadcrumb {
  width: 100%;
  font-size: 11px;
  margin: 40px 0 0 0;
} 
.breadcrumb li {
  display: inline-block;
  margin: 0 10px 0 0;
}
.breadcrumb li a {
  display: inline-block;
}
.breadcrumb li:after {
  content: ">";
  color: #ccc;
  display: inline-block;
  margin: 0 0 0 10px;
} 
.breadcrumb li:last-child:after{
  content: none;
}
@media only screen and (max-width:1080px) { 
  .searchResult .main,
  .category .main{
    margin: 70px auto 80px;
    padding: 0 5%;
  }
  .searchResult #mainContent.col4,
  .category #mainContent.col4 {
    width: 100%;
    float: none;
  }
  .searchResult #mainContent,
  .category #mainContent {
    width: 100%;
    float: none;
  }
  .categoryTitle01 {
    margin:10% 0;
  }
  .childCategoryList01 {
    margin: 0 auto 5%;
    font-size: 12px;
  }
}

/*///////////////////////////////////////IndexPageSearch/////////////*/

.titleForSearchResult{
  font-size: 28px;
  text-align: center;
  font-weight: 400;
  margin: 60px 0;
  line-height: 1.5em;
}


/*///////////////////////////////////////CONTACT/////////////*/
#contact .main{
  margin: 80px 80px 0 280px;;
}
#contact .inquirySection{
  text-align: center;
}
#contact .inquirySection h1{
  font-size: 28px;
  font-weight: 400;
  margin: 60px 0;
  line-height: 1em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
}
#contact .inquirySection p{
  font-size: 12px;
  margin: 0 auto 30px;
}
#contact .inquirySection form {
  max-width: 640px;
  font-size: 12px;
  margin: 0 auto 60px;
}
#contact .inquirySection p,
#contact .inquirySection form,
#contact .inquirySection form input[type="submit"] {

}
#contact .inquirySection form dl {
  text-align: left;
  width: 100%;
  margin-bottom: 30px;
}
#contact .inquirySection form dl dt {
  width: 100%;
  margin: 0 0 15px 0;
}
#contact .inquirySection form dl dd {
  width: 100%;
  margin: 0 0 15px 0;
}
#contact .inquirySection form dl dd.error {
  width: 100%;
  margin: 0 0 0 0;
}
#contact .inquirySection form dd input {
  width: 100%;
  border:none;
  background-color: #eee;
  padding: 0 10px 0 10px;
  font-size: 12px;
  height: 40px;
  }
#contact .inquirySection form dd textarea {
  width: 100%;
  height: 200px;
  border: 1px solid #fff;
  background-color: #eee;
  padding: 10px;
  font-size: 12px;
}
#contact .inquirySection .control-panel {
  clear: both;
}
#contact  .inquirySection form dd .error-message {
  color:#e74c3c;
  margin-bottom: 15px;
}

#contact  .inquirySection form input[type=submit] {
  width: 256px;
    height: 54px;
    border: none;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
#contact #inquiryCompleteSection p{
  margin-bottom: 40px;

}
#contact #inquiryCompleteSection a{
    font-size: 12px;
    width: 320px;
    margin: 60px auto 120px;
    height: 54px;
    line-height: 54px;
}

#inquiryConfirmSection form dl dd {
  width: 100%;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}
@media only screen and (max-width:1080px) { 
#contact .main{
  margin: 80px auto;
}
#contact .inquirySection {
  padding: 0 5%;
}
#contact .inquirySection form {
  width: 100%;
  max-width: 100%;
}
#contact .inquirySection form dl dt {
  width: 100%;
  float: none;
  margin: 0;
}
#contact .inquirySection form dd input {
  width: 100%;
}
#contact .inquirySection form dl dd {
  width: 100%;
  float: none;
  margin: 0 0 15px 0;
}
#contact  .inquirySection form input[type=submit] {
  width: 100%;
  margin: 20px 0;
}
}

/*///////////////////////////////////////BLOG/////////////*/

#blog .main{
  width: 100%;
  padding:80px 80px 0 280px;
  position: relative;
}
#blog .main .blogDetail {
  width: 65%;
  margin: 0 0 120px 0;
}
#blog .main .newArticleThumb {
  width: 35%;
  padding-left: 5%;
}
#blog .main .newArticleThumb h3{
  font-size: 24px;
}
#blog .main .blogDetail,
#blog .main .newArticleThumb {
  display: inline-block;
  vertical-align: top;
}
.main .blogListMain {
  display: flex;
  flex-wrap: wrap;
}
.main .blogListMain > .blog_inner {
  margin: 0 2% 5% 0;
  padding: 0 !important;
  font-size: 12px;
  width: 32%;
  border-bottom:none !important;
  min-height: 340px;
}
.main .blogListMain>.blog_inner  .blog_head_image {
  margin:0 0 5% 0;
  position: relative;
  padding-top: 62%;
  overflow: hidden;
}
.main .blogListMain>.blog_inner  .blog_head_image a img{
  position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%) scale(1) !important;
    -ms-transform: translate(-50%,-50%) scale(1) !important;
    transform: translate(-50%,-50%) scale(1) !important;
    width: 100%;
}
.main .blogListMain>.blog_inner  .blog_head_image:hover img {
    -webkit-transform: translate(-50%,-50%) scale(1.05) !important;
    -ms-transform: translate(-50%,-50%) scale(1.05) !important;
    transform: translate(-50%,-50%) scale(1.05) !important;
}

.main .blogListMain > .blog_inner .blog_title {
  margin-bottom:2% !important;
}
.main .blog_publish {
  margin:0 !important;
  font-size: 12px;
  font-weight: 400;
}
.main .blog_body {
  font-weight: 400;
  font-size: 13px;
}
.main .blogListMain>.blog_inner .blog_contents {
  /*line-height: 1.8em;*/
  display: none;
}
.main #about>.blog_inner .blog_contents .read_more {
  display: none;
}
.main .blogListMain >.blog_inner:nth-child(3n){
  margin: 0 0 5% 0;
}
.blog_inner .vimeo{
  width: 100%;
}
.main .blogDetail .social {
  border-top: 1px solid #ececec;
  padding: 15px 0 5px 0;
}
.main .blogDetail>.blog_inner {
  padding:0 !important;
}
.main #about .blog_contents img {
  max-height: 100%;
}
.blog_head_image img {
  width: 100%;
}
.main #about.blogListMain h2 {
  font-size: 14px;
  font-weight: 400;
}
.main #about.blogDetail .blog_title h2{
  font-size: 18px;
}
.main #about>.blog_inner,
.main #about.blogDetail .blog_title h2,
.main #about.blogListMain h2,
.main #about .blog_body h2 {
  text-align: left;
}
.main #about>.blog_inner .blog_contents .read_more {
    padding: 12px 0 !important;
    bottom: -20px !important;
    text-align: center;
    border: 1px solid #ececec;
}
.main .blogDetail >.blog_inner{
  border-bottom: 1px solid #ececec !important;
}
.blogDetail .social ul li {
  margin-right: 30px !important;
  padding: 8px 10px 0px 10px;
  border-radius: 4px;
}
.blogDetail .social ul li:last-child {
  margin-right: 0px !important;
}
.blogDetail .social ul li img{
  width: 18px !important;
  height: 18px !important;
}

.newArticleThumb h3{
  font-weight: 400;
  margin-bottom: 30px;
}
.newArticleThumb li {
  display: block;
  margin:0 0 10px 0; 
}
.newArticleThumb .blogThumb,
.newArticleThumb .blogInfo {
  display: inline-block;
  vertical-align: middle;
}
.newArticleThumb .blogThumb {
  width: 30%;
  margin: 0;
  position: relative;
  padding-top: 30%;
  overflow: hidden;
}
.newArticleThumb .blogThumb img{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%) scale(1) !important;
  -ms-transform: translate(-50%,-50%) scale(1) !important;
  transform: translate(-50%,-50%) scale(1) !important;
  max-width: 150%;
  max-height: 150%;
  width: 100%;
}
.newArticleThumb .blogInfo {
  width: 65%;
  padding: 0 0 0 5%;
}
.newArticleThumb .articleTitle{
  font-size: 12px;
  margin-bottom: 5px;
}
.newArticleThumb .blogInfo .date{
  font-size: 10px;
}
.paginate-wrp{
  margin-top: 0 !important;
  display: block;
  width: 100%;
  margin: 0 auto 10%;
}
@media only screen and (max-width:1280px){ 
#blog .main .blogDetail {
  width: 100%;
  margin: 0;
}
#blog .main .newArticleThumb {
  width: 100%;
  padding-left: 0;
  margin-top: 60px;
}
}

@media only screen and (max-width:1080px) { 
#blog .main {
  margin: 70px auto 0;
  width: 100%;
  padding: 2% 5%;
}
.main .blogListMain>.blog_inner {
  margin: 0 5% 5% 0;
  width: 47.5%;
}
.main .blogListMain>.blog_inner:nth-child(even){
  margin: 0 0 5% 0 !important;
}
.main .blogListMain>.blog_inner:nth-child(3n){
  margin: 0 5% 5% 0;
}
#blog .main .blogDetail {
  width: 100%;
}
.main #about>.blog_inner .blog_contents .read_more {
    bottom: -10px !important;
}
}
@media only screen and (max-width:768px) { 
#blog .main {
    margin: 90px auto 0;
    padding:0 5%;
}
.main #about > .blog_inner {
  margin: 0 0 10% 0 !important;
  width: 100%;
  float: none;
  min-height: initial;
    min-height: auto;
}
.main .blogListMain>.blog_inner .blog_title{
  min-height: 1px;
}
}


/*///////////////////////////////////////コミュニティApp/////////////*/
#community .main {
  margin: 0 !important;
  padding: 80px 80px 0 280px;
}
#community .communityMain {
  width: 100% !important;
  padding: 0px 10% !important;
}
.communityMain .communityItems .communityItem:first-child, 
.communityMain .communityItems .communityItem:nth-child(3n+1) {
  margin-left: 0 !important;
}
.communityMain .communityItems .communityItem {
  margin-left: auto !important;
  margin-bottom: 32px;
  width: 30%;
}
.communityMain #limitedItem,
.communityMain #limitedUrl {
  width: 100% !important;
}
#community .communityTitle{
  font-size: 28px;
  line-height: 1.2em;
  font-weight: bold;
  margin: 0px 0 30px;
}
.communityMain .communityItemHeader {
  margin-top: 60px !important;
}
.communityMain .communityButton {
  color:#fff !important;
  align-items: center;
}
.communityMain .communityItemHeader, 
.communityMain .communityUrlHeader {
  font-size: 20px !important;
}
.communityImageContainer,
.communityMain .communityItems .communityItem .communityItemTitle {
  width: 100% !important;
  height: auto !important;
}
.communityMain .communityItems .communityItem .communityItemTitle  {
  font-size: 14px;
  margin-bottom: 10px !important;
}
.communityMain .communityItems .communityItem .communityItemPrice {
  font-size: 12px !important;
  font-weight: 400;
}
.communityMain .communityPrice h3 {
  margin: 0 0 1em 0;
}
.communityMain .communityContent {
  display: block !important;
  padding: 0 !important;
  border: none !important;
}
.communityMain .communityOverview,
.communityMain .communityNav {
  width: 100% !important;
}
.communityMain .communityNav {
  margin: 30px auto 0 !important;
}
#communityPurchase {
  margin-top: 30px;
}
.communityBox *,
.purchaseButton #communityPurchase .communitySignin p {
  font-size: 13px !important;
  font-weight: 400;
}
.purchaseButton .buttonPayid {
  width: 100%;
  height: auto !important;
  text-decoration: none;
  color: #fff !important;
  background-color: #0063f0c !important;
}
.communityBox .communityModal {
  overflow: auto;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  margin: auto;
  transform:initial !important;
  height: 70vh;
  max-height: 620px;
}
.communityMain #productsLimitedUrl .urlBox {
  width: 45% !important;
  border: 1px solid #e5e5e5 !important;
  background-color: rgba(144,144,144,0.1) !important;
}

.communityMain #productsLimitedUrl .urlBox:nth-child(2n) {
  margin-left: auto !important;
}
.communityModal a {
  color: #000;
}


@media only screen and (max-width:1080px) { 
#community .main  {
  margin: 70px auto 0 !important;
  width: 100%;
  padding:5%;
}
#community .communityMain {
  padding: 0 !important;
}
}

@media only screen and (max-width:880px) { 
.communityMain {
  width: 100% !important;
  padding: 5% !important;
}
.communityMain .communityItems .communityItem {
  width: 45%;
}
.communityMain .communityItems .communityItem,
.communityMain #productsLimitedUrl .urlBox:nth-child(2n) {
  margin-left: 0 !important;
}
.communityMain .communityItems .communityItem:nth-child(2n) {
  margin-left: auto !important;
}

.communityMain #limitedItem,
.communityMain #limitedUrl,
.communityMain .communityOverview,
.communityMain .communityNav,
.communityMain .communityItems .communityItem .communityImageContainer,
.communityMain .communityItems .communityItem .communityImageContainer .communityImageResize,
.communityMain #productsLimitedUrl .urlBox {
  width: 100% !important;
}
.communityMain .communityItems .communityItem .communityImageContainer{
  align-items:stretch;
}
.communityMain .communityNav {
  margin: 5% 0 !important;
} 
.communityBox .communityModal {
  width: 90% !important;
  max-height: 90vh !important;
}
}
/*////コミュニティAppのオーバーレイ時*/
.communityBox .button {
  width: 100% !important;
  font-size: 16px !important;
}
.communityBox .button__purchase {
  margin-left: 0 !important;
  margin-top: 20px;
}
#forCentering.communityMain {
  padding: 0;
  margin:0;
}
.communityMain #productsLimitedUrl .urlBox .url {
  font-size: 12px !important;
  text-decoration: underline;
}

@media only screen and (max-width:480px) { 
.communityModal {
  min-width: initial !important;
}
}


/*///////////////////////////////////////PRIVACY, LAW/////////////*/

#law, #privacy {
    width: 100% !important;
    padding: 5% !important;
    margin: 80px 0 0;
    font-family: inherit !important;
    border-radius: 4px;
}
@media only screen and (max-width:1024px) { 
#law, #privacy {
    margin: 80px auto 0;
}
}

/*///////////////////////////////////////Snappt(Instgaram)/////////////*/
.hotspot-modal .modal-dialog,
.hotspot-modal-tm-1 .snpt-modal.hotspot-modal .modal-content{
  border-radius: 0 !important;
}
.hotspot-modal-tm-1 .snpt-modal.hotspot-modal .ico-close, .hotspot-modal-tm-1 .snpt-modal.hotspot-modal .snptico-left-chevron, .hotspot-modal-tm-1 .snpt-modal.hotspot-modal .snptico-right-chevron {
    color: #8c8c8c !important;
}
#index .hotspot-modal .modal-content {
  background-color: #ffffff !important;
}
.hotspot-modal .modal-dialog .next-chevron,
.hotspot-modal .modal-dialog .prev-chevron{
    top: 50% !important;
    margin-top: -25px !important;
}
.ng-scope .hotspot-modal--frontend .snpt-product-images-slide img{
  border-bottom-left-radius: 0px !important;
  border-top-left-radius: 0px !important;
}

.snptwdgt-container .snptwdgt-rtd__fotr .snptwdgt__usr-profl {
  left: 0 !important;
}
.snptwdgt-container .snptwdgt-rtd__fotr .snptwdgt__tagline{
  right: 0 !important;
}
.hotspot-modal,
.hotspot-modal__right-column,
.snptwdgt-container .snptwdgt-rtd__fotr a{
  font-family: inherit !important;
}

/*///////////////////////////////////////ショップ非公開時/////////////*/


.NotShopPublic{
  width: 100%;
  padding: 0 80px 0 280px;
}
.category .NotShopPublic{
  padding: 0;
}
@media only screen and (max-width:1080px) {
.NotShopPublic{
  padding: 0 5% 0;
}
}

/*///////////////////////////////////////お知らせバナーApp/////////////*/
.informationBannerIcon {
  height: 20px !important;
}
.informationBannerIcon i {
  font-size: 20px !important;
  line-height: 20px !important;
}
.informationBanner .informationBannerText {
  font-size:12px !important;
}
.informationBannerArrow {
  font-size: 14px !important;
}
.top40 {
  top: 40px !important;
}
.top48 {
  top: 48px !important;
}
.top63 {
  top: 63px !important;
}


/*///////////////////////////////////////メールマガジンApp/////////////*/
.mailMagArea {
  padding: 0 80px 0 280px;
  margin: 0 0 10% 0;
}
.mailMagApp {
    width: 100%;
    margin: 0 auto;
    padding: 5%;
    border-radius: 4px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    text-align: left;
}
.mailMagText {
    width: 45%;
    margin-right: 5%;
}
.mailMagazineSubscribe {
  width: 50%;
}
.mailMagApp h4{
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 20px 0;
}
.mailMagApp p{
  font-size: 12px;
  margin: 00;
}
.mailMagazineSubscribe_input {
    width: 70%;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding:0 12px !important;
    background-color: #fcfcfd;
    margin-bottom: 0 !important;
}
.mailMagazineSubscribe_submit {
    width: 85px;
    height: 40px;
    font-weight: 700;
    border-radius: 4px;
    border: 0;
}
.mailMagazineSubscribe_confirm {
  font-size: 12px;
}

@media only screen and (max-width:1080px) { 
.mailMagArea {
  padding: 0;
  margin: 0 0 5% 0;
}
.mailMagApp {
  display: block;
  text-align: center;
}
.mailMagText {
    width: 100%;
    margin-right: 0%;
}
.mailMagApp p{
  margin: 0 0 24px 0;
}
.mailMagazineSubscribe {
  width: 100%;
}
.mailMagApp {
  max-width: 90%;
  margin: 0 auto 5%;
  padding: 5%;
}
.mailMagazineSubscribe_input {
    max-width: 320px;
}
.mailMagazineSubscribe_submit {
    max-width: 100px;
}
}

@media only screen and (max-width:768px) { 
.mailMagApp {
  padding:10% 5%;
}
.mailMagazineSubscribe_input {
    max-width: 75%;
}
.mailMagazineSubscribe_submit {
    width: 25%;
}
}

/*///////////////////////////////////////メンバーシップ/////////////*/
.membershipNav ul li a{
    padding: 0 0 0 10px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
}
.membership a,
.membershipPoint__attentionLink{
  display: inline;
}
.membership .mypage .content .definition-description {
  margin-left:0;
}
.membership .guide .register .description-link,
.membership .guide .register .login-link {
  color:#000 !important;
}
.membership .mypage .logout,
.membership .mypage .leave-wrapper .leave {
  background: transparent !important;
}
.membership .mypage .content .definition-description .edit {
  border: none !important;
}
@media only screen and (max-width:768px) { 
#membership{
      padding: 50px 0 0 0 !important;
}
.membership .guide .img-wrapper .img {
  height: auto !important;
}
.membership .guide .register .description {
  text-align: center;
}
}

/*///////////////////////////////////////PayIDあと払い/////////////*/
.bnplBanner {
  margin-top: 20px;
}