@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #333; /* RGB */
  font-family: "小塚ゴシックPr6N", Kozuka Gothic Pr6N, "小塚ゴシック", "kozukagothicpr6N", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
  margin: 0;
  background-color: #FFEDED;
}
.body-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
h1 {
  margin: 0;
}
section h2 {
  font-size: 2.5rem;
}
a:hover {
  opacity: 0.5;
}
a {
  text-decoration: none;
}
p {
  margin: 0;
}
h2 {
  position: relative;
  padding: 0.5rem;
  text-align: center;
}
h2 span {
  font-size: 18px;
  font-size: 1.8rem;
  display: block;
}
h2:before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);
  width: 60px;
  height: 5px;
  content: '';
  border-radius: 3px;
  background: #70B383;
  box-shadow: 0px 2px 6px 0px rgb(0 0 0 / 10%);
}
.break::before {
  content: "\A";
  white-space: pre;
}
@media (min-width: 769px) {
  .break::before {
    content: "";
  }
}
/*じわっと出てくるテキストの動き*/
.blur {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
.blurTrigger {
  opacity: 0;
}
/*==================================================
　5-2-6 3本線が回転して×に
===================================*/
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn6 {
  position: fixed; /*ボタン内側の基点となるためrelativeを指定*/
  top: 10px;
  right: 10px;
  background: rgba(255,237,237,0.7);
  cursor: pointer;
  width: 65px;
  height: 100px;
  border-radius: 5px;
}
/*ボタン内側*/
.openbtn6 span {
  display: inline-block;
  transition: all .4s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #333;
}
/*========= ナビゲーションのためのCSS ===============*/
/*ナビゲーション*/
@media (max-width: 768px) {
  #g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: -150%;
    left: 0;
    width: 100%;
    min-height: 100vh; /* カスタムプロパティ未対応ブラウザ用のフォールバック */
    min-height: calc(var(--vh, 1vh) * 100);
    background: #FFEDED;
    /*動き*/
    transition: all 0.6s;
  }
  /*アクティブクラスがついたら位置を0に*/
  #g-nav.panelactive {
    top: 0;
  }
  #g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
/*========= ボタンのためのCSS ===============*/
.openbtn6 {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 65px;
  height: 100px;
}
/*×に変化*/
.openbtn6 span:nth-of-type(1) {
  top: 35px;
  width: 45%;
}
.openbtn6 span:nth-of-type(2) {
  top: 43px;
  width: 35%;
}
.openbtn6 span:nth-of-type(3) {
  top: 51px;
  width: 20%;
}
/*activeクラスが付与されると線が回転して×になる*/
.openbtn6.active span:nth-of-type(1) {
  top: 35px;
  left: 18px;
  transform: translateY(6px) rotate(-135deg);
  width: 30%;
}
.openbtn6.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn6.active span:nth-of-type(3) {
  top: 47px;
  left: 18px;
  transform: translateY(-6px) rotate(135deg);
  width: 30%;
}
/*光るエフェクト*/
.glowAnime span {
  opacity: 0;
}
/*アニメーションで透過を0から1に変化させtext-shadowをつける*/
.glowAnime.glow span {
  animation: glow_anime_on 1s ease-out forwards;
}
@keyframes glow_anime_on {
  0% {
    opacity: 0;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 10px #fff, 0 0 15px #fff;
  }
  100% {
    opacity: 1;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }
}
