@charset "utf-8";

.input {
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue','游ゴシック体', '游ゴシック', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック', 'Hiragino Sans', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  color: #333;
  font-size: 1.6rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  padding: 10px;
  border: solid 1px #dadada;
  margin-right: 2%;
  width: 15%;
}
.input_s {
  width: 40%;
}
.input_m {
  width: 70%;
}
.input_l {
  width: 100% !important;
}
.textArea {
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue','游ゴシック体', '游ゴシック', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック', 'Hiragino Sans', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  color: #333;
  font-size: 1.6rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  padding: 10px;
  border: solid 1px #dadada;
  width: 100%;
  height: 150px;
}
select {
  color: #333;
  font-size: 1.6rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  padding: 10px 30px 10px 10px;
  border: solid 1px #dadada;
  background: #fff url(../img/common/icon_arrow_down.png) right 5px bottom 50% no-repeat;
  background-size: auto;
  background-size: 12px auto;
  box-sizing: border-box;
}
.radio label {
  min-height: 26px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding-left: 35px;
  overflow: hidden;
  cursor: pointer;
}
.radio label:before {
  content: '';
  position: absolute;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 26px;
  height: 26px;
  border: #dadada 1px solid;
  border-radius: 50%;
  left: 0;
  top: 0;
  z-index: 1;
}
.radio label:after {
  content: '';
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  width: 14px;
  height: 14px;
  background: #000;
  border-radius: 50%;
  left: 6px;
  top: 6px;
  z-index: 2;
}
.radio label .input_radio {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  z-index: 3;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  left: -17px;
  top: 6px;
  margin: 0;
  -webkit-box-shadow: 22px -1px #fff;
  box-shadow: 22px -1px #fff;
  border-collapse: separate;
  border: none;
}
.radio label .input_radio:checked {
  -webkit-box-shadow: none;
          box-shadow: none;
}
input[type="submit"],
input[type="button"] {
  -webkit-appearance: none;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue','游ゴシック体', '游ゴシック', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック', 'Hiragino Sans', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  border: none;
  cursor: pointer;
}
@media screen and (min-width:768px) {
  input[type="submit"],
  input[type="button"] {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  input[type="submit"]:hover,
  input[type="button"]:hover {
    opacity: .5
  }
}
.check {
  position: relative;
  display: inline-block;
}
.check .check_s {
  position: relative;
  display: block;
  padding-left: 30px;
  overflow: hidden;
  font-size: 1.6rem;
  margin-top: 10px;
}
.check .check_s:before {
  content: '';
  position: absolute;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 25px;
  height: 25px;
  border: #dadada 1px solid;
  background: #fff;
  left: 0;
  top: 0;
  z-index: 1;
}
.check .check_s:after {
  content: '';
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  width: 25px;
  height: 25px;
  background: url('../img/common/icon_checked.png') no-repeat;
  background-position: left top;
  background-size: contain;
  left: 0;
  top: 0;
  z-index: 2;
}
.check .check_s .input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  z-index: 3;
  width: 23px;
  height: 23px;
  left: -35px;
  top: 0;
  margin: 0;
  -webkit-box-shadow: 36px 1px #fff;
  box-shadow: 36px 1px #fff;
  border-collapse: separate;
}
.check .check_s .input:checked {
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media screen and (max-width:767px) {
  .input {
    font-size: 1.4rem;
  }
  .textArea {
    font-size: 1.4rem;
  }
  select {
    font-size: 1.4rem;
  }
  .radio label {
    font-size: 1.4rem;
  }
}