@charset "UTF-8";
/* iOSでのデフォルトスタイルをリセット */
button {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
button::-webkit-search-decoration {
  display: none;
}
button::focus {
  outline-offset: -2px;
}

button.Wavebox_btn {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  position: relative;
  cursor: pointer;
  background: transparent;
  border: 1px solid;
  color: #afa9aa;
  font-size: 13px;
  border-radius: 20px;
  padding: 3px 13px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-right: 10px;
}

button.Wavebox_btn:hover {
  background: #f1f1f1;
}

button.Wavebox_btn span.material-icons-round {
  font-size: 18px;
  vertical-align: sub;
}

button.Wavebox_btn.Wavebox_clickedtoday {
  color: #FFEE1A;
  border-color: #FFEE1A;
}

button.Wavebox_btn.Wavebox_clickedtoday:hover {
  background: #fff8f3;
}

button.Wavebox_btn.Wavebox_clicked {
  color: #ffffff;
  background: #FFF066;
  border-color: #FFF066;
}

button.Wavebox_btn.Wavebox_clicked:hover {
  background: #fdcb7f; 
  border-color: #fdcb7f;
}

button.Wavebox_btn:before {
  position: absolute;
  content: "";
  display: block;
  margin: auto;
  visibility: hidden;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  -webkit-transition: all ease-out 0.5s;
  transition: all ease-out 0.5s;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  background: #fdcb7f;
}

button.Wavebox_btn:active {
  -webkit-transform: scale(0.92);
  transform: scale(0.92);
}

button.Wavebox_btn.Wavebox_animate:before {
  z-index: 1;
  -webkit-animation: Wavebox_animation ease-out 0.5s forwards;
  animation: Wavebox_animation ease-out 0.5s forwards;
}

div.Wavebox_thanks img {
  max-width: 100%;
}

.Wavebox_fadeout {
  animation : Wavebox_fadeOut 1s !important;
  animation-fill-mode: both;
}

button.waveBox_btn.waveBox_animate:before {
  z-index: 1;
  -webkit-animation: waveBox_animation ease-out 0.5s forwards;
  animation: waveBox_animation ease-out 0.5s forwards;
}