/* Slide */
.OneSlide {
    width: 100%;
    position: relative;
}

.OneSlide-WP {
    width: 100%;
    height: 450px;
    position: relative;
    overflow: hidden;
}

.OneSlide-WP .slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 0s linear 1s;
    z-index: 1;
}

.OneSlide-WP .slide-img.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 1s ease, visibility 0s;
    z-index: 2;
}

.OneS-left, .OneS-right {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 3;
}

.OneS-left {
    left: 10px;
}

.OneS-right {
    right: -10px;
}

/* 矢印画像のサイズを明示的に指定 */
.OneS-left img, .OneS-right img {
    width: 50%;
    height: auto;
    display: block;
}

.OS-progress {
    text-align: center;
    font-size: 25px;
    color: #CCC;
    padding-top: 10px;
}

.OS-progress span {
    margin: 0 5px;
    cursor: pointer;
}

.SI-active {
    color: #5E9C99;
}
@media (max-width: 640px) {
	.OneSlide-WP {
    width: 100%;
    height: 350px;
    position: relative;
    overflow: hidden;
}
	.OneS-left, .OneS-right {
    width: 45px;
    height: 35px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 3;
}

}