.pageTitle {
    font-size: 4.5vw;
    color: #2B2AA7;
    margin-bottom: 5.2vw;
    text-align: center;
    margin-top: 8vw;
}

.pageTitle span {
    font-size: 3vw;
    color: #877282;
    margin-top: 1vw;
    display: block;
}

.form {
    background: #FFFAEB;
    padding: 8vw 12vw 20vw;
}

.form .item {
    margin-bottom: 4vw;
}

.form .item_title {
    font-size: 3vw;
    text-align: center;
    margin-bottom: 1vw;
    line-height: 1.3;
}

.form .item select,
.form .item input {
    font-size: 3vw;
    text-align: center;
    width: 100%;
    border: none;
    padding: 2vw 0;
    letter-spacing: 0.1em;
}

.trial {
    display: none;
}

.inq {
    display: none;
}

.input input[type='checkbox'] {
    width: 6vw;
    height: 6vw;
    margin: 0 3vw 0 0;
}

.trial .input_item,
.inq .input_item {
    display: flex;
    align-items: center;
    font-size: 3vw;
    margin-bottom: 5vw;
}

#howKnow,
#trouble {
    margin-top: 12vw;
}

#howKnow .item_title,
#trouble .item_title {
    margin-bottom: 5vw;
}

#howKnow .input {
    padding-left: 12vw;
}

#trouble .input {
    display: flex;
    flex-wrap: wrap;
}

#trouble .input_item:nth-child(2n+1) {
    width: 58%;
}

.troubleText {
    margin-bottom: 10vw;
}

.troubleText textarea,
.inqText textarea {
    height: 50vw;
}

.idealText textarea {
    height: 25vw;
}

textarea {
    resize: none;
    width: calc(100% - 6vw);
    border: none;
    font-size: 3vw;
    padding: 3vw;
    margin-top: 3vw;
}

.trial .item_text {
    font-size: 3vw;
    color: #2B2AA7;
    text-align: center;
    line-height: 1.8;
    width: 90vw;
    margin: 12vw 0 0 -8vw;
}

.inq .inqText .item_title {
    width: 90vw;
    margin-left: -6vw;
    margin-top: 8vw;
}

.submit {
    text-align: center;
    padding-top: 3vw;
}

#submitBtn {
    color: #735682;
    background: #DED7EC;
    padding: 4.3vw 12vw;
    font-size: 3.4vw;
}

.modal {
    position: fixed;
    bottom: -20vw;
    left: 0;
    border-radius: 5vw 5vw 0 0;
    background: #fff;
    font-size: 3vw;
    width: 100%;
    box-shadow: 0px -4px 16px 2px rgba(0,0,0,0.2);
}

.modal .text {
    padding: 5vw 7.5vw;
}

@keyframes fadeIn2Out {
    0% {
        opacity: 0;
        bottom: -20vw;
    }
    10% {
        opacity: 1;
        bottom: 0;
    }
    90% {
        opacity: 1;
        bottom: 0;
    }
    100% {
        opacity: 0;
        bottom: -20vw;
    }
}

.modal.show {
    animation: fadeIn2Out 5s;
}

.input_error {
    font-size: 2.8vw;
    color: #F44336;
    padding: 1vw 2vw;
    margin-top: 1vw;
    display: none;
}
.form-btn {
    color: #735682;
    background: #DED7EC;
    padding: 4.3vw 12vw;
    font-size: 3.4vw;
    border: none;
}