@charset "utf-8";
.loopWrap {
	position: relative;
	display: -webkit-flex;
	display: flex;
	width: 100vw;
	left: 50%;
	margin-left: -50vw;
	overflow: hidden;
}

.loopImgArea {
	display: flex;
	display: -webkit-flex;
	align-items: center;
}

.loopImgArea.first {
	-webkit-animation: loop 24s -12s linear infinite;
	animation: loop 40s -20s linear infinite;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	will-change: transform;
}

.loopImgArea.second {
	-webkit-animation: loop2 10s linear infinite;
	animation: loop2 40s linear infinite;
}



.loopImgBx {
    width: 300px;
    position: relative;
    padding: 0 0 13.4%;
}




.loopImgBx img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	max-width: 100%;
	width: auto;
	max-height: 100%;
	height: auto;
	box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
}

/*インジケーター*/

.carousel-indicators .indicator {
	position: relative;
	-ms-flex: 0 1 auto;
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 auto;
	flex: 0 1 auto;
	width: 15px;
	height: 15px;
	margin-right: 10px;
	margin-left: 10px;
	text-indent: -999px;
	cursor: pointer;
	background-color: #9F9F9F;
	border-radius: 50%;
	border: 1px solid #9F9F9F;
}

.carousel-indicators .indicator.active {
	background-color: #FF8D50;
	border: 1px solid #FF8D50;
}

.topIndicator {
    bottom: -30px;
}

.carousel-indicators {
    bottom: -47px;
}


@-webkit-keyframes loop {
	0% {
		-webkit-transform: translateX(100%);
		-ms-transform: translateX(100%);
		transform: translateX(100%);
	}
	to {
		-webkit-transform: translateX(-100%);
		-ms-transform: translateX(-100%);
		transform: translateX(-100%);
	}
	}

@keyframes loop {
	0% {
		-webkit-transform: translateX(100%);
		-ms-transform: translateX(100%);
		transform: translateX(100%);
	}
	to {
		-webkit-transform: translateX(-100%);
		-ms-transform: translateX(-100%);
		transform: translateX(-100%);
	}
	}

@-webkit-keyframes loop2 {
	0% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
	to {
		-webkit-transform: translateX(-200%);
		-ms-transform: translateX(-200%);
		transform: translateX(-200%);
	}
	}

@keyframes loop2 {
	0% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
	to {
		-webkit-transform: translateX(-200%);
		-ms-transform: translateX(-200%);
		transform: translateX(-200%);
	}
}



/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

.loopImgBx {
	width: 450px;
	position: relative;
	padding: 0 0 13.4%;

}
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* min-width: 768px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
		
.carousel-item {
    height: 960px !important;
}

.carousel-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

@media screen and (max-width:768px) {
  .carousel-item {
    height: 500px !important;
}

}
