/* header */
#top-head {
  width: 100%;
  top: 0;
  position: fixed;
  margin-top: 0;
  z-index: 9999;
  height: 120px;
  text-align: center;
  border-top: #fabe00 5px solid;
}
#top-head img {
  width: 100%;
  height: auto;
}
#top-head::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 1);
}
#top-head .logo {
  position: absolute;
  top: 5px;
  left: 30px;
  width: 350px;
  z-index: 3;
}
#top-head .logo h1 {
  text-align: left;
  font-size: 11px;
}
#top-head .logo img {
  display: block;
  width: 250px;
  margin: -1em auto 0 0;
}
.top-head_wrap {
  position: relative;
  width: 100%;
  height: 120px;
}
.h_nav {
  position: absolute;
  bottom: 20px;
  right: 110px;
  z-index: 4;
}
.h_nav_list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0px auto 0em;
  justify-content: flex-end;
  position: relative;
}
.h_nav_list > li {
  flex: 0 1 auto;
  justify-content: center;
  padding: 0px 0px 0px 35px;
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: bold;
  position: relative;
}
.h_nav_list > li a:hover {
  text-decoration: none;
}
/*2階層目を持つliの矢印の設定*/
.h_nav_list > li.has-child {
  padding: 0 15px 0 25px;
}
.h_nav_list > li.has-child > a::before {
  content: '';
  position: absolute;
  right: 0px;
  top: 5px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(135deg);
}
.h_nav_list ul {
  display: block;
}
.h_nav_list li {
  position: relative;
}
.h_nav_list li.has-child ul {
  position: absolute;
  left: 60%;
  transform: translate(-50%, 0%);
  top: 41px;
  z-index: 10;
  background: #fabe00;
  width: 280px;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
  border-radius: 0 0 5px 5px;
}
/*hoverしたら表示*/
.h_nav_list li.has-child:hover > ul, .h_nav_list li.has-child ul li:hover > ul, .h_nav_list li.has-child:active > ul, .h_nav_list li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}
/*ナビゲーションaタグの形状*/
.h_nav_list li.has-child ul li {
  line-height: 50px;
  border-bottom: 1px solid #fff;
}
.h_nav_list li.has-child ul li:last-child {
  border-bottom: none;
}
.h_nav_list li.has-child ul li a {
  color: #fff;
  display: block;
}
.h_nav_list li.has-child ul li:last-child > a {
  border-bottom: none;
}
.h_nav_list li.has-child ul li a:hover, .h_nav_list li.has-child ul li a:active {
  color: #333;
  text-decoration: none;
}
.h_tel {
  position: absolute;
  top: 5px;
  right: 300px;
  width: 660px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0em auto 0em;
  justify-content: space-between;
}
.h_tel li {
  width: 220px;
}
.h_contact {
  position: absolute;
  top: 0;
  right: 110px;
  width: 180px;
}
.h_contact a {
  display: block;
  padding: 20px 0;
  background: #fabe00;
  color: #fff !important;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 15px;
  border-radius: 0 0 10px 10px;
  transition: ease .2s;
}
.h_contact a:hover {
  text-decoration: none;
  background: #000;
}
.h_contact i {
  margin: 0 5px 0 0;
}
/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: absolute;
  z-index: 9999; /*ボタンを最前面に*/
  bottom: 16px;
  right: 25px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  right: 25%;
  height: 2px;
  border-radius: 5px;
  background-color: #000;
  width: 70%;
}
.openbtn span:nth-of-type(1) {
  top: 15px;
}
.openbtn span:nth-of-type(2) {
  top: 25px;
}
.openbtn span:nth-of-type(3) {
  top: 35px;
}
/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
.openbtn.active {}
.openbtn.active span {
  background-color: #F9BF3A
}
.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) {
  display: none;
}
.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
@media screen and (max-width: 1290px) {
  .h_tel {
    display: none;
  }
}
@media screen and (max-width: 1100px) {
  .h_nav {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #top-head {
    position: fixed;
    min-width: 200px;
    height: 70px;
  }
  #top-head .logo {
    top: 18px;
    left: 10px;
    width: 300px;
  }
  #top-head .logo img {
    width: 170px;
  }
  #top-head .logo h1 {
    display: none;
  }
  .top-head_wrap {
    height: 70px;
  }
  .h_nav {
    display: none;
  }
  .h_tel {
    display: none;
  }
  .h_contact {
    right: 80px;
    width: 30px;
  }
  .h_contact a {
    padding: 24px 0 0px;
    color: #333 !important;
    background: none;
  }
  .h_contact span {
    display: none;
  }
  .h_contact i {
    margin: 0;
    font-size: 25px;
  }
  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    bottom: auto;
    top: 10px;
    right: 10px;
  }
}
@media (max-height: 970px) {
  /* 高さ970px以下の場合 */
  .gnav_wrap {}
}