

.slideshow-container {
    position: relative;
    width: 100vw;
    height: 100vh;
	height: 100svh;
    overflow: hidden;
}

.slides {
	background-color: #2757ab;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.slide {
    position: relative;
    width: 100%;
    height: 100vh;
	height: 100svh
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 !important;
}

.slide>div {
    width: 100%;
    height: 100vh;
	height: 100svh;
}

.child-slider{
	z-index: -2;
}


/* ドットナビゲーションをスライド内に配置 */
.child-slider .slick-dots {
	display: none;

}

.child-slider div {
    width: 100%;
    height: 100vh;
	height: 100svh;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.slide:nth-child(1) .firstSlideBack {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50vh;
    transform: translateY(50vh);
    transition: transform 0.3s ease-in-out;
	background-color: rgba(255,255,255,0.9);
}

/* ドットのスタイル調整 */
.child-slider .slick-dots li {
    width: 8px;
    height: 8px;
}

.child-slider .slick-dots li button:before {
    font-size: 8px;
    /* ドットサイズを大きめに */
    color: #333;
    /* ドットの色 */
}

.child-slider .slick-dots li.slick-active button:before {
    color: #000;
    /* アクティブドットの色 */
}

.slick-dotted.slick-slider {
    margin: 0;
}

.child-slider img{
	    width: 100%;
    height: 100vh;
	height: 100svh;
object-fit: cover;
}

.cover-cont {
    position: absolute;
    width: 100%;
    height: 100vh;
	height: 100svh;
    background-color: #1b3c76;
	overflow: hidden;
}
.cover-cont img{
    width: 100%;
    height: 100vh;
	height: 100svh;
object-fit: cover;
}



.leftright-img {
    object-position: center center;
}

/*topのスライドのみに適用*/
.allc_slid{}
.allc_slid img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.anim-img {
    object-position: center center;
    /* 基本位置を中央に設定 */
    animation: moveRight 8s linear alternate-reverse infinite;
    /* アニメーション追加 */
}

.index-bar-container {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 20;
}

.index-bar {
    width: 5px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    transition: height 0.3s, background-color 0.3s;
}

.index-bar.active {
    height: 50px;
    background-color: white;
}


/* モバイル画面用の調整 */
@media (max-width: 480px) {

    .anim-img {
        object-position: center center;
        /* 基本位置を中央に設定 */
        animation: none;
    }
	
.child-slider{
	z-index: 0;
}
.child-slider img{
	  width: 100%;
  height: 100%;
  object-fit: cover;
	}	
.cover-cont {
z-index: 50;
}
.cover-cont img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}	
	
}

@keyframes moveRight {
    0% {
        transform: translateX(0);
        /* object-position: right center; */
        /* 開始位置（移動なし） */
    }

    100% {
        transform: translateX(10vw);
        /* object-position: left center; */
        /* 横幅の20%分右へ移動 */
    }
	
	
	
}

