@charset "utf-8";

@keyframes splide-loading {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(1turn)
    }
}

.splide__list img {
    width: 100%;
}

.splide__track--draggable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.splide__track--fade>.splide__list>.splide__slide {
    margin: 0 !important;
    opacity: 0;
    z-index: 0
}

.splide__track--fade>.splide__list>.splide__slide.is-active {
    opacity: 1;
    z-index: 1
}

.splide--rtl {
    direction: rtl;
}

.splide__track--ttb>.splide__list {
    display: block;
}

.splide__container {
    box-sizing: border-box;
    position: relative;
}

.splide__list {
    backface-visibility: hidden;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    margin: 0 !important;
    padding: 0 !important
}

.splide.is-initialized:not(.is-active) .splide__list {
    display: block;
}

.splide__pagination {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
    pointer-events: none;
}

.splide__pagination li {
    display: inline-block;
    line-height: 1;
    list-style-type: none;
    margin: 0;
    pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
    display: none;
}

.splide__progress__bar {
    width: 0;
}

.splide {
    position: relative;
    visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
    visibility: visible;
}

.splide__slide {
    backface-visibility: hidden;
    box-sizing: border-box;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    list-style-type: none !important;
    margin: 0;
    position: relative;
    margin-right: 2%;
    border-radius: 0 0 0 24px;
    border-top-left-radius: 60px;
}

.splide__slide img {
    vertical-align: bottom;
    width: 100%;
  height: 100%;
  object-fit: cover;
}

.splide__spinner {
    animation: splide-loading 1s linear infinite;
    border: 2px solid #999;
    border-left-color: transparent;
    border-radius: 50%;
    bottom: 0;
    contain: strict;
    display: inline-block;
    height: 20px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
}

.splide__sr {
    clip: rect(0 0 0 0);
    border: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
    display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
    display: inline;
}

.splide__track {
    overflow: hidden;
    position: relative;
    z-index: 0;
    width: 77%;
    margin-left: auto;
}

/* 矢印のクリック範囲など */
.splide__arrows {
    height: 5vh;
}

/* 前の矢印 */
.button {
    background-color: transparent;
    border: none;
    padding-bottom: 3%;
}

.prev {
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    right: 73%;
    height: 50px;
    position: absolute;
    bottom: 95%;
    width: 50px;
    background-image: url(../img/prev.png);
}



/* 次の矢印 */
.next {
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    content: "";
    right: 69%;
    height: 50px;
    position: absolute;
    bottom: 95%;
    width: 50px;
    background-image: url(../img/next.png);
}

.prev:hover,
.next:hover {
    cursor: pointer;
}

/* 次のスライドが無い場合の矢印 */
.button:disabled {
    opacity: .6;
}


@media screen and (min-width: 1080px) {

    /* 画面幅が1080px以上（PC専用スタイル） */
    .sp {
        display: none;
    }
}

@media screen and (min-width:800px) and (max-width:1200px) {

    /* 画面幅が768px～1280px（タブレット専用スタイル） */
    .prev {
        right: 77%;
    }

    .next {
        right: 67%;
    }

    #sales h2,
    #purchase h2 {
        margin-left: 5%;
    }
}

@media screen and (max-width: 760px) {
    .splide__arrows {
        height: 8vh;
    }

    .prev {
        right: 20%;
    }

    .next {
        right: 3%;
    }

    .splide__track {
        width: 75%;
        margin-left: auto;
        margin-right: 0;
    }

    .splide__slide {
        margin-right: 7%;
    }
}