@charset "utf-8";
/* CSS Document */

/*インプット*/
input[type='text']{
  width: 100%;
  max-width: 400px;
  margin-bottom: 4px;
  padding: 5px;
  border-radius: 5px;
    font-size: 16px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
    height: 40px;
}
input.numb[type='text']{
  width: 100%;
  max-width: 400px;
  margin-bottom: 4px;
  padding: 5px;
  border-radius: 5px;
  font-size: 16px;/*サイズ追加2024*/
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type='text']{
  width: 100%;
  max-width: 400px;
  margin-bottom: 4px;
  padding: 5px;
  border-radius: 5px;
    font-size: 16px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
    height: 40px;
}
input.numb[type='text']{
  width: 100%;
  max-width: 400px;
  margin-bottom: 4px;
  padding: 5px;
  border-radius: 5px;
  font-size: 16px;/*サイズ追加2024*/
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input.area[type='text']{
  width: 80%;
  max-width: 400px;
  margin-bottom: 4px;
  padding: 5px;
  border-radius: 5px;
  font-size: 16px;/*サイズ追加2024*/
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/*セレクトエリア*/
.select-wrap {
  position: relative;
    width: 50%;
  max-width: 400px;
}

.select-wrap:before {
  position: absolute;
  right: 15px;
  top: 40%;
  transform: translateY(-50%) translateX(0);
  content: '';
  width: 15px;
  height: 40px;
  background: url(../../img/select.png) no-repeat;
  background-size: contain;
}

.select-wrap select{
  width: 100%;
  outline:none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 40px;
  padding: 5px;
    font-size: 16px;/*サイズ追加2024*/
  border:1px solid #ccc;
  background-color: #fff;
  border-radius: 5px;
  margin-bottom: 12px;
}

.select-wrap select::-ms-expand {
  display: none;
}
.select-hfwrap {
  position: relative;
    width: 50%;
  max-width: 400px;
}

.select-hfwrap:before {
  position: absolute;
  right: 15px;
  top: 40%;
  transform: translateY(-50%) translateX(0);
  content: '';
  width: 15px;
  height: 40px;
  background: url(../../img/select.png) no-repeat;
  background-size: contain;
}

.select-hfwrap select{
  width: 100%;
  outline:none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 40px;
  padding: 5px;
    font-size: 16px;
  border:1px solid #ccc;
  background-color: #fff;
  border-radius: 5px;
  margin-bottom: 12px;
}
.select-hfwrap select::-ms-expand {
  display: none;
}

.select-mini {
  position: relative;
    width: 140px;
  max-width: 400px;
}
.select-mini:before {
  position: absolute;
  right: 15px;
  top: 40%;
  transform: translateY(-50%) translateX(0);
  content: '';
  width: 15px;
  height: 40px;
  background: url(../../img/select.png) no-repeat;
  background-size: contain;
}

.select-mini select{
  width: 100%;
  outline:none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 40px;
  padding: 5px;
    font-size: 14px;/*サイズ追加20200703*/
  border:1px solid #ccc;
  background-color: #fff;
  border-radius: 5px;
  margin-bottom: 12px;
}
.select-mini select::-ms-expand {
  display: none;
}

/*ラジオボタン*/
.radio-wrap label{
  margin-right: 20px;
  display: inline-block;
}

.radio-wrap input{
  display: none;
}

.radio-wrap input + span{
  padding-left: 22px;
  position:relative;
}

.radio-wrap input + span::before{
  content: "";
  background-image: url(../../img/radio.png);
  background-size: contain;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
}

.radio-wrap input:checked + span{
  color: #487cff;
  font-weight: bold;
}

.radio-wrap input:checked + span::after{
  content: "";
  background-image: url(../../img/radio-checked.png);
  background-size: contain;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
}

/*チェックボックス*/
.checkbox-wrap label{
  margin-right: 20px;
  display: inline-block;
      margin-bottom: 14px;
}

.checkbox-wrap input{
  display: none;
}

.checkbox-wrap input + span{
  padding-left: 22px;
  position:relative;
}

.checkbox-wrap input + span::before{
  content: "";
  background-image: url(../../img/check.png);
  background-size: contain;

  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
}

.checkbox-wrap input:checked + span{
  color: #487cff;
  font-weight: bold;
}

.checkbox-wrap input:checked + span::after{
  content: "";
  background-image: url(../../img/check-checked.png);
  background-size: contain;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
}


/*テキストエリア*/
textarea{
  width: 100%;
  height: 180px;
  padding: 5px;
  border-radius: 5px;
    font-size: 14px;/*サイズ追加20200703*/
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin-bottom: 4px;
}
.textareasmall{
  width: 10%;
  height: 180px;
  padding: 5px;
  border-radius: 5px;
    font-size: 14px;/*サイズ追加20200703*/
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin-bottom: 4px;
}

/*送信ボタン　別タイプ*/
input.sysNextSubmit {
        background: #b8987d;
/*    background: -moz-linear-gradient(top, #FFF 0%, #EEE);
    background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#EEE));
    border: 1px solid #DDD;*/
    color: #fff;
    padding: 10px 30px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
input.sysNextSubmit:hover {
      background: #b8987d;
    background: -moz-linear-gradient(top, #FFF 0%, #EEE);
    background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#EEE));
    border: 1px solid #DDD;
    color: #111;
}
/*送信ボタン　別タイプ*/
input.nextReset {
        background: #b8987d;
/*    background: -moz-linear-gradient(top, #FFF 0%, #EEE);
    background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#EEE));
    border: 1px solid #DDD;*/
    color: #fff;
    padding: 10px 30px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
input.nextReset:hover {
      background: #b8987d;
    background: -moz-linear-gradient(top, #FFF 0%, #EEE);
    background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#EEE));
    border: 1px solid #DDD;
    color: #111;
}
.radio-input{
  display: none;
}
.radio-input + label{
  padding-left: 20px;
  position:relative;
  margin-right: 20px;
}
.radio-input + label::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #999;
  border-radius: 50%;
}
.radio-input:checked + label{
  color: #d01137;
}
.radio-input:checked + label::after{
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  width: 11px;
  height: 11px;
  background: #d01137;
  border-radius: 50%;
}