.application-title {
    font-size: 36px;
    font-weight: 600;
    color: #344090;
    margin-bottom: 40px;
}

.application-flow {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 40px;
    padding-left: 20px;
    position: relative;
    width: fit-content;
}

.application-flow::after {
    position: absolute;
    content: "";
    display: block;
    width: 14px;
    height: 20px;
    margin-top: 3px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    background: url(../img/pc_sprite_lp02.png) no-repeat;
    background-size: 1634px auto;
    background-position: left -16px top -13px;
    right: -30px;
}

.application-table {
    background-color: #f0f5fe;
}

.application-table .value-sec {
    margin-block: 0;
    padding-block: 50px;
}

form input, form select, form textarea {
    background-color: #fff;
    background-clip: padding-box;
    border-radius: 3px;
    color: #000000b3;
    border: 1px solid #344090;
    padding: 0 14px;
    font-size: 16px;
    line-height: 100%;
    box-shadow: none;
    transition: border 0.15s, box-shadow 0.15s;
    height: 40px;
    width: 65%;
}

.application-table h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
    padding-left: 20px;
    position: relative;
    text-align: center;    
    color: #344090;
}

.application-input {
    display: flex;
    align-items: flex-start;
    justify-content: end;
    font-size: 20px;
    gap: 30px;
    margin-bottom: 20px;
}

.application-input label {
    display: flex;
    gap: 5px;
    align-items: flex-start;
    margin-top: 5px;
}

label p {
    color: red;
}

.alert {
    font-size: 14px;
}

.application-select {
    width: 65%;
}

.application-select select, .application-select input {
    width: 100%;
}

form textarea {
    height: 100px;
    width: 100%;
}

form button {
    padding-inline: 30px;
    padding-block: 15px;
    background-color: #344090;
    color: #fff;
    border-radius: 10px;
}
@media screen and (min-width: 769px) {
    .application-input > p {
        width: 100%;
    }

    .application-input > p > label {
        width: 65%;
        margin: auto;
    }

    .application-input > p > .wpcf7-form-control-wrap {
        display: flex;
        flex-direction: column;
        width: 65%;
        margin: auto;
    }

    .application-input > p > .wpcf7-form-control-wrap input {
        width: 100%;
    }
    
    form .contact-textarea {
    	flex-direction: column;
    }
    
    .contact-form form .contact-textarea .application-select {
    	margin: auto;
    }
    
    .wpcf7-submit {
    	width: 100%;
    }
    
    .contact-submit > p,
    .wpcf7-response-output{
    	width: 65%;
        margin: auto;
    }
    
    .screen-reader-response {
    	width: 65%;
        margin: auto;
        margin-bottom: 20px;
    }
    
    .application-form form .application-select {
    	margin: auto;
    }
    
    .application-form form select {
    	width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .application-table .value-sec {
        width: 100%;
    }

    .application-input label {
        font-size: 16px;
        margin-top: 10px;
    }

    .application-input {
        flex-direction: column;
    }

    form,
    .screen-reader-response {
        width: 340px;
        margin: auto;
    }

    form input, form select, form textarea {
        width: 340px;
    }

    .application-select {
        width: 100%;
    }

    .application-title {
        font-size: 26px;
    }

    .application-flow a {
        font-size: 16px;
    }
}