@charset "utf-8";
/*フォーム関係*/

input,textarea{
  border: 1px solid #ccc;
}

.eform .need .needMark:before {background-color: #F97A7C;}


#form dl{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--c_line);
}



#form dl dt{
  width: 35%;
  padding: 2em 4em 2em 2em;
  text-align: left;
  background: var(--c_gray);
  position: relative;
}
#form dl dd{
  width: 65%;
  padding: 2em 2em;
}

#form dd input[type=text] {width: 80%;}

#form dd input,#form table dd textarea{
  padding: 10px;
}

input::placeholder,textarea::placeholder,
input:-ms-input-placeholder,textarea::placeholder,
input::-ms-input-placeholder,textarea::placeholder {
  color: #bbb;
}

#form dd textarea{
  width: 100%;
  height: 9em;
}


.form_area p{
  padding: .5em;
  background: var(--c_lblue);
  border-bottom: 1px solid var(--c_line);
}


#form .btn_area{
  margin: auto;
  text-align: center;
  width: 90%;
  max-width: 300px;
}

#form .btn_area a{
  margin: auto;
  text-align: center;  
  display: block;
  background: #ebff40;
  color: inherit;
  font-weight: bold;
  padding: 15px 30px;
}
.formNavi{
  text-align: center;
}


#form .sform .formNavi .hidden {
    display: none;
}

.eform dl.need .needMark::before {
  color: #fff;
  background-color: var(--c_red);
}


#form .notes{
    display: block;
    color: var(--c_red);
    font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
}


.sform .formNavi.text .subb, .formNavi.text a{
  background: var(--c_blk);
  padding: 1em;
  color: #fff;
  border-radius: 0;
}

.sform .formNavi .subb, .formNavi a{
  width: 90%;
  max-width: fit-content;
  margin: auto;
}
.eform .needMark{
  position: absolute;
top: 50%;
right: 5%;
transform: translateY(-50%);
}


@media (max-width:799px) {


#form dl dt,#form dl dd {
  width: 100%;
  border: #fff 2px solid;
  padding: 1em;
}
#form dl dt{
  padding: 1em 4em 0 1em;
}

  #form dd label{width: 100%;display: block;}



}





