@charset "utf-8";

/* 画面遷移のあと現れるコンテンツ設定 */
/******************************************
クリックしたらナビ背景コンテンツがぼかされる＊IE非対応
******************************************/
/* ぼかしのためのcss */
.mainblur {
  filter: blur(8px);
}
/*========== ナビゲーションのためのcss ==========*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ */
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: rgba(193, 209, 219, 0.8); /*背景を少し透過させる*/
  /* 動き */
  transition: all 0.3s;
}
/*アクティブクラスがついたら透過なしにして最前面へ */
#g-nav.panelactive {
  opacity: 1;
  z-index: 999;
}
/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  poisition: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
/*ナビゲーション*/
#g-nav ul {
  display: none; /*はじめは非表示*/
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#g-nav.panelactive ul {
  display: block;
}
#g-nav li {
  list-style: none;
  text-align: center;
}
#g-nav li a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  display: block;
  letter-spacing: 0.5em;
  font-weight: bold;
}
/***************************************************
ボタン：2本線がxに
****************************************************/
/*ボタン外側*/
.openbtn {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all .4s; /*アニメーションの設定*/
  position: absolute;
  left: 10px;
  height: 2px;
  background-color: #666;
}
.openbtn span:nth-of-type(1) {
  top: 22px;
  width: 45%;
}
.openbtn span:nth-of-type(2) {
  top: 29px;
  width: 30%;
}
.openbtn span:nth-of-type(3) {
  top: 36px;
  height: 0;
  font-size: 0.8em;
  letter-spacing: 0.1em;
}
/*activeクラスが付与されると線が回転して×に*/
.openbtn.active span:nth-of-type(1) {
  top: 20px;
  left: 16px;
  transform: translateY(6px) rotate(-45deg);
  width: 35%;
}
.openbtn.active span:nth-of-type(2) {
  top: 32px;
  left: 16px;
  transform: translateY(-6px) rotate(45deg);
  width: 35%;
}