@charset "UTF-8";
.bg_snow {
    background-image: url(../images/cast_season5/bg_mv.jpg);
    background-size: cover;
    position: fixed;
    z-index: -1;
    height: calc(100vh - 100px);
    width: 100%;
    top: 100px;
}
.review-wrapper {
    padding: 0 0 80px;
}
.review_list {
    padding: 0;
}
.review_item {
    width: calc((100% - 16px * 2) / 3);
    margin-bottom: 48px;
    padding: 2em;
    list-style: none;
    background: #fff;
    box-shadow: 6px 6px 0 rgba(27, 94, 98, .2);
    position: relative;
    z-index: 1;
}

.review_item::after {
    content: "";
    width: 30px;
    height: 30px;
    clip-path: polygon(0 0, 100% 0, 20% 100%);
    background-color: #fff;
    position: absolute;
    bottom: 2px;
    left: 40%;
    translate: 0% 100%;
    z-index: 0;
}
.review_item::before {
    content: "";
    width: 30px;
    height: 30px;
    clip-path: polygon(0 0, 100% 0, 20% 100%);
    background-color: transparent;
    position: absolute;
    bottom: 0;
    left: 40%;
    translate: 6px 106%;
    filter: drop-shadow(0 0 0 rgba(27, 94, 98, .2));
    background-color: rgba(27, 94, 98, .2);
    z-index: 0;
  }
.review_item p {
    color: #1B5E62;
    font-size: 16px;
    line-height: 1.7em;
    letter-spacing: 0.05em;
}

p.review_age_gender {
    font-size: 14px;
    letter-spacing: 0.1em;
    margin-top: 1em;
    padding-left: 2.5em;
    position: relative;
}

p.review_age_gender::before {
    content: "";
    width: 2em;
    height: 1px;
    background-color: rgba(27, 94, 98, .2);
    position: absolute;
    left: 0;
    top: 50%;
    translate: 0 -50%;
}

@media screen and (max-width: 1024px) {
    body.post-type-archive-review .bg_snow {
        height: calc(100vh - 50px);
        top: 50px;
    }
}
@media screen and (max-width: 768px) {
    .review_item {
        width: calc((100% - 16px) / 2);
        padding: 1.5em;
    }

.review_item::after,
.review_item::before {
    width: 24px;
    height: 24px;
}
    .review_item p {
        font-size: 14px;
    }
    p.review_age_gender {
        font-size: 12px;
    }
}
@media screen and (max-width: 600px) {
    .review-wrapper {
        padding: 0 0 40px;
    }
    .review_item {
        width: 100%;
        margin-bottom: 40px;
    }
}