@charset "UTF-8";
/*-------------------------------------ギャラリー*/
.gallery {
	padding-top: 80px;
}
.gallery .slide_wrap {
	margin: 20px 0;
}
.gallery .slide {
	width: calc(100% - 40px);
	height: calc(90vh - 80px);
	margin: 0 auto;
	position: relative;
}
.gallery .slide div {
	width: 100%;
	height: calc(90vh - 80px);
	position: relative;
	border-radius: 30px;
	overflow: hidden;
}
.gallery .slide div img {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	object-fit: cover;
}
@media screen and (max-width: 767px) {
	.gallery {
		padding-top: 60px;
	}
}



