@charset "UTF-8";
/* --------------------------------
 * base
 * -------------------------------- */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  background-color: #fff;
  color: #434343;
  /*font: 1.4rem/1.5 '游ゴシック体','Yu Gothic',YuGothic,'ヒラギノ角ゴシック Pro','Hiragino Kaku Gothic Pro',メイリオ,Osaka,'ＭＳ Ｐゴシック','MS PGothic',Arial,Helvetica,sans-serif;*/
  font-family: 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', Arial, Helvetica, sans-serif; /*for IE9*/
  font-size: 1.4rem; /*for IE9*/
  line-height: 1.5; /*for IE9*/
  -webkit-text-size-adjust: none;
}
*, *::before, *::after {
  box-sizing: border-box;
}
/* --------------------------------
 * g-nav
 * -------------------------------- */
#g-nav.panelactive {
  position: fixed;
  z-index: 999999;
  top: 0;
  width: 100%;
  height: 100vh;
}
.circle-bg {
  position: fixed;
  z-index: 99999;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  transform: scale(0);
  right: -50px;
  top: -50px;
  transition: all .6s;
}
.circle-bg.circleactive {
  transform: scale(50);
}
/*ナビゲーションの縦スクロール*/
#g-nav-list {
  display: none;
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 5em;
}
#g-nav.panelactive #g-nav-list {
  display: block;
}
/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  top: 0px;
  right: 10px;
  z-index: 9999999; /*ボタンを最前面に*/
  cursor: pointer;
  width: 50px;
  height: 50px;
}
/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #666;
  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;
}
.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%;
}
/* --------------------------------
 * page-top
 * -------------------------------- */
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: hsla(0,0%,100%,0.80);
  border-radius: 25px;
  border: 1px solid hsla(0,0%,67%,0.80);
  width: 50px;
  height: 50px;
  color: #AAAAAA;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 3.0rem;
  transition: all 0.3s;
}
#page-top a:hover {
  background: hsla(0,0%,100%,1.00);
}
/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  z-index: 2;
  opacity: 0;
  transform: translateY(110px);
}
/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(110px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(110px);
  }
}