@charset "utf-8";
/* CSS Document */
/****************************************************************************/
/**							モデルコース用CSS								*/
/****************************************************************************/
#main {
	background: url(/img/pro/course/bg.png) no-repeat;
	height: 400px;
	padding: 110px 35px 0;
	box-sizing: border-box;
	margin-top: 40px;
}

#main h1 {
	font-size: 3.6rem;
	line-height: 1.2;
	text-shadow: 0 0 9px #ffffff;
}

.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 #014099;
	border-right: solid 2px #014099;
	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;
}

#course_table {
	width: 100%;
	font-size: 1.4rem;
	line-height: 1.5;
	margin: 20px 0;
	border-collapse: separate;
	border-spacing: 1px 0;
}

#course_table tr:nth-child(even) {
	background-color: #ecefff;
}

#course_table th, #course_table th a {
	background-color: #014099;
	color: #ffffff;
	padding: 15px 10px;
	box-sizing: border-box;
}

#course_table th:nth-child(1) {
	width: 65px;
}

#course_table th:nth-child(2) {
	width: 95px;
}

#course_table th:nth-child(4) {
	width: 110px;
}

#course_table td {
	text-align: center;
	padding: 15px 10px;
	vertical-align: middle;
}

#course_table td:nth-child(3) {
	text-align: left;
}

/* ----------------------------------------------------
		ソート矢印
---------------------------------------------------- */
#course_table th a.asc {
    position:relative;
    top:0;
    left:0;
    padding-right:18px;
}
#course_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;
}

#course_table th a.desc {
    position:relative;
    top:0;
    left:0;
    padding-right:18px;
}
#course_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;
}

