@charset "UTF-8";
/*///////////////////////////////////////////////////////////

スライダー用CSS

///////////////////////////////////////////////////////////*/
.swiper-wrapper{
	height: initial;
}
.slider_section{
	margin-top: 70px;
	margin-bottom: 50px;
	padding: 0 5px;
}

.slider_section h2{
	text-align: center;
	font-size: 18px;
	padding-bottom: 10px;
}
@media screen and (min-width: 737px){
.slider_section h2{
	font-size: 20px;
}
}

.slider_cont{
	width: auto;
	height: auto;
}

.slider_item{
	display: flex;
	flex-direction:column;
}

.slider_item--detail{
	order: 1;
	display: flex;
	flex-direction:column;	
	font-size: 12px;

}
@media screen and (min-width: 737px){
	.slider_item--detail{
		font-size: 13px;
	}
}

.slider_item--thumbnail{
	position: relative;
}
@media screen and (min-width: 737px){
	.slider_item--thumbnail{
		min-height: 200px;
	}
}

.slider_item--detail a{
	font-size: 12px;
	text-decoration: none;
}
@media screen and (min-width: 737px){
	.slider_item--detail a{
		font-size: 13px;
	}
}

.slider_item--detail a:link,.slider_item--detail a:visited {
	color: #333;
}

.slider_item--thumbnail img{
		width: 100%;
		height: 100%;
	}

@media screen and (min-width: 737px){
	.slider_item--thumbnail img{
		width: 100%;
	}
}


.swiper-button-next,.swiper-button-prev{
	position: absolute;
	top: 50%;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	z-index: 10;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
	background: rgba(246, 246, 246, 0.8);
	color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next:hover,.swiper-button-prev:hover{
	background: rgba(255, 255, 255, 0.9);
}

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

.swiper .swiper-button-prev{
	left: 0;
}

.swiper .swiper-button-next{
	right: 0;
}

.swiper-button-next::after{
	border-top: solid 2px #636363;
	border-right: solid 2px #636363;
	right: 14px;
}

.swiper-button-prev::after{
	border-bottom: solid 2px #636363;
	border-left: solid 2px #636363;
	left: 14px;
}

.swiper-button-next::after,.swiper-button-prev::after{
	content: '' !important;
	position: absolute;
	top: 50%;
	right:16px;	
	transform: translateY(-50%) rotate(45deg);
}

.swiper-button-prev:after, .swiper-button-next:after{
	width: 14px;
	height: 14px;
}

.button-favorite{
	background: url('../img/icon/icon-cart-favorite-pc.svg') 50% 50% no-repeat;
	position: absolute;
	bottom: 0;
	right: 0;
	height: 24px;
	width: 24px;
	background-color: rgba(255, 255, 255, 80%);
	border-radius: 50%;
	will-change: transform;
	@media screen and (min-width: 737px){
	}
}


.button-favorite.is-active{
	background: url('../img/icon/icon-cart-favorite-fill-pc.svg') 50% 50% no-repeat;
	background-color: rgba(255, 255, 255, 80%);
}

.button-favorite[type=button]{
	appearance:none;
	cursor:pointer;
	border: 0;
}

.button-favorite:hover {
-webkit-animation: favorite_btn_hover .3s linear 0s 1;
animation: favorite_btn_hover .3s linear 0s 1;
}

@-webkit-keyframes favorite_btn_hover {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes favorite_btn_hover {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}