.contact__wrapper dl {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    padding-top: 40px;
}

.contact__wrapper dl dt {
    font-size: 14px;
    font-weight: 600;
}

.contact__wrapper dl dt span {
    color: #D80000;
    padding-left: 4px;
}

.contact__wrapper dl input,
.contact__wrapper dl textarea {
    background-color: #F6F6F6;
    border-radius: 4px;
    border: none;
    padding: 12px 8px;
    width: 60%;
}

input.wpcf7-submit {
    background-color: #D80000;
    border: 1px solid #D80000;
    border-radius: 4px;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    margin-top: 24px;
    transition: .3s;
    width: 240px;
}

input.wpcf7-submit:hover {
    background-color: #ffffff;
    color: #D80000;
}

.contact__wrapper h4 {
    font-size: 28px;
    font-weight: 600;
    padding-bottom: 32px;
    font-family: 'Noto Sans JP', sans-serif;
}

.contact__more {
    align-items: center;
    display: flex;
    column-gap: 16px;
    padding-top: 40px;
}

.contact__more a {
    color: #1A1A1A;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: .02em;
}

.contact__more a:hover {
    text-decoration: underline;
}

.contact__more-icon {
    border: 1px solid #D80000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
}

.contact__more-icon img {
    height: 8px;
    width: 20px;
}

@media screen and (max-width: 720px) {
    .contact__box h3 {
        font-size: 4.8vw;
    }
    .contact__more-icon {
        height: 8vw;
        width: 8vw;
    }
    .contact__more-icon img {
        height: 4vw;
        width: 3.2vw;
    }
    input.wpcf7-submit {
        width: 80vw;
    }
    .contact__wrapper dl input,
    .contact__wrapper dl textarea {
        width: 82vw;
    }
    .page-content {
        padding-bottom: 8vw;
    }
}