@charset "utf-8";
*
{
  margin: 0;
  padding: 0;
  text-align: center;

}

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top:0;
    right: -120%;
    width:100%;
    height: 120vh;/*ナビの高さ*/
    background:#738F98;
    /*動き*/
    transition: all 0.6s;
    width: 50%;
    height: 100%;

  
  }
  
  /*アクティブクラスがついたら位置を0に*/
  #g-nav.panelactive{
    right: 0;
  
  }
  
  
  /*ナビゲーション*/
  #g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:35%;
    left:30%;
    width: calc(100%/2);
    transform: translate(-50%,-50%);
    padding: 0;
    height: 50%;
    margin-top: 20%;
    
  }


  /*リストのレイアウト設定*/
  
  #g-nav li
  {
  
  position: relative;  
  font-size: 13px;
  display: block;
  line-height: 4;
  text-align: left;
  
  
  }
  
  #g-nav ul a{
    color: #000;
    text-decoration: none;
  }
  

  .menu-desc
  {
  
    font-size: 13px;
    line-height: 1.5;
    margin-top: 40%;
    text-align: center;
    padding-left: 10%;
    
    
  }
  
  .text-color
  {
    font-weight: normal;
    color:#fff;
    font-size: 13px;
    line-height: 0.8;
    text-align: left;
    
  }
  
  .menu-icon
  {
    width: 10%;
    position: absolute;
    top: 15%;
    left: 70%;
    float: left;
    margin-top: 20px;
  }

  .menu-icon img
  {
    width: 50px;
  }
  

  /*========= ボタンのためのCSS ===============*/
  .openbtn
  {
    position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
    top:1%;
    right: 1%;
    cursor: pointer0;
    width: 150px;
    height:150px;
  }
  
  /*×に変化*/	
  .openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    right: 8px;
    height: 3px;
    border-radius: 20px;
    
    background-color: #000;
    width: 45%;
    
  }



  /*commdity-css*/

.commodity-title
{
    font-size: 24px;
    writing-mode: horizontal-rl;
}

.commodity-text
{
    font-size: 15px;
    line-height: 2;
}


.title
{
    font-size: 15px;
    font-weight: normal;
}
.warapper
{
    font-size: 15px;
    text-align: center;
    width: 100%;
}
.warapper-item
{
    
    float: left;
    width: calc(100%/2);
    font-size: 13px;
    text-align: center;
}

.seasonitem-title
{
    font-size: 15px;
}


.season-item
{
    width: calc(100%/3);
    float: left;
    font-size: 15px;
    text-align: center;   
}


/*アコーディオン全体*/
.accordion-area{
  list-style: none;
  text-align: center;
  max-width: auto;
}

.accordion-area li{
  margin: 10px;
  background-color: #47656F;
  opacity: 0.8;
  height: calc(100%/5);
}

.accordion-area section {
border: 1px solid #ccc;
}

/*アコーディオンタイトル*/

.title {
  position: relative;/*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size:15px;
  font-weight: normal;
  transition: all .4s ease;
  text-align: left;
  
}

.accordion-area
{
  margin: 0;
}

/*アイコンの＋と×*/
.title::before,
.title::after{
  position: absolute;
  content:'';
  width: 18px;
  height: 2px;
  background-color: #333;
  
  
}
.title::before{
  top:48%;
  left: 15px;
  transform: rotate(0deg);
  
}
.title::after{    
  top:48%;
  left: 15px;
  transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.title.close::before{
transform: rotate(45deg);
}

.title.close::after{
transform: rotate(-45deg);

}

/*アコーディオンで現れるエリア*/
.box {
  display: none;/*はじめは非表示*/
  background: #f3f3f3;
  text-align: left;
  
}



/*==================================================
スライダーのためのcss
===================================*/
.slider img {
  width:100%;/*スライダー内の画像を横幅100%に*/
  height: auto;
 
  
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
  margin:0 0px;/*スライド左右の余白調整*/
  padding: 1px;
}

.copyright
{
  font-size: 10px;
}

.footer
{
    border-bottom: 20px solid;
    border-color: #47656F;
    overflow: hidden;
   
}

.footer-icon img
{
  width: 60%;
  margin-right: 80%;

}
