@charset "UTF-8";
/*ボタン*/
.openbtn {
  position: fixed;
  top: 20px;
  right: 15px;
  z-index: 9999; /*ボタンを最前面に*/
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border-radius: 20px;
  opacity: 90%;
}
/*ボタン変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #707070;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 15px;
}
.openbtn span:nth-of-type(2) {
  top: 23px;
}
.openbtn span:nth-of-type(3) {
  top: 31px;
}
/*activeクラスが付与されると線が回転して×に*/
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}
.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
.openbtn.active {
  background-color: #f2f7e8;
}
/*g-navのためのcss*/
#g-nav.panelactiv #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  overflow: auto;
}
/*ナビゲーション*/
#g-nav ul {
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/*検証用*/
nav ul {
  list-style: none;
  text-align: center;
}
nav ul li a {
  display: inherit;
  text-align: center;
  text-decoration: none;
  color: #707070;
  padding: 10px;
  font-weight: 500;
}
/*ナビが右から左に出現*/
#g-nav {
  /*全面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタートと形状*/
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background-color: #f2f7e8;
  /*動き*/
  transition: all 0.6s;
}
/*アクティブクラスがついたら位置を０に*/
#g-nav.panelactive {
  right: 0;
}
/*申込ボタン*/ /*申込ボタン*/ /*申込ボタン*/ /*申込ボタン*/ /*申込ボタン*/
.btn {
  line-height: 1.5;
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
}
.btn_wrap {
  margin-top: 3em;
  margin-bottom: 4em;
}
.btn_txt {
  display: inline-block;
  padding: 0.8em;
}
.arrow {
  font-weight: 500;
  font-size: 1.8rem;
}
.arrow::after {
  content: "";
  display: inline-block;
  margin-left: 1em;
  vertical-align: 2px;
  width: 9px;
  height: 9px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
}
a.btn {
  color: #ffffff;
  background-color: #707070;
  border-radius: 300px;
  padding: 0 1em;
}
a.btn:hover {
  color: #00c000;
  background: #f2f7e8;
  transition: all 0.3s;
}
/*//////--フワッと動かすためのCSS//////////////////////////*/
.scroll-fade {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: opacity 1s, visibility 1s, transform 1s;
}
/* フェードイン時に入るクラス */
.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}