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

section.top_component_02::after {
    background: url(../images/common/back_top_yellow.svg);
}

.tour-slide {
	margin-top: 4vw;
	display: flex;
	align-items: center;
}

.tour-slide li img {
	filter: drop-shadow(0px 3px 6px rgba(0,0,0,0.16));
	border-radius: 20px;
}

@media screen and (min-width: 601px) {
	.tour-slide li {
		margin: 0px -15px;
		transform: scale(.8);
		transition: opacity .5s, transform .5s;
	}
	
	/* 中央のスライド */
	.tour-slide li.slick-active {
	  opacity: 1;
	  transform: scale(1);
	}
}

.prev_arrow::before,
.next_arrow::after {
	content: '';
	background-repeat: no-repeat !important;
	background-size: contain !important;
	display: inline-block;
	width: 40px;
	height: 40px;
	position: relative;
	cursor: pointer;
}

.prev_arrow::before {
	background: url("../images/common/slide_arrow_prev.svg");
	left: 0px;
}

.next_arrow::after {
	background: url("../images/common/slide_arrow_next.svg");
	right: 0px;
}

.tour_txt {
	font-size: clamp(14px,1.6vw,16px);
	font-family: "Sawarabi Gothic", sans-serif;
	line-height: 200%;
	margin-top: 10px;
	width: 100%;
	margin: 10px auto 0px;
}

@media screen and (max-width: 600px) {

	.tour-slide li {
		margin: 0px 15px;
	}
	
	.tour_img {
		height: 25rem;
		display: flex;
		justify-content: center;
	}

	.tour_img img {
		height: 100%;
	}
	
	.tour_txt {
		width: 70%;
	}
}



