@charset 'UTF-8';

.contact__txt {
    text-align: center;
    font-size: 1.5rem;
    margin-top: 60px;
}

.form__parts {
    margin-top: 30px;
}

.form__parts:first-of-type {
    margin-top: 0;
}

.form {
    padding: 60px 4%;
}

.form__tittle {
    font-size: 1.6rem;
}

.group__select, .form__name, .form__company,.form__mail, .form__tel, .txtArea {
    width: 92vw;
    padding: 20px;
    border-radius: 10px;
    background-color: #EFECEC;
    margin-top: 10px;
}

.txtArea {
    height: 400px;
}

.group__select {
    font-size: 1.6rem;
    color: rgba(51, 51, 51, 0.70);
}

.group option {
    font-size: 1.6rem;
}

.group input {
    font-size: 1.6rem;
}

.submit {
    text-align: center;
    margin-bottom: 60px;
}

@media screen and (min-width:769px){
    .form {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact__txt {
        font-size: 1.6rem;
    }

    .group__select, .form__company,.form__mail, .form__tel, .txtArea {
        margin-top: 20px;
        max-width: 1000px;
    }

    .group__name__box {
        display: flex;
        gap: 20px;
    }

    .form__name {
        max-width: 490px;
    }

    .txtArea {
        height: 200px;
    }
    
} /* 769px pc */
