#header_top_wrapper {
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
  width: 100%;
  background: #fff;
  z-index: 1;
  font-family: serif;
}
#header_top_wrapper .inner {
  padding: 0 35px;
}

#header_top {
  color: #4d4d4d;
  height: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#header_top .hdr {
  margin: 0;
}
#header_top .hdr .logo {
  width: 90px;
  vertical-align: middle;
  margin-right: 15px;
}
#header_top .hdr a {
  text-decoration: none;
  color: inherit;
  font-size: 22px;
}

#header_top {
  position: relative;
}
#header_top #gnav_top {
  display: none;
  max-height: calc(100vh - 140px - 130px);
  overflow: auto;
  top: 140px;
  left: -35px;
  width: calc(100% + 70px);
  background: #fde6ec;
  padding: 35px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  font-size: 40px;
  line-height: 50px;
  position: absolute;
  z-index: 5;
}
#header_top #gnav_top ul {
  padding: 0;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  display: table;
}
#header_top #gnav_top ul li {
  padding: 20px 0;
}
#header_top #gnav_top a {
  text-decoration: none;
  color: inherit;
}
#header_top .drawer {
  position: absolute;
  right: calc((100% - 760px) / 2);
  top: 0;
}
#header_top .drawer_open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 140px;
  width: 140px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 100;
  cursor: pointer;
  background: #f796aa;
  border-radius: 50%;
  height: 100px;
  width: 100px;
  margin-top: 20px;
  margin-right: 20px;
}
#header_top .drawer_open span,
#header_top .drawer_open span:before,
#header_top .drawer_open span:after {
  content: "";
  display: block;
  height: 5px;
  width: 50px;
  background: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: absolute;
}
#header_top .drawer_open span:before {
  bottom: 15px;
}
#header_top .drawer_open span:after {
  top: 15px;
}
#header_top .drawer_open.opened span {
  background: rgba(255, 255, 255, 0);
}
#header_top .drawer_open.opened span::before {
  bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#header_top .drawer_open.opened span::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}