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

/*--------------ヘッダー・見出し--------------*/

/*ヘッダー現在地・ロゴ*/

header ul li a.link_1{
	color: #95c623;
	background: url("../../img/new_hover.png") no-repeat left center;
	padding-left: 17px;
	font-size: 15px;
	display: block;
	height: 20px;
}

header h1 a:hover{
	opacity: 0.7;
}


/*見出し*/

#head_area{
	width: 100%;
	border-bottom: 1px solid #004739;
	padding: 10px 0;
	height: 120px;
}

#head_area h2{
	text-align: center;
	margin-top: 25px;
	background: url("../../img/new_icon.png") no-repeat center top;
	padding-top: 35px;
	font-size: 25px;
	color: #002626;
	
}

/*--------------カテゴリ別ナビ--------------*/

.category_nav{
	width: 1080px;
	margin: 7px auto;
}

.category_nav ul{
	width: 900px;
	margin: 0 auto;
}

.category_nav ul li{
	width: 450px;
	box-sizing: border-box;
	float: left;
}

.category_nav ul li a{
	display: block;
	width: 100%;
	height: 50px;
	line-height: 50px;
	text-align: center;
	color: #a0a0a0;
	position: relative;
	transition: all 0.3s;
	margin: 0 auto;
	box-sizing: border-box;
}



.category_nav ul li a{
    transition: all 0.3s;
    tranform: scale(1, 1);
}


.category_nav ul li a::before,
.category_nav ul li a::after{
	content: '';
	position: absolute;
	transition: all 0.3s;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	box-sizing: border-box;
}

.category_nav ul li:first-child a::before{
	opacity: 0;
	content: "コース";
	color: #fff;
	background:rgba(149,198,35,1);
	transform: scale(1, 0.1);
}


.category_nav ul li:last-child a::before{
	opacity: 0;
	content: "プレイ";
	color: #fff;
	background:rgba(149,198,35,1);
	transform: scale(1, 0.1);
}


.category_nav ul li a:hover::before{
	opacity: 1;
	transform: scale(1,1);
}

.category_nav ul li a::after {
	transition: all 0.3s;
	border: 1px solid #a0a0a0;
}

.category_nav ul li a:hover::after {
	transform: scale(1, .1);
	opacity: 0;
}


.category_nav p{
	text-align: center;
	margin-top: 5px;
	color: #a0a0a0;
}


/*--------------更新リスト--------------*/

.back_numbar{
	width: 1080px;
	margin: 0 auto 5px;
	padding-left: 5px;
	box-sizing: border-box;
}

#article_list{
	width: 1080px;
	border-top: 1px solid #e5e5e5;
	padding: 5px 0 30px;
	margin: 0 auto;
}

#article_list .list_box{
	display: flex;
	flex-flow: row nowrap;
	padding: 10px;
	box-sizing: border-box;
	border-bottom: 1px solid #e5e5e5;
	align-items: center;
}

#article_list div{
	padding: 0 10px;
	display: table;
	vertical-align: middle;
}


.list_item1{flex-basis: 5%;}
.list_item2{flex-basis: 10%;}
.list_item3{flex-basis: 85%;}
.list_item4{flex-basis: 5%;}


.list_item1 .category_course{
	background: #255c99;
	padding: 5px;
	width: 70px;
	border-radius: 20px;
	font-size: 14px;
	color: #fff;
	font-weight: normal;
	text-align: center;
}

.list_item1 .category_play{
	background: #b3001b;
	width: 70px;
	padding: 5px;
	border-radius: 20px;
	font-size: 14px;
	color: #fff;
	font-weight: normal;
	text-align: center;
}


.list_item3 a{
	display: inline-block;
	margin-bottom: 7px;
	font-size: 18px;
	font-weight: bold;
}

.list_item3 a:hover{
	transition: all ease .5s;
	color: #95c623;
}


.list_item2{
	overflow: hidden;
	height: 30px;
	width: 100px;
}
.list_item2 img{
	width: 100%;
	height:auto; 
}

.list_item2 a:hover{
	opacity: 0.8;
}


/*ページナビ*/

ul.page_nav{
	width: 120px;
	margin: 25px auto;
	display: flex;
	justify-content: space-between;
}


.page_nav li a:hover{
	transition: all ease .5s;
	color: #95c623;
	
}
.page_nav li a{
	display: block;
	background:#fff;
	width: 23px;
	height: 23px;
	line-height: 23px;
	text-align: center;
	border-radius: 12px;
}

.page_nav li.here a{
	background: #95c623;
	color: #fff;
}



