@charset "UTF-8";
/* --------------------------------
 * base
 * -------------------------------- */
:root {
      --primary-color: #434343; /* グレー */
    }
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  background-color: #fff;
  color: var(--primary-color);
  font: 1.4rem/1.8 'Noto Sans JP', '游ゴシック体', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', Arial, Helvetica, sans-serif;
  font-weight: 300;
  -webkit-text-size-adjust: none;
}
*, *::before, *::after {
  box-sizing: border-box;
}
/* --------------------------------
 * header
 * -------------------------------- */
.header-logo-wrap {
  width: 100%;
  position: fixed;
  z-index: 999;
  background-color: #fff;
  text-align: center;
  top: 0;
  left: 0;
  box-shadow: 0px -4px 4px 3px #C0C0C0;
  transition: all 0.5s ease-out;
}
.header-logo-wrap > div {
  height: 46px; /* header h1 height: 46px; */
}
/*.header.fixed {
  top: -100px;
}*/
.header-logo {
  padding-top: 3px;
  display: block;
  max-width: 180px;
  line-height: 1.0;
  margin: 0 auto;
}
/* --------------------------------
 * 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;
}
/*ナビゲーション*/
#g-nav h2, #g-nav ul {
  opacity: 0;
  width: 95%;
  max-width: 600px;
}
#g-nav h2 {
  margin: 1em auto;
  text-align: center;
}
#g-nav h2 a {
  width: 180px;
  display: inline-block;
}
#g-nav ul {
  margin: 1em auto 2em;
}
#g-nav.panelactive h2, #g-nav.panelactive ul {
  opacity: 1;
}
#g-nav.panelactive h2 {
  animation-name: gnaviLogo;
  animation-duration: .3s;
  animation-delay: .5s; /*0.2 秒遅らせて出現*/
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes gnaviLogo {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
#g-nav.panelactive ul li {
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: .2s; /*0.2 秒遅らせて出現*/
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#g-nav-list ul:first-of-type li {
  border-bottom: 1px solid #D9DBDE;
}
#g-nav-list ul:first-of-type li a {
  color: #434343;
  text-decoration: none;
  display: block;
  text-transform: uppercase;
  transition: all .3s;
  padding: 1em .7em;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  position: relative;
}
#g-nav-list ul:first-of-type li a:hover {
  background-color: #F5F5F5;
}
#g-nav-list ul.g-nav-bnr {
  margin: 0 auto;
  max-width: 500px;
}
#g-nav-list ul.g-nav-bnr li {
  margin-bottom: 2em;
}
#g-nav-list ul.g-nav-bnr .g-nav-serch a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  background-color: #ee7985;
  padding: 1em 2em;
  position: relative;
  margin-bottom: 10px;
  border-radius: 3em;
  line-height: 1.3;
}
#g-nav-list ul.g-nav-bnr .g-nav-serch a span {
  position: absolute;
  right: 1em;
  top: 50%;
  margin-top: -.51em;
  line-height: 1;
  font-size: 2.2rem;
}
/*========= ボタンのための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%;
}
/* --------------------------------
 * #footer-nav-wrap
 * -------------------------------- */
#footer-nav-wrap {
  position: fixed;
  z-index: 99;
  width: 100%;
  bottom: 0px;
}
/*　上に上がる動き　*/
#footer-nav-wrap.UpMove {
  animation: FooterNavUp 0.5s forwards;
}
@keyframes FooterNavUp {
  from {
    opacity: 1;
    transform: translateY(0px);
  }
  to {
    opacity: 0;
    transform: translateY(150px);
  }
}
/*　下に下がる動き　*/
#footer-nav-wrap.DownMove {
  animation: FooterNavDown 0.5s forwards;
}
@keyframes FooterNavDown {
  from {
    opacity: 0;
    transform: translateY(150px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
/* --------------------------------
 * page-top
 * -------------------------------- */
.page-top {
  position: absolute;
  bottom: 10px;
  right: 15px;
}
.page-top.page-top-bnr {
  bottom: 90px;
}
.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);
}
/* --------------------------------
 * footer-bnr-wrap
 * -------------------------------- */
.bnr-flex-f-wrap {
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  z-index: 8;
}
.bnr-flex-f {
  background: #FFF9E6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 15px 0 12px;
  line-height: 1;
}
.bnr-flex-f-close {
  background-color: transparent;
  cursor: pointer;
  outline: none;
  border: none;
  width: 10%;
  max-width: 36px;
}
.bnr-flex-f-btn {
  width: 86%;
  max-width: 540px;
  padding-left: 10px;
}