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

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

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: 10px;
  height: 40px;
  box-sizing: border-box;
  font-size: 1.6rem;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  -webkit-appearance: none;
  border: #ccc solid 1px;
  border-radius: 0px;
  background: 40px;
  background: #fff;
  outline: none;
}

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: 6px;
  box-sizing: border-box;
  border: #ccc solid 1px;
  font-size: 1.6rem;
  border-radius: 0;
  background: 40px;
  background: #fff;
  outline: none;
}

.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: #ccc solid 1px;
  padding-right: 50px;
  color: #112142;
  width: 125%;
  max-width: none;
  box-shadow: none;
  border-radius: 5px;
  background: 40px;
}

.selectBox select option, .selectBox select optgroup {
  color: #112142;
  font-style: normal;
}

.selectBox:before {
  content: "";
  width: 1px;
  height: 40px;
  position: absolute;
  right: 40px;
  top: 0px;
  background: #ccc;
  z-index: 1;
  pointer-events: none;
}

.selectBox:after {
  background: #fff;
  color: #112142;
  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: #ccc solid 1px;
  border-left: 0;
  display: inline-block;
}

.checkBox {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.checkBox .check input[type="checkbox"] {
  display: none;
}

.checkBox .check input[type="checkbox"]:checked ~ label {
  color: #112142;
}

.checkBox .check input[type="checkbox"]:checked ~ label:after {
  width: 0px;
  left: 20px;
}

.checkBox .check label {
  display: block;
  width: 100%;
  padding-left: 40px;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  color: #112142;
  font-size: 1.6rem;
  line-height: 1;
}

.checkBox .check label:before {
  display: inline-block;
  content: "";
  width: 20px;
  height: 20px;
  border: #ccc solid 1px;
  position: relative;
  box-sizing: border-box;
  border-radius: 5px;
  position: absolute;
  left: 0px;
  top: 0px;
  background: #fff;
}

.checkBox .check label:after {
  display: inline-block;
  content: "";
  width: calc( 20px - 2px);
  height: calc( 20px - 2px);
  background: #fff;
  border-radius: 5px;
  position: absolute;
  left: 1px;
  top: 1px;
  transition: all 0.2s ease;
  backface-visibility: hidden;
  z-index: 10;
}

.checkBox .check label span {
  display: inline-block;
  line-height: 20px;
}

.checkBox .check label span:before {
  content: "\e906";
  font-family: "icomoon";
  position: absolute;
  left: 1px;
  top: 1px;
  width: calc( 20px - 2px);
  height: calc( 20px - 2px);
  text-align: center;
  line-height: calc( 20px - 2px);
  color: #112142;
}

@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: 30% !important;
  }
  .radioBox .radio label,
  .checkBox .check label {
    padding-left: 40px;
  }
  .radioBox .radio label span,
  .checkBox .check label span {
    font-size: 1.4rem;
  }
  .selectBox select {
    height: 40px_sp;
  }
  .selectBox:before {
    height: 40px_sp;
    right: 40px_sp;
  }
  .selectBox:after {
    line-height: 40px_sp;
    width: 40px_sp;
  }
}
