@charset "UTF-8";
::placeholder {
  color: #c1c1c1;
}

/*******************************************

PC SP form

*******************************************/
@media screen and (max-width: 740px) {
  input[type=text],
input[type=email],
input[type=tel] {
    width: 100%;
  }
}
input[type=text],
input[type=email],
input[type=tel] {
  width: 100%;
  padding: 0 10px;
  height: 50px;
  box-sizing: border-box;
  font-size: 1.6rem;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  -webkit-appearance: none;
  border: #dddddd solid 1px;
  background: #fcfcfc;
  border-radius: 5px;
}
input[type=text].narrow,
input[type=email].narrow,
input[type=tel].narrow {
  width: 20%;
}
input[type=text].middle,
input[type=email].middle,
input[type=tel].middle {
  width: 40%;
}
input[type=text].wide,
input[type=email].wide,
input[type=tel].wide {
  width: 60%;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus {
  background: #fff;
}

textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  width: 100% !important;
  height: 140px !important;
  padding: 10px;
  box-sizing: border-box;
  border: #d4d4d4 solid 1px;
  font-size: 1.6rem;
  border-radius: 5px;
  background: #fcfcfc;
}

.selectBox {
  display: block;
  overflow: hidden;
  position: relative;
  vertical-align: top;
}
.selectBox select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: medium none;
  border-radius: 0px;
  box-sizing: border-box;
  font-size: 1.6rem;
  height: 40px;
  margin: 0;
  padding: 0 6px;
  box-sizing: border-box;
  background: #fff;
  border: #d4d4d4 solid 1px;
  padding-right: 50px;
  color: var(--Black);
  width: 125%;
  max-width: none;
  box-shadow: none;
}
.selectBox select option, .selectBox select optgroup {
  color: var(--Black);
  font-style: normal;
}
.selectBox:before {
  background: #fff;
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  pointer-events: none;
}
.selectBox:after {
  background: #fff;
  color: var(--Black);
  content: "▼";
  font-size: 1rem;
  height: 100%;
  line-height: 40px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  width: 40px;
  box-sizing: border-box;
  border: #d4d4d4 solid 1px;
  border-left: 0;
  display: inline-block;
}

.checkBox {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.checkBox .check {
  width: 33%;
  height: 30px;
  padding-bottom: 15px;
}
.checkBox .check input[type=checkbox] {
  display: none;
}
.checkBox .check input[type=checkbox]:checked ~ label:before {
  border-color: var(--orange);
  background: var(--orange);
}
.checkBox .check input[type=checkbox]:checked ~ label:after {
  transform: scale(1);
}
.checkBox .check label {
  display: block;
  width: 100%;
  padding-left: 40px;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  color: var(--Black);
  font-size: 1.6rem;
  line-height: 30px;
}
.checkBox .check label:before {
  display: inline-block;
  content: "";
  width: 30px;
  height: 30px;
  border: #d4d4d4 solid 1px;
  position: relative;
  box-sizing: border-box;
  border-radius: 4px;
  position: absolute;
  left: 0px;
  top: 0px;
  background: #fff;
  transition: all 0.2s ease;
  backface-visibility: hidden;
}
.checkBox .check label:after {
  content: "\e907";
  font-family: var(--icomoon);
  position: absolute;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  left: 0;
  top: 0;
  color: #fff;
}

.radioBox {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.radioBox .radio {
  width: 50%;
  min-height: 30px;
  padding-bottom: 15px;
}
.radioBox .radio input[type=radio] {
  display: none;
}
.radioBox .radio input[type=radio]:checked ~ label:before {
  border-color: var(--orange);
}
.radioBox .radio input[type=radio]:checked ~ label:after {
  opacity: 1;
  transform: scale(1);
}
.radioBox .radio label {
  display: block;
  width: 100%;
  padding-left: 40px;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  color: var(--Black);
  font-size: 1.6rem;
  line-height: 1.5;
  padding-top: 1px;
}
.radioBox .radio label:before {
  display: inline-block;
  content: "";
  width: 30px;
  height: 30px;
  border: #d4d4d4 solid 1px;
  position: relative;
  box-sizing: border-box;
  border-radius: 50%;
  position: absolute;
  left: 0px;
  top: 0px;
  background: #fff;
  transition: all 0.2s ease;
  backface-visibility: hidden;
}
.radioBox .radio label:after {
  content: "";
  font-family: var(--icomoon);
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  left: 5px;
  top: 5px;
  background: var(--orange);
  transition: all 0.2s ease;
  backface-visibility: hidden;
  opacity: 0;
  transform: scale(0);
}

.submit input[type=submit] {
  margin: 0 auto;
}
.submit input[type=submit]:hover {
  background: var(--Black);
  color: #fff;
  cursor: pointer;
}

@media screen and (max-width: 740px) {
  input[type=text],
input[type=email],
input[type=tel] {
    width: 100% !important;
    height: 40px_sp;
  }
  input[type=text].narrow,
input[type=email].narrow,
input[type=tel].narrow {
    width: 40% !important;
  }

  .radioBox {
    display: block;
  }
  .radioBox .radio {
    width: 100%;
  }

  .radioBox .radio label,
.checkBox .check label {
    padding-left: 40px;
  }
  .radioBox .radio label span,
.checkBox .check label span {
    font-size: 1.4rem;
  }

  .selectBox select {
    width: 100%;
  }
}

/*# sourceMappingURL=cmn_form.css.map */
