/* CSS Document */

body{
background-color: #FBFAF7;
}
form{
  width:100%;
/*  margin:0 auto; */
  font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
  line-height: 1.5em;
  font-size: 16px;
}

.lead-form {
  position: relative;
  text-align: left;
  font-size: 1.5em;
  padding: 3px;
  border-bottom: 3px solid #A6A8AB;
  font-weight: normal;
}
.lead-form:before {
  position: absolute;
  content: " ";
  border-bottom: solid 3px #D6DE22;
  left: 0;
  bottom: -3px;
  width: 20%;
}

.filter {
  width:100%;
  font-size: 12px;
  color: red;
}

.btn-area {
  text-align: center;
  filter: drop-shadow(3px 3px 3px #808080);
}

.btn-area_send {
  cursor: pointer;
}

.item {
/*  display: flex; */
/*  flex-wrap: wrap; */
  width: 100%;
  justify-content: center;
  margin-bottom: 2em;
}
.must_mark {
  color: red;
  font-weight: bold;
  vertical-align: top;
}
input[type="text"],input[type="email"],input[type="date"]{
  border: solid 1px #aaa;
  border-radius:0px;
  padding: 0.5em;
  font-size: 1em;
  box-sizing: border-box;
}
input[type="submit"]{
  background: #F6921D;
  border-radius:0px;
  border: none;
  color: white;
  font-size:1.2em;
  padding: 0.5em 1.5em;
  box-sizing: border-box;
}
textarea{
  border: solid 1px #aaa;
  border-radius:0px;
  padding: 0.5em;
  height: 10em;
  font-size: 1em;
  box-sizing: border-box;
}

/*------------------画面幅が781px以上の時-PC------------------*/
@media screen and (min-width:781px){


.label {
  width: 20%;
}
.inputs,textarea,.radio_button {
  width: 65%;
}
.label,.inputs,textarea {
  display: inline-block;
  vertical-align: middle;
}

}

/*------------------画面幅が780px以下の時-PC------------------*/
@media screen and (max-width:780px){

.label,.inputs,textarea,.radio_button{
  width: 100%;
  display: block;
}
.label {
  margin-bottom: 0.5em;
}

}