@charset "utf-8";


.tour-index {
	max-width: 1200px;
	margin: 100px auto;
	padding: 0 6vw;
}

.tour-index__list {
	display: flex;
	justify-content: space-between;
}

.tour-index__list__item {
	max-width: calc(50% - 40px);
	flex-basis: calc(50% - 40px);
	display: flex;
}

.tour-index__list__anchor {
	width: 100%;
	display: flex;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, .1);
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
	text-decoration: none;
	box-sizing: border-box;
	flex-direction: column;
	align-items: center;
}

.tour-index__list__anchor:hover {
	box-shadow: 0 0 15px 0 rgba(0, 0, 0, .15);
}

.tour-index__list__anchor:before {
	content: "";
	width: 100%;
	height: 300px;
	display: block;
	background-color: rgba(0, 0, 0, 1);
	background-position: center center;
	background-size: cover;
}

.tour-index__list__anchor:hover:before {
	opacity: .9;
}

.tour-index_about .tour-index__list__anchor:before {
	background-image: url(../images/tour/index/img_menu01.jpg);
}

.tour-index_virtual .tour-index__list__anchor:before {
	background-image: url(../images/tour/index/img_menu02.jpg);
}

.tour-index__list__wrap {
	width: 100%;
	padding: 60px 40px;
	box-sizing: border-box;
}

.tour-index__list__title {
	margin-bottom: 20px;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.8;
	text-align: center;
	color: rgba(0, 0, 0, 1);
}

.tour-index__list__text {
	max-width: 350px;
	margin: 0 auto;
	font-size: 1.4rem;
	line-height: 1.8;
	text-align: center;
	color: rgba(0, 0, 0, .8);
}

.tour-index__list__more {
	margin: 0 auto;
	margin-top: 40px;
}


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

	.tour-index {
		margin: 80px auto;
	}

	.tour-index__list__item {
		max-width: calc(50% - 10px);
		flex-basis: calc(50% - 10px);
	}

	.tour-index__list__anchor:before {
		height: 250px;
	}

}


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

	.tour-index {
		margin: 60px auto;
	}

	.tour-index__list {
		display: block;
	}

	.tour-index__list__item {
		max-width: none;
		margin-bottom: 20px;
	}

	.tour-index__list__item:last-child {
		margin-bottom: 0;
	}

	.tour-index__list__anchor:before {
		height: 200px;
	}

	.tour-index__list__wrap {
		padding: 40px 20px;
	}

	.tour-index__list__title {
		margin-bottom: 10px;
		font-size: 2rem;
	}

	.tour-index__list__more {
		margin-top: 30px;
	}

}


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

	.tour-index__list__title {
		font-size: 1.8rem;
	}

	.tour-index__list__text {
		font-size: 1.3rem;;
	}

	.tour-index__list__more {
		margin-top: 20px;
	}

}


/*------------------------------------*/


