@charset "utf-8";
/* CSS Document */

/*ヘッダー部分-------------*/
#Gmenu {
    width: 100%;
    margin: 0px auto;
    background-color: #44290e;
    height: 55px;
    z-index: 2;
    box-shadow: 0px 2px 9px 1px #0000002e;
    position: fixed;
    top: 0;
    text-align: right;
}
#sodc{
    width: 34%;
    position: absolute;
    top: 15px;
    right: 4%;
}


#nav-drawer {
  position: relative;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
#nav-open {
    display: inline-block;
    width: 35px;
    height: auto;
    vertical-align: middle;
    margin: 14px;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 4px;
    width: 30px;
    border-radius: 3px;
    background: #ffffff;
    display: block;
    content: '';
    cursor: pointer;
}
#nav-open span:before {
  bottom: -10px;
}
#nav-open span:after {
  bottom: -20px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0;/*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}

/*中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;/*最前面に*/
  width: 90%;/*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 280px;/*最大幅（調整してください）*/
  height: 100%;
  background: #000;/*背景色*/
  transition: .3s ease-in-out;/*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);/*左に隠しておく*/
}
#nav-content p{
    text-align: center;
    padding: 6% 0;
    background: #44290E;
    border-bottom: solid 1px #000000;
    font-size: 0.9em;
    letter-spacing: 0.2em;
}
#nav-content p:hover{
    transition: 0.5s;
    color:#F38901;
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: .5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);/*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}
