@charset "utf-8";
/* CSS Document */
#contact{
    position: relative;
    display: flex;
    width: 100%;
    justify-content: center;
}
#contact form{
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    width: 900px;
    justify-content: space-between;
    margin: 2vw 0 5vw;
    background-color: #f8f8f87d;
    padding: 30px 20px;
}
#contact form p{
    width: 130px;
    font-size: 18px;
    color: #1f1f1f;
}
#contact form p b{
    color: #cc3442;
    margin: 0 5px;
}
#contact form input{
    border: #d0d0d08f 1px solid;
}
#contact form .row_2{
    width: 48%;
    display: flex;
    margin: 20px 0;
}
#contact form .row_2 input{
    width: calc(100% - 130px);
    padding: 5px 0;
}
#contact form .row_1{
    width: 100%;
    display: flex;
}
#contact form .row_1 textarea{
    width: calc(100% - 130px);
    border: #d0d0d06e 1px solid;
}
#contact form .row_3{
    display: flex;
    align-items: center;
    margin: 10px 0;
}
#contact form .row_3 input{
    padding: 5px 0;
}
#contact form .row_3 img{
    background: #010101;
    padding: 5px 0;
    margin: 0 15px;
}
#contact form .row_4{
    flex: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-end;
}
#contact form .row_4 input{
    width: 150px;
    text-align: center;
    background: #dc0e78;
    color: #f9f9f9;
    padding: 5px 0;
}
@media screen and (max-width: 640px){
	#content{
        background: unset;
    }
    #contact form .row_2{
        width: 100%;
    }
    #contact form .row_3 input{
        display: flex;
        width: 150px;
    }
    #contact form .row_4{
        margin-top: 20px;
    }
}
@media screen and (max-width: 480px){
    #contact form .row_3 input{
        width: 100px;
    }
    #contact form p{
        font-size:16px;
    }
}
