@charset "UTF-8";

.ct_blade_caption_block{
    background-color: rgb(149, 97, 52);
    border-radius: 50%;
    padding: 1em 3em;
}.ct_blade_caption_block::before, .ct_blade_caption_block::after{
    background-color: rgb(149, 97, 52);;
    width: 2em;
    height: 1.5em;
}.ct_blade_caption_block::before{
    top: 100%;
}.ct_blade_caption_block::after{
    top: 95%;
}

.ct_blade_caption{
    color: white;
    font-weight: bold;
    width: fit-content;
    margin: auto;
    font-size: 2em;
}

.customer_testimonials_frame{
    background-color: rgb(231, 215, 196);
    padding: 1em 0 2.5em;
    
}

.swiper_ct_container{
    margin: auto;
    position: relative;
}

.slider_ct_items{
    background-color: rgb(240, 246, 231);
    padding: 1em;
    border-radius: 20px;
}.slider_ct_items > img{
    width: 90%;
    height: auto;
}

.swiper-button-ct-prev, .swiper-button-ct-next{
    position: absolute;
    top: 50%;
    background: rgba(0, 0, 0, 0.5);
}

.swiper-button-sale-next:after{
    left: 50%;
}

.swiper-button-sale-prev:after{
    left: 50%;
}

/* PC */
@media screen and (min-width: 769px) {
    .swiper_ct{
        width: 100%;
    }

    .swiper-button-ct-prev, .swiper-button-ct-next{
        width: 60px;
        height: 60px;
        border-radius: 50%;
        font-size: 2em !important;
    }

    .swiper-button-ct-prev {
        left: -100;
        transform: translate(0%, -50%);
    }

    .swiper-button-ct-next {
        right: -100;
        transform: translate(0%, -50%);
    }
}

/* SP */
@media screen and (max-width: 768px) {
    .swiper_ct{
        width: 85%;
    }

    .swiper-button-ct-prev, .swiper-button-ct-next{
        width: 30px;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        font-size: 1em !important;
    }

    .swiper-button-ct-prev {
        left: 0;
        transform: translate(0%, -50%);
    }

    .swiper-button-ct-next {
        right: 0;
        transform: translate(0%, -50%);
    }
}