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

.button {
  display: inline-block;
  width: 200px;
  height: 54px;
  text-align: center;
  text-decoration: none;
  line-height: 54px;
  outline: none;
}
.button::before,
.button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.button,
.button::before,
.button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.button {
  background-color: #333;
  color: #fff;
}
.button:hover {
  background-color: #59b1eb;
}

.gnav_bt {
	width: 100%;
    font-size: 18px;
    text-decoration: none;
    display: block;
    text-align: center;
    padding: 10px 0 8px;
    color: #fff;
    background-color: #49a9d4;
    border: none;
	line-height: 150%;
}

.gnav_bt {
    background-image:-moz-linear-gradient(
    top,
    #49a9d4 0%,
    #49a9d4 49%,
    #419cd8 50%,
    #419cd8);
 
    background-image:-webkit-gradient(
    linear,left top,left bottom,
    from(#49a9d4),
    color-stop(0.49,#49a9d4),
    color-stop(0.50,#419cd8),
    to(#419cd8));
}