body {
  position: relative;
}
a {
  color: #000;
}
a:hover, a:focus {
    text-decoration: none;
}
img {
  max-width: 100%;
  height: auto
}

iframe {
  max-width: 100%
}

.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1000ms
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0)
}

.scroll-fade{opacity: 0; transition: all 2s/*処理にかかる時間*/;}
.scroll-up{opacity: 0; transform: translateY(100px)/*スクロールアップする距離*/; transition: all 2s/*処理にかかる時間*/;}
.scroll-up.done, .scroll-fade.done{opacity : 1; transform : translate(0, 0);}
.load-fade {opacity : 0; transition : all 2s/*処理にかかる時間*/;}
.load-up{opacity: 0; transform: translateY(100px)/*スクロールアップする距離*/; transition: all 2s/*処理にかかる時間*/;}
.load-up.done, .load-fade.done{opacity : 1; transform : translate(0, 0);}

.pc_none {
  display: none
}

@media screen and (max-width: 768px) {
  .pc_none {
    display: block
  }
}

@media screen and (max-width: 768px) {
  .sp_none {
    display: none
  }
}

.clearfix {
  content: "";
  display: block;
  clear: both;
  overflow: hidden
}

#header {
  height: 100px;
  width: 100%;
  position: absolute;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  top: 0px;
  left: 0px
}

@media screen and (max-width: 1100px) {
  #header {
    height: 60px
  }
}

#header .headerWrapper {
  position: fixed;
  height: 100px;
  padding: 0px 50px;
  box-sizing: border-box;
  width: 100%;
  z-index: 100
}

@media screen and (max-width: 1100px) {
  #header .headerWrapper {
    height: 60px;
    padding: 0px 20px
  }
}

#header .headerWrapper .headerInner {
  position: relative;
  width: 100%;
  height: 100px;
  display: flex;
  transition: 0.4s;
 justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 1100px) {
  #header .headerWrapper .headerInner {
    height: 60px;
    justify-content: space-between
  }
}

/*#header .headerWrapper .headerInner:hover {
  background: rgba(255, 255, 255, 0.9)
}*/

@media screen and (max-width: 1100px) {
  #header .headerWrapper .headerInner:hover {
    background: inherit !important
  }
}

#header .headerWrapper .headerInner h1 {
  height: 60px;
  padding-top: 20px;
  margin-right: 20px
}

@media screen and (max-width: 1100px) {
  #header .headerWrapper .headerInner h1 {
    /*width: 120px;*/
    padding-top: 25px
  }
  #header .headerWrapper .headerInner h1 img {
    height: 38px!important;
    width: auto;
}
}

#header .headerWrapper .headerInner h1 img {
  height: 47px;
  width: auto
}

#header .headerWrapper .headerInner .glonav {
  display: block
}
.arrow {
  position: relative;
  display: inline-block;
  padding: 10px;
}

.arrow::before {
      content: '';
    width: 7px;
    height: 7px;
    border-top: solid 1px #000000;
    border-right: solid 1px #000000;
    position: absolute;
    left: 6px;
    top: 44px;
}
.arrow.arrow-bottom::before {
  transform: rotate(135deg);
}

@media screen and (max-width: 1100px) {
  #header .headerWrapper .headerInner .glonav {
    position: fixed;
    right: -100%;
    top: 0px;
    z-index: 100000;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: block;
    transition: 0.3s;
    border-left: 1px solid #efefef
  }
  #header .headerWrapper .headerInner .glonav.is-active {
    right: 0px
  }
  .arrow::before {
    top: 15px;
}
}


@media screen and (max-width: 1100px) {
  #header .headerWrapper .headerInner .glonav .inner {
    position: relative;
    overflow-x: hidden;
    overflow-y: scroll;
    box-sizing: border-box;
    width: 100%;
    height: 100vh;
    padding: 80px 20px 120px
  }
}

#header .headerWrapper .headerInner .glonav .closeBtn {
  display: none
}

@media screen and (max-width: 1100px) {
  #header .headerWrapper .headerInner .glonav .closeBtn {
    width: 25px;
    height: 25px;
    position: absolute;
    top: 30px;
    right: 28px;
    display: block
  }
  #header .headerWrapper .headerInner .glonav .closeBtn span {
    display: block;
    background: #000;
    width: 25px;
    height: 1px;
    position: absolute;
    left: 0px;
    border-radius: 10px
  }
  #header .headerWrapper .headerInner .glonav .closeBtn span:first-child {
    transform: translateY(10px) rotate(45deg);
    top: -4px
  }
  #header .headerWrapper .headerInner .glonav .closeBtn span:last-child {
    transform: translateY(-10px) rotate(-45deg);
    top: 16px
  }
}

#header .headerWrapper .headerInner .glonav .nav01 {
  width: 100%;
  display: flex;
  justify-content: center
}

@media screen and (max-width: 1100px) {
  #header .headerWrapper .headerInner .glonav .nav01 {
    display: block
  }
}

#header .headerWrapper .headerInner .glonav .nav01>li {
  padding-top: 5px
}

@media screen and (max-width: 1100px) {
  #header .headerWrapper .headerInner .glonav .nav01>li {
    padding-top: 0px
  }
}

#header .headerWrapper .headerInner .glonav .nav01>li.searchBox {
  width: 170px;
  position: relative;
  padding-top: 44px;
  margin-left: 20px
}

@media screen and (max-width: 1100px) {
  #header .headerWrapper .headerInner .glonav .nav01>li.searchBox {
    width: 100%;
    padding-top: 30px;
    margin-left: 0px;
    border-top: 1px solid #ccc
  }
}

#header .headerWrapper .headerInner .glonav .nav01>li.searchBox .searchTxt {
  width: 100%;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #000;
  line-height: 18px;
  font-size: 12px;
  appearance: none;
  background: transparent !important;
  box-sizing: border-box;
  padding-right: 38px;
  border-radius: 0px
}

@media screen and (max-width: 1100px) {
  #header .headerWrapper .headerInner .glonav .nav01>li.searchBox .searchTxt {
    line-height: 40px;
    box-sizing: border-box;
    padding-right: 50px;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    font-size: 16px;
    min-height: 40px;
    display: block
  }
}

#header .headerWrapper .headerInner .glonav .nav01>li.searchBox .searchBtn {
  position: absolute;
  right: 0px;
  top: 40px;
  border: none;
  margin: 0px;
  background: transparent !important;
  box-shadow: 0;
  appearance: none;
  font-size: 10px;
  padding: 0px;
  cursor: pointer;
  font-family: 'Crimson Text', serif;
  color: #95a1a4;
  width: 21px;
}

@media screen and (max-width: 1100px) {
  #header .headerWrapper .headerInner .glonav .nav01>li.searchBox .searchBtn {
    right: 10px;
    top: 40px
  }
}

#header .headerWrapper .headerInner .glonav .nav01>li>a {
  line-height: 100px;
  padding: 0px 13px;
  font-size: 15px;
  /*font-family: 'Montserrat', sans-serif;*/
  letter-spacing: 0.1px;
}

@media screen and (max-width: 1100px) {
  #header .headerWrapper .headerInner .glonav .nav01>li>a {
    line-height: 40px;
    border-top: 1px solid #ccc;
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    font-weight: bold
  }
}

#header .headerWrapper .headerInner .glonav .nav01>li>.nav02 {
  display: none;
  opacity: 0
}

@media screen and (max-width: 1100px) {
  #header .headerWrapper .headerInner .glonav .nav01>li>.nav02 {
    display: block;
    opacity: 1;
    animation-name: none !important;
    background: rgba(255, 255, 255, 0) !important;
    top: inherit !important;
    padding: 0px !important;
    left: inherit !important;
    text-align: left !important;
    position: relative !important;
    right: inherit !important
  }
  #header .headerWrapper .headerInner .glonav .nav01>li>.nav02 li {
    display: block;
    width: 100%
  }
  #header .headerWrapper .headerInner .glonav .nav01>li>.nav02 li a {
    line-height: 40px !important;
    border-top: 1px solid #efefef;
    padding: 0px 15px !important;
    display: block;
    width: 100%;
    box-sizing: border-box;
    font-size: 12px;
    color: #000;
    text-align: center
  }
}

@media screen and (min-width: 1101px) {
  #header .headerWrapper .headerInner .glonav .nav01>li:hover>.nav02 {
    display: flex;
    flex-direction: column;
    position: fixed;
    justify-content: center;
    flex-wrap: wrap;
    top: 70px;
    width: 250px;
    padding: 15px 0px 15px;
    box-sizing: border-box;
    /*left: 0px;*/
    opacity: 1;
    background: rgba(255, 255, 255, 0.9);
    animation-duration: 0.4s;
    animation-name: fade-in
  }
  #header .headerWrapper .headerInner .glonav .nav01>li:hover>.nav02 li a {
    padding: 0px 15px;
    line-height: 40px;
    font-size: 15px;
    font-family: 'Crimson Text', serif;
    color: #000;
    font-weight: 500
  }
}

@media screen and (min-width: 1101px) and (max-width: 1100px) {
  #header .headerWrapper .headerInner .glonav .nav01>li:hover>.nav02 li a {
    line-height: 40px;
    border-top: 1px solid #333;
    padding: 0px 15px 0px 30px
  }
}

#header .headerWrapper .headerInner>.nav02 {
  padding-top: 5px;
  margin-left: 20px
}

@media screen and (max-width: 1100px) {
  #header .headerWrapper .headerInner>.nav02 {
    right: 50px;
    top: 16px;
    position: absolute;
    padding-top: 0px
  }
}

#header .headerWrapper .headerInner>.nav02 li {
  display: inline-block;
  margin: 0 5px;
}

#header .headerWrapper .headerInner>.nav02 li:first-child a {
  font-size: 22px;
  padding: 2px 5px 0px;
  color: #95a1a4
}

@media screen and (max-width: 1100px) {
  #header .headerWrapper .headerInner>.nav02 li:first-child a {
    font-size: 15px;
    padding: 2px 10px 0px
  }
}

#header .headerWrapper .headerInner>.nav02 li:first-child a img {
  width: 25px;
  color: #95a1a4
}

#header .headerWrapper .headerInner>.nav02 li a {
  padding: 1px 5px 0px;
  font-size: 24px;
  color: #333;
  position: relative;
  display: inline-block;
  transition: 0.3s
}

@media screen and (max-width: 1100px) {
  #header .headerWrapper .headerInner>.nav02 li a {
    font-size: 18px
  }
}

#header .headerWrapper .headerInner>.nav02 li a:hover {
  opacity: 0.7
}

#header .headerWrapper .headerInner>.nav02 li a img {
  width: 28px;
  color: #95a1a4
}

#header .headerWrapper .headerInner>.nav02 li a .count {
  color: #000;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px
}

@media screen and (max-width: 1100px) {
  #header .headerWrapper .headerInner>.nav02 li a .count {
    top: 30%
  }
}

#header .headerWrapper .headerInner .spBtn {
  display: none
}

@media screen and (max-width: 1100px) {
  #header .headerWrapper .headerInner .spBtn {
    display: block !important;
    position: absolute;
    right: -18px;
    top: 6px;
    -webkit-transition: 0.4s;
    transition: 0.4s
  }
}
.header-info-bar {
      background: #1f1f1f;
    padding: 10px;
    text-align: center;
  font-size: 12px;
  margin-right: calc(50% - 50vw);
margin-left: calc(50% - 50vw);
}
.header-info-bar a {
  color: #fff;
}
#menuButton {
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 3
}

#menuButton span {
  display: block;
  background: #000;
  width: 28px;
  height: 1px;
  position: absolute;
  left: 5px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s
}

#menuButton span:first-child {
  top: 20px
}

#menuButton span:nth-child(2) {
  display: none
}

#menuButton span:last-child {
  bottom: 19px;
  width: 17px;
  left: 15px
}



.dl-menuwrapper .nav_inner>ul > li > .header-menu-flex {
      display: flex;
    align-items: center;
}
.dl-menuwrapper .nav_inner>ul > li > .header-menu-flex span {
        font-size: 70%;
    margin-left: 6px;
}


/*=============
slick
=============*/

.full a {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  margin: 0;
  text-decoration: none;
}
.full a.img01 {
  background-image: url(https://img21.shop-pro.jp/PA01480/255/etc_base64/MjAyM3NzLXBjc2xpZGUx.JPG?cmsp_timestamp=20230524150212);
}
.full a.img02 {
  background-image: url(https://img21.shop-pro.jp/PA01480/255/etc_base64/MjAyM3NzLXBjc2xpZGUy.JPG?cmsp_timestamp=20230524150212);
}
.full a.img03 {
  background-image: url(https://img21.shop-pro.jp/PA01480/255/etc_base64/MjAyM3NzLXBjc2xpZGUz.JPG?cmsp_timestamp=20230524150212);
}
.full a.img04 {
  background-image: url(https://img21.shop-pro.jp/PA01480/255/etc_base64/MjAyM3NzLXBjc2xpZGU0.JPG?cmsp_timestamp=20230524150212);
}
.full a.img05 {
  background-image: url(https://img21.shop-pro.jp/PA01480/255/etc_base64/MjAyM3NzLXBjc2xpZGU1.JPG?cmsp_timestamp=20230524150212);
}

.full .slick-dots {
      bottom: 4%;
    z-index: +1;
    display: flex!important;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    top: 27%;
    right: 20px;
    height: 20%;
    width: 50px;
}
.slider {
  box-sizing: border-box;
  width: 100%;
  margin: 0px auto 100px;
  position: relative;
}
.slide-caption {
    width: 67%!important;
    position: absolute;
    bottom: 230px;
    right: 20px;
}
.slide-sns {
        list-style: none;
    position: absolute;
    bottom: 105px;
    left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 28%;
}

.slide-sns li img{
  width: 25px;
}
.slide-sns li img:hover {
  opacity: 0.6;
  transition-duration: 0.3s;
}


@media screen and (max-width: 1100px) {
  .slider {
    margin: 0px auto 30px
  }
}

.slider img {
  width: 100%
}

.bx-wrapper {
  margin-bottom: 0px
}

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

.bx-pager {
  display: none
}

.bx-wrapper .bx-viewport {
  box-shadow: none !important;
  border: none !important;
  left: 0px !important;
  background: #fff;
  -webkit-transform: translatez(0);
  -moz-transform: translatez(0);
  -ms-transform: translatez(0);
  -o-transform: translatez(0);
  transform: translatez(0)
}

@media screen and (max-width:768px) { 
  #header .headerWrapper .headerInner>.nav02 li {
    display: inline-block;
    margin: 0 1px;
}
}
.newsletter-btn {
      border: solid 1px;
    padding: 17px 25px;
  font-family: "futura-pt" , sans-serif;
  font-weight: 400;
}
#footer {
      padding: 50px 50px;
    box-sizing: border-box;
    background: #F7F2F2;
  margin-right: calc(50% - 50vw);
margin-left: calc(50% - 50vw);
}

@media screen and (max-width: 768px) {
  #footer {
    padding: 40px 20px
  }
}

#footer .footernav01 {
  display: flex;
  justify-content: center;
  margin-bottom: 30px
}

@media screen and (max-width: 768px) {
  #footer .footernav01 {
    margin-bottom: 20px
  }
}

#footer .footernav01 li a {
  color: #95a1a4;
  font-size: 24px;
  transition: 0.3s;
  padding: 0px 15px
}

@media screen and (max-width: 768px) {
  #footer .footernav01 li a {
    font-size: 20px;
    vertical-align: middle
  }
  #footer .footernav01 li a i {
    vertical-align: middle
  }
}

#footer .footernav01 li a:hover {
  opacity: 0.7
}

#footer .link {
  margin: 0px auto 30px;
  max-width: 300px;
  width: 100%
}

@media screen and (max-width: 768px) {
  #footer .link {
    margin: 0px auto 30px
  }
}

#footer .link a {
  line-height: 50px;
  text-align: center;
  background: #95a1a4;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
  width: 100%
}

@media screen and (max-width: 768px) {
  #footer .link a {
    font-size: 14px
  }
}

#footer .link a:hover {
  opacity: 0.7
}

#footer .footernav02 {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center
}

@media screen and (max-width: 768px) {
  #footer .footernav02 {
    display: block
  }
}

@media screen and (max-width: 768px) {
  #footer .footernav02 li {
    text-align: center;
    margin-bottom: 5px
  }
}

#footer .footernav02 li a {
  padding: 5px 10px;
  font-size: 12px;
  color: #000;
}

#footer .copy {
  text-align: center;
  font-size: 12px;
  color: #000;
}

#container {
  padding: 20px 80px;
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  #container {
    padding: 20px 15px
  }
}

.itemBlock {
  width: 92.2%;
  max-width: 1180px;
      margin-right: auto;
    margin-left: auto;
    position: relative;
}

@media screen and (max-width: 768px) {
  .itemBlock {
    width: 100%;
  }
}

.itemBlock .ttl02 {
  font-size: 16px;
  line-height: 1.48;
  text-align: center;
  color: #000
}

@media screen and (max-width: 768px) {
 .itemBlock .ttl02 {
        font-size: 1.6rem;
    line-height: 1.48;
    margin-top: 14px;
   margin-bottom: 60px;
  }
}

.itemBlock .ttl02 span {
  font-weight: 400;
}

.itemBlock .searchTxt {
  text-align: center;
  margin-bottom: 30px;
  font-size: 12px
}

.itemBlock .backBtn {
  margin: 60px auto 30px;
  max-width: 300px;
  width: 100%
}

.itemBlock .backBtn a {
  line-height: 40px;
  text-align: center;
  background: #fff;
  color: #000;
  font-size: 12px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
  width: 100%;
  border: 1px solid #95a1a4
}

.itemBlock .backBtn a:hover {
  opacity: 0.7
}
.filter_wrap>p {
    cursor: pointer;
}
.itemBlock .itemList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center
}

.itemBlock .itemList .box {
  width: 31.5%;
  margin-left: 2%;
  margin-bottom: 30px;
  box-sizing: border-box;
  padding: 1.2%;
  position: relative;
}

@media screen and (max-width: 768px) {
  .itemBlock .itemList .box {
    width: 48%;
    margin-left: 4%
  }
  .itemBlock .itemList .box:nth-child(odd) {
    margin-left: 0px
  }
}

.itemBlock .itemList .box:first-child {
  margin-left: 0px
}
@media screen and (min-width: 768px) {
.itemBlock .itemList .box:nth-child(3n+1) {
  margin-left: 0px
}
}
.itemBlock .itemList .box a {
  display: block
}

.itemBlock .itemList .box a .thum {
  overflow: hidden;
  margin-bottom: 15px
}

@media screen and (max-width: 768px) {
  .itemBlock .itemList .box a .thum {
    margin-bottom: 10px
  }
}

.itemBlock .itemList .box a .thum img {
  width: 100%;
  transition: 0.5s
}

.itemBlock .itemList .box a:hover .thum img {
  transform: scale(1.05)
}

/*MONO CSS*/
.c-product-list__image-wrap {
  
}

.c-image-wrap {
  position: relative;
  display: block;
  margin: 0 auto;
  overflow: hidden;
}

.c-image-wrap::after {
  display: block;
  padding-top: 130%;
  content: '';
}

.c-image-wrap:hover {
  background: rgba(0, 0, 0, .05);
}

.c-image-wrap--link {
  cursor: pointer;
}

.c-image-wrap--link:hover .c-image-box--main {
  opacity: 0;
}

.c-image-wrap--link:hover .c-image-box--otherimg {
  opacity: 1;
}

.c-image-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity .2s;
  word-break: break-all;
}

.c-image-box__image {
      position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: auto;
}
.c-image-box__image--noimage {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: bold;
  line-height: 40px;
  height: 40px;
  text-align: center;
  color: rgba(0, 0, 0, .5);
}

.c-image-box--main {
  opacity: 1;
}

.c-image-box--otherimg {
  opacity: 0;
}

.itemBlock .itemList .box a .txtBox {
  margin-top: 12px;
}
.itemBlock .itemList .box a .txtBox .txtInner .ttl {
  text-align: left;
      font-size: 12px;
    line-height: 1.4;
    margin-bottom: 12px;
  color: #000;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
}
.itemBlock .itemList .box a .txtBox .txtInner .ttl span {
  margin-left: 4px;
}
/*@media screen and (max-width: 768px) {
  .itemBlock .itemList .box a .txtBox .txtInner .ttl {
        width: 81.92%;
    margin: -6px auto 12px;
    font-size: 1.2rem;
  }
}*/
@media screen and (max-width: 768px) {
  .itemBlock .itemList .box a .txtBox .txtInner {
        width: 81.92%;
    margin: 0px auto;
  }
}

.itemBlock .itemList .box a .txtBox .txtInner .exp {
  text-align: center;
  font-size: 13px;
  color: #95a1a4
}

@media screen and (max-width: 768px) {
  .itemBlock .itemList .box a .txtBox .txtInner .exp {
    font-size: 10px
  }
}

.itemBlock .itemList .box a .txtBox .txtInner .price {
  text-align: left;
  font-size: 14px;
  color: #000;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
}

/*@media screen and (max-width: 768px) {
  .itemBlock .itemList .box a .txtBox .txtInner .price {
        font-size: 1.4rem;
    width: 81.92%;
    margin: 2px auto 0;
  }
}*/

.itemBlock .itemList .box a .txtBox .txtInner .price .itempropPrice {
  display: none
}

.itemBlock .itemList .box a .txtBox .txtInner .sold {
    border: 1px solid #707070;
    display: inline-block;
    font-weight: normal;
    box-sizing: border-box;
    font-size: 12px;
    padding: 4px 10px;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
}
.c-product-list__fav-item {
    width: 30px;
    position: absolute;
    top: 15px;
    right: 15px;
}

.c-product-list__fav-item button {
  display: block;
  width: 100%;
  padding: 5px 0;
  cursor: pointer;
  transition: .2s;
  text-align: center;
  color: #cfcfcf;
  border: 0;
  outline: none;
  background: transparent;
}

.c-product-list__fav-item .fav-items {
  color: #ff7373;
}

.c-product-list__fav-item svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

#container .snapBox {
  width: 100%;
  margin-bottom: 100px
}

@media screen and (max-width: 768px) {
  #container .snapBox {
    margin-bottom: 50px
  }
}

#container .snapBox .ttl02 {
  font-family: 'Montserrat', sans-serif;
  font-size: 115%;
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 40px;
  color: #95a1a4
}

@media screen and (max-width: 768px) {
  #container .snapBox .ttl02 {
    margin-bottom: 25px;
    font-size: 108%;
    word-break: keep-all
  }
}

#container .snapBox .ttl02 span {
  padding-left: 2px;
  padding-bottom: 5px;
  border-bottom: 1px solid #eee;
  display: inline-block
}

#container .snapBox ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center
}

#container .snapBox ul li {
  width: 15%;
  margin-left: 2%;
  margin-bottom: 30px
}

@media screen and (max-width: 768px) {
  #container .snapBox ul li {
    width: 32%;
    margin-left: 2%
  }
  #container .snapBox ul li:nth-child(3n+1) {
    margin-left: 0px
  }
}

#container .snapBox ul li:first-child {
  margin-left: 0px
}

#container .snapBox ul li:nth-child(6n+1) {
  margin-left: 0px
}

#container .snapBox ul li a {
  display: block
}

#container .snapBox ul li a:hover .image img {
  transform: scale(1.05)
}

#container .snapBox ul li a .image {
  display: block;
  overflow: hidden;
  margin-bottom: 15px
}

@media screen and (max-width: 768px) {
  #container .snapBox ul li a .image {
    margin-bottom: 10px
  }
}

#container .snapBox ul li a .image img {
  width: 100%;
  transition: 0.5s
}

#container .snapBox ul li a .txt {
  display: block;
  text-align: center;
  font-size: 10px
}

#container .lookBox {
  max-width: 1000px;
  margin: 0px auto 100px
}

@media screen and (max-width: 768px) {
  #container .lookBox {
    margin: 0px auto 50px
  }
}

#container .lookBox .ttl02 {
  font-family: 'Montserrat', sans-serif;
  font-size: 115%;
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 40px;
  color: #95a1a4
}

@media screen and (max-width: 768px) {
  #container .lookBox .ttl02 {
    margin-bottom: 25px;
    font-size: 108%;
    word-break: keep-all
  }
}

#container .lookBox .ttl02 span {
  padding-left: 2px;
  padding-bottom: 5px;
  border-bottom: 1px solid #eee;
  display: inline-block
}

#container .lookBox .banner {
  width: 100%
}

#container .lookBox .banner a {
  display: block;
  position: relative;
  overflow: hidden
}

#container .lookBox .banner a:hover img {
  transform: scale(1.05)
}

#container .lookBox .banner a .imgWrap {
  overflow: hidden;
  display: block
}

#container .lookBox .banner a img {
  width: 100%;
  transition: 0.5s;
  overflow: hidden
}

#container .lookBox .banner a .txt {
  display: block;
  text-align: center;
  margin-top: 15px;
  color: #95a1a4;
  font-size: 14px
}

@media screen and (max-width: 768px) {
  #container .lookBox .banner a .txt {
    font-size: 12px
  }
}

#product {
 
}

@media screen and (max-width: 768px) {
  #product {
   
  }
}

#product .breadBox {
  margin-bottom: 40px;
  width: 100%
}

#product .breadBox .bread {
  display: flex
}

#product .breadBox .bread li {
  display: block;
  vertical-align: baseline;
  font-size: 11px
}

#product .breadBox .bread li a {
  font-size: 11px;
  vertical-align: baseline;
  line-height: 20px
}

@media screen and (max-width: 768px) {
  #product .breadBox .bread li a {
    font-size: 10px
  }
}

#product .productBox {
  display: flex;
  position: relative;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 100px
}

@media screen and (max-width: 768px) {
  #product .productBox {
    display: block;
    margin-bottom: 50px
  }
}

#product .productBox .imageBox {
  text-align: center;
  width: calc(100% - 550px)
}

@media screen and (max-width: 768px) {
  #product .productBox .imageBox {
    width: 100%
  }
}

#product .productBox .imageBox .otherImage {
  width: 100%
}

@media screen and (max-width: 768px) {
  #product .productBox .imageBox .otherImage {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px
  }
}

#product .productBox .imageBox .otherImage li {
  text-align: center;
  margin-bottom: 30px
}

@media screen and (max-width: 768px) {
  #product .productBox .imageBox .otherImage li {
    margin-bottom: 10px;
    margin-right: 15px;
    width: 50px
  }
  #product .productBox .imageBox .otherImage li:first-child {
    width: 100% !important;
    margin-bottom: 15px;
    margin-right: 0px
  }
}

#product .productBox .txtBox {
    width: 41.40%;
    padding-right: 14.533%;
    box-sizing: border-box;
}
#product .productBox .txtBox .cap_side {
  top: 0;
  position: sticky;
  margin-top: -115px;
  padding-top: calc(115px + 32px);
}

@media screen and (max-width: 768px) {
  #product .productBox .txtBox {
    width: 100%;
    padding-right: 0;
  }
  #product .productBox .txtBox .cap_side {
     box-sizing: border-box;
    width: 89%;
    margin: 20px auto;
    padding-top: 0;
}
}

#product .productBox .txtBox h2 {
  font-weight: 500;
  font-family: "Times", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 28px;
  color: #000;
  line-height: 1.32;
 margin: 14px auto 52px;
}
#product .productBox .txtBox h2 span {
  font-size: 16px;
    display: inline-block;
    font-weight: normal;
    font-family: 'Noto Serif JP', serif;
   margin-left: 1em;
}

@media screen and (max-width: 768px) {
  #product .productBox .txtBox h2 {
    font-size: 2.4rem;
        line-height: 1.32;
    margin: 14px auto 18px;
  }
}

#product .productBox .txtBox .price {
  text-align: left;
  margin-bottom: 50px;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  #product .productBox .txtBox .price {
    font-size: 15px
  }
}

#product .productBox .txtBox .expBox {
  font-size: 14px;
  line-height: 1.92;
  margin-bottom: 70px
}
@media screen and (max-width: 768px) {
  #product .productBox .txtBox .expBox {
      line-height: 1.92;
    font-size: 1.4rem;
    margin-bottom: 50px;
}
}

#product .productBox .txtBox .expBox table {
  width: 100%;
  border-collapse: collapse;
  font-size: 10px;
  box-sizing: border-box;
  text-align: center
}

#product .productBox .txtBox .expBox table th {
  border: 1px solid #efefef;
  border-collapse: collapse;
  padding: 5px;
  box-sizing: border-box;
  text-align: center
}

#product .productBox .txtBox .expBox table td {
  border: 1px solid #efefef;
  border-collapse: collapse;
  padding: 5px;
  box-sizing: border-box;
  text-align: center
}

#product .productBox .txtBox .table-bordered {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px
}

#product .productBox .txtBox .table-bordered th {
  border: 1px solid #efefef;
  border-collapse: collapse;
  padding: 20px;
  font-size: 12px
}

#product .productBox .txtBox .table-bordered td {
  border: 1px solid #efefef;
  border-collapse: collapse;
  padding: 20px;
  font-size: 12px
}

#product .productBox .txtBox #option_tbl {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px
}
#product .productBox .txtBox #option_tbl input {
  accent-color: #000;
}
#product .productBox .txtBox #option_tbl th {
  border-collapse: collapse;
  padding: 10px;
  text-align: center;
  font-size: 12px;
  vertical-align: middle;
  width: 30%;
}

#product .productBox .txtBox #option_tbl td {
  border-collapse: collapse;
  padding: 10px;
  text-align: center;
  font-size: 12px;
  vertical-align: middle
}

#product .productBox .txtBox #option_tbl td label {
  display: none !important
}

#product .productBox .txtBox #option_tbl td .table_price {
  display: none
}

#product .productBox .txtBox #prd-opt-select>div {
  margin-bottom: 30px
}

#product .productBox .txtBox #prd-opt-select select {
  width: 100%;
  border: 1px solid #efefef;
  padding: 10px 10px;
  box-sizing: border-box;
  font-size: 12px;
  display: block;
  min-height: 50px
}

@media screen and (max-width: 768px) {
  #product .productBox .txtBox #prd-opt-select select {
    font-size: 16px
  }
}

#product .productBox .txtBox .optionBox {
  margin-bottom: 30px
}

#product .productBox .txtBox .optionBox select {
  width: 100%;
  border: 1px solid #9b9b9b;
  border-radius: 0px;
  padding: 10px 10px;
  box-sizing: border-box;
  font-size: 12px;
  display: block;
  min-height: 50px
}

@media screen and (max-width: 768px) {
  #product .productBox .txtBox .optionBox select {
    font-size: 16px
  }
}

#product .productBox .txtBox .productOrder>div {
  margin-bottom: 30px
}

#product .productBox .txtBox .productOrder .inputNum {
  max-width: 100%;
  padding: 10px 10px;
  box-sizing: border-box;
  width: 200px;
  border: 1px solid #efefef;
  font-size: 12px;
  min-height: 50px
}

@media screen and (max-width: 768px) {
  #product .productBox .txtBox .productOrder .inputNum {
    font-size: 16px;
    text-align: center;
    width: 100%
  }
}


#product .productBox .txtBox .btn-addcart {
    background: #000000;
    color: #fff;
   border: none;
  margin: 0 8px;
}
.btn-addcart .icon_cart {
  fill: #fff;
     width: 1.2em;
    height: 1.2em;
    margin-right: .8em;
    margin-bottom: -.2em;
}
#product .productBox .txtBox .btn-soldout {
    background: #656565;
    color: #fff;
   border: none;
  margin: 0 8px;
  border-radius: 0px;
}
@media screen and (max-width: 768px) {
  #product .productBox .txtBox .btn-addcart {
        width: 100%;
    height: 60px;
    /*line-height: 60px;*/
    font-size: 1.4rem;
    margin: 0 0 12px;
  }
    #product .productBox .txtBox .btn-soldout {
        width: 100%;
    height: 60px;
    /*line-height: 60px;*/
    font-size: 1.4rem;
    margin: 0 0 12px;
  }
}
@media screen and (min-width: 768px) {
  #product .productBox .txtBox .btn-addcart {
     width: 343px;
    height: 60px;
    line-height: 60px;
    font-size: 14px;
  }
  #product .productBox .txtBox .btn-soldout {
     width: 343px;
    height: 60px;
    font-size: 14px;
  }
}


#product .productBox .txtBox .btn-addcart:hover {
  opacity: 0.7
}

#product .productBox .txtBox .soldout {
  text-align: center;
  color: #666;
  font-size: 12px
}

#policy {
      max-width: 900px;
    margin: 0px auto 0;
    padding: 0 15px;
}

#policy h2 {
  font-size: 115%;
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 40px;
  color: #292929;
}

@media screen and (max-width: 768px) {
  #policy h2 {
    margin-bottom: 25px;
    font-size: 108%;
    word-break: keep-all
  }
}

#policy h2 span {
  padding-left: 2px;
  padding-bottom: 5px;
  border-bottom: 1px solid #eee;
  display: inline-block
}

#policy h3 {
  text-align: left;
  font-weight: bold;
  margin-bottom: 30px;
  font-size: 16px;
  color: #292929;
}

#policy .policy_box {
  margin-top: 40px
}

#policy table {
  border: 1px solid #efefef;
  border-collapse: collapse;
  margin-bottom: 40px
}

@media screen and (max-width: 768px) {
  #policy table {
    display: block;
    width: 100%
  }
}

#policy table th {
  border: 1px solid #efefef;
  border-collapse: collapse;
  padding: 15px
}

@media screen and (max-width: 768px) {
  #policy table th {
    display: block;
    width: 100%;
    box-sizing: border-box;
    font-weight: bold;
    font-size: 12px
  }
}

#policy table td {
  border: 1px solid #efefef;
  border-collapse: collapse;
  padding: 15px
}

@media screen and (max-width: 768px) {
  #policy table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
    font-size: 12px
  }
}

#policy .sk_box {
  margin-top: -80px;
  padding-top: 80px
}

.pagenav ul {
  text-align: center
}

.pagenav ul li {
  display: inline-block;
  padding: 0px 15px
}

.pagenav ul li a {
  font-size: 12px;
  border: none !important
}

.pagenav .itemNum {
  margin-top: 15px;
  text-align: center;
  font-size: 12px
}

.pagenav .itemNum span {
  padding-left: 1em;
  display: inline-block
}

#colorbox, #cboxOverlay, #cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999999999999999999;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0)
}

#cboxWrapper {
  max-width: none
}

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%
}

#cboxMiddleLeft, #cboxBottomLeft {
  clear: left
}

#cboxContent {
  position: relative
}

#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch
}

#cboxTitle {
  margin: 0
}

#cboxLoadingOverlay, #cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
  cursor: pointer
}

.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic
}

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0
}

#colorbox, #cboxContent, #cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box
}

#cboxOverlay {
  background: #fff;
  opacity: 0.9;
  filter: alpha(opacity=90)
}

#colorbox {
  outline: 0
}

#cboxTopLeft {
  width: 25px;
  height: 25px;
  background: url() no-repeat 0 0
}

#cboxTopCenter {
  height: 25px;
  background: url() repeat-x 0 -50px
}

#cboxTopRight {
  width: 25px;
  height: 25px;
  background: url() no-repeat -25px 0
}

#cboxBottomLeft {
  width: 25px;
  height: 25px;
  background: url() no-repeat 0 -25px
}

#cboxBottomCenter {
  height: 25px;
  background: url() repeat-x 0 -75px
}

#cboxBottomRight {
  width: 25px;
  height: 25px;
  background: url() no-repeat -25px -25px
}

#cboxMiddleLeft {
  width: 25px;
  background: url() repeat-y 0 0
}

#cboxMiddleRight {
  width: 25px;
  background: url() repeat-y -25px 0
}

#cboxContent {
  background: #fff;
  overflow: hidden
}

.cboxIframe {
  background: #fff
}

#cboxError {
  padding: 50px;
  border: 1px solid #ccc
}

#cboxLoadedContent {
  margin-bottom: 20px
}

#cboxTitle {
  position: absolute;
  bottom: 30px;
  left: 0;
  text-align: center;
  width: 100%;
  color: #999
}

#cboxCurrent {
  position: absolute;
  bottom: 0px;
  left: 100px;
  color: #999
}

#cboxLoadingOverlay {
  background: #fff url() no-repeat 5px 5px
}

#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none
}

#cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {
  outline: 0
}

#cboxSlideshow {
  position: absolute;
  bottom: 0px;
  right: 42px;
  color: #444
}

#cboxPrevious {
  position: absolute;
  bottom: 0px;
  left: 0;
  color: #444
}

#cboxNext {
  position: absolute;
  bottom: 0px;
  left: 63px;
  color: #444
}

#cboxClose {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  color: #444
}

.cboxIE #cboxTopLeft, .cboxIE #cboxTopCenter, .cboxIE #cboxTopRight, .cboxIE #cboxBottomLeft, .cboxIE #cboxBottomCenter, .cboxIE #cboxBottomRight, .cboxIE #cboxMiddleLeft, .cboxIE #cboxMiddleRight {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF, endColorstr=#00FFFFFF)
}

#cboxCurrent {
  display: none !important
}

#cboxTitle {
  display: none !important
}

@keyframes fade-in {
  0% {
    display: none;
    opacity: 0
  }
  1% {
    display: block;
    opacity: 0
  }
  100% {
    display: block;
    opacity: 1
  }
}

@-moz-keyframes fade-in {
  0% {
    display: none;
    opacity: 0
  }
  1% {
    display: block;
    opacity: 0
  }
  100% {
    display: block;
    opacity: 1
  }
}

.txt--red {
  color: #d56666!important;
}

.priceMem {
  text-decoration: line-through;
  /*text-align: center;*/
  text-align: left;
  margin-bottom: 6px;
  font-size: 12px;
  color: #95a1a4;
}

.off {
  color: #d56666!important;
  text-align: left;
  font-size: 12px;
  margin-top: 6px;
}

/*future CSS*/
.fs-preview-header { display: none; }

#autumn_2021 .sec_wrap {
    background: #D5C897;
}  
#autumn_2021 .sec_cap a {
    color: #fff;
    fill: #fff;
}
#aw_2022 .sec_wrap {
    background: #3B5053;
}  
#aw_2022 .sec_cap a {
    color: #fff;
    fill: #fff;
}
.feature-subtitle {
  font-size: 20px!important;
}
.insta_wrap {
  background-image: url(https://file001.shop-pro.jp/PA01506/055/img/top/sns_bg_sp.jpg)!important;
  background-size: cover!important;
}
.mv_theme {
  position: absolute;
  width: 45%;
  top: 15vh;
  left: 4%;
}
.mv_theme p {  
  color: #fff;
}
.mv_theme_head {
  font-size: 3.8vh;
  margin-bottom: 2.5vh;
}
.mv_theme_text {
   font-size: 2vh;
   line-height: 1.5;
   margin-bottom: 1.5vh;
}

@media screen and (min-width: 768px){
.dl-menuwrapper .nav_inner>ul {
  height: 500px!important;
}
   .dl-menuwrapper .nav_inner>ul {
    width: 67%!important;
}
  .nav_inner .sub_menu {
    width: 33%!important;
}
.insta_wrap {
  background-image: url(https://file001.shop-pro.jp/PA01506/055/img/top/sns_bg_pc.jpg)!important;
background-size: cover!important;
}
#aw_2022 .item_cap {
   position: relative;
}
#aw_2022 .cap_img {
   width: 100%;
   max-width: 100%;
}
#aw_2022 .sec_cap {
    position: absolute;
    bottom: 0;
}
}

@media screen and (max-width:767px) {
#aw_2022 .item_wrap {
  padding-bottom: 0px;
} 
#aw_2022 .item_cap {
   position: relative;
   padding: 0;
}
#aw_2022 .cap_img {
   width: 100%;
   max-width: 100%;
   margin: 0;
}
#aw_2022 .sec_cap {
    position: absolute;
    bottom: 4em;
    left: 18px;
}

.mv_wrap .mv_cap p {
  -webkit-line-clamp: 3!important;
   white-space: pre-line;
}
.mv_theme {
    width: 90%;
    top: 10vh;
    left: 5%;
}
.mv_theme_head {
  font-size: 3.6vh;
  margin-bottom: 2vh;
}
.mv_theme_text {
   font-size: 2.1vh;
   margin-bottom: 1.5vh;
   line-height: 1.4;
}
}