@charset "Shift_JIS";
/** ***************************************
 * LIBRARIES
 * 全体を通して利用するモジュールを定義
 */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/**
 * Software Keyboard
 * ソフトキーボードのスタイルを定義
 */
.SoftwareKeyboard {
  position: absolute;
  z-index: 6000;
  display: none;
  padding: 10px 20px;
  background-color: #fff;
  border: 5px solid #094;
  border-radius: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: -webkit-grab;
  cursor: grab;
}

.SoftwareKeyboard--show {
  display: block;
  -webkit-animation: fadeIn .3s;
  animation: fadeIn .3s;
}

.SoftwareKeyboard--move {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.SoftwareKeyboard__title {
  margin-top: 0;
  font-size: 1rem;
  font-weight: normal;
  color: #094;
}

.SoftwareKeyboard__close-button {
  cursor: pointer;
}

.SoftwareKeyboard__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.SoftwareKeyboard__alphabet-buttons {
  margin-right: 15px;
  padding-right: 14px;
  width: 360px;
  border-right: 1px solid #094;
}

.SoftwareKeyboard__alphabet-buttons div + div {
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px solid #094;
}

.SoftwareKeyboard--numeric .SoftwareKeyboard__alphabet-buttons {
  display: none;
}

.SoftwareKeyboard__numeric-buttons {
  width: 120px;
}

.SoftwareKeyboard__numeric-buttons div + div {
  margin-top: 15px;
}

.SoftwareKeyboard--numeric .SoftwareKeyboard__numeric-buttons {
  margin-left: auto;
  margin-right: auto;
}

.SoftwareKeyboard__button {
  margin: 5px 0 0;
  padding: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 34px;
  height: 34px;
  background-color: #f3f3f3;
  border-radius: 6px;
  border: 1px solid #e5e5e5;
  font-size: 1.286rem;
  line-height: 1;
  font-weight: bold;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.SoftwareKeyboard__button--function {
  width: 100%;
}
