input[type="button"], input[type="submit"] {}
/* icon on/off */
.btn .icon_off {}
.btn .icon_on {
  display: none;
}
.btn.active {}
.btn.active .icon_off {
  display: none;
}
.btn.active .icon_on {
  display: inline;
}
.btn_default {
  border: solid 2px #0084cd;
  background-color: #fff;
  color: #0084cd;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}
.btn_blue {
  border: solid 2px #0084cd;
  background-color: #0084cd;
  color: #fff;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}
.btn_white {
  border: solid 2px #fff;
  background-color: #fff;
  color: #666;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}
.btn_green {
  background-color: #139b4c;
  border-color: #139b4c;
  color: #fff;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}
.btn_orange {
  background-color: #ff7d04;
  border-color: #ff7d04;
  color: #fff;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}
.btn_green.btn_border {
  background-color: #fff;
  color: #139b4c;
}
.btn_gray {
  border: solid 2px #B3B3B3;
  background-color: #B3B3B3;
  color: #fff;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}
.btn_warning {
  border: solid 2px #f73b1e;
  background-color: #f5dcdc;
  color: #f73b1e;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}
.btn_disabled {
  border: solid 2px #B3B3B3;
  background-color: #eee;
  color: #B3B3B3;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}
.btn_disabled:focus, .btn_disabled:hover {
  opacity: 1;
}
.btn_action {
  width: 100%;
  height: 68px;
  line-height: 68px;
  margin: 0 auto;
  font-size: 20px;
  color: #fff;
  letter-spacing: 2px;
  background: #fd7686;
  border: 2px solid #fd7686;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.35);
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  box-sizing: border-box;
}
.btn_action::before {
  content: "";
  display: inline-block;
  position: relative;
  top: 3px;
  left: -6px;
  width: 17px;
  height: 22px;
  background: url(../images/search_btn_02.png) center center / auto no-repeat;
}
@media screen and (max-width:767px) {
  .btn_action {
    width: 100%;
    line-height: 58px;
    height: 60px;
  }
}
@media screen and (max-width:575px) {
  .btn_action {
    line-height: 53px;
    height: 55px;
  }
}
.btn_more {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  /*max-width: 66.66%;*/
  margin-left: auto;
  margin-right: auto;
  border: solid 2px #f71500;
  background-color: #f71500;
  color: #fff;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}
@media screen and (max-width:767px) {
  .btn_more {
    max-width: none;
  }
}
.btn_add {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  border: solid 2px #0084cd;
  background-color: #fff;
  color: #0084cd;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  padding: 0.25em 1em;
  vertical-align: middle;
}
.btn_add i {
  font-size: 175%;
  margin: 0 0.25em 0 0;
  vertical-align: middle;
}
.btn_remove {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  border: solid 2px #B3B3B3;
  background-color: #fff;
  color: #B3B3B3;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  padding: 0.25em 1em;
  vertical-align: middle;
}
.btn_remove i {
  font-size: 175%;
  margin: 0 0.25em 0 0;
  vertical-align: middle;
}
.btn.no_shadow {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}
.btn_wide {
  padding: 0.5em 4em;
  font-size: 114%;
}
.btn_wide_fix {
  padding: 0.5em 0;
  width: 100%;
  max-width: 20em;
}
.btn_full {}
.btn_block {
  display: block;
}
@media screen and (max-width:767px) {
  .btn_wide, .btn_wide_fix, .btn_full {
    margin-bottom: 1em;
  }
  .btn_wide:last-child, .btn_wide_fix:last-child, .btn_full:last-child {
    margin-bottom: 0;
  }
  .btn_wide_fix {
    display: block;
    width: 100%;
    max-width: none;
  }
  .btn_full {
    display: block;
    width: 100%;
  }
}
.label {
  display: inline-block;
  font-size: 14px;
}
.label_default {
  padding: 10px 15px;
  border-radius: 4px;
	color: #fff;
background: #6c9bd2;
}
.label_default:hover {
	color: #fff!important;
}
.label_default input {
  margin-right: 4px
}
.label_must {
  display: inline-block;
  background: #FF1464;
  color: #fff;
  font-size: 0.75rem;
  line-height: 1;
  padding: 0.25rem 0.5rem;
}
@media screen and (max-width:767px) {}