#page-voice {
    background: #fff;
    padding-top: 5rem;
}

.voice-haro {
    position: relative;
    padding: 4.5rem 0;
    overflow: hidden;
    margin: 0 auto;
}

.voice-title {
    font-size: clamp(2.6rem, 1.791rem + 3.01vw, 4.2rem);
    line-height: 1.6;
    letter-spacing: .02em;
    padding-left: 3rem;
    font-weight: 700;
    color: #3C3C3D;
}

.voice-haro .voice-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
}

.voice-slide .voice-slide--st {
    font-size: clamp(8.4rem, 4.555rem + 14.31vw, 16rem);
    font-weight: 600;
    color: rgba(156, 156, 156, 0.226);
    text-align: center;
}

.voice-slide .voice-slide--track {
    overflow: visible;
}

.voice-slide--item {
    width: auto !important;
}

.voice-content {
    padding: 3rem 0 8rem;
}

.v-rink_btn {
    display: block;
    width: 260px;
    margin: 10rem auto 3rem;
    text-align: center;
    color: #dfdfdf;
    position: relative;
    z-index: 3;
}

.v-btn-flat span {
    position: relative;
    color: #000;
    font-size: 1.4rem
}

.v-btn:hover span {
    color: #fff;
}

.v-btn-flat {
    display: block;
    position: relative;
    overflow: hidden;
    color: #3C3C3D;
    font-weight: 500;
    border-radius: 45px;
    background: #fff;
    text-decoration: none;
    box-shadow: 0 0 5px 0 #3C3C3D;
    padding: 2rem 0;

}

.v-btn-flat:before {
    position: absolute;
    top: -18px;
    left: 0;
    width: 150px;
    height: 150px;
    content: '';
    transition: all .5s ease-in-out;
    transform: translateX(-85%) translateY(-28px);
    border-radius: 50%;
    background: #3C3C3D;
}

a.v-btn-flat:hover:before {
    width: 500px;
    height: 500px;
    transform: translateX(-10px) translateY(-180px);
}


.v-btn-border {
    position: relative;
    top: 0;
    left: 0;
    transform-style: preserve-3d;

}

.v-btn-border::after {
    content: "\f061";
    font: var(--fa-font-solid);
    position: absolute;
    top: 20px;
    left: 215px;
    width: 15px;
    height: 100%;
    transition: all .5s ease-in-out;
    font-size: 1.4rem;
    color: #3C3C3D;
}

.v-btn-border:hover::after {
    content: "\f35a";
    font: var(--fa-font-solid);
    position: absolute;
    font-weight: 700;
    width: 25px;
    height: 50px;
    transform: translateX(10%) translateY(0);
    color: #fff;
    font-size: 1.4rem;
}

.voice-list {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0 3rem;
    margin: 0 auto;
}

.voice-list--item {
    display: grid;
    grid-template-columns: 1fr;
    align-self: flex-start;
    opacity: 0;
    transform: translateY(45px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.voice-list--item.visible {
    opacity: 1;
    transform: translateY(0);
  }

.voice-list--item::after {
    content: "";
    width: 100%;
    height: 1px;
    padding: 1.4rem 0;
    border-bottom: solid 1px #62626282;

}

.voice-list--item:not(:first-child) {
    margin-top: 5rem;
}

.item-img {
    width: 100%;
    height: 100%;
    max-height: 300px;
    overflow: hidden;
    border-radius: 8px;
}

.item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.4rem;
    line-height: 1.6;
    letter-spacing: .02em;
    color: #fff;
    align-items: center;
}

.item-tags span {
    font-size: 1rem;
    padding: 4px 8px;
    background: #86A78A;
    border-radius: 48px;
}

.item-review--rate {
    margin-top: 1.4rem;
    color: #3C3C3D;
}

.stars::before {
    content: "★★★★★";
    letter-spacing: 3px;
    background: linear-gradient(90deg, gold var(--rating), gray var(--rating));
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.4rem;
}

.stars {
    --rating: calc($ {
            review.rating
        }

        / 5 * 100%);
}

.item-text {
    margin-top: 1.4rem;
    line-height: 1.4;
    letter-spacing: .02em;
    font-size: 1.4rem;
    color: #3C3C3D;
}

@media (min-width: 960px) {

    .voice-haro {
        padding: 8.5rem 0;
    }

    .voice-title {
        max-width: 1400px;
        margin: 0 auto;

    }

    .voice-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        padding: 0 3rem;
        gap: 5rem;
        max-width: 1400px;
        margin-top: 8rem;

    }

    .voice-list--item::after {
        content: none;
        width: 100%;
        height: 1px;
        padding: 1.4rem 0;
        border-bottom: solid 1px #62626282;

    }

    .voice-list--item:not(:first-child) {
        margin-top: 0;
    }

    .item-img {
        min-height: 300px;
    }
}