@charset "utf-8";
/*===========================================
スライドバナー
===========================================*/
.swiper-container {
	font-size: 1.1rem;
	line-height: 1.25;
	/* max-width: 1200px; */
	margin: 0 auto;
	overflow: visible;
	width: 100%;
	height: 580px;
}
.swiper-container ul,
.swiper-container ol {
	padding: 0 !important;
}
#slider {
	position: relative;
	overflow: hidden;
	z-index: 0;
	margin: 0 auto;
}

#slider .swiper-slide {
	/* max-width: 1200px; */
	height: auto;
	line-height: 0;
	margin: 0;
	/* height: 580px; */
}
#slider .swiper-slide a{
	line-height:0;
}
#slider .swiper-slide img{
	object-fit: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
}
#slider .swiper-slide-prev,
#slider .swiper-slide-next {
	position: relative;
}
#slider .swiper-slide-prev::after,
#slider .swiper-slide-next::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0.4;
}
.swiper-container-horizontal > .swiper-pagination {
	list-style: none;
	line-height: 30px;
	padding: 0;
	margin-top: 0;
	text-align: center;
	position: absolute;
	width: 100%;
	/* max-width: 1200px; */
	margin: 0 auto;
	bottom: -45px;
}
.swiper-container-horizontal > .swiper-pagination .swiper-pagination-bullet {
	display: inline-block;
	cursor: pointer;
	background-color: #d9d7d7;
	font-size: 0;
	width: 30px;
	height: 4px;
	vertical-align: middle;
	margin: 0 8px !important;
	border: none;
	border-radius: 60px;
	box-sizing: border-box;
	opacity: 1;
}
.swiper-container-horizontal > .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: #FFD814;
}
.swiper-button-next, .swiper-button-prev {
	background: transparent;
	width: 50px;
	height: 50px;
	text-align: center;
	margin-top: -22px;
	background-size: 27px 44px;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	width: 27px;
	height: 44px;
	margin-top: 0;
	z-index: 10;
	cursor: pointer;
	background-size: 27px 44px;
	background-position: center;
	background-repeat: no-repeat;
}
.swiper-button-prev {
	left: 50%;
}
.swiper-button-next {
	right: 50%;
}
@media screen and (max-width:768px){
	.swiper-container {
		/* font-size: 1.1rem; */
		/* line-height: 1.25; */
		/* max-width: 1200px; */
		/* margin: 0 auto; */
		/* overflow: visible; */
		/* width: 100%; */
		height: 390px;
	}
}
@media screen and (max-width:580px){
	.swiper-container {
		/* font-size: 1.1rem; */
		/* line-height: 1.25; */
		/* max-width: 1200px; */
		/* margin: 0 auto; */
		/* overflow: visible; */
		/* width: 100%; */
		height: 500px;
	}
	.swiper-container-horizontal > .swiper-pagination {
		list-style: none;
		line-height: 30px;
		padding: 0;
		margin-top: 0;
		text-align: center;
		position: absolute;
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
		bottom: -30px;
	}
	.swiper-container-horizontal > .swiper-pagination .swiper-pagination-bullet {
		width: 20px;
		margin: 0 5px !important;
		height: 3px;
	}
}

/*スクロールボタン調整
======================*/
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
	background-image: url("../img/slide-arrow-left.svg");
	left: -65px;
	right: auto;
	top: 50%;
	width: 70px;
	height: 70px;
	cursor: pointer;
	background-size: contain;
	opacity: 1;
	transform: translateY(-50%);
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
	background-image: url("../img/slide-arrow-right.svg");
	right: -65px;
	left: auto;
	width: 70px;
	height: 70px;
	cursor: pointer;
	background-size: contain;
	top: 50%;
	opacity: 1;
	transform: translateY(-50%);
}
@media screen and (max-width:580px){
	.swiper-button-prev,
	.swiper-container-rtl .swiper-button-next {
		left: 0;
		right: auto;
		top: 50%;
		width: 18px;
		height: 35px;
		cursor: pointer;
		background-size: contain;
		opacity: 1;
		display: block;
	}
	.swiper-button-next,
	.swiper-container-rtl .swiper-button-prev {
		right: 0;
		left: auto;
		top: 50%;
		width: 18px;
		height: 35px;
		cursor: pointer;
		background-size: contain;
		opacity:1;
		display: block;
	}
}