/*! responsive-nav.js 1.0.39 by @viljamis */

.nav-collapse ul {
  box-sizing:border-box;
  margin: 0 auto;
  height:auto;
  padding: 0;
  width: 100%;
  display: block;
  list-style: none;
}

.nav-collapse li {
  box-sizing:border-box;
  width: 100%;
  display: block;
  background:rgba(28,35,33,0.3);
  border-bottom:1px solid #FFF;
}

.js .nav-collapse {
  clip: rect(0 0 0 0);
  max-height: 0;
  position: absolute;
  display: block;
  overflow: hidden;
  zoom: 1;
}

.nav-collapse.opened {
  max-height: 9999px;
}

/*.nav-toggle {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}*/



header a#toggle{
	box-sizing:border-box;
  cursor:pointer;
  margin:12px 10px 0 0;/* トグルボタンの上下位置。タイトルの大きさに合わせて調整 */
  width: 60px;/* トグルボタン幅 */
  height: 48px;/* トグルボタン高さ */
  background:rgba(0,160,160,0.95);/* トグルボタン背景色 */
  line-height: 48px;/* トグルボタンの高さ方向の配置＝ボタン高さ（60行目）と同じに */
  border-radius:5px;/* トグルボタン角丸装飾 */
      
     transition:margin ease 350ms, height ease 350ms, lineheight ease 350ms;/* 縮小するアニメーション設定 */
    -webkit-transition:margin ease 350ms, height ease 350ms, lineheight ease 350ms;
    
    z-index:99;
}
  
header a#toggle.low {
  margin:2px 10px 0 0;/* トグルボタンの上下位置。タイトルの大きさに合わせて調整 */
  width: 60px;/* トグルボタン幅 */
  height: 32px;/* トグルボタン高さ */
  background:rgba(204,204,204,0.4);/* トグルボタン背景色 */
  line-height: 32px;/* トグルボタンの高さ方向の配置＝ボタン高さ（62行目）と同じに */
  border-radius:5px;/* トグルボタン角丸装飾 */

transition:margin ease 350ms, height ease 350ms, lineheight ease 350ms;/* 縮小するアニメーション設定 */
    -webkit-transition:margin ease 350ms, height ease 350ms, lineheight ease 350ms;
}

.nav-toggle {
  /*position: fixed;*/
   -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
  text-indent: -999px;
  position: relative;
  overflow: hidden;
  float: right;
}



.nav-toggle:before {
  color:rgba(256,256,256,0.7); /* (51,51,51,0.7) トグルボタンの色設定 */
  font-family: "responsivenav", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-size: 24px;/* トグルボタンのオープン大きさ色設定 */
  text-transform: none;
  position: absolute;
  content: "≡";
  text-indent: 0;
  text-align: center;
  speak: none;
  width: 100%;
  top: 0;
  left: 0;

}

.nav-toggle.active::before {
  /* font-size: 30px;トグルボタンのクローズ大きさサイズ設定 */
  content:"x";
  /* line-height:48px;トグルボタンの高さ方向の配置＝ボタン高さ（60行目）と同じに */
  
}












@media screen and (min-width:760px) {
 
  .js .nav-collapse {
    position: relative;
  }
  .js .nav-collapse.closed {
    max-height: none;
  }
  .nav-collapse li {
  background-color:transparent;
  border-bottom:none;
}
  .nav-toggle {
    display: none;
  }
}


@media screen and (min-width:1024px){
 
 
 
 
}