@charset "utf-8";
.btn {
  background: #ffffff;
  color: #000000 !important;
  border-radius: 36px;
  border: 2px solid #3e3a39;
  padding: 10px;
  display: block;
  text-align: center;
  max-width: 300px;
  margin: 20px auto;
  transition: .3s ease-out;
}
.btn:hover {
  background: #0458c4;
  color: #ffffff !important;
  border-color: #0458c4;
}
/* btn_buy */
.btn_buy {
  display: inline-block;
  text-align: center;
  background: #ffd600;
  color: #3e3a39;
  min-width: 190px;
  border-radius: 30px;
  padding: 9px 50px;
  font-size: 15px !important;
  position: relative;
  font-weight: bold;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.btn_buy:hover {
  opacity: 0.5;
}
.btn_buy:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  background: url("/assets/images/ic_buy_bk.png") no-repeat center left;
  background-size: contain;
  width: 18px;
  height: 17px;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.btn-blue {
  position: relative;
  background: #0458c4;
  color: #ffffff !important;
  border-radius: 36px;
  padding: 10px 50px;
  display: inline-block;
  text-align: center;
  max-width: 375px;
}
.btn-blue:hover {
  background: #00a6ff;
}
.btn-blue::before {
  content: "";
  display: inline-block;
  vertical-align: baseline;
  background: url(/assets/images/link_right_w.png) no-repeat center left;
  background-size: contain;
  width: 11px;
  height: 15px;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -8px;
}