
@charset "utf-8";
/*2507*/
.reviews_bnr_area{
    position: fixed;
    right: 5px;
    bottom: 180px;
    display: flex;
    flex-flow: column;
    gap: 40px;
    width: 300px;
    z-index: 100;
}
.reviews_bnr_area .reviews_bnr{
    position: relative;
    background: #fff;
    border-radius: 10px;
}
.reviews_bnr_area .reviews_bnr .btn_close{
    background: #505050;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 38px;
    z-index: 1;
    cursor: pointer;
    transition: 0.3s;
}
.reviews_bnr_area .reviews_bnr .btn_close::before,
.reviews_bnr_area .reviews_bnr .btn_close::after{
    content: "";
    position: absolute;
    width: 3px;
    height: 20px;
    background: #fff;
    left: 50%;
    top: 50%;
    border-radius: 20px;
}
.reviews_bnr_area .reviews_bnr .btn_close::before{
    transform: translate(-50%,-50%) rotate(45deg);
}
.reviews_bnr_area .reviews_bnr .btn_close::after{
    transform: translate(-50%,-50%) rotate(-45deg);
}
.reviews_bnr_area .reviews_bnr a img{
    width: 100%;
    transition: 0.3s;
}
.reviews_bnr_area .reviews_bnr a:hover img{
    opacity: 0.7;
}
.reviews_bnr_area .reviews_bnr .sSP{
	display: none;
}



