/*
 *  Buttons
 *
 */
.btn {
  outline: 0;
  border-radius: 2px;
  -webkit-transition: 0.25s linear;
  transition: 0.25s linear;
  -webkit-font-smoothing: subpixel-antialiased;
  font-weight: 400;
  font-family: "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
}
.btn:focus,
.btn:active,
.btn.active {
	outline: 0;
}
.btn:active,
.btn.active {
  -webkit-box-shadow: inset 0 3px 3px rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 3px 3px rgba(0, 0, 0, 0.08);
  outline: 0;
}
/* Rounded button styles */
.btn-rounded,
.btn-rounded a,
.btn-rounded .btn,
.input-rounded {
  border-radius: 40px;
}
/* Button Groups */
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 2px;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
