@charset "utf-8";
/* mv
---------------------------------------------------------------------- */
.mv {
    margin-bottom: 40px;

    .mv__heading {
        padding-top: 40px;
    }
}

@media screen and (min-width: 768px) {
    .mv {
        margin-bottom: 80px;

        .mv__heading {
            padding-top: 80px;
        }
    }
}

.contents {
    margin-bottom: 80px;
}

.form {
    display: grid;
    row-gap: 32px;
    max-width: 900px;
    margin-inline: auto;

    > div:last-child {
        text-align: center;
    }

    .required {
        position: relative;
        top: -6px;
        padding-left: 2px;
        color: #ee4444;
        font-size: 10px;
    }

    .wpcf7-form-control-wrap {
        width: 100%;
        margin-top: 12px;

        input,
        textarea {
            width: 100%;
        }
    }

    input,
    textarea {
        padding: 8px;
        border: 1px solid #ddd;
        border-radius: 4px;
    }

    textarea {
        height: 160px;
    }

    ::placeholder {
        color: #ddd;
        line-height: 1.7;
    }

    p:has(input[type="submit"]) {
        display: grid;
        row-gap: 12px;
        justify-content: center;
    }

    .submit {
        padding: 24px 64px;
        border-radius: 100vmax;
        background-color: var(--color-blue);
        color: #fff;
    }
}

.wpcf7-response-output {
    margin-top: 0 !important;
}

@media screen and (min-width: 768px) {
    .form {
        row-gap: 32px;
    }
}

.submit-area p {
    margin-bottom: 40px;
    color: #707070;
    font-size: 20px;
    text-align: left;
}

@media screen and (min-width: 768px) {
    .submit-area p {
        margin-bottom: 60px;
    }
}