@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&display=swap&text=1234567890');

.swiper-manual__wrapper {

    margin-bottom: 20px;
    position: relative;
}



.swiper-outer {
    opacity: 0;
}

.swiper-outer.is_active {
    opacity: 1;
    transition: .2s;
}

/***********************
通常のスワイパー 
***********************/

.swiper-center .swiper-button-next:after,
.swiper-center .swiper-button-prev:after {
    font-size: 20px !important;
}

.swiper-center .swiper-button-next,
.swiper-center .swiper-button-prev {
    width: 8px !important;
}

.swiper-center .swiper-slide img {
    border: 1px solid #eee;
}

.swiper-center .swiper-slide:not(.swiper-slide-active) img {
    scale: .8;
    transition: .2s;
}

.swiper-center .is_active {
    opacity: 1;
    transition: .5s;
}

.swiper-center .swiper-pagination-bullets.swiper-pagination-horizontal {
    margin-bottom: 20px;
    margin-top: 10px;
    position: relative;
}


.swiper-center .swiper-button-group {
    gap: 10px;
    width: 100%;
    position: relative;
    display: flex;
    position: absolute;
    bottom: 0;
    right: 0;
    justify-content: right;
}


.swiper-center .swiper-button-prev,
.swiper-center .swiper-button-next {
    position: initial;
    height: 30px;
    width: 30px !important;
    border-radius: 100px;
    background: #646464;
}

.swiper-center .swiper-button-prev:after {
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #fff;
    border-left: 0;
}

.swiper-center .swiper-button-next:after {
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #fff;
    border-right: 0;
}

.swiper-center .swiper-outer:not(.is_active) {
    opacity: 0 !important;
    visibility: hidden !important;
    height: 100px !important;
    overflow: hidden !important;
}

.swiper-center .swiper-outer:not(.is_active) img {
    height: 100px !important;
}



/***********************
横スクロールのスワイパー
***********************/

.swiper-manual .swiper_slide__heading {
    font-size: 18px;
    font-weight: bold;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 5px;


    padding-bottom: 5px;

}

/* 
.swiper-manual .swiper_slide__heading:before,
.swiper-manual .swiper_slide__heading:after{
    content: "";
    display: inline-block;
}


.swiper-manual .swiper_slide__heading:after{
        background-image: url('../../../static/images/component/arrow-right.svg');
    background-size: 15px 15px;
    background-repeat: no-repeat;
    background-position: center;
    width: 15px;
    height: 15px;
    vertical-align: middle;
} */

.swiper-manual a img {
    aspect-ratio: 1080 / 563;
    object-fit: cover;
    border: 1px solid #eee;
}

.swiper-manual .ranknum {
    line-height: 1;
    font-family: "Alfa Slab One", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
    position: absolute;
    font-weight: bold;
    left: 0;
    bottom: 0;
    transform: translateY(0%);
    color: #000;
    font-weight: bold;
    text-shadow:
        -2px -2px 0 white,
        2px -2px 0 white,
        -2px 2px 0 white,
        2px 2px 0 white;
}

.swiper-manual .access {
    text-align: right;
    font-size: 14px;
    font-weight: bold;
    color: #A7E203;
}

.swiper-manual .access:before {
    content: "";
    display: inline-block;
    mask-image: url(../../../static/images/component/play.svg);
    mask-size: 15px 15px;
    mask-repeat: no-repeat;
    mask-position: center;
    width: 15px;
    height: 15px;
    vertical-align: middle;
    background: #a7e206;
}

.access {
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 5px;
}


.swiper-wrapper a:hover img {
    opacity: 1;
    filter: contrast(1.1) brightness(.9);

}

.swiper-button-next:after,
.swiper-button-prev:after {
    opacity: 0;
    font-size: 16px;
}

.swiper:hover .swiper-button-next:after,
.swiper:hover .swiper-button-prev:after {
    opacity: 1;
}

.swiper-button-next {
    right: 0;
    border-radius: 10px 0 0 10px;
}

.swiper-button-prev {
    left: 0;
    border-radius: 0 10px 10px 0;
}

#swiper-manual-contents {
    padding: 0 10px;
}

.swiper:hover .swiper-button-next:focus-visible,
.swiper:hover .swiper-button-prev:focus-visible {
    border: none;
    outline: none;
}

.swiper:hover .swiper-button-next,
.swiper:hover .swiper-button-prev {
    top: 0;
    margin-top: 0;
    background: #00000032;
    height: 100%;
    color: #fff;
    padding: 0 0px;
}

.swiper:hover .swiper-button-next.swiper-button-disabled,
.swiper:hover .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
}

@media screen and (max-width:500px) {

    /* 
    .swiper-button-next:focus-visible,
    .swiper-button-prev:focus-visible {
        border: none;
        outline: none;
    }

    .swiper:hover .swiper-button-next,
    .swiper:hover .swiper-button-prev,
    .swiper-button-next,
    .swiper-button-prev {
        top: 0;
        margin-top: 0;
        background: #272727d9;
        height: 80%;
        color: #fff;
        padding: 0 2px 0;
        width: 10px;
        margin: auto;
        bottom: 0;
    }

    .swiper-button-next.swiper-button-disabled,
    .swiper-button-prev.swiper-button-disabled {
        opacity: 0;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        opacity: 1;
        font-size: 12px;
    }

    .swiper-button-next {
        right: 0;
        border-radius: 5px 0 0 5px;
    }

    .swiper-button-prev {
        left: 0;
        border-radius: 0 5px 5px 0;
    }

    #swiper-manual-contents {
        padding: 0 20px;
    } */
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

.swiper_slide__heading--outer {
    padding-left: 2.5%;
}

.swiper-outer {
    opacity: 0;
}

.swiper-outer.is_active {
    opacity: 1;
    transition: .2s;
}