@charset "UTF-8";

/*//////////----- SORT -----//////////*/

.sort{
	width:100%;
	margin:0 auto;
	max-width: 1080px;
	
	box-sizing: border-box;
	padding:10px;
}

.sort p.nav-open{
	width:100%;
	max-width: 540px;
	
	font-size:1.15rem;
	line-height:40px;
	font-weight:bold;
	
	text-align: center;
	
	background-color:#000;
	color:#fff;
	
	background-image: url("../images/icon-arrow-down-white.webp");
	background-repeat: no-repeat;
	background-size:20px;
	background-position:center right 10px;
}

.sort p.nav-open:hover{
	cursor: pointer;
	opacity: 0.6;
}

.sort p.nav-open.active{
	background-image: url("../images/icon-arrow-up-white.webp");
}

.sort p.nav-open span.note{
	display:inline-block;
	
	box-sizing: border-box;
	padding:0 40px;
	
	position: relative;
}

.sort p.nav-open span.note:before{
	display:block;
	content:"";
	
	width:20px;
	height:20px;
	
	background-image: url("../images/icon-sort-search-white.webp");
	background-repeat:no-repeat;
	background-size:20px;
	background-position: center;
	
	position: absolute;
	top:10px;
	left:10px;
}

.sort nav.sort-navigation{
	display:none;
}

.sort nav.sort-navigation div.sort-navigation-inner{
	box-sizing: border-box;
	padding:10px;
	
	background-color:#f8f8f8;
	color:#000;
}

.sort nav.sort-navigation div.sort-child{
	margin-bottom:20px;
}

.sort nav.sort-navigation div.sort-child:last-child{
	margin-bottom:0;
}

.sort nav.sort-navigation h4{
	margin-bottom:10px;
	
	font-size:1.0rem;
	line-height:20px;
	font-weight:bold;
	
	box-sizing: border-box;
	padding:5px;
	padding-left:15px;
	
	position: relative;
	
	/*background-color:#fff;
	color:#000;*/
}

.sort nav.sort-navigation h4:before{
	display:block;
	content:"";
	
	width:5px;
	height:20px;
	
	background-color:#f44;
	
	position: absolute;
	top:5px;
	left:0;
}

.sort nav.sort-navigation ul{
	display:flex;
	flex-flow: row wrap;
	align-items: stretch;
	justify-content: flex-start;
	
	width:100%;
}

.sort nav.sort-navigation ul li{
	width:50%;
	
	font-size:1.0rem;
	line-height:40px;
	
	text-align: center;
	
	box-sizing: border-box;
	padding:5px;
}

.sort nav.sort-navigation ul li input{
	display:none;
}

.sort nav.sort-navigation ul li label{
	background-color:#fff;
	color:#000;
	
	display:block;
	
	border-radius:5px;
}


.sort nav.sort-navigation ul li label:hover{
	cursor: pointer;
	opacity: 0.6;
}

.sort nav.sort-navigation ul li input[type="radio"]:checked ~ label{
	background-color:#980270;
	color:#fff;
}

@media only screen and (min-width: 720px){
	
	.sort nav.sort-navigation ul li{
		width:calc(100%/3);
	}
	
}

@media only screen and (min-width: 960px){
	
	.sort nav.sort-navigation ul li{
		width:25%;
	}
	
}

/*//////////----- WEEKLY -----//////////*/

.weekly{
	width:100%;
	
	background-color:#fff;
	color:#000;
}

.weekly div.wrap{
	width:100%;
	margin:0 auto;
	max-width: 1080px;
	
	box-sizing: border-box;
	padding:10px;
}

.weekly ul{
	display:flex;
	flex-flow: row wrap;
	align-items: stretch;
	justify-content: flex-start;
	
	width:100%;
}

.weekly ul li{
	width:calc(100%/7);
	
	font-size:0.6rem;
	line-height:15px;
	
	text-align: center;
	
	position: relative;
}

@media only screen and (min-width: 375px){

	.weekly ul li{
		font-size:0.8rem;
		line-height:20px;
	}
	
}

@media only screen and (min-width: 720px){
	
	.weekly ul li{
		font-size:1.0rem;
		line-height:25px;
	}
	
}

.weekly ul li:after{
	display:block;
	content:"";
	
	width:1px;
	height:100%;
	
	background-color:#fff;
	
	position: absolute;
	top:0;
	right:0;
}

.weekly ul li:last-child:after{
	display:none;
}

.weekly ul li a{
	display:block;
	box-sizing: border-box;
	padding:10px 0;
	
	background-color:#f0f0f0;
	color:#000;
	
	transition: 0.25s;
}

.weekly ul li.sat a{
	background-color:#ddddff;
}

.weekly ul li.sun a{
	background-color:#ffdddd;
}

.weekly ul li.active a{
	background-color:#980270;
	color:#fff;
}

.weekly ul li a:hover{
	opacity: 0.6;
	text-decoration: none;
}

.weekly ul li:first-child a{
	box-sizing: border-box;
	border-bottom-left-radius: 5px;
	border-top-left-radius: 5px;
}

.weekly ul li:last-child a{
	box-sizing: border-box;
	border-bottom-right-radius: 5px;
	border-top-right-radius: 5px;
}

.weekly ul li span.note{
	display:block;
	
	font-size:0.6rem;
	line-height:15px;
}

@media only screen and (min-width: 720px){
	
	.weekly ul li span.note{
		font-size:0.8rem;
		line-height:20px;
	}
	
}

.weekly ul li span.note:before{
	display:inline-block;
	content:"（";
}

.weekly ul li span.note:after{
	display:inline-block;
	content:"）";
}

