


/*お問い合わせフォーム*/
.contact_info{
    color:white;
    line-height:2.5rem;
}

.contact_form{
    width:100%;
    padding:3.75rem 0;
    background-color: #3B4A60;
    margin-top:3.75rem;
}
.contact_form  .form_area h3{
    font-size: 2rem;
    color:white;
    text-align: center;
    margin-bottom:3.75rem;
}
.contact_form .form_area{
    width:800px;
    margin:0 auto;
}
.contact_form .form_area .form{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top:2.5rem;
}
.contact_form .form_area .form.textarea{
    align-items: flex-start;
}
.contact_form .form_area .form:first-of-type{
    margin-top:0;
}
.contact_form .form_area .form .form_ttl{
    color:white;
    font-size: 1.125rem;
    font-weight: bold;
}
.contact_form .form_area .form.textarea .form_ttl{
    margin-top:22px;
}
.contact_form .form_area .form .form_ttl .mark{
    color:red;
}

.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap textarea{
    padding:1.25rem 1.875rem;
    width: calc(607px - 3.75rem);
   border-radius: none;
   border:none;
}

.submit_btn{
    text-align: center;
    margin-top:3.75rem;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner{
    background-color: #FFC400;
    padding:1.25rem 3.75rem;
    font-size: 1.25rem;
    color:white;
    font-weight: 700;
    border:none;
    cursor: pointer;
    transition: .3s;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner:hover{
    background-color: #55657E;

}
.wpcf7-spinner{
    display: none;
}




/*----------------------------------------------------------------
                            レスポンシブ
------------------------------------------------------------------*/

@media(max-width:1024px){
    .contact_form .form_area{
        width:650px;
    }
    .wpcf7-form-control-wrap input, .wpcf7-form-control-wrap textarea{
        width: calc(450px - 3.75rem);
    }
}



@media(max-width:768px){
    .contact_form .form_area {
        width: 500px;
    }
    .contact_form .form_area .form{
        flex-flow: column;
        align-items: start;
        margin-top: 1.875rem;
    }
    .contact_form .form_area .form:first-of-type{
        margin-top:0;
    }
    .wpcf7-form-control-wrap input, .wpcf7-form-control-wrap textarea {
        width: calc(500px - 3.75rem);
    }
    .contact_form .form_area .form .form_ttl{
        margin-bottom: 0.938rem;
    }
    
}



@media(max-width:600px){
    .contact_form .form_area {
        width: 90%;
    }
    .form p{
        width:100%;
    }
    .wpcf7-form-control-wrap input, .wpcf7-form-control-wrap textarea {
        width: calc(100% - 3.75rem);
    }
}


@media(max-width:425px){
    .contact_form .form_area h3{
        font-size: 1.563rem;
        margin-bottom: 2.5rem;
    }
    input.wpcf7-form-control.wpcf7-submit.has-spinner{
        padding: 1.25rem 0rem;
        width: 100%;
    }
}