.review_add_form {
    display: flex;
    width: 100%;
    gap: 20px;
    align-items: center;
}

.review_add_box_left {
    width: 40%;
}

.reviw_add_img {
    margin: 0 auto;
    width: 100%;
}

.review_add_box_right {
    width: 60%;
    align-items: center;
}

.review_add_btn_list {
    justify-content: center;
}

.sp_review_ttl {
    display: none;
}

@media screen and (max-width: 767px) {
    .review_add_form {
        flex-wrap: wrap;
    }

    .review_add_box_left {
        width: 100%;
    }

    .review_add_box_right {
        width: 100%;
    }

    .review_add_btn_list {
        align-items: center;
    }

    .sp_review_ttl {
        display: inline-block;
        position: relative;
        text-align: center;
        font-size: 16px;
        font-weight: 600;
        margin: 0 auto 20px;
        width: 100%;
        border: 1px solid #cba94a;
        padding: 10px;
        color: #ed5565;
        background-color: #f7f7f7;
    }

    .sp_review_ttl::before {
        content: '';
        position: absolute;
        width: 50px;
        height: 1px;
        background: #CBA94A;
        transform: rotate(44deg);
        left: -16px;
        bottom: 8px;
    }

    .sp_review_ttl::after {
        content: '';
        position: absolute;
        width: 50px;
        height: 1px;
        background: #CBA94A;
        transform: rotate(44deg);
        right: -16px;
        top: 8px;
    }

    .sp_review_ttl:link,
    .sp_review_ttl:visited {
        color: #ed5565;
    }
}