@charset "utf-8";

/* sort
-----------------------------------------------------------*/
@media screen and (max-width: 959px){
	.inner{
		margin: 0;
	}
}
.sort{
	position: sticky;
	left: 0;
	top: 32px;
	z-index: 100;
	width: 100%;
	background: #fff;
}

.sortList{
	display:flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-top: 10px;
	border-bottom: solid 1px #9da7af;
	width: 100%;
	overflow-x: auto;
}
.sortItem{
	flex: 1 0 auto;
	position: relative;
	padding: 8px;
	text-align: center;
	font-weight: 600;
	transition: opacity .2s;
}
.sortItem:not(.is-active){
	cursor: pointer;
}
.sortItem.is-active:before{
	position: absolute;
	left: 0;
	bottom: 0;
	content: "";
	display: inline-block;
	width: 100%;
	height: 3px;
	background: #000;
}
@media screen and (min-width: 960px){
	.sort{
		top: 76px;
	}
	.sortList{
		justify-content: space-between;
		flex-wrap: nowrap;
		margin-top: 50px;
	}
	.sortItem{
		padding: 16px 24px;
		font-size: 2.4rem;
	}
	.sortItem:not(.is-active):hover{
		opacity: .6;
	}
}

/* cassette
-----------------------------------------------------------*/
.cassette{
	margin: 32px 16px 0;
}
.cassetteItem{
	display: flex;
	flex-direction: column;
	margin-top: 16px;
	padding-bottom: 8px;
	border-radius: 5px;
	border: solid 1px #9da7af;
	overflow: hidden;
}
.cassetteImg{
	order: -1;
}
.cassetteImg img{
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* カセット内スライダー */
.cassetteImg .slick-dots {
	position: absolute;
	left: 50%;
	bottom: 8px;
	margin: 0;
	transform: translateX(-50%);
}
.cassetteImg .slick-dots li button{
	opacity: .6;
}
.cassetteImg .slick-dots li.slick-active button{
	opacity: 1;
	background: #fff;
}


.cassetteBd{
	flex: 1;
	margin: 8px 16px 0;
}
.cassetteTtl{
	font-size: 2.2rem;
	font-weight: bold;
}
.cassetteTxt{
	margin-top: 8px;
}
.cassetteDate{
	margin: 8px 16px 0;
	text-align: right;
}

@media screen and (min-width: 769px){
	.cassette{
		display: flex;
		flex-wrap: wrap;
		margin: 16px 0 0 -40px;
	}
	.cassetteItem{
		margin: 40px 0 0 40px;
		width: calc(100% / 3 - 40px);
	}
	.cassetteDate{
		margin: 16px 16px 0;
	}
}
