@charset "utf-8";
/* CSS Document */

@import url("normalize.css");
@import url("override.css");
@import url("layout.css");

header {
  width: 100%;
  position: relative;
  z-index: 1;
  top: 0;
  left: 0;
}

#hd-logo {
  position: absolute;
  left: 50px;
  top: 30px;
}

#head-btn {
  position: fixed;
  width: 220px;
  right: 0;
  top: 0;
  z-index: -1;
}

footer {
  width: 100%;
  background: #000;
  color: #fff;
  padding: 30px 0;
}

@media screen and (max-width: 896px) {
  #hd-logo {
    position: absolute;
    left: 20px;
    top: 20px;
  }

  #head-btn {
    width: 100%;
    position: fixed;
    bottom: 0 !important;
    top: auto;
  }

  #head-btn a {
    padding: 5px 10px;
  }

  footer {
    padding: 30px 0 70px 0;
  }
}
