@charset "UTF-8";
/* CSS Document */

/*リストの並び替え*/
.sort-list ul{
	display: flex;
	justify-content: flex-end;
}
.sort-list ul li{
	list-style: none;
	width: 60px;
	height: 60px;
	background-color: #D0D0D0;
	margin-left: 10px;
}
.sort-list ul li .txt{
	text-align: center;
	font-size: 0.5rem;
	line-height: 1.3;
}
.sort-list ul li .img{
	padding: 14px;
	display: block;
	width: 60px;
    height: 60px;
}
.sort-list ul li p{
	margin-top: 5px;
	color: #D0D0D0;
}
.sort-list ul li.active{
	background-color: #44bbaa;
	opacity: 1!important;
}
.sort-list ul li.active p{
	color: #369688;
}
.sort-list ul li:hover:not(.active){
	background-color: #77ccbb;
}
.sort-list ul li a:hover,
.sort-list ul li.active a:hover{
	text-decoration: none;
	opacity: 1;
}
.sort-list ul li:hover:not(.active) p{
	color: #77ccbb;
}


/*お気に入り、オファー*/
.select{
	border-top: 1px solid #44bbaa;
	width: 100%;
	font-size: 0.75rem;
	position: absolute;
	bottom: 0;
}
.select ul{
	margin: 11px 20px 13px 35px;
}
.select ul li{
	list-style: none;
}
.select ul li a{
	color: #369688;
}
.favorite, .offer{
	position: relative;
}
.favorite::before{
	content: url("/img/talent/favorite.svg");
	width: 1.2em;
	height: 1.2em;
	position: absolute;
	left: -15px;
	top: 2px;
}
.offer::before{
	content: url("/img/talent/offer.svg");
	width: 1em;
	height: 1em;
	position: absolute;
	left: -15px;
	top: 1px;
}
@media (max-width:575.98px){
	.select ul{
		margin: 6px 5px 9px 18px;
	}
}


/*ラベル*/
.talent .label-r{
	background: no-repeat url("/img/common/label-r.svg");
	width: 35px;
	height: 45px;
}
.talent .label-b{
	background: no-repeat url("/img/common/label-b.svg");
	width: 35px;
	height: 45px;
}
.talent .label-s{
	background: no-repeat url("/img/common/label-s.svg");
	width: 35px;
	height: 45px;
}
.talent .label-g{
	background: no-repeat url("/img/common/label-g.svg");
	width: 35px;
	height: 45px;
}
@media (max-width:575.98px){
	.label-r,.label-b.label-s,.label-g{
		width: 45px;
		height: 55px;
	}
}


/*ラベル付きエリア*/
.labeled-area{
	display: flex;
}
.labeled-area .txt-1{
	flex: 0 0 78%;
	width: 78%;
}
.labeled-area .txt-2{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	flex-direction: row;
}
.labeled-area .label-r, .labeled-area .label-b,.labeled-area .label-s,.labeled-area .label-g{
	flex: 0 0 17%;
	width: 17%;
}
@media (max-width:575.98px){
	.labeled-area{
		flex-wrap: wrap;
	}
	.labeled-area .txt-1{
		flex: 0 0 92%;
		width: 92%;
	}
	.labeled-area .label-r, .labeled-area .label-b,.labeled-area .label-s,.labeled-area .label-g{
		flex: 0 0 20%;
		width: 20%;
	}
}


