@charset "euc-jp";
html{
    font-size: 62.5%;
}
body{
    color: #333;
    font-family: 'Hiragino Sans','Meiryo','MS PGothic',sans-serif;
    font-weight: 300;
    font-size: 1.6rem;
    line-height: 2em;
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.12em;
}

img{
    max-width: 100%;
    height: auto;
}

ul{
    list-style: none;
}
a{
    color: #333;
    text-transform: capitalize;
    text-decoration: none;
}
ul>a{
    display: block;
}
button{
    outline: none;
}
p {
  letter-spacing: 0.12em;
}
/*-----------------

fade

-------------------*/
.fade-up{
  transform: translateY(100px);
  opacity: 0;
  transition: all 1.5s;
}
.fade-right{
    transform: translateX(100px);
    opacity: 0;
    transition: all 1.5s;
}
.fade-left{
    transform: translateX(-100px);
    opacity: 0;
    transition: all 1.5s;
}
.fade-in{
  opacity: 1.5;
  transform: translate(0);
}

/*-----------------

   utilty

-------------------*/
.text-center{
    text-align: center;
}

.font-eng {
  font-family: 'Poiret One','Hiragino Sans','Meiryo','MS PGothic',sans-serif;
  text-transform: capitalize;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.font-typos {
  font-family: 'kan48typos-std','Noto Serif JP', serif;
  letter-spacing: 0.2em;
}

.bigger{
    font-size: 2rem;
}
.more-bigger{
    font-size: 2rem;
    line-height: 1.5;
}
.capital{
    text-transform: capitalize;
}
.upper{
    text-transform: uppercase;
}
.wrapper{
    padding: 0 30px;
    display: flex;
    width: 1200px;
  	margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
}
.up{
    display: inline-block;
    transform: translateY(-4px);
}
.down-small{
    font-size: 0.7em;
    transform: translateY(2px);
}
.text-area{
    background-color: rgba(255,255,255,0.8);
    padding: 20px 40px;
}
.button{
    width: 228px;
    height: 50px;
    margin: 30px auto 0;
    background-image: url("../images/common/button-bg.jpg");
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    position: relative;
}
.button span{
    height: 50px;
    line-height: 50px;
}
.hover-layer{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255,255,255,0.5);
    opacity: 0;
    transition: all 0.5s;
}
.button:hover .hover-layer{
    opacity: 1;
}
.section{
    margin-bottom: 120px;
}
.overlay{
    background-color: rgba(0,0,0,0.50);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 300;
    display: none;
}
.overlay.clicked{
    display: block;
}
.btn-trigger-overlay{
    background-color: rgba(0,0,0,0.50);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 190;
    display: none;
}
.btn-trigger-overlay.clicked{
    display: block;
}
.fa-remove{
    cursor: pointer;
}
.fa-remove:hover{
    opacity: 0.8;
}
header li a, side li a{
    display:block;
    font-family: 'Poiret One','Hiragino Sans','Meiryo','MS PGothic',sans-serif;
}
/*-----------------

 pc-tablet-sp

-------------------*/
.img-sp{
    display: none;
}
.br-sp{
    display: none;
}
.br-tb{
    display: none;
}
.h3-tb{
    display: none;
}
.li-tb{
    display: none;
}
/*-----------------

   header

-------------------*/
header{
    width: 1200px;
  	margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 8px 30px;
    position: relative;
    z-index: 100;
}
header p{
    margin: 0;
}
h1 .logo{
    font-size: 3rem;
    font-weight: 300;
    color: #666;
    text-align: center;
    text-transform: capitalize;
  	letter-spacing: 0.05em;
    transition: all 0.5s;
}
h1 .logo:hover{
    background-color: rgba(230,230,230,0.5);
}
h1 .logo a{
    display: flex;
}

.img-bb img{
    width: 66px;
    margin-right: 10px;
}
header ul{
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    transform: translateX(-8px);
}
header ul li{
    position: relative;
    cursor: pointer;
    transition: all 0.5s;
    padding: 0 8px;
    z-index: 100;
    text-transform: capitalize;
}
header ul .no-pointer{
    cursor: default;
}

header li:hover{
    background-color: rgba(230,230,230,0.50);
}
/*日本語英語切り替え*/
.en{
    font-size: 2rem;
    font-family: 'Poiret One','Hiragino Sans','Meiryo','MS PGothic',sans-serif;
    font-weight: 700;
    text-transform: capitalize;
}

li .ja{
    display: none;
    font-family: 'kan48typos-std','Noto Serif JP', serif;
    font-weight: 400;
    line-height: 1.5;
    transition: all 0.5s;
}
li:hover>.ja{
    display: inline;
    font-size: 1.6rem;
}
li:hover>.en{
    display: none;
}
li:hover>a>.ja{
    display: inline;
    font-size: 1.6rem;
}
li:hover>a>.en{
    display: none;
}
.title .ja{
    display: none;
    transition: all 0.5s;
}
.title:hover .ja{
    display: inline;
    font-size: 1.6rem;
}
.title:hover .en{
    display: none;
}
/*//日本語英語切り替え*/


.title{
    margin-right: 12px;
}

.search{
    display: flex;
}

.down{
    position: relative;
    bottom: -3px;
    margin-right: 4px;
}

.pulldown-menu{
    font-size: 1.6rem;
    display: none;
    position: absolute;
    top: 32px;
    width: 200px;
    background-color: rgba(255,255,255,0.80);
}
.pulldown-menu li{
    margin-left: 0;
    padding-left: 24px;
    background-color: rgba(255,255,255,0.80);
}
.pulldown-submenu li:hover{
    background-color: rgba(230,230,230,0.5);
}
.pulldown-menu li:hover>.en{
    display: none;
}
.pulldown-menu li:hover>.ja{
    display: inline;
}

.pulldown-submenu{
    display: block;
    width: 200px;
    margin-left: -16px;
}
header .pulldown-submenu li{
    padding-left: 36px;
}
side .pulldown-submenu li{
    padding-left: 20px;
}

.pulldown-submenu{
    display: none;
}
.clover{
    display: none;
}
.logo-text{
    line-height: 1.24;
    width: 280px;
    display: flex;
}
.fa-shopping-cart:before{
    color: #666;
}
/*----------------------------
*
*     btn-trigger
*
-----------------------------*/
.btn-trigger{
    appearance:none;
    -webkit-appearance:none;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 20px;
    width: 40px;
    padding: 0;
    border:none;
    color: #333;
    white-space: nowrap;
    cursor: pointer;
    background-color: rgba(255,255,255,0.1);
    display: none;
    transition: all 0.5s;
}
.btn-trigger.active{
  background-color: rgba(255,255,255,1);
}
rect{
    fill: #333;
}
use{
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
}
.btn-trigger.active use:nth-of-type(1) {
    -webkit-transform: translateY(30px) rotate(-45deg);
    transform: translateY(30px) rotate(-45deg);
}

.btn-trigger.active use:nth-of-type(2) {
    opacity: 0;
}
.btn-trigger.active use:nth-of-type(3) {
    -webkit-transform: translateX(35px) translateY(-15px) rotate(45deg);
    transform: translateX(35px) translateY(-15px) rotate(45deg);
}
.btn-trigger-area{
    display: none;
}
/*-----------------

   side

-------------------*/
h2,h3{
    font-weight: 200;
    font-size: 2.8rem;
    margin: 0;
    font-family: 'Poiret One','Hiragino Sans','Meiryo','MS PGothic',sans-serif;
    text-transform: capitalize;
    font-weight: 700;
}
h3{
    font-size: 2rem;
}
hr{
    margin: 4px 0;
}

side{
    flex: 0 0 auto;
    width: 200px;
    margin-right: 30px;

}
form{
    display: flex;
    flex-wrap: wrap;
    margin-top: 16px;
    margin-bottom: 0;
}
select, button, intput, textarea{
    font-family: inherit;
    font-weight: 200;
    
}
.form-control {
    border: 0;
    outline: 1px solid #999;
    outline-offset: -1px;
    height: 32px;
    margin-bottom: 8px;
}
input{
    width: 160px;
    padding: 2px 8px;
}
select{
    width: 200px;
}
button.form-control{
    padding: 2px 4px;
    margin-left: 8px;
    width: 32px;
}
side .fa-search{
    color: #999;
}
side ul{
    padding: 0;
    margin: 0 0 20px 20px;
}
side li{
    font-size: 2rem;
    transition: all 0.5s;
    padding-left: 8px;
    cursor: pointer;
}
side li:hover{
    background-color: rgba(230,230,230,0.5);
}

side .pulldown-submenu{
    width: 180px;
    margin-left: -8px;
    margin-bottom: 0;
    background-color: rgba(255,255,255,0.8);
}

.fa-facebook-official,.fa-instagram{
    font-size: 2rem;
    color: #999;
    margin-left: 8px;
}
h3{
    transition: all 0.5s;
}
h3 .ja{
    display: none;
    font-weight: 300;
}
h3:hover .en{
    display: none;
}
h3:hover .ja{
    display: inline;
    font-size: 1.6rem;
}


/*side-banner*/
.side-banner{
    width: 100%;
    height: 182px; 
    background-size: cover;
    position: relative;
    margin-bottom: 20px;
    transition: all 0.5s;
}
.side-banner:hover{
    opacity: 0.5;
}
.side-banner .overlay-banner{
    position: absolute;
    top: 2%;
    left: 2%;
    width: 96%;
    height: 96%;
    background-color: rgba(255,255,255,0.8);
    border-radius: 50%;
}
.side-banner-blue{
    background-image: url("https://file003.shop-pro.jp/PA01441/655/images/common/side-banner-blue.jpg");
}
.side-banner-green{
    background-image: url("https://file003.shop-pro.jp/PA01441/655/images/common/side-banner-green.jpg");
}
.side-banner-yellow{
    background-image: url("https://file003.shop-pro.jp/PA01441/655/images/common/side-banner-yellow.jpg");
}
.side-banner-orange{
    background-image: url("https://file003.shop-pro.jp/PA01441/655/images/common/side-banner-orange.jpg");
}


.side-banner a{
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 182px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/*-----------------

   footer

-------------------*/
#footer{
    width: 100%;
    text-align: center;
    padding: 40px 40px 0;
    background-image: url("https://file003.shop-pro.jp/PA01441/655/images/common/footer-bg-pc.jpg");
    background-size: cover;
    background-position: bottom;
    box-sizing: border-box;
}
#footer:hover a{
    text-decoration: none;
    color: #333;
}
#footer ul{
    margin: 0;
    padding: 0;
}
#footer li{
    font-size: 2rem;
    display: block;
    padding: 0 8px;
    margin-bottom: 12px;
    width: auto;
    height: auto;
}

#footer li:last-of-type {
  margin-bottom: 0;
  padding: 20px 0;
}
#footer li:hover a{
    transition: all 0.5s;
}
#footer li:hover a{
    background-color: rgba(230,230,230,0.8);
}

#footer .ja{
    display: none;  
}
#footer li .ja{
    transition: all 0.5s;
}
#footer li:hover .ja{
    display: inline;
    font-size: 1.6rem; 
}
#footer li:hover .en{
    display: none;
}
.btn-pageTop{
    background-color: rgba(120,120,120,0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s;
    position: fixed;
    bottom: 30px;
    right: 30px;
}
.btn-pageTop:hover{
    opacity: 0.8;
}
.btn-pageTop .fa-angle-up{
    font-size: 4rem;
    color: #888;
    transform: translateY(-3px);
}


@media screen and (min-width:1640px) {
    .wrapper-inner,header{
        max-width: 1600px;
        margin: 0 auto;
    }
}
/*----------------

-768 tablet

-------------------*/

@media screen and (max-width:768px) {
    body{
        font-size: 1.4rem;
    }
    
    /*----------------

    pc-tablet-sp

    -------------------*/
    .img-pc{
        display: none;
    }
    .img-sp{
        display: block;
    }
    .br-tb{
        display: block;
    }
    .h3-tb{
        display: inline;
    }
    .li-tb{
        display: block;
    }
    /*----------------

    utility

    -------------------*/
    .more-bigger{
        font-size:  1.4rem;
    }

    /*----------------

    header

    -------------------*/
    header{
        height: 66px;
        padding: 0 20px;
        justify-content: flex-end;
        position: fixed;
        background-color: rgba(255,255,255,0.8);
        z-index: 100;
        top: 0;
    }
    header .search{
        display: none;
    }
    .header-menu li:not(:last-of-type){
        display: none;
    }
    .header-menu .cart{
        display: block;
        padding: 0;
        font-size: 3rem;
        height: 66px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .logo{
        font-size: 3rem;
        font-weight: 100;
        position: absolute;
        display: block;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    .logo-text{
        width: auto;
    }

    .wrapper{
        padding-top: 44px;
      	width: 100%;
      
    }
    /*----------------------------
	*
	*     side
	*
	-----------------------------*/
    side{
        position: fixed;
        width: 280px;
        background-color: #fff;
        top: 0;
        margin-left: -310px;
        padding: 20px;
        font-size: 1.4rem;
        z-index: 200;
        transition: all 0.5s;
        max-height: 100%;
        overflow: auto;
        box-sizing: border-box;
    }
    side.active{
        margin-left: -10px;
    }
    side ul{
        margin: 0 0 0 20px;
    }
    side li .en{
        font-size: 2rem;
    }
    side h3{
        cursor: pointer;
        transition: all 0.5s;
    }
    side h3 a{
        display: block;
        width: 100%;
        transition: all 0.5s;
    }
    
    side h3:hover{
        background-color: rgba(230,230,230,0.8);
    }
    side h3 a:hover{
        background-color: rgba(230,230,230,0.8);
    }
    .side-banner{
        display: none;
    }
    #online-shop{
        margin-bottom: 10px;
    }
    #side-group{
        display: none
    }
    #side-cathegory{
        display: none;
    }
    #side-official-shop{
        display: none;
    }
    side .pulldown-submenu{
        width: 220px;
        display: none;
    }
	/*----------------------------
	*
	*     btn-trigger
	*
	-----------------------------*/
    .btn-trigger{
        display: block;
        transition: all 0.5s;
        position: fixed;
        top: 10px;
        z-index: 290;
    }
    .btn-trigger.active{
        left: 280px;
    }
    /*----------------------------
	*
	*     footer
	*
	-----------------------------*/
    #footer{
        background-image: url("https://file003.shop-pro.jp/PA01441/655/images/common/footer-bg-sp.jpg");
    }

  
}
  /*----------------

-480 sp

-------------------*/
@media screen and (max-width:480px) {
    .br-pc{
        display: none;
    }
    .text-area{
        padding: 20px;
    }
    /*----------------------------
	*
	*     header
	*
	-----------------------------*/
    .wrapper{
        padding: 60px 10px 0;
    }
    .br-sp{
        display: block;
    }
    header{
        height: 60px;
        padding: 0 10px;
        top: 0;
    }
    .logo-text{
        font-size: 2.4rem;
        line-height: 1.25;
    }
    .btn-trigger{
        left: 10px;
    }
    .header-menu .cart{
        height: 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    /*----------------------------
	*
	*     side
	*
	-----------------------------*/
    side.active{
        margin-left: -10px;
        top: 0;
    }
}


/*----------------------------
*
*     HTMLコピペでのずれ修正
*
-----------------------------*/
#main{
  width: 1000px;
}
h1{
  margin: 0;
}
a:hover,
a:focus {
  color: #333;
  text-decoration: none;
}
side a:hover{
  color: #333;
  text-decoration: none;
}
header a:hover{
  color: #333;
  text-decoration: none;
}

input.form-control{
  box-sizing: border-box;
}
header{
  box-sizing: border-box;
  width: 1260px;
}
.wrapper{
  padding-top: 20px;
  width: 1260px;
}
/*L82に記述*/

@media screen and (max-width:768px) {
    header {
      width: 100%;
  }
    .wrapper{
      padding: 20px 10px 0;
      width: 100%;
   }
  #main {
    width: 100%;
  }
    #p-slider{
      margin-top: 66px;
    }
    .img-bb{
      width: 50px;
      margin-top: 10px;
      margin-right: 0;
    }
   .img-bb img{
     margin-right: 0;
   }
    .text-bb{
    display: none;
  }
  		.img-bb{
      display: inline;
    }
}
/*ショッピングカートのずれ*/
.fa.fa-shopping-cart{
    line-height: 32px;
}
@media screen and (max-width: 768px) {
    .fa.fa-shopping-cart{
        line-height: 66px;
    }
  .text-bb{
    white-space: nowrap;
    line-height: 1.1;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 480px) {
    .fa.fa-shopping-cart{
        line-height: 60px;
    }
    #p-slider{
      margin-top: 60px;
    }
    .img-bb{
      margin-top: 5px;
    }
}
/*アイテム名はヒラギノに統一*/
.item-unit{
    font-family: 'Hiragino Sans','Meiryo','MS PGothic',sans-serif;
    word-break: break-word;
}
/*チェックマーク*/
.checkmark img{
  width: 20px;
}
/*----------------------------
*
*     slider
*
-----------------------------*/

#p-slider{
  margin-bottom: -50px;
  display: none;
}
.slider-sp{
  display: none;
}
.slider-pc{
  position: relative;
}
.slider-sp-text{
      color: #fff;
      font-size: 12rem;
      font-weight: 300;
      font-family: 'Poiret One','Hiragino Sans','Meiryo','MS PGothic',sans-serif;
      display: block;
      text-align: center;
      position: absolute;
      top: 50%;
      transform: translateY(-55%);
      z-index: 51;
      width: 100%;
      line-height: 0.9;
      text-transform: capitalize;
      text-shadow: 0 0 10px rgba(86,86,86,0.8);
  		letter-spacing: 0;
    }
    .txt_home{
      font-size: 6rem;
    }
    .txt_bronze{
      letter-spacing: -0.01em;
    }
@media screen and (max-width: 768px) {
    .slider-pc{
      display: none;
    }
    .slider-sp{
      display: block;
    }
    .slider-sp-text{
      font-size: 10rem;
      top: 50%;
      transform: translateY(-55%);
      z-index: 51;
      width: 100%;
      line-height: 0.9;
    }
    .txt_home{
      font-size: 5rem;
      display: block;
      margin-top: 10px;
    }
    #slider-sp{
      display: block;
      margin-bottom: -50px;
    }
    #p-slider{
      display: none;
    }
    .slider-sp{
      margin-top: 66px;
      position: relative;
    }
    
    
    #slider-sp{
      margin-top: 0;
    }
    .slider-sp .bx-wrapper .bx-pager{
     display: block;
   }
}
@media screen and (max-width: 480px) {
    .slider-sp{
      margin-top: 60px;
    }
    .slider-sp-text{
      font-size: 8rem;
    }
    .txt_home{
      font-size: 4rem;
    }
}
  
/*-------------------

      slider- zoom

------------------*/
.slider-pc img{
	transform: scale(1);
	transition-duration: 4s;
}
.slider-pc .active-slide img{
	transform: scale(1.1);
}
.slider-sp img{
	transform: scale(1);
	transition-duration: 4s;
}
.slider-sp .active-slide img{
	transform: scale(1.1);
}
/*----------------------------
*
*     トップテキスト
*
-----------------------------*/
.top-text-bb{
  display: block;
  width: 40px;
  margin: 10px auto 30px;
}
.top-text{
  margin: 50px 0 45px;
  font-size:2.2rem;
  padding: 70px 0 30px;
  background-image: url("https://file003.shop-pro.jp/PA01441/655/images/common/flame_topbottom2.jpg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width:480px) {
  .top-text-bb{
    width: 30px;
  }
  .top-text{
    font-size: 1.4rem;
  }
}
/*----------------------------
*
*     トップバナー
*
-----------------------------*/
.top-banner{
  display: flex;
  margin-bottom: 20px;
}
.banner-area{
  width: 25%;
  height: 16.176vw;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s;
}
.banner-area:hover{
  opacity: 0.5;
}
.banner-area a{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
  
  
#top-banner1{
  background-image: url("https://file003.shop-pro.jp/PA01441/655/images/Home/banner-WhatIs.jpg");
  background-size: cover;
  background-position: center;
}
#top-banner2{
  background-image: url("https://file003.shop-pro.jp/PA01441/655/images/Home/banner-ShopOpen.jpg");
  background-size: cover;
  background-position: center;
}
#top-banner3{
  background-image: url("https://file003.shop-pro.jp/PA01441/655/images/Home/banner-LifeWith.jpg");
  background-size: cover;
  background-position: center;
}
#top-banner4{
  background-image: url("https://file003.shop-pro.jp/PA01441/655/images/review/review-img01.jpg");
  background-size: cover;
  background-position: center;
}
.banner-text{
  display: block;
  width: 100%;
  padding: 20px 4px;
  background-color: rgba(255,255,255,0.8);
  text-align: center;
  font-size: 2.8rem;
  box-sizing: border-box;
  line-height: 1.05;
  text-transform: capitalize;
}
.banner-text span{
  font-family: 'kan48typos-std','Noto Serif JP', serif;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.5;
  position: relative;
}

.banner-area .new-txt {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  color: #a90f0f;
  font-size: 6rem;
  font-family: 'Pinyon Script';
}

@media screen and (max-width:1240px) {
  .banner-text{
    font-size: 2.4rem;
  }
}
@media screen and (max-width:1040px) {
  .top-banner{
    flex-wrap: wrap;
  }
  .banner-area{
  width: 50%;
  height: 22.656vw;
  }
  .banner-text{
    font-size: 2rem;
  }
  .banner-text span{
    font-size: 1.4rem;
  }
  #top-banner1{
    background-image: url("https://file003.shop-pro.jp/PA01441/655/images/Home/banner-WhatIs-sp.jpg");
  }
  #top-banner2{
    background-image: url("https://file003.shop-pro.jp/PA01441/655/images/Home/banner-ShopOpen-sp.jpg");
  }
  #top-banner3{
    background-image: url("https://file003.shop-pro.jp/PA01441/655/images/Home/banner-LifeWith-sp.jpg");
  }
  #top-banner4{
    background-image: url("https://file003.shop-pro.jp/PA01441/655/images/review/review-img01.jpg");
  }
}

@media screen and (max-width:480px) {
  .banner-area{
  width: 100%;
  height: 45.31vw;
  }
  
}

/*----------------------------
*
*     サイドバナーのgoogle　map
*
-----------------------------*/
.maps-outer-side{
    position: relative;
    padding-top: 100%;
}
.maps{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 768px) {
  .maps-outer-side{
    margin-top: 10px;
  }
}
  
/*----------------------------
*
*     商品リストにhoverした時
*
-----------------------------*/
/*section*/
.item-unit{
  line-height: 1.1;
}
.item-unit>div{
  transition: all 0.5s;
}
.item-unit >div:hover{
  background-color: rgba(230,230,230,0.8);
}
.item-unit img{
  transition: all 0.5s;
}
.item-unit img:hover{
  opacity: 0.6;
}

h2 a{
  cursor: pointer;
  transition: all 0.5s;
}
h2:hover a{
  background-color: rgba(230,230,230,0.7);
}
/*----------------------------
*
*     商品一覧・詳細用
*
-----------------------------*/

.topicpath-nav li{
  transition: all 0.5s;
}
.topicpath-nav li:hover{
  background-color: rgba(230,230,230,0.7);
}
/*----------------------------
*
*     最近見た商品・お気に入り商品
*
-----------------------------*/
hr{
    margin: 4px 0 20px;
    color: #333;
    border-style: inset;
    border-width: 1px;
}
.contents-section{
  margin-bottom: 60px;
}
.section-title{
  line-height: 1.05em;
  text-transform: capitalize;
  word-break: keep-all;
}
.section-title span{
  padding-left: 20px;
  font-size: 1.6rem;
  font-weight: 300;
  font-family: 'kan48typos-std','Noto Serif JP', serif;
}

.item-unit{
  line-height: 1.1;
}

  
/*view moreボタン*/
.view-more{
  display: flex;
  justify-content: flex-end;
  margin-bottom: 40px;
}

.news-pager.view-more {
  justify-content: space-between;
}

.news-pager.view-more.latest {
  justify-content: flex-end;
}

.news-pager.view-more.between {
  justify-content: space-between;
}

.news-pager.view-more.earliest {
  justify-content: flex-start;
}


.view-more>a>span{
  font-family: 'kan48typos-std','Noto Serif JP', serif;
  display: block;
  padding: 0 4px;
  width:140px;
  border: solid 1px #888;
  text-align: center;
  transition: all 0.5s;
}

.view-more>a>span:hover{
  background-color: rgba(230,230,230,0.8);
}
.view-more .fa{
  display: inline-block;
  padding-left: 8px;
  color: #888;
}

.view-more .fa.fa-angle-double-right {
  padding-left: 8px;
}

.view-more .fa.fa-angle-double-left {
  padding-right: 8px;
}

.view-more .fa.prev{
  padding-left: 0;
  padding-right: 8px;
}
@media screen and (max-width:480px) {
  .section-title{
    text-align: center;
  }
  .section-title span{
    padding-left: 0;
  }
}
/*--------------------------
  コラム
  -----------------------*/
.column{
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0 40px;
}
.column-area{
  width: 33.333%;
  height: 14vw;
  margin-bottom: 20px;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.5s;
}
.column-area:hover{
  opacity: 0.5;
}
.column-area a{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#column1{
  background-image: url("https://file003.shop-pro.jp/PA01441/655/images/column/column-Making.jpg");
  background-size: cover;
  background-position: center;
}
#column2{
  background-image: url("https://file003.shop-pro.jp/PA01441/655/images/column/column-Pad.jpg");
  background-size: cover;
  background-position: center;
}
#column3{
  background-image: url("https://file003.shop-pro.jp/PA01441/655/images/inner/inner-img-03.jpg");
  background-size: cover;
  background-position: center;
}
#column-b3{
  background-image: url("https://file003.shop-pro.jp/PA01441/655/images/Home/banner-LifeWith-sp.jpg");
  background-size: cover;
  background-position: center;
}
#column-b1{
  background-image: url("https://file003.shop-pro.jp/PA01441/655/images/Home/banner-WhatIs-sp.jpg");
  background-size: cover;
  background-position: center;
}
.column-text{
  display: block;
  width: 100%;
  padding: 20px 4px;
  background-color: rgba(255,255,255,0.8);
  text-align: center;
  font-size: 2.4rem;
  box-sizing: border-box;
  line-height: 1.05;
  text-transform: capitalize;
}
.column-text span{
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 300;
  font-family: 'kan48typos-std','Noto Serif JP', serif;
}
@media screen and (max-width: 1140px) {
  .column-text{
    font-size: 2rem;
  }
  .column-text span{
  font-size: 1.4rem;
}
}
@media screen and (max-width: 980px) {
  .column-area{
   width: 100%;
   height: 40vw;
  }
  .column{
    flex-wrap: wrap;
  }
}

/*--------------------------
  新着情報
  -----------------------*/


.news{
  font-family: 'kan48typos-std','Noto Serif JP', serif;
  cursor: pointer;
  line-height: 1.5;
  margin-bottom: 8px;
  transition: all 0.5s;
}
.news-co{
  line-height: 1.5;
  margin-bottom: 8px;
}
.news-co .news-detail{
  font-size: 2rem;
  padding-left: 0;
  line-height: 1.2;
}
.news:first-of-type{
  margin-top: 20px;
}
.news:hover{
  background-color: rgba(230,230,230,0.8);
}
.news-list{
  display: flex;
  width: 100%;
}
.news-date{
  flex: 0 0 auto;
  width: 120px;
}
.news-cathegory{
  flex: 0 0 auto;
  width: 80px;
  height: 24px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cathegory-info{
  background-color: #fff0bf;
}
.cathegory-media{
  background-color: #ddedcf;
}
.cathegory-item{
  background-color: #f9ece4;
}
.news-detail{
  flex: 1 1 auto;
  width: 100%;
  padding-left: 20px;
}
.news-text{
  display: block;
  max-width: 600px;
  line-height: 1.3;
  margin: 30px 10px 30px;
}
@media screen and (max-width:768px) {
  .news-date{
    width: 100px;
  }
  .news-cathegory{
    width: 48px;
    height: 21px;
  }
  .news-detail{
    padding-left: 10px;
  }
}
/*----------------------------
*
*     フリーページの
*
-----------------------------*/
/*コンテンツをsp時のヘッダー分下げる。*/
@media screen and (max-width:768px) {
  .freepage-top{
    margin-top: 46px;
  }
}

@media screen and (max-width:480px) {
  .freepage-top{
    margin-top: 40px;
  }
}
 /*サイドメニューのhrのmb*/
side hr{
  margin-bottom: 0;
}
/*準備中ページ*/
.preparation{
  padding: 20px 40px;
  margin-bottom: 120px;
  background-color: rgba(230,230,230,0.5);
}
/*----------------------------
*
*    480pxで画像を分ける
*
-----------------------------*/
.img-480{
  display: none;
}
@media screen and (max-width: 480px) {
  .img-480{
   display: block;
  }
  .img-481{
   display: none;
  }
}
/*----------------------------
*
*    sale
*
-----------------------------*/
.product_discount{
  color: #ff7373;
  font-weight: bold;
}

/*----------------------------
*
*     naeco
*
-----------------------------*/

.pc-header{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 8px 30px;
    position: relative;
    z-index: 100;
}
header p{
    margin: 0;
}

/* ドロップダウンメニュー */
.dropmenu {
  *zoom: 1;
  list-style-type: none;
  position: relative;
  z-index: 1000;
}

.dropmenu li a {
  display: block;
  line-height: 1;
}

.dropmenu li:hover ul {
  display: block;
}

.dropmenu li ul {
  tansition: all 0.5s;
  display: none;
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  padding-top: 10px;
  width: 100%;
}

.dropmenu li {
  position: relative;
  margin: 0;
  padding: 0;
}

.dropmenu li ul li {
  width: 100%;
  background-color: #fff;
  padding: 0.5em 1em;
  text-align: left;
  border-bottom: 1px solid #eee;
  border-right: 1px solid #eee;
  border-left: 1px solid #eee;
}

/* colormekit.cssの上書き */
.btn:hover,
.btn:focus,
.btn:active,
.btn.active,
.btn.disabled,
.btn[disabled] {
  background-color: #ccc;
}

.btn {
  border-radius: 0;
}

.btn-xlg,
.btn-sm,
.btn-xs {
  border-radius: 0;
}

.btn-xs {
  padding-top: 0;
  padding-bottom: 0;
}

select {
  border-radius: 0;
}


/* bxSlider */
.bx-wrapper .bx-pager {
  bottom: 20px !important;
}

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

.bx-wrapper .bx-pager.bx-default-pager a {
  -moz-border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  border-radius: 0 !important;
  width: 32px !important;
  height: 4px !important;
}

/*
 * layout
 */
@media screen and (min-width: 1400px)
.wrapper, header {
    max-width: 1340px;
    margin: 0 auto;
}

address {
  margin-bottom: 0;
}

/*
 * contents
 */

#contents {
  float: right;
  padding-left: 30px;
}

#contents .topicpath-nav {
  margin-bottom: 5px;
}

#contents .topicpath-nav li {
  padding: 0;
}

#contents .topicpath-nav a {
  margin-left: 5px;
}

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


/* スマホ用ドロワーメニュー */
.drawer.open {
  left: 0;
}

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

.drawer__item--close {
  padding: 20px;
  text-align: right;
}

.drawer__item {
  border-bottom: 1px solid #e0e0e0;
}

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

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

.drawer__item__name__icon--left {
  width: 15%;
  display: table-cell;
  vertical-align: middle;
}

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

.drawer__item__name__icon--right {
  width: 10%;
  display: table-cell;
  vertical-align: middle;
  text-align: right;
}


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

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

.drawer__item--accordion .linklist__item {
  border: none;
}

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

.drawer__item--accordion .linklist__item a {
  padding: 10px 20px;
}

.linklist__item__text {
  width: 80%;
  height: auto;
}

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

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

/* スマホ */
.toolbar {
  border-bottom: solid 1px #e0e0e0;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
}

.toolbar__inner {
  margin: 0;
  padding: 0;
}

.toolbar__item {
  list-style: none;
  text-align: center;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.toolbar__item--menu {
  float: left;
}

.toolbar__item--menu span {
  margin: 0 0 0 8px;
  vertical-align: middle;
  font-size: 85.71429%;
  font-weight: bold;
}

.toolbar__item--cart {
  float: right;
}

.toolbar__item a {
  color: #212121;
  padding: 0 20px;
  height: 60px;
  display: table;
}

.u-wrap {
  text-align: center;
  vertical-align: middle;
  zoom: 1;
}

.toolbar__item a .u-wrap {
  display: table-cell;
}

.toolbar__item a i {
  vertical-align: middle;
}

.toolbar__item--cart .toolbar__item__count {
  font-weight: bold;
  margin: 0 0 0 4px;
  vertical-align: middle;
}

.section--shopname {
  padding-top: 65px;
}

.section__inner {
  padding: 10px;
}

.section__inner form,
.drawer__item__name form {
  margin-bottom: 0;
}

.shopname {
  text-align: center;
  margin: 0;
  font-size: 114.28571%;
}

.shopname a {
  font-weight: bold;
  color: #212121;
  display: block;
}



input[type="text"].keyword {
  font-size: 85.71429%;
  background: #fff;
  color: #212121;
  padding: 0 10px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #ccc;
}

input[type="text"].keyword--small {
  width: 72%;
  height: 44px;
}

.button--blue {
  background: #333;
  color: #fff;
}

.button--small {
  font-size: 100%;
  padding: 15px 0;
  width: 25%;
  line-height: 1;
  border: none;
}

.section--search .button {
  float: right;
}

/*
 * temp
 */

/* font */
.txt_l {
  text-align: left;
}

.txt_c {
  text-align: center;
}

.txt_r {
  text-align: right;
}

.txt_fwn {
  font-weight: normal;
}

.txt_fwb {
  font-weight: bold;
}

.txt_10 {
  font-size: 10px;
}

.txt_12 {
  font-size: 12px;
}

.txt_14 {
  font-size: 14px;
}

.txt_16 {
  font-size: 16px;
}

.txt_18 {
  font-size: 18px;
}

.txt_20 {
  font-size: 20px;
}

.txt_24 {
  font-size: 24px;
}

.txt_28 {
  font-size: 28px;
}
.txt_36{
  font-size: 3.6rem;
}

.txt_c_333 {
  color: #333;
}

/* background */
.bgc_gray {
  background-color: #f1f1f1;
}

/* margin */
.mar_auto {
  margin: 0 auto;
}

.mar_0 {
  margin: 0;
}

.mar_t_0 {
  margin-top: 0;
}

.mar_r_0 {
  margin-right: 0;
}

.mar_b_0 {
  margin-bottom: 0;
}

.mar_l_0 {
  margin-left: 0;
}

.mar_5 {
  margin: 5px;
}

.mar_t_5 {
  margin-top: 5px;
}

.mar_r_5 {
  margin-right: 5px;
}

.mar_b_5 {
  margin-bottom: 5px;
}

.mar_l_5 {
  margin-left: 5px;
}

.mar_t_10 {
  margin-top: 10px;
}

.mar_r_10 {
  margin-right: 10px;
}

.mar_b_10 {
  margin-bottom: 10px;
}

.mar_l_10 {
  margin-left: 10px;
}

.mar_t_20 {
  margin-top: 20px;
}

.mar_r_20 {
  margin-right: 20px;
}

.mar_b_20 {
  margin-bottom: 20px;
}

.mar_l_20 {
  margin-left: 20px;
}

.mar_t_30 {
  margin-top: 30px;
}

.mar_r_30 {
  margin-right: 30px;
}

.mar_b_30 {
  margin-bottom: 30px;
}

.mar_l_30 {
  margin-left: 30px;
}

.mar_t_50 {
  margin-top: 50px;
}

.mar_r_50 {
  margin-right: 50px;
}

.mar_b_50 {
  margin-bottom: 50px;
}

.mar_l_50 {
  margin-left: 50px;
}

/* padding */
.pad_v_10 {
  padding: 10px 0;
}

.pad_v_20 {
  padding: 20px 0;
}

.pad_v_30 {
  padding: 30px 0;
}

.pad_0 {
  padding: 0;
}

.pad_t_0 {
  padding-top: 0;
}

.pad_r_0 {
  padding-right: 0;
}

.pad_b_0 {
  padding-bottom: 0;
}

.pad_l_0 {
  padding-left: 0;
}

.pad_5 {
  padding: 5px;
}

.pad_t_5 {
  padding-top: 5px;
}

.pad_r_5 {
  padding-right: 5px;
}

.pad_b_5 {
  padding-bottom: 5px;
}

.pad_l_5 {
  padding-left: 5px;
}

.pad_10 {
  padding: 10px;
}

.pad_t_10 {
  padding-top: 10px;
}

.pad_r_10 {
  padding-right: 10px;
}

.pad_b_10 {
  padding-bottom: 10px;
}

.pad_l_10 {
  padding-left: 10px;
}

.pad_20 {
  padding: 20px;
}

.pad_t_20 {
  padding-top: 20px;
}

.pad_r_20 {
  padding-right: 20px;
}

.pad_b_20 {
  padding-bottom: 20px;
}

.pad_l_20 {
  padding-left: 20px;
}

.pad_30 {
  padding: 30px
}

.pad_t_30 {
  padding-top: 30px;
}

.pad_r_30 {
  padding-right: 30px;
}

.pad_b_30 {
  padding-bottom: 30px;
}

.pad_l_30 {
  padding-left: 30px;
}

/* border */
.bor_t_1 {
  border-top: 1px solid #eee;
}

.bor_r_1 {
  border-right: 1px solid #eee;
}

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

.bor_l_1 {
  border-left: 1px solid #eee;
}

/* vertical align */
.va-10 {
  vertical-align: -10%;
}

.va-20 {
  vertical-align: -20%;
}

.va-30 {
  vertical-align: -30%;
}

.va-35 {
  vertical-align: -35%;
}

.va-40 {
  vertical-align: -40%;
}

@media (max-width: 980px) {

  /* ~980px */
  #base_gmoWrapp,
  #gmo_CMSPbar {
    overflow: hidden;
    min-width: 100% !important;
    width: 100% !important;
  }
}

@media (max-width: 768px) {

  /* ~768px */
  #contents {
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  /* ~480px */
}



/*
 * icons
 */
.icon-user {
  background-position: -208px 0px;
}

.icon-lg-b.icon-user {
  background-position: -312px 0px;
}

.icon-adduser {
  background-position: -240px 0px;
}

.icon-lg-b.icon-adduser {
  background-position: -360px 0px;
}

.icon-login {
  background-position: -48px -80px;
}

.icon-lg-b.icon-login {
  background-position: -72px -120px;
}

.icon-logout {
  background-position: -32px -80px;
}

.icon-lg-b.icon-logout {
  background-position: -48px -120px;
}

.icon-home {
  background-position: -176px -16px;
}

.icon-lg-b.icon-home {
  background-position: -264px -24px;
}

.icon-mail {
  background-position: -64px 0px;
}

.icon-lg-b.icon-mail {
  background-position: -96px 0px;
}

.icon-pencil {
  background-position: -96px 0px;
}

.icon-lg-b.icon-pencil {
  background-position: -144px 0px;
}

.icon-help {
  background-position: -272px -80px;
}

.icon-lg-b.icon-help {
  background-position: -408px -120px;
}

.icon-cart {
  background-position: -176px -64px;
}

.icon-lg-b.icon-cart {
  background-position: -264px -96px;
}

.icon-search {
  background-position: -208px -16px;
}

.icon-lg-b.icon-search {
  background-position: -312px -24px;
}

.icon-chevron_up {
  background-position: -0px -144px;
}

.icon-lg-b.icon-chevron_up {
  background-position: -0px -216px;
}

.icon-chevron_down {
  background-position: -352px -128px;
}

.icon-lg-b.icon-chevron_down {
  background-position: -528px -192px;
}

.icon-close {
  background-position: -80px -80px;
}

.icon-lg-b.icon-close {
  background-position: -120px -120px;
}

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

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

.icon-b {
  background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon16_b.png);
}

.icon-w {
  background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon16_w.png);
}

.icon-lg-b {
  background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_b.png);
}

.icon-lg-w {
  background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_w.png);
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min--moz-device-pixel-ratio: 2),
only screen and (-o-min-device-pixel-ratio: 2 / 1),
only screen and (min-device-pixel-ratio: 2),
only screen and (min-resolution: 192dpi),
only screen and (min-resolution: 2dppx) {

  .icon-b,
  .icon-w {
    -webkit-background-size: 368px 320px;
    background-size: 368px 320px;
  }

  .icon-lg-b,
  .icon-lg-w {
    -webkit-background-size: 552px 480px;
    background-size: 552px 480px;
  }

  .icon-b {
    background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon16_2x_b.png);
  }

  .icon-w {
    background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon16_2x_w.png);
  }

  .icon-lg-b {
    background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_2x_b.png);
  }

  .icon-lg-w {
    background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_2x_w.png);
  }
}

@media (max-width: 768px) {
  .icon-b {
    background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_b.png);
  }

  .icon-w {
    background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_w.png);
  }
}

@media only screen and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2),
only screen and (max-width: 768px) and (min--moz-device-pixel-ratio: 2),
only screen and (max-width: 768px) and (-o-min-device-pixel-ratio: 2 / 1),
only screen and (max-width: 768px) and (min-device-pixel-ratio: 2),
only screen and (max-width: 768px) and (min-resolution: 192dpi),
only screen and (max-width: 768px) and (min-resolution: 2dppx) {
  .icon-b {
    background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_2x_b.png);
  }

  .icon-w {
    background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_2x_w.png);
  }
}

span:hover{
  text-decoration: none;
}

.p-page__wrap .p-shop__header {
    width: 100% !important;
}