.slideshow {
    margin: 0;
    padding: 0;
    width : 600px;
    height: 400px;
    justify-content: center;
    align-items: center;
}

.slider-container {
    position: relative;
    display: flex;
    width: 80%;
    height : 80%;
    /* height: 500px; */
    border: 5px solid lightgray;
border: 5px solid skyblue;border-radius: 5px;
}

/* 画像コンテナ */
.image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    object-fit: cover;
}

/* 画像 */
.img2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    /* 透明（非表示）*/
    transition: opacity 0.5s;
}

/* 画像を表示するためのクラス */
.img2.image-active {
    opacity: 1;
    /* 不透明（表示）*/
    transition: opacity 0.5s;
}

/* ナビゲーションコンテナ */
.nav-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: skyblue;
    /* border-radius: 5px; */
    /* background-color: yellow; */
}

/* 新しく作成したボタンに追加するクラス */
.nav-btn {
    height: 15px;
    width: 15px;
    display: inline-block;
    margin: 10px;
    background-color: #0d7df5;
    /* 青色 */
    border-radius: 25%;
    border: none;
    cursor: pointer;
}

/* ボタンの色を変えるためのクラス */
.nav-btn.btn-active {
    background-color: #f99f3e;
    /* オレンジ色 */
}

.nav-btn:hover {
    box-shadow: 0 0 5px 3px white; }