@charset "UTF-8";
.site-header .site-header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 250px;
  color: #333;
}

.site-header .site-header-wrapper .site-header-logo h1 {
  line-height: 250px;
}

.site-header .site-header-wrapper .site-header-logo h1 a {
  line-height: 250px;
}

.site-header .site-header-wrapper .site-header-logo h1 a img {
  line-height: 250px;
  height: 70px;
}

.site-header .site-header-wrapper .site-header-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.site-header .site-header-wrapper .site-header-nav ul li {
  text-align: center;
  padding: 0.7rem 1.2rem;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.site-header .site-header-wrapper .site-header-nav ul li a {
  font-weight: 700;
}

.site-header .site-header-wrapper .site-header-nav ul li:hover {
  color: #ffb84b;
  font-weight: bold;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media screen and (max-width: 768px) {
  .site-header {
    height: 150px;
  }
  .site-header .site-header-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 150px;
    color: #333;
  }
  .site-header .site-header-wrapper .site-header-logo h1 {
    line-height: 150px;
  }
  .site-header .site-header-wrapper .site-header-logo h1 a {
    line-height: 150px;
  }
  .site-header .site-header-wrapper .site-header-logo h1 a img {
    line-height: 150px;
    height: 70px;
  }
  .site-header .site-header-wrapper .site-header-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .site-header .site-header-wrapper .site-header-nav ul li {
    text-align: center;
    padding: 0.7rem 1.2rem;
    font-size: 16px;
    font-weight: 500;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .site-header .site-header-wrapper .site-header-nav ul li a {
    font-weight: 700;
  }
  .site-header .site-header-wrapper .site-header-nav ul li:hover {
    color: #ffb84b;
    font-weight: bold;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
}

/*========= ナビゲーションのためのCSS ===============*/
/*アクティブになったエリア*/
/*========= ボタンのためのCSS ===============*/
.btn_menu {
  position: fixed;
  top: 13px;
  right: 13px;
  z-index: 9999;
  /*ボタンを最前面に*/
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  -webkit-box-shadow: 0 7px 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 7px 20px 0 rgba(0, 0, 0, 0.1);
}

/*×に変化*/
.btn_menu span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #666;
  width: 45%;
}

.btn_menu span:nth-of-type(1) {
  top: 15px;
}

.btn_menu span:nth-of-type(2) {
  top: 23px;
}

.btn_menu span:nth-of-type(3) {
  top: 31px;
}

.btn_menu.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.btn_menu.active span:nth-of-type(2) {
  opacity: 0;
}

.btn_menu.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

#g-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background-color: #F08700;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform: translate(300px);
          transform: translate(300px);
  z-index: 1000;
}

#g-nav.open {
  -webkit-transform: translate(0);
          transform: translate(0);
}

#g-nav ul {
  margin: 0;
  padding: 1em;
  list-style-type: none;
}

#g-nav ul li {
  padding: 1em 0;
  border-bottom: 1px solid #fff;
}

#g-nav ul li a {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #fff;
}
/*# sourceMappingURL=header.css.map */