.inner {
  margin: 0 auto;
}
.inner:after {
  content: "";
  clear: both;
  display: block;
}
/* header */
#top-head {
  width: 100%;
  top: 0;
  position: fixed;
  margin-top: 0;
  padding: 10px 0 10px;
  z-index: 999;
  background: #FAF2EF;
  height: 100px;
  min-width: 1050px;
  border-bottom: 1px solid #D09191;
  box-sizing: border-box;
}
#top-head .inner {
  position: relative;
}
#top-head .logo {
  position: absolute;
  top: 20px;
  left: 50px;
  width: 170px;
  z-index: 3;
}
.logo img {
  width: 100%;
  height: auto;
  margin: 0 auto 0;
}
/* Fixed */
#top-head.fixed {
  margin-top: 0;
  top: 0;
  position: fixed;
  height: 100px;
  transition: top 0.65s ease-in;
  -webkit-transition: top 0.65s ease-in;
  -moz-transition: top 0.65s ease-in;
  background: #FAF2EF;
}
.h_nav {
  display: block;
  position: absolute;
  top: 30px;
  left: 270px;
  width: 100%;
}
.h_nav_list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 auto 0em;
  justify-content: flex-start;
}
.h_nav_list li {
  flex: 0 1 auto;
  justify-content: center;
  margin: 0 1em 0em;
  padding: 0;
  font-size: 1.4rem;
  letter-spacing: 2px;
}
.h_mail {
  display: inline-block;
  position: absolute;
  top: -10px;
  right: 130px;
  width: 140px;
  line-height: 1.2;
  background: #D09191;
  color: #fff;
  padding: 2em 0 1.5em;
  border-radius: 0 0 10px 10px;
  font-size: 1.1rem;
  z-index: 9999;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.h_mail img {
  width: 30px;
  margin: 0 auto 10px;
}
a.h_mail {
  color: #fff !important;
}
.h_mail:hover {
  padding: 2.2em 0 1.9em;
}
/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: -120%;
  left: 0%;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: #FAF2EF;
  /*動き*/
  transition: all 0.6s;
}
/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  top: 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%);
  width: 100%;
}
/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
}
#g-nav li a {
  text-decoration: none;
  padding: 10px;
  display: block;
  letter-spacing: 2px;
  position: relative;
}
#g-nav li a:hover {
  color: #D09191;
}
#g-nav li img {
  width: 200px;
  margin-bottom: 3em;
}
.g-nav-sns {
  margin: 2em auto;
}
.g-nav-sns a {
  margin: 0 0.8em;
}
.g-nav-sns img {
  width: 25px;
}
/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: absolute;
  z-index: 9999; /*ボタンを最前面に*/
  top: 15px;
  right: 40px;
  cursor: pointer;
  width: 60px;
  height: 60px;
}
/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 5px;
  background-color: #E5BFBF;
  width: 65%;
}
.openbtn span:nth-of-type(1) {
  top: 13px;
}
.openbtn span:nth-of-type(2) {
  top: 26px;
}
.openbtn span:nth-of-type(3) {
  top: 39px;
}
/*
.openbtn span:nth-of-type(3)::after {
  content: "menu";
  position: absolute;
  top: 5px;
  left: 0px;
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: 1.4px;
}
*/
/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
.openbtn.active span {}
.openbtn.active span:nth-of-type(1) {
  top: 14px;
  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: 26px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
/*
.openbtn.active span:nth-of-type(3)::after {
  content: "close"; 
  transform: translateY(0) rotate(-45deg);
  top: 5px;
  left: 12px;
  width: 200%;
}
*/
@media screen and (max-width: 768px) {
  .inner {
    line-height: normal;
  }
  .inner:after {
    line-height: normal;
  }
  .logo img {
    width: 100%;
    height: auto;
  }
  #top-head .logo {
    top: 23px;
    left: 15px;
    width: 120px;
  }
  #top-head, .inner {
    width: 100%;
    padding: 0;
  }
  #top-head {
    position: fixed;
    min-width: 200px;
    height: 70px;
  }
  #mobile-head {
    background: rgba(255, 255, 255, .0);
    width: 100%;
    height: 70px;
    z-index: 999;
    position: relative;
  }
  #top-head.fixed {
    height: 70px;
  }
  .h_search {
    display: none;
  }
  .h_sns {
    display: none;
  }
  .h_nav {
    display: none;
  }
  .h_nav_list {
    display: none;
  }
  .h_mail {
    position: absolute;
    top: 0px;
    right: 70px;
    width: 90px;
    line-height: 1.2;
    background: #D09191;
    color: #fff;
    padding: 1.2em 0 1em;
    border-radius: 0 0 10px 10px;
    font-size: 1.1rem;
  }
  .h_mail img {
    width: 25px;
    margin: 0 auto 5px;
  }
  a.h_mail {
    color: #fff !important;
  }
  /*========= ナビゲーションのためのCSS ===============*/
  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    top: 8px;
    right: 10px;
    width: 50px;
    height: 60px;
  }
  .openbtn span:nth-of-type(3)::after {
    top: 8px;
    left: 0px;
  }
  .openbtn.active span:nth-of-type(3)::after {
    top: 13px;
    left: 10px;
  }
}