﻿.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    text-align:left;
    display: block; /* 中央寄せ */
}

.slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
pointer-events: none;  /* 非表示のスライドはクリック不可 */
}

.slide a {
    display: block;
    width: 100%;
    height: 100%;
}


.slide img{
    width: 100%;
    height: auto;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;  /* アクティブなスライドだけクリック可能 */

}

/* 画像に基づく高さのボックス */
.slideshow-padding {
    width: 100%;
    height: 50%;
    background-color: transparent;
}