@charset "utf-8";
@import url("//code.ionicframework.com/ionicons/2.0.0/css/ionicons.min.css");


/*-----------------------------------

playerlist.css

------------------------------*/
body.player_search .clubArea{
	padding-top: 45px;
}

/*---- selection ----*/
.modalOverlay {
	position: fixed;
	display: none;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 111111111111111;
}
.modalContent{
    font-size: 12px;
}
.modalContent .frameOuter{
	width: 100%;
	background-color: #ffffff;
	padding: 0 0 10px;
	margin: 0 auto;
	z-index: 9999;
	box-sizing: border-box;
	text-align: left;
	width: 100%;
    height: 100%;
    overflow: auto;
}
.modalContent .checkArea{
	width: 100%;
	display: table;
	border-bottom: 1px solid #DBDBDB;
}
.modalContent .checkArea dt,
.modalContent .checkArea dd{
	display: table-cell;
	box-sizing: border-box;
	vertical-align: middle;
}
.modalContent .checkArea dt{
	background-color: #F5F5F5;
	width: 25%;
	text-align: center;
	padding: 10px 0;
	font-size: 12px;
}
.modalContent .checkArea dd{
	padding: 10px;
}
.modalContent .checkArea dd .checkAreaTtl {
	margin-bottom: 10px;
}
.modalContent .checkArea dd .checkAreaTtl:not(:first-of-type) {
	margin-top: 20px;
}
.modalContent .checkArea:first-of-type{
	border-top: 1px solid #DBDBDB;
}
.modalContent .checkArea:last-of-type{
	border-bottom: 1px solid #DBDBDB;
    margin-bottom: 100px;
}
.modalContent .checkArea dd ul:nth-of-type(n+2){
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px dotted #DBDBDB;
}
.modalContent .checkArea dd ul:after{
	content: "";
	display: block;
	clear: both;
}
.modalContent .checkArea dd ul li{
	float: left;
	width: 33.33%;
	margin-bottom: 10px;
}
.modalContent .checkArea dd ul li.selectTitle{
    float: none;
}
.modalContent .checkArea dd ul li.col1{
	float: none;
}
.modalContent .checkArea dd input[type='checkbox']{
    display: none;
}
.modalContent .checkArea dd ul li label{
    display: inline-block;
}
.modalContent .checkArea dd .box{
    padding-left: 20px;
    position: relative;
    line-height: 1;
}
.modalContent .checkArea dd .box::before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #999;
    border-radius: 4px;
}
.modalContent .checkArea dd input[type='checkbox']:checked + .box::after{
    content: "";
    display: block;
    position: absolute;
    top: -5px;
    left: 5px;
    width: 7px;
    height: 14px;
    transform: rotate(40deg);
    border-bottom: 3px solid rgba(0,0,0,0.9);
    border-right: 3px solid rgba(0,0,0,0.9);
}
.modalContent .checkArea dd div{
	vertical-align: middle;
}
.modalContent .checkArea dd .selectArea {
	position:relative;
	overflow:hidden;
	display:inline-block;
	min-width:20px;
	width: 100px;
	background: -moz-linear-gradient(top,  #ffffff 0%, #ffffff 50%, #ececec 51%, #ececec 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(50%,#ffffff), 		color-stop(51%,#ececec), color-stop(100%,#ececec)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ffffff 0%,#ffffff 50%,#ececec 51%,#ececec 100%);
	background: -ms-linear-gradient(top,  #ffffff 0%,#ffffff 50%,#ececec 51%,#ececec 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #ffffff 0%,#ffffff 50%,#ececec 51%,#ececec 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ececec',GradientType=0 );
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	border: 1px solid #a6a6a6;
	position: relative;
}
.modalContent .checkArea dd .selectArea::before {
	position: absolute;
    font-size: 10px;
    top: 50%;
    margin-top: -5px;
    right: 10px;
    font-family: 'FontAwesome';
    content: "\f0dc";
    color: #000;
	line-height: 100%;
}
.modalContent .checkArea dd select {
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    appearance: none;
    position: relative;
    z-index: 2;
    display: block;
    width: -webkit-calc(100% + 5em);
    margin: 0;
    padding: 5px 25px 6px 5px;
    background: transparent;
    border: 0;
    outline: none;
    font-size: 12px;
    line-height: 100%;
    position: relative;
    cursor: pointer;
    height: 24px;
}
.modalContent .checkArea dd select::-ms-expand {
    display: none;
}
.container {
    min-height: 640px;
}
.submitArea {
    display: block;
    background: #222;
    width: 100%;
    height: 100px;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 10px;
    box-sizing: border-box;
}

.srchSubmit {
    background: #FFF;
    color: #000;
    font-size: 15px;
    line-height: 100%;
    padding: 12px 0;
    cursor: pointer;
    display: block;
    width: 100%;
    border-radius: 5px;
    text-align: center;
}
.clearSubmit {
    background: #222;
    font-size: 12px;
    line-height: 100%;
    padding: 7px;
    color: #fff;
    cursor: pointer;
    margin-top: 10px;
    display: block;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 5px;
    position: absolute;
    right: 10px;
}
.checkArea .periodMonth input[type='checkbox'] {
	display: none;
}
.checkArea .periodMonth label span {
	position: relative;
    overflow: hidden;
    display: inline-block;
    min-width: 20px;
    width: 100px;
    background: -moz-linear-gradient(top, #ffffff 0%, #ffffff 50%, #ececec 51%, #ececec 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(50%,#ffffff), color-stop(51%,#ececec), color-stop(100%,#ececec));
    background: -webkit-linear-gradient(top, #ffffff 0%,#ffffff 50%,#ececec 51%,#ececec 100%);
    background: -ms-linear-gradient(top, #ffffff 0%,#ffffff 50%,#ececec 51%,#ececec 100%);
    background: linear-gradient(to bottom, #ffffff 0%,#ffffff 50%,#ececec 51%,#ececec 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ececec',GradientType=0 );
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    border: 1px solid #a6a6a6;
	position: relative;
	padding: 10px 20px;
	box-sizing: border-box;
}
.checkArea .periodMonth input[type='checkbox']:checked + span {
	color: #ffffff;
    background: -moz-linear-gradient(top, #9a9898 0%, #9a9898 50%, #989696 51%, #464545 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(50%,#ffffff), color-stop(51%,#ececec), color-stop(100%,#ececec));
    background: -webkit-linear-gradient(top, #9a9898 0%,#9a9898 50%,#989696 51%,#464545 100%);
    background: -ms-linear-gradient(top, #9a9898 0%,#9a9898 50%,#989696 51%,#464545 100%);
    background: linear-gradient(to bottom, #9a9898 0%,#9a9898 50%,#989696 51%,#464545 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9a9898', endColorstr='#464545',GradientType=0 );
}
input[type="text"]{
	font-size: 15px;
    border-radius: 3px;
    border: 1px solid #ccc;
    padding: 5px;
    width: 90%;
}
.playerDataTable td:nth-child(-n+2){
	font-size: 10px;
	line-height: 1;
	border-right: 1px solid #ccc;
}
.playerDataTable td .embS{
	margin:0 auto;
}
.playerDataTable td{
	padding:0;
}
span.hgIcon{
	width: 25px;
    margin: 0 auto;
}
.modalContent .checkArea dd .selectArea.wideSize{
	width: 100%;
}
.closeBTN{
	
}
.secondPageTitl a.closeBTN:after{
    content: "\f00d";
    font-family: "FontAwesome";
    font-size: 17px;
    transform: rotate(0);
    border: none;
    width: 40px;
    height: 40px;
    right: 0;
    top: 0;
    margin: 0;
    text-align: right;
}

.secondPageTitl h1{
    color:#fff;
}



/* ---------- BTN ---------- */
.contentBlock{
	position: relative;
	background: #eaeaea;
	padding: 5px;
	margin-bottom: 20px;
}
.contentBlock input[type="text"]{
	font-size: 12px;
	line-height: 28px;
	box-sizing: border-box;
	width: 100%;
}
.contentBlock .easySearch{
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	justify-content: -ms-left;
	justify-content: -webkit-left;
	justify-content: left;
	align-items: -ms-center;
	align-items: -webkit-center;
	align-items: center;
}
.contentBlock .easySearch li:nth-child(1),
.contentBlock .easySearch li:nth-child(2){
	width: 43%;
}
.contentBlock .easySearch li:nth-child(3){
	width: 14%;
}
.contentBlock .easySearch input.easySearch_club{
	border-radius: 3px 0 0 3px;
}
.contentBlock .easySearch input.easySearch_player{
	border-radius: 0;
	border-left: 0;
    border-right: 0;
}
.contentBlock .btnEasySearch{
    background: #222;
    display: block;
    height: 40px;
    line-height: 40px;
    border-radius: 0 3px 3px 0;
    color: #fff;
    box-sizing: border-box;
    text-align: center;
    font-size: 13px;
}
.contentBlock .btnSearch{
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background: #222;
    color: #fff;
    padding: 0 15px;
    margin-top: 5px;
    cursor: pointer;
    display: block;
    text-align: center;
    height: 40px;
    line-height: 40px;
    font-size: 13px;
}
.contentBlock .btnEasySearch:hover,
.contentBlock .btnSearch:hover{
	text-decoration: none;
	opacity: 0.5;
}
.gaitou{
    position: fixed;
    left: 15px;
    bottom: 15px;
    font-size: 12px;
    z-index: 11111111;
    color: #fff;
}
body.player_search .accordionIndex{
	border:none;
}
body.player_search .accordionIndex a{
	color : #333;
	position: relative;
}
body.player_search .accordionIndex a:hover{
	text-decoration: none;
}
body.player_search .accordionIndex a:after{
    font-size: 10px;
    top: 50%;
    margin-top: -5px;
    right: 10px;
    font-family: 'FontAwesome';
    content: "\f0d7";
    color: #000;
    line-height: 100%;
    font-size: 18px;
    padding-left: 5px;
}
body.player_search .accordionIndex.active a:after{
	content: "\f0d8";
}
body.player_search .checkArea.birthday dd .selectArea{
	width: 20%;
}

.scrollArea{
    overflow-x:scroll;
    width:100%;

}
.scrollArea table{
    width: 650px;
}
.playerDataTable.noBelongYear td:nth-child(3),
.playerDataTable td:nth-child(4) {
    width:44px;
    
}
.playerDataTable.noBelongYear td:nth-child(3) img,
.playerDataTable td:nth-child(4) img {
    width:100%;
    height: auto;
    vertical-align:top;
}
.scrollArea__text{
    font-size:12px;
    margin:10px 0;
    text-align:right;
}
.playerDataTable tbody td:nth-child(6){
    width:10em;
    text-align:left;
    padding-left:0.5em;
}
table.playerDataTable.noBelongYear td:nth-child(1){display:none;}





