
/* ソート */
.sortcategoryList{
	display:flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-top: 10px;
	border-bottom: solid 1px #ccc;
	width: 100%;
	overflow-x: auto;
}
.sortcategoryList_item{
	flex: 1 0 auto;
	position: relative;
	padding: 5px 10px;
	text-align: center;
	font-weight: bold;
}
@media screen and (max-width: 959px) {
	.sortcategoryList_item{
		display: flex;
		justify-content: center;
		align-items: center;
		min-height: 50px;
		line-height: 1.3;
		font-size: 1.3rem;
		letter-spacing: 0;
	}
}
.sortcategoryList_item:not(.disabled){
	cursor: pointer;
}
.sortcategoryList_item.is-active:before{
	position: absolute;
	left: 0;
	bottom: 0;
	content: "";
	display: inline-block;
	width: 100%;
	height: 3px;
	background: #000;
}
.sortcategoryList_item.disabled{
	display: none;
	pointer-events: none;
	color: #ccc;
}
.sortcategoryList_item[data-sort="trip"]:before{
	background-color: #1a9af4;
}
.sortcategoryList_item[data-sort="restaurant"]:before{
	background-color: #ffc000;
}
.sortcategoryList_item[data-sort="mall"]:before{
	background-color: #ff8aae;
}

.sortcategoryList_item[data-sort="hotel"]:before{
	background-color: #3007c9;
}
.sortcategoryList_item[data-sort="highway"]:before{
	background-color: #0ca059;
}
.sortcategoryList_item[data-sort="roadstation"]:before{
	background-color: #286500;
}

@media screen and (min-width: 960px) {
	.sortcategoryList{
		justify-content: space-between;
		flex-wrap: nowrap;
		margin-top: 50px;
	}
	.sortcategoryList_item{
		padding: 10px 20px;
	}
}

/* 一覧カセット */
.area-cassette{
	display: flex;
	flex-wrap: wrap;
	margin: 10px 10px 0 0;
}
.area-cassette_item{
	margin: 20px 0 0 10px;
	width: calc(100% / 2 - 10px);
}
.area-cassette_item a{
	cursor: pointer;
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	height: 100%;
	color: #323743;
	text-decoration: none;
	background: #fff;
	box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
	transition: all 0.4s ease;
}
.area-cassette_item-img{
	position: relative;
}
.area-cassette_item figure img{
	vertical-align: bottom;
}
.area-cassette_icon{
	position: absolute;
	right: 0;
	bottom: 0;
	padding: 5px 10px;
	color: #fff;
	line-height: 1;
	font-size: 1.2rem;
	background: #000;
}
.area-cassette_icon.-trip{
	background: #1a9af4;
}
.area-cassette_icon.-restaurant{
	background: #ffc000;
}
.area-cassette_icon.-mall{
	background: #ff8aae;
}
.area-cassette_icon.-hotel{
	background: #3007c9;
}
.area-cassette_icon.-highway{
	background: #0ca059;
}
.area-cassette_icon.-roadstation{
	background: #286500;
}
.area-cassette_item-body{
	flex: 1;
	padding: 10px;
}
.area-cassette_ttl{
	flex: 1 auto;
	font-weight: bold;
	line-height: 1.3;
}
.area-cassette_txt{
	margin-top: 10px;
	line-height: 1.5;
	font-size: 1.2rem;
	
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.area-cassette_date{
	margin: 5px 10px 0;
	text-align: right;
	font-size: 1.3rem;
}


@media screen and (min-width: 960px) {
	.area-cassette{
		margin: 20px 0 0 -10px;
	}
	.area-cassette_item{
		margin: 30px 0 0 10px;
		width: calc(100% / 3 - 10px);
	}
	.area-cassette_item a:hover{
		opacity: .6;
	}
	.area-cassette_ttl{
		font-size: 1.8rem;
	}
	.area-cassette_txt{
		font-size: 1.4rem;
	}
	.area-bt{
		margin: 50px auto 0;
	}
	.area-bt a:hover{
		opacity: .6;
	}
	.area-bt a br{
		display: none;
	}
}



/* 一覧ページ */
.drive-nav{
	position: relative;
	margin-top: 50px;
	background: #f5f5f5;
}
.drive-nav_inner{
	width: 100%;
	padding: 10px 5px;
	white-space: nowrap;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
.drive-nav_tabhd-btn{
	overflow: hidden;
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 15px;
	height: 100%;
	color: #555;
	background-color: rgba(204,204,204,0.9);
}
.drive-nav_tabhd-btn span:before{
	font-family: 'Material Icons Round';
	content: "\e5cc";
	font-size: 2.0rem;
}
.drive-nav_list{
	display: flex;
	margin-left: -2px;
	padding-right: 15px;
}
.drive-nav_list li{
	margin-left: 2px;
	width: calc(100% - 2px);
}
.drive-nav_list a{
	position: relative;
	display: block;
	padding: 15px 10px;
	color: #000;
	text-align: center;
	text-decoration: none;
	line-height: 1.3;
	border: solid 1px #ddd;
	background: #fff;
	transition: all 0.4s ease;
}
.drive-nav_list a:after{
	position: absolute;
	left: 50%;
	bottom: 0px;
	width: 0;
	content: "";
	transform: translateX(-50%);
	border-bottom: 1px solid #323743;
	transition: -webkit-width .2s ease;
	transition: width .2s ease;
	transition: width .2s ease, -webkit-width .2s ease;
}
.drive-nav_list a:after{
	position: absolute;
	left: 50%;
	bottom: 0px;
	width: 0;
	content: "";
	transform: translateX(-50%);
	border-bottom: 2px solid #323743;
	transition: -webkit-width .2s ease;
	transition: width .2s ease;
	transition: width .2s ease, -webkit-width .2s ease;
}
.drive-nav_list a:not(.is-active):hover:after{
	width: 100%;
}
.drive-nav_list a.is-active{
	font-weight: bold;
}
.drive-nav_list a.is-active:after{
	width: 100%;
}
.drive-nav_list span{
	font-size: 1.1rem;
}

@media screen and (min-width: 960px) {
	.drive-nav_list a:hover{
		opacity: .6;
	}
	.drive-nav_tabhd-btn{
		display: none;
	}
}


/* ===================================================================================================
   詳細ページ
 =================================================================================================== */
.drivedetail-main{
	margin-top: 20px;
}
.drivedetail-wrap{
	display: flex;
	flex-direction: column-reverse;
	margin-top: 20px;
}
.page-drivetitle{
	margin: 0 10px;
    font-size: 2.2rem;
    line-height: 1.3;
}
.drive-meta{
	display: flex;
	margin: 10px 10px 0;
    font-size: 1.1rem;
    color: #666;
}

.pagevis{
	margin-top: 10px;
}
.pagevis img{
	width: 100%;
	height: auto;
}

/* スライダー */
.js-pagevisSlide{
	opacity: 0;
	padding-top: calc(3 / 4 * 100%);
}
.js-pagevisSlide.slick-initialized{
	opacity: 1;
	display: block;
	padding-top: 0;
}

.drivedetail-body{
	margin: 20px 10px 0;
}
.drive-detail{
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
	border-bottom: solid 1px #ccc;
}
.drive-detail dt{
	width: 120px;
	font-weight: bold;
	background: #f5f5f5;
}
.drive-detail dd{
	width: calc(100% - 120px);
}
.drive-detail dt, .drive-detail dd{
	padding: 15px 10px;
	border-top: solid 1px #ccc;
}
.drive-detail .kome{
	margin-top: 10px;
}

.drive-map{
	margin-top: 30px;
}
.drive-map dt{
	font-size: 1.8rem;
	font-weight: bold;
}
.drive-map dd{
	margin-top: 20px;
}
.drivedetail-body .kome{
	margin-top: 10px;
	line-height: 1.3;
}
.gmap{
    height: 0;
    overflow: hidden;
    padding-top: 500px;
    position: relative;
}
.gmap iframe{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.drive-back-bt{
	margin: 50px 10px 0;
}
.drive-back-bt a{
	position: relative;
	display: flex;
	align-items: center;
	text-decoration: none;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.3;
	transition: all 0.4s ease;
}
.drive-back-bt .m-ico{
	margin-right: .2em;
	line-height: 1;
	font-size: 2.5rem;
}
.drive-back-bt span{
	border-bottom: solid 2px #000;
}

.drivedetail-photoslide .slick-dots li button:before{
	color: #fff;
}

.withdogtop-cassette_bt{
	margin-top: 50px;
	text-align: right;
}



@media screen and (min-width: 960px) {
	.drivedetail-wrap{
		margin-top: 50px;
	}
	.drivedetail-body{
		margin: 30px 0 0;
	}
	.drive-detail{
		margin-top: 30px;
	}
	.drive-detail dt{
		width: 200px;
	}
	.drive-detail dd{
		width: calc(100% - 200px);
	}
	.drive-detail dt, .drive-detail dd{
		padding: 25px 20px;
	}
	.drive-map dt{
		font-size: 2.2rem;
	}
	.drive-map{
		margin-top: 50px;
	}
	.drive-back-bt{
		margin: 50px 0 0;
	}
	.drive-back-bt a:hover{
		opacity: .6;
	}
}


