@keyframes CSS22right {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}
.hr-menu-wrap {
    border: 1px solid #eee;
    padding: 50px 40px;
    position: relative;
}
.hr-menu-wrap .left-vector {
    position: absolute;
    left: 0;
    top: 0;
}
.hr-menu-wrap .right-vector {
    position: absolute;
    right: 0;
    top: 0;
}
.hr-menu-wrap .menu-title {
    margin-bottom: 25px;
}
.hr-menu-wrap .menu-title h2 {
    font-size: 2.813rem;
    font-weight: 700;
    color: var(--color-10);
    font-family: var(--font-02);
    margin-bottom: 0;
}
.hr-menu-wrap .menu-title img {
    vertical-align: text-top;
}
.hr-menu-wrap ul {
    margin: 0;
    padding: 0;
}
.hr-menu-wrap ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.hr-menu-wrap ul li .item-name {
    display: flex;
    align-items: center;
}
.hr-menu-wrap ul li .item-name .item-img {
    border-radius: 50%;
    position: relative;
    margin-right: 15px;
}
.hr-menu-wrap ul li .item-name .item-img img {
    border-radius: 50%;
}
.hr-menu-wrap ul li .item-name .item-img:after {
    content: "";
    height: 110%;
    width: 110%;
    border: 1px dashed var(--color-4);
    position: absolute;
    left: -3px;
    top: -3px;
    border-radius: 50%;
}
.hr-menu-wrap ul li .item-name .content h3 {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--color-3);
    font-family: var(--font-02);
    margin-bottom: 0;
}
.hr-menu-wrap ul li .item-name .content p {
    font-size: 1rem;
    font-weight: 400;
    color: #5e5e5e;
    font-family: var(--font-01);
    margin-bottom: 0;
    max-width: 300px;
}
.hr-menu-wrap ul li .price {
    height: 80px;
    width: 80px;
    line-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    transition: .35s;
}
.hr-menu-wrap ul li .price span {
    display: inline-block;
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--color-10);
    font-family: var(--font-01t);
    transition: .35s;
}
.hr-menu-wrap ul li .price:after {
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
    border: 1px dashed var(--color-3);
    border-radius: 50%;
    animation: CSS22right 30s linear infinite running;
    transition: .35s;
}
.hr-menu-wrap ul li:last-child {
    margin-bottom: 0;
}
@media (max-width: 1199px) {
    .hr-menu-wrap {
        padding: 50px 20px;
    }
}
@media (max-width:576px){
    .hr-menu-wrap ul li {
        margin-bottom: 35px;
    }
    .hr-menu-wrap ul li .item-name {
        display: block;
    }
    .hr-menu-wrap ul li .item-name .item-img {
        width: 75px;
        height: 75px;
    }
    .hr-menu-wrap ul li .item-name .item-img:after {
        left: -8px;
        top: -8px;
    }
}
@media (max-width:320px) {
    .hr-menu-wrap ul li .price span {
        font-size: 1rem;
    }
    .hr-menu-wrap ul li .price {
        height: 65px;
        width: 65px;
    }
}