#slide_wrapp {
	position: relative;
	overflow: hidden;
	list-style-type: none;
	padding-left: 0;
	height: 100vh;
}

#slide_wrapp .slide_item {
	opacity: 0;
	transform: scale(1);
	transition: opacity 2s linear, transform 7.5s linear;  //秒数に注意
	position: relative;
	z-index: 1;
}

#slide_wrapp .slide_item:not(:first-child) {
	position: absolute;
	top: 0;
	left : 0;
}

#slide_wrapp .slide_item.show_ {
	opacity: 1;
}
#slide_wrapp .slide_item.zoom_ {
	transform: scale(1.1);
}
#slide_wrapp .slide_item img {
	display: block; //下に余白ができないように
	width: auto;
	overflow: hidden;
}


#slide_wrapp .slide_item.img1 {
	background-image: url(../images/home/slide-01.jpg);
}
#slide_wrapp .slide_item.img2 {
	background-image: url(../images/home/slide-02.jpg);
}
#slide_wrapp .slide_item.img3 {
	background-image: url(../images/home/slide-03.jpg);
}
#slide_wrapp .slide_item.img1,
#slide_wrapp .slide_item.img2,
#slide_wrapp .slide_item.img3 {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	width: 100%;
	height: 100vh;
}





.slide-text {
	width: 300px;
	height: auto;
	position: absolute;
	top: 36%;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	z-index: 10;
}
@media (min-width: 992px) {
	.slide-text {
		width: 350px;
	}
}
@media (min-width: 1200px) {
	.slide-text {
		width: 400px;
	}
}



.scroll {
	font-family: 'PT Serif', serif;
	color: var(--white);
	font-size: .625rem;
	font-style: italic;
	letter-spacing: .1em;
	text-shadow: 0 0 2px rgba(0,0,0,.2);
	writing-mode: vertical-rl;
	position: absolute;
	bottom: 0;
	left: 48%;
	z-index: 10;
}
.scroll span {
	position: relative;
	padding-bottom: 40px;
}
.scroll span::after {
	content: "";
	width: 1px;
	height: 36px;
	background-color: var(--white);
	position: absolute;
	bottom: 0;
	left: 6px;
}

@media (min-width: 768px) {
	.scroll {
		font-size: .8125rem;
	}
	.scroll span {
		padding-bottom: 60px;
	}
	.scroll span::after {
		height: 56px;
		left: 8px;
	}
}




