@charset "utf-8";


/* -----------バナースライダーの設定----------- */
.bunner-box {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.bunner-img {
  width: 100%;
  height: auto;
  padding: 0 3px;
}


/*-------------- 商品詳細画面の写真 --------------*/
.vis-box {
  margin: 0 20px;
  max-width: 420px;
  width: 100%;
}

.slider {
  margin-bottom: 10px;
}

.slick-img {
  max-width: 420px;
  height: auto;
}

.vis-box img {
  width: 100%;
  height: auto;
}

.slick-prev:before, .slick-next:before {
  color: #666;
  opacity: 1;
}


/*-------------- スライドナビ --------------*/
#g-nav{
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position:fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  margin-left: -350px;
  opacity: 0;
  width:350px; /*ナビ背景の長さ*/
  height: 100vh; /*ナビの高さ*/
  background: rgb(147, 121, 77, 0.9);
  /*動き*/
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
  margin-left: 0;
  opacity: 1;
  margin-left: -45px;
}


/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width:350px; /*スクロールバーの位置*/
  height: 100vh;/*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav dl {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top:520px; /*メニューの高さ*/
  left:150px; /*メニューの表示位置*/
  transform: translate(-50%,-50%);
  margin-top: 0;
  margin-left: 0;
}

/*リストのレイアウト設定*/

#g-nav dt {
  font-size: 1.6em;
  font-weight: bold;
  padding-top: 15px;
  padding-bottom: 5px;
  color: #fff;
  border-bottom: dotted 2px #fff;
}

#g-nav dt dd{
  list-style: none;
  text-align: left;
}

#g-nav dd a{
  color: #F8EDDD;
  text-decoration: none;
  padding:10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 1.4em;
}

#g-nav dd a:hover {
  color: #FFA166;
}

/*-------------- ハンバーガーメニューボタン --------------*/
.openbtn1 {
  position:fixed;
  z-index: 9999;/*ボタンを最前面に*/
  top:18px;
  /* left: 10px; */
  cursor: pointer;
  width: 50px;
  height:50px;
}

/*×に変化*/  
.openbtn1 span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #FFA166;
  width: 45%;
}

.openbtn1 span:nth-of-type(1) {
  top:15px; 
}

.openbtn1 span:nth-of-type(2) {
  top:23px;
}

.openbtn1 span:nth-of-type(3) {
  top:31px;
}

.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}