@charset "utf-8";

/*========= ナビゲーションのためのCSS ===============*/
/* ---------nav折り返し--------- */
#g-nav-list {
  text-align: left;
}

/* header-nav 改行*/
header p {
  white-space: nowrap;
  display: inline-block;
}

.sp-wrap {
  display: none;
}

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

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #243d84;
  padding: 50px;
  border-radius: 10px;
  box-shadow: #fff 0px 0px 6px;
}

/*リストのレイアウト設定*/

#g-nav li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  list-style: none;
  transition: all 0.3s;
}

#g-nav li:hover {
  transform: translateY(-8px);
  opacity: 0.6;
}

#g-nav li a {
  color: #fff;
  text-decoration: none;
  padding: 15px 20px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 9999;
  /*ボタンを最前面に*/
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: #ffffffab;
  border-radius: 2px;
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #666;
  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: 32px;
}

.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%;
}

@media (max-width: 768px) {

  /* 共通*/
  /* header-nav service 改行*/
  .wrap-nav {
    margin: 0.4rem 0 0 2rem;
    display: inline-block;
  }

  #g-nav-list p {
    margin: 0rem 0 0 2rem;
  }

  /* spの時改行*/
  .sp-wrap {
    display: block;
  }
}

@media (max-width: 400px) {
  #g-nav ul {
    padding: 30px 20px;
  }
}