@charset "utf-8";
/* CSS Document */
/****************************************************************************/
/**							研究者データベース用CSS							*/
/****************************************************************************/
/* ----------------------------------------------------
		一覧
---------------------------------------------------- */
#researcher_table {
	width: 100%;
	font-size: 1.4rem;
	line-height: 1.5;
	margin: 20px 0;
	table-layout: fixed;
	border-collapse: separate;
	border-spacing: 1px 0;
}

.pagination_box {
	font-size: 1.4rem;
}

.page_result {
	float: left;
}

.pagination{
	float: right;
}

.pagination p {
	display: inline-block;
}

.page_cnt {
	border-left: 1px solid #999999;
	border-right: 1px solid #999999;
	padding: 2px 20px;
	margin: 0 15px;
}

.pagination a {
	position: relative;
}

.page_prev {
	padding-left: 20px;
}

.page_next {
	padding-right: 20px;
}

.pagination a::before {
	content: '';
	width: 6px;
	height: 6px;
	border: 0px;
	border-top: solid 2px #cc0000;
	border-right: solid 2px #cc0000;
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	margin-top: -4px;
}

.pagination a.page_prev::before {
	left: 2px;
	transform: rotate(225deg);
}

.pagination a.page_next::before {
	right: 2px;
}

#researcher_table tbody tr {
	cursor: pointer;
}

#researcher_table tr:nth-child(even) {
	background-color: #ffecec;
}

#researcher_table tbody tr:hover {
	opacity: 0.7;
}

#researcher_table th, #researcher_table th a {
	background-color: #cc0000;
	color: #ffffff;
	padding: 15px;
}

#researcher_table td {
	text-align: center;
	padding: 10px;
	vertical-align: middle;
}


/* ----------------------------------------------------
		詳細
---------------------------------------------------- */
#researcher_main {
	display: table;
	width: 100%;
	border: 1px solid #cccccc;
	margin-top: 15px;
	padding: 15px;
	box-sizing: border-box;
}

#researcher_txt {
	display: table-cell;
	vertical-align: top;
}

#researcher_txt h1 {
	font-size: 3.6rem;
}

#researcher_txt h2 {
	font-size: 1.4rem;
	margin-top: 10px;
}

#researcher_txt p {
	font-size: 1.4rem;
	margin-top: 15px;
	line-height: 1.7;
}

#researcher_img {
	display: table-cell;
	vertical-align: top;
	width: 120px;
}

.researcher_box {
	margin-top: 40px;
	font-size: 1.4rem;
}

/* ----------------------------------------------------
		ソート矢印
---------------------------------------------------- */
#researcher_table th a.asc {
    position:relative;
    top:0;
    left:0;
    padding-right:18px;
}
#researcher_table th a.asc:after {
    content: "";
    position: absolute;
    top: 17px;
    right: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 12px solid #ffffff;
}

#researcher_table th a.desc {
    position:relative;
    top:0;
    left:0;
    padding-right:18px;
}
#researcher_table th a.desc:after {
    content: "";
    position: absolute;
    top: 17px;
    right: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 12px solid #ffffff;
}

/* ----------------------------------------------------
        検索
---------------------------------------------------- */
#researcher_search_form {
    float: left;
    position: relative;
}

#researcher_search_form input[type="text"] {
    background-color: #ffffff;
    border: 1px solid #c3c3c3;
    box-sizing: border-box;
    height: 28px;
    line-height: 28px;
    padding: 0 30px 0 5px;
    vertical-align: top;
    width: 300px;
}

#researcher_search_form input[type="image"] {
    position: absolute;
    top: 5px;
    right: 8px;
}

