﻿@charset "UTF-8";

/* Swiper
 * ========================================================================== */
*,
::before,
::after {
	box-sizing: border-box; /* 1 */
	background-repeat: no-repeat; /* 2 */
}

@media screen and (max-width: 500px) {
	.pc {
		display: none !important;
	}
}
@media screen and (min-width: 501px) {
	.sp {
		display: none !important;
	}
}

/*================================================
 *  swiper
 ================================================*/
.swiper {
	overflow: hidden;
	width: 100%;
	margin: 0 auto 2em;
}

.swiper-wrapper {
	margin: 0 0 1.5em;
}

.swiper-slide img {
	display: block;
	width: 100%;
	margin: 0 auto;
}

.swiper .swiper-navigation-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	gap: 0.75rem;
	height: 80px;
	margin: 0;
}
.swiper .swiper-pagination {
	position: relative;
	display: inline-block;
	width: auto;
	top: unset;
	bottom: unset;
}
.swiper .swiper-button-prev,
.swiper .swiper-button-next {
	position: relative;
	margin: 0;
	width: 20px;
	height: 20px;
	border: solid 1px #999;
	border-radius: 10px;
	background-color: #fff;
	top: unset;
	left: unset;
	right: unset;
	bottom: unset;
}
.swiper .swiper-button-prev::after,
.swiper .swiper-button-next::after {
	content: "";
	width: 20px;
	height: 20px;
	background-position: center;
}
.swiper .swiper-button-prev::after {
	background-image: url(../img/000025235.svg);
}
.swiper .swiper-button-next::after {
	background-image: url(../img/000025236.svg);
}
.swiper .swiper-controll {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin: 1rem 0 0 0;
}
.swiper .swiper-controll button {
	position: relative;
	padding: 5px 10px 5px 20px;
	border: solid 1px #999;
	border-radius: 1.625rem;
	background-color: transparent;
	cursor: pointer;
	color: #333;
	font-size: 16px;
	font-weight: bold;
	line-height: 1;
}
.swiper .swiper-controll button::before {
	position: absolute;
	display: block;
	content: "";
	background-size: contain;
	width: 9px;
	height: 8px;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
}
.swiper .swiper-controll button.swiper-controll-start::before {
	background-image: url(../img/000030763.svg);
}
.swiper .swiper-controll button.swiper-controll-stop::before {
	background-image: url(../img/000030764.svg);
}
.swiper .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	opacity: 1;
	background-color: #017a4f;
}
.swiper .swiper-pagination-bullet-active {
	background-color: #a0c81e;
}

@media screen and (min-width: 961px) {
	.swiper {
		margin-top: 1.2em;
		width: 100%;
	}
	.swiper .swiper-slide img {
		border-radius: 8px;
	}
	.swiper .swiper-navigation-wrapper {
		height: 55px;
	}

	.swiper .swiper-controll button:hover {
		background-color: #FFFAE3;
	}
	.swiper .swiper-pagination-bullet:hover {
		background-color: #FFFAE3;
	}
	.swiper .swiper-pagination-bullet-active:hover {
		background-color: #595757;
	}
}

@media screen and (max-width: 960px) {
	.swiper {
		margin-top: 1em;
	}
}

@media screen and (max-width: 500px) {
	.swiper {
		margin-top: 0;
	}

	.swiper-wrapper {
		margin: 0 0 0.75em;
	}
}

