@charset "utf-8";
/* CSS Document */


.gallery-wrapper {
	width: 100%;
	position: relative;
    overflow: hidden;
}

.gallery-inner {
	height: 100%;
}

.swiper-wrapper {
 	width: auto;
	height: 100%;
    box-sizing: border-box !important;
}

.swiper-wrapper .swiper-slide {
    height: auto;
    overflow: hidden;
    -webkit-backface-visibility: hidden !important;
    backface-visibility: hidden !important;
	list-style: none;
}

.swiper-slide a {
	display: block;
	height: 100%;
}

.swiper-pagination {
	width: 100%;
	z-index: 1;
	top: 0px;
	position: relative;
}

.swiper-pagination-bullet {
    background: #C7C7C7 !important;
	width: 12px;
	height: 12px;
	margin: 5px;
}

.swiper-pagination-bullet-active {
    background: #5D5D5D !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
	display: none;
}

.swiper-button-prev,
.swiper-button-next {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	width: 40px;
	height: 40px;
	z-index: 1;
}

.swiper-button-prev {
	background: url("../images/common/sw-left.svg");
	left: 0px;
}

.swiper-button-next {
	background: url("../images/common/sw-right.svg");
	right: 0px;
}

.slide_name {
	font-size: clamp(1.5rem,1.6vw,1.6rem);
	padding: 10px 0px;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.swiper-pagination-bullet {
		width: 8px;
		height: 8px;
	}
	
	.swiper-button-prev,
	.swiper-button-next {
		width: 25px;
		height: 25px;
	}
}













