main{
    background-image: url(../img/top_kv_tritop.webp);
    background-repeat: no-repeat;
    background-size: 70%;
    background-position: top left;
    background-color: #fff;
}
section.contact h1{
    margin: 10% auto 5%;
}
.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: #6e110f;
}
.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: "完了";
}


@media screen and (max-width: 768px){
	.wrap_step {
		gap: 50px;
		margin:30px auto
}
}

/********************/
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 dd input,
form dd select,
form dd textarea{
    border:solid #000 1px;
    text-align: left;
    padding: 1.5rem;
    width: 100%;
    margin: 0;
    background-color: #fff;
}
form input[type="submit"] {
    max-width: 280px;
    margin: 0 auto;
    display: block;
    text-align: center;
    margin-top: 50px;
    border-radius: 50px;
    background-color: #871325;
    color: #fff;
	cursor: pointer;
	min-width: 250px;
    height: 50px;  
}
form dt span{
    background-color: #871325;
    color: #fff;
    padding: 0 20px;
    border-radius: 40px;
    margin-right: 20px;
    font-size: 1.4rem;
}

@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: 100%;
}

}
/*****************/
p.acceptance{
	text-align:center;
	display:block;
	margin-top:30px
}
.wpcf7-form input[type="checkbox"] {
  appearance: auto; 
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  z-index: 1; 
  width: 20px;
  height: 20px;
  margin-right: 8px;   
  vertical-align: middle; 
  cursor: pointer;
}
.wpcf7-list-item-label a{
	display:inline;
	border-bottom:solid #8C7425 1px;
	color:#8C7425
}