@charset "utf-8";

/*//////////////////////////////////////////////////////////////////////////////

	ツアー情報

//////////////////////////////////////////////////////////////////////////////*/


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

	contents

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

/*	tour_list
------------------------------------------------------------------------------*/

.tour_list,
.tour_list li a,
.tour_list .info .place dl {
	display: flex;
}

.tour_list {
	flex-wrap: wrap;
	margin: 0;
	list-style: none;
}

.tour_list li {
	width: 31.5%;
	margin: 2.75% 2.75% 0 0;
	background-color: #FFF;
	padding: 0;
}

.tour_list li:nth-child(3n) {
	margin-right: 0;
}

.tour_list li:nth-child(1),
.tour_list li:nth-child(2),
.tour_list li:nth-child(3) {
	margin-top: 0;
}

.tour_list li a {
	position: relative;
	flex-direction: column-reverse;
	text-decoration: none;
	color: inherit;
}

.tour_list .info {
	padding: 1.5em;
}

.tour_list .info .title {
	display: block;
	margin-bottom: 1.375em;
	font-weight: bold;
}

.tour_list .info .place dl {
	margin-bottom: .5em;
}

.tour_list .info .place dt,
.tour_list .info .place dd {
	padding-top: .5em;
	padding-bottom: .5em;
	line-height: 1;
	font-size: .75em;
}

.tour_list .info .place dt {
	margin-right: .85em;
	padding-right: .75em;
	padding-left: .75em;
	background-color: rgba(238,238,224,1);
	font-weight: bold;
}

.tour_list .info .price {
	text-align: right;
}

.tour_list .thumb figure {
	position: relative;
	margin: 0;
	padding-top: 65%;
	overflow: hidden;
}

.tour_list .thumb img {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

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

.tour_list li,
.tour_list li:nth-child(2),
.tour_list li:nth-child(3) {
	width: 100%;
	margin: 3vw 0 0 0;
}

.tour_list .info {
	display: flex;
	flex-direction: column;
}

.tour_list .info .title {
	order: 2;
}

.tour_list .info .place {
	order: 1;
	margin-bottom: 5vw;
}

.tour_list .info .place dl {
	margin-left: 38%;
}

.tour_list .info .price {
	order: 3;
}


.tour_list .thumb {
	position: absolute;
	top: 0;
	left: 0;
	width: 34%;
}

}