section.contact{
    background-color: #EDF4FE;
    border:solid 1px #EDF4FE
}
.wrap_step{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
}
.wrap_step span{
    background-color: #9d9d9d;
    width: 40px;
    height: 40px;
    display: flex;
    border-radius: 20px;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    padding: 0;
    line-height: 2.5;
    position: relative;
    font-size: 1.5rem;
}
.wrap_step span.current{
    background-color: #7493E8;
}
.wrap_step span:before{
    content: "";
    position: absolute;
    bottom: -30px;
    color: #000;
    font-weight: normal;
    font-size: 1.3rem;
}
.wrap_step span:nth-child(1):before{
    content: "入力";
}
.wrap_step span:nth-child(2):before{
    content: "完了";
}
/********************/
form{
    max-width: 1000px;
    margin: 80px auto 10%;
    text-align: left;
}

form dl{
    display: grid;
  gap:0px 40px;
  grid-template-columns: 1fr 2fr; 
  align-items: center;
}
form dd{padding: 1.5rem ;
    
}
form dt{
    padding: 1.5rem;
    position: relative;
}
form input,
form select,
form textarea{
    border:solid #000 1px;
    text-align: left;
    padding: 1.5rem;
    width: 100%;
    margin: 0;
    background-color: #fff;
}
form input.common_btn{
    max-width: 280px;
    margin: 0 auto;
    display: block;
    text-align: center;
    margin-top: 50px;
    border-radius: 50px;
    background-color: #7493E8;
    color: #fff;
    border: #7493E8 1px solid;
}
form dt span{
    background-color: #7493E8;
    color: #fff;
    padding: 0 20px;
    border-radius: 40px;
    margin-right: 20px;
    font-size: 1.4rem;
}
form dd span.text{
	color: #4265c6;
	font-size:smaller;
}

@media screen and (max-width: 768px){
form dl{
    display:flex;
    flex-direction: column;
}
form dd{
    margin-bottom: 1.5rem;
    padding-bottom: 3rem;
    border-bottom: solid rgb(170, 170, 170) 1px;
    min-width: 100%;
}
form dt{
    text-align: left;
    min-width: 90%;
    padding: 1.5rem 0;
}

}