/* header */
#top-head {
  width: 100%;
  top: 0;
  position: fixed;
  margin-top: 0;
  padding: 10px 0 10px;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.0);
  height: 60px;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.0);
}
#top-head .logo {
  position: absolute;
  top: 15px;
  left: 50px;
  width: 100px;
  z-index: 3;
}
.logo img {
  width: 100%;
  height: auto;
}
/* Fixed */
#top-head.fixed {
  transition: top 0.65s ease-in;
  -webkit-transition: top 0.65s ease-in;
  -moz-transition: top 0.65s ease-in;
  background: rgba(255, 255, 255, 0.8);
}
/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 9998;
  /*ナビのスタート位置と形状*/
  top: -120%;
  left: 0%;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: #F5F0ED;
  /*動き*/
  transition: all 0.6s;
}
/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  top: 0;
}
/*ナビゲーションの縦スクロール*/
#g-nav.panelactive .gnav-wrap_bg {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: calc(100vh - 10em); /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 5em 0;
  background: linear-gradient(90deg, #EDEDED 0%, #EDEDED 29.7%, #fff 29.7%, #fff 100%);
}
/*ナビゲーション*/
.gnav-wrap {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
  flex-direction: row-reverse;
  text-align: left;
	align-items: center;
}
.gnav-wrapl {
  width: 15%;
  padding: 0em 5% 0em 10%;
}
.gnav-wrapr {
  width: 55%;
  padding: 0em 10% 0em 5%;
  background: #fff;
}
.gnav-wrapr_ttl {
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 2px;
}
.gnav-wrapr_prd {}
.gnav-wrapr_prd li.work {
  background: #EDF5F5;
}
.gnav-wrapr_prd li {
  margin: 1em auto 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
  align-items: center;
  background: #F5F0ED;
}
.gnav-wrapr_prd_img {
  width: 50%;
}
.gnav-wrapr_prd_txt {
  width: calc(50% - 4em);
  padding: 0 2em;
}
.gnav-wrapr_prd_txt p {
  margin: 0 auto 1em;
}
.gnav-wrapr_prd_txt p span {
  display: block;
  color: #D18A79;
  font-weight: bold;
  font-size: 2.0rem;
  margin: 0 auto 0.5em;
}
.gnav-wrapr_prd_txt p span.work {
  color: #51B19A;
}
.gnav-wrap_logo {
  width: 120px;
}
.gnav-wrapl_list {
  position: relative;
  margin: 2em auto 1em;
}
.gnav-wrapl_list li {
  line-height: 1.5;
  padding: 0.7em 0 0.7em 20px;
  list-style-type: none !important;
  font-weight: bold;
}
.gnav-wrapl_list li:before {
  font-family: FontAwesome;
  content: "\f0da"; /*アイコンの種類*/
  position: absolute;
  left: 0em; /*左端からのアイコンまでの距離*/
  color: #333; /*アイコン色*/
}
.gnav-wrapl_sublist {
  position: relative;
}
.gnav-wrapl_sublist li {
  line-height: 1.5;
  padding: 0.7em 0 0.7em 20px;
  list-style-type: none !important;
  font-size: 1.2rem;
}
.gnav-wrapl_sublist li:before {
  font-family: FontAwesome;
  content: "\f068"; /*アイコンの種類*/
  position: absolute;
  left: 0em; /*左端からのアイコンまでの距離*/
  color: #333; /*アイコン色*/
}


.gnav-wrap_tel{
	font-size: 1.2rem;
	margin: 2em auto 1em;
}

.gnav-wrap_tel span{
	display: block;
	font-size: 2.3rem;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: absolute;
  z-index: 9999; /*ボタンを最前面に*/
  top: 12px;
  right: 50px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  right: 14px;
  height: 2px;
  border-radius: 5px;
  background-color: #333;
  width: 65%;
}
.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クラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
.openbtn.active span {}
.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%;
}
.h_nav {
  position: absolute;
  top: 0;
  right: 290px;
  padding: 20px 10px 0;
  height: 45px;
  background: #000;
  border-radius: 0 0 30px 30px;
}
.h_nav_list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0px auto 0em;
  justify-content: flex-start;
}
.h_nav_list li {
  flex: 0 1 auto;
  justify-content: center;
  padding: 0 20px 0em;
  font-size: 1.4rem;
  position: relative;
}
.h_nav_list li a {
  color: #fff;
}
.h_nav_list li a:hover {
  color: #F5F0ED;
}
.h_login {
  position: absolute;
  top: 7px;
  right: 190px;
  width: 80px;
  font-size: 2rem;
  z-index: 9999;
}
.h_login span {
  display: block;
  font-size: 1.2rem;
}
.h_cart {
  position: absolute;
  top: 7px;
  right: 110px;
  width: 80px;
  font-size: 2rem;
  z-index: 9999;
}
.h_cart span {
  display: block;
  font-size: 1.2rem;
}
@media screen and (max-width: 1180px) {
  .h_nav {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #top-head .logo {
    top: 15px;
    width: 80px;
    left: 15px;
  }
  #top-head {
    position: fixed;
    min-width: 200px;
    padding: 10px 0;
    height: 60px;
  }
  #top-head.fixed {
    background: rgba(255, 255, 255, 0.8);
  }
  .h_nav {
    display: none;
  }
  /*========= ナビゲーションのためのCSS ===============*/
  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    top: 10px;
    right: 10px;
  }
  /*========= ナビゲーションのためのCSS ===============*/
  #g-nav {
    top: -200%;
  }
  .h_login {
    position: absolute;
    top: 18px;
    right: 120px;
    width: 30px;
  }
  .h_login span {
    display: none;
  }
  .h_cart {
    position: absolute;
    top: 18px;
    right: 80px;
    width: 30px;
  }
  .h_cart span {
    display: none;
  }
  #g-nav.panelactive .gnav-wrap_bg {
    padding: 3em 0 5em;
    background: linear-gradient(180deg, #fff 0%, #fff 90%, #ededed 90%, #ededed 100%);
  }
  .gnav-wrap {
    flex-direction: row;
  }
  .gnav-wrapl {
    width: 90%;
    padding: 2em 10% 0em 10%;
    background: #ededed;
  }
  .gnav-wrapr {
    width: 90%;
    padding: 0em 5% 3em 5%;
    background: #fff;
  }
  .gnav-wrapr_ttl {
    font-size: 1.6rem;
    letter-spacing: 2px;
  }
  .gnav-wrapr_prd {}
  .gnav-wrapr_prd li {}
  .gnav-wrapr_prd_img {
    width: 48%;
  }
  .gnav-wrapr_prd_txt {
    width: calc(52% - 3em);
    padding: 0 1.5em;
  }
  .gnav-wrapr_prd_txt p {
    margin: 0 auto 0.5em;
    font-size: 1.2rem;
  }
  .gnav-wrapr_prd_txt p span {
    font-size: 1.6rem;
    margin: 0 auto 0.2em;
  }
  .gnav-wrapr_prd_txt a {
    font-size: 1.2rem;
  }
  .gnav-wrap_logo {
    width: 90px;
  }
  .gnav-wrapl_list {
    margin: 1em auto;
    font-size: 1.6rem;
  }
  .gnav-wrapl_list li {
    padding: 0.5em 0 0.5em 15px;
  }
	
	.gnav-wrap_tel{
	font-size: 1.2rem;
	margin: 1em auto 1em;
}
}