@charset "utf-8";

.btn--orange {
    padding: 0.5rem 2rem;
    border: none;
    border-radius: 0.5rem;
    color: #fff;
    background-color: #eb6100;
    font-size: 20px;
    font-weight: bold;
}

.radio-label {
    cursor: pointer;
    padding-top: 40px;
    padding-bottom: 20px;
    padding-left: 30px;
    padding-right: 30px;
    border: none;
    border: #c0c0c0 solid 3px;
    border-radius: 5px;
}

.str-radio-label {
    cursor: pointer;
    padding-top: 40px;
    padding-bottom: 20px;
    padding-left: 30px;
    padding-right: 30px;
    border: none;
    border: #c0c0c0 solid 3px;
    border-radius: 5px;
}

.victem input:checked + label {
    border: #101010 solid 3px;
    border-radius: 5px;
}
.tile input:checked + label {
    border: #101010 solid 3px;
    border-radius: 5px;
}

.btn {
    padding: 0.5rem 2rem;
    border: none;
    border-radius: 0.5rem;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

.btn--orange:hover {
    color: #fff;
    background: #f56500;
    cursor: pointer;

}

.number-input {
    position: relative;
    display: inline-block;
    width: 150px !important;
    height: 2rem;
}

/** input要素 **/
.number-input input{
    width: 100%; height: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
    text-align: center;
    font-size: 20px;
    border-width: thin;
}

/*デフォルトのスピンボタンを隠す*/
.number-input input::-webkit-outer-spin-button,
.number-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.number-input .spinner{
  position: absolute;
  top: 50%;
  width: 1.2rem;
  transform: translate(0, -50%);
  font-size: 1rem;
  padding: 2px .5rem;
  text-align: center;
  background: lightgray;
  cursor: pointer;
  user-select: none;
}

/** 減算のスピンボタン要素 **/
.number-input .spinner-down{
    background-color: fff0f0;
    left: 2px;
    border-right: 1px solid lightgray;
}
/** 加算のスピンボタン要素 **/
.number-input .spinner-up{
    background-color: f0fff0;
    right: 2px;
    border-left: 1px solid lightgray;
}