/*--------------------------------------------------------
■ 検索ボックス
--------------------------------------------------------*/
#search_box{
    background-color: #fff/* デザインのバランス見て色変更 */;
}
/*--------------------------------------------------------
■ 全て表示ボタン
--------------------------------------------------------*/
.show_all_button{/* 全て表示ボタン */
	border: 1px solid #5193f7;
	background:#fff;
    border-radius: 5px;
    padding: 10px;
    font-weight: bold;
    font-size:17px;
    color: #5193f7;
    display: block;
    width: 120px;
    cursor: pointer;
    text-align: center;
    margin-left: auto;
    margin-top:15px;
    margin-bottom:15px;
    -webkit-appearance: none;/* iosで勝手につくCSSを無効にする */
}
.show_all_button.selected{
	background: #5193f7;
	color: #fff;
	cursor: none;
}

/*--------------------------------------------------------
楽曲一覧テーブル
--------------------------------------------------------*/
.piece_list_table{
	width: 100%;
	padding:0px 5px;
	margin-bottom: 15px;
	border-collapse: collapse;
}
@media only screen and (min-width: 738px){
	.piece_list_table{
		margin-bottom: 20px;
	}
}
.piece_list_table tr{
	border-bottom:1px solid #dddddd;
	cursor: pointer;
}
.piece_list_table a{
	color: #606060;
}
.piece_list_table tr.hide{
	display: none;
}


.piece_list_table tr:first-child{
	background:#ffffff;
}
.piece_list_table th{
	padding:9px;
	font-weight:bold;
	text-align:center;
	color:#505050;
	border:none;
}
.piece_list_table.blue_table th{
	background:#e8f1ff;
}
.piece_list_table.yellow_table th{
	background:#fff0db;
}
@media only screen and (min-width: 738px){
	.piece_list_table th{
		padding:12px;
	}
}
.piece_list_table th:first-child{
	width:34%;
}
.piece_list_table th:nth-child(n+2){
	width:22%;
}
.piece_list_table td{
	border:none;
	padding:9px;
}
@media only screen and (min-width: 738px){
	.piece_list_table td{
		padding:12px;
	}
}
.piece_list_table tr td:nth-child(n+2){
	text-align:center;
}
.piece_list_table tr td i{
	color:#5193f7;
	margin:0px;
}
.search_result_zero{
	display:none;/* 検索結果が0のとき表示 */
}
.piece_list_table .composer_name_short{
	color:#808080;
	font-size:14px;
	font-weight:normal;
}
.piece_list_table .search_data,
.piece_list_table .search_data_katakana,
.piece_list_table .search_data_en{
	display: none;
}
.piece_list_table tr td .difficulty_tag{
	display:flex;
	 width:40px;
	align-items: center;
	 justify-content: center;
	color:#ea9c2e;
	border:1px #ea9c2e solid;
	border-radius:2.5px;
	font-weight:normal;
	margin-top:3px;
}
.piece_list_table tr td .difficulty_tag i{
	color:#ea9c2e;
	font-size:13px;
}
/*--------------------------------------------------------
難易度の絞り込みボタン
--------------------------------------------------------*/
.difficulty_list_block{
	width:100%;
	box-sizing: border-box;
}
.difficulty_list_block .difficulty_list{
	display: flex;
	box-sizing: border-box;
	align-items: stretch;
	flex-wrap: wrap;
	list-style: none;
	padding:0px;
	margin:0px;
}
.difficulty_list_block .difficulty_list .difficulty_list_item{
    box-sizing: border-box;
    display: flex;
    align-items: stretch;/* 要素の高さを揃える */
    width: calc(100%/3);
    margin-bottom: 12px;
    padding: 0 6px;
    margin-top:0;
}
@media only screen and (min-width: 738px){
	.difficulty_list_block .difficulty_list .difficulty_list_item{
		width: calc(100%/4);
	}
}
.difficulty_list_block .difficulty_list .difficulty_list_item:nth-child(3),
.difficulty_list_block .difficulty_list .difficulty_list_item:nth-child(6){
	padding-right: 0;
}
.difficulty_list_block .difficulty_list .difficulty_list_item:nth-child(1),
.difficulty_list_block .difficulty_list .difficulty_list_item:nth-child(4),
.difficulty_list_block .difficulty_list .difficulty_list_item:nth-child(7){
	padding-left: 0;
}
@media only screen and (min-width: 738px){
	.difficulty_list_block .difficulty_list .difficulty_list_item:nth-child(3),
	.difficulty_list_block .difficulty_list .difficulty_list_item:nth-child(4),
	.difficulty_list_block .difficulty_list .difficulty_list_item:nth-child(6),
	.difficulty_list_block .difficulty_list .difficulty_list_item:nth-child(7){
		padding: 0 6px;
	}
	.difficulty_list_block .difficulty_list .difficulty_list_item:nth-child(4),
	.difficulty_list_block .difficulty_list .difficulty_list_item:nth-child(8){
		padding-right: 0;
	}
	.difficulty_list_block .difficulty_list .difficulty_list_item:nth-child(1),
	.difficulty_list_block .difficulty_list .difficulty_list_item:nth-child(5){
		padding-left: 0;
	}
}
.difficulty_list_block .difficulty_list .difficulty_list_item .difficulty_list_item_btn{
	width:100%;
	border:1px #ea9c2e solid;
	background:#fff;
	border-radius:5px;
	cursor: pointer;
	text-align: center;
	color:#ea9c2e;
	padding: 10px;
	font-weight: bold;
	font-size:17px;
}
.difficulty_list_block .difficulty_list .difficulty_list_item .difficulty_list_item_btn.selected{
	background: #ea9c2e;
	color: #fff;
}