

/*********************************************************** small screen */
	/*#slider-pagi-container {
		display: none;
	}*/
	
	/*
	.slider-pagi__elem {
		height: calc( ((100vw - 80px) / 4) * (450 / 580) );
		max-height: none;
	}
	.slider-pagi__elem:before {
		height: calc( ((100vw - 80px) / 4) * (450 / 580) + 10px);
		max-height: none;
	}
	*/
	
/*********************************************************** medium screen */
@media screen and (min-width: 800px) {
	/*#slider-pagi-container {
		display: block;
	}*/
	
	/*
	.slider-pagi__elem {
		height: calc( ((100vw - 240px - 100px) / 4) * (450 / 580) );
		max-height: none;
	}
	.slider-pagi__elem:before {
		height: calc( ((100vw - 240px - 100px) / 4) * (450 / 580) + 10px);
		max-height: none;
	}
	*/
}

/*********************************************************** large screen */
@media screen and (min-width: 1180px) {
	/*#slider-pagi-container {
		display: block;
	}*/
	
	/*
	.slider-pagi__elem {
		height: calc( (((100vw - 240px) * (620 / 1140)) / 4) * (450 / 580) );
		max-height: calc( (((1380px - 240px) * (620 / 1140)) / 4) * (450 / 580) );
	}
	.slider-pagi__elem:before {
		height: calc( (((100vw - 240px) * (620 / 1140)) / 4) * (450 / 580) + 10px);
		max-height: calc( (((1380px - 240px) * (620 / 1140)) / 4) * (450 / 580) + 10px);
	}
	*/
}


/************************************************************** slider container */
.slider-container {
	position: absolute;
	width: 100%;
	height: 100%;
	
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.slide-image-pc {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	margin: 0px;
	
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
}


/************************************************************** side button */
.slider-control {
	z-index: 2;
	position: absolute;
	top: 0px;
	width: 0px;
	height: 100%;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
	will-change: opacity;
	opacity: 0.2;
}
.slider-control.inactive:hover {
	cursor: auto;
}
.slider-control:not(.inactive):hover {
	opacity: 1;
	cursor: pointer;
}
.slider-control.left {
	left: 0px;
	background: white;
}
.slider-control.right {
	right: 0px;
	background: white;
}


/************************************************************** circle button */
/*#slider-pagi-container {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 14px;
	
	display: block;
}
#slider-pagi-container-inside {
	position: relative;
	width: 100%;
	max-width: 1100px;
	margin: auto;
}*/

.slider-pagi {
	position: relative;
	top: 0px;
	left: 0px;
	
	z-index: 3;
	pointer-events: auto;
	
	font-size: 0;
	list-style-type: none;
	
	margin: 0px auto;
	background: transparent;
	
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}


/************************************************************** circle button outline */
.slider-pagi__elem {
	position: relative;
	width: 30px;
	height: 5px;
	
	/*height: calc( (((100vw - 240px) * (620 / 1140)) / 4) * (450 / 580) );
	max-height: calc( (((1380px - 240px) * (620 / 1140)) / 4) * (450 / 580) );*/
	
	vertical-align: top;
	cursor: pointer;
	
	/*
	border-width: 0px;
	border-color: transparent;
	border-style: solid;
	*/
	
	margin: 0px;
	padding: 0px;
	
	/*
	box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
	*/
	
	display: block;
	background: rgb(99, 81, 61);
}
.slider-pagi__elem:before {
	content: "";
	
	position: absolute;
	top: 0px;
	left: 0px;
	
	width: 30px;
	height: 5px;
	
	/*height: calc( (((100vw - 240px) * (620 / 1140)) / 4) * (450 / 580) + 10px);
	max-height: calc( (((1380px - 240px) * (620 / 1140)) / 4) * (450 / 580) + 10px);
	
	border-width: 0px;
	border-color: rgb(60, 60, 60);
	border-style: solid;*/
	
	margin: 0px;
	padding: 0px;
	
	/*
	box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
	*/
	
	/*
	-webkit-transition: -webkit-transform 0.3s;
	transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
	
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	*/
}
.slider-pagi__elem.active:before, .slider-pagi__elem:hover:before {
	/*
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	*/
	
	background: rgb(223, 209, 167);
	
	/*border-width: 0px 0px 2px 0px;*/
}
.slider-pagi-custom {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

/*
.s_pagi_0 {
	background: transparent;
}
.s_pagi_1 {
	background: transparent;
}
.s_pagi_2 {
	background: transparent;
}
.s_pagi_3 {
	background: transparent;
}
*/

/************************************************************** OTHERS */
.slidert {
	/*
	z-index: 1;
	*/
	position: relative;
	height: 100%;
}
.slidert.animating {
	/*
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  will-change: transform;
  */
  transition: opacity 0.5s;
  will-change: opacity;
}
.slidert.animating .slide__bg {
	/*
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  will-change: transform;
  */
  transition: opacity 0.5s;
  will-change: opacity;
}


.slide {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.slide.active {
	/*opacity: 0;
	
	-webkit-transform: translateX(0);
	transform: translateX(0);
	*/
}

.slide__bg {
	position: absolute;
	top: 0;
	left: -50%;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	will-change: transform;
}


.slide:nth-child(1) {
	left: 0;
}
.slide:nth-child(1) .slide__bg {
	left: 0;
}

.slide:nth-child(2) {
	left: 0%;
}
.slide:nth-child(2) .slide__bg {
	left: -50%;
}

.slide:nth-child(3) {
	left: 0%;
}
.slide:nth-child(3) .slide__bg {
	left: -100%;
}

.slide:nth-child(4) {
	left: 0%;
}
.slide:nth-child(4) .slide__bg {
	left: -150%;
}

.slide:nth-child(5) {
	left: 0%;
}
.slide:nth-child(5) .slide__bg {
	left: -200%;
}

.slide:nth-child(6) {
	left: 0%;
}
.slide:nth-child(6) .slide__bg {
	left: -250%;
}

.slide:nth-child(7) {
	left: 0%;
}
.slide:nth-child(7) .slide__bg {
	left: -300%;
}

.slide:nth-child(8) {
	left: 0%;
}
.slide:nth-child(8) .slide__bg {
	left: -350%;
}


.slide__content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
}



