@charset "UTF-8";
/*
Description: Sunnana Button Framework.
Author: Sunnana Inc. <info@g37.jp>
Version: 1.0.0
*/
.btn {
  background: #000;
  color: #FFF;
  text-shadow: none;
  border: none;
  text-align: center;
  text-decoration: none;
  padding: 5px 50px 5px 50px;
  margin-bottom: 20px;
  font-size: 16px;
  display: inline-block;
}
.btn:hover, .btn:focus {
  color: #FFF;
  background: #0d0d0d;
}
.btn:active, .btn.is-active, .btn.active {
  -moz-transition-duration: 0s;
  -o-transition-duration: 0s;
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
  background: black;
  color: black;
}
.btn.disabled {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
}

.btn-big {
  padding: 10px 60px 10px 60px;
  font-size: 18px;
}

#btnSubmit, #mfp_button_send, #mfp_button_cancel {
  background: #000;
  color: #FFF;
  text-shadow: none;
  border: none;
  text-align: center;
  text-decoration: none;
  padding: 10px 40px 10px 40px;
  margin-bottom: 20px;
  font-size: 16px;
  display: inline-block;
  box-shadow: none;
  border-radius: 0;
  max-width: 100% !important;
}
#btnSubmit:hover, #btnSubmit:focus, #mfp_button_send:hover, #mfp_button_send:focus, #mfp_button_cancel:hover, #mfp_button_cancel:focus {
  color: #FFF;
  background: #0d0d0d;
}
#btnSubmit:active, #btnSubmit.is-active, #btnSubmit.active, #mfp_button_send:active, #mfp_button_send.is-active, #mfp_button_send.active, #mfp_button_cancel:active, #mfp_button_cancel.is-active, #mfp_button_cancel.active {
  -moz-transition-duration: 0s;
  -o-transition-duration: 0s;
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
  background: black;
  color: black;
}
#btnSubmit.disabled, #mfp_button_send.disabled, #mfp_button_cancel.disabled {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
}

#btnSubmit {
  cursor: pointer;
  font-family: Osaka, メイリオ, Meiryo, 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #000 !important;
  background-color: #f2e800 !important;
  border-radius: 2px !important;
  border-color: #a59f11 !important;
  border-width: 0px !important;
  width: 100% !important;
  border-style: solid;
}
#btnSubmit:hover, #btnSubmit:focus {
  color: #000;
  background: #fff50d;
}
#btnSubmit:active, #btnSubmit.is-active, #btnSubmit.active {
  -moz-transition-duration: 0s;
  -o-transition-duration: 0s;
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
  background: #dad218;
  color: #a69f00;
}
#btnSubmit.disabled {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
}

.btn-round {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

.btn-arrow {
  position: relative;
}
.btn-arrow:after {
  font-family: 'FontAwesome';
  content: "\f105";
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -14px;
}

.btn-wrap {
  background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2UzZTNlMyIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2YyZjJmMiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e3e3e3), color-stop(100%, #f2f2f2));
  background: -moz-linear-gradient(top, #e3e3e3, #f2f2f2);
  background: -webkit-linear-gradient(top, #e3e3e3, #f2f2f2);
  background: linear-gradient(to bottom, #e3e3e3, #f2f2f2);
  -moz-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.04);
  -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.04);
  box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.04);
  padding: 10px 10px;
  margin-bottom: 20px;
}
.btn-wrap .btn {
  margin-bottom: 0;
}

.btn-block {
  display: block;
}

.btn-yellow {
  background: #f2e800;
  color: #000;
}
.btn-yellow:hover, .btn-yellow:focus {
  color: #000;
  background: #fff50d;
}
.btn-yellow:active, .btn-yellow.is-active, .btn-yellow.active {
  -moz-transition-duration: 0s;
  -o-transition-duration: 0s;
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
  background: #dad218;
  color: #a69f00;
}

.ghost {
  display: inline-block;
  padding: 6px 80px;
  border: solid 1px #fff;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
.ghost:hover {
  color: #333;
  background: #fff;
}

a.btn-fb {
  background: #3B5998;
  color: #FFFFFF;
}
a.btn-fb:hover, a.btn-fb:focus {
  background: #314B80;
}
a.btn-fb:active, a.btn-fb.is-active, a.btn-fb.active {
  -moz-transition-duration: 1s;
  -o-transition-duration: 1s;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  background: #314B80;
}
