@charset "utf-8";
p{
    font-size: 2vh;
}

.form-area {
    display: flex;
    flex-wrap: wrap;
}

.form-area dt {
    width: 30%;
    padding: 1em 0;
    font-size: 22px;
    line-height: 2;
}

.form-area dt .required::after {
    content: '必須';
    font-size: 11px;
    color: #eb4f32;
    margin-left: 10px;
    white-space: nowrap;
}

.form-area dd {
    width: 70%;
    padding: 15px 0;
}

.input-text {
    background-color: #fff;
    width: 100%;
    border: 1px solid #707070;
    max-width: 280px;
    height: 40px;
    padding-left: 10px;
    padding-right: 10px;
}

.radio-button {
    display: block;
    margin-top: 20px;
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;

}

.radio-button input {
    margin-right: 8px;
}

.message {
    background-color: #fff;
    width: 90%;
    border: 1px solid #707070;
    height: 260px;
    padding: 10px;
    line-height: 1.5;
}

.submit-button {
    background-color: #f8c6bd;
    display: inline-block;
    width: 30%;
    line-height: 2;
    border-radius: 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 2vw;
    text-align: center;
    margin-top: 2rem;
    cursor: pointer;
    border: none;
}

.submit-button:hover {
    background-color: #eda598;
}

@media (max-width: 800px) {

    #footer-contact,
    .contact {
        display: none;
    }

    .form-area dt {
        width: 30%;
        padding: 1em;
        font-size: 3vw;
        line-height: 2;
    }
    
    .form-area dt .required::after {
        content: '必須';
        font-size: 2vw;
        white-space: nowrap;
    }
    .input-text {
        height: 5vw;
        padding-left: 5%;
        padding-right: 1em;
    }
    
    .radio-button {
        font-size: 3vw;
    }
}