@charset "UTF-8";

#news li a,
#news li a dl{
    display: flex;
    align-items: center;
}

#news li a{
    color: #212121 !important;
    text-decoration: none !important;
    border-bottom: 2px solid #d1deed;
    position: relative;
    padding: 30px 30px 30px 10px;
}
#news li:last-of-type a{
    border-bottom: none ;
}

#news li a::before{
    content: "";
    position: absolute;
    z-index: 1;
    right: 15px;
    top: 50%;

    width: 10px;
	height: 10px;
	border-right: 1px solid #212121;
	border-bottom: 1px solid #212121;
    margin-left: 1em;

	transform: rotate(-45deg) translateY(-50%);
    transition: all ease .5s ;
}
#news li a:hover::before{
    right: 5px;
}
#news li a::after{
	content: "";
	position: absolute;
	left: 0;
	top: 0;

	width: 0;
	height: 100%;
	background:#e8eff9;
	transition: all ease 1s .2s;
    opacity: 0.5;
}
#news li a:hover::after{
    width: 100%;
}

#news li a small,
#news li a dl{
    position: relative;
    z-index: 1;
}

#news li a small{
    color:#999999;
    white-space: nowrap;
    margin-right: 30px;
}
#news li a dl{
    width: calc(100% - 5em );
    justify-content: space-between;
    align-items: center;
}
#news li a dt{
    padding: 5px;
    width: 100px;
    font-size: 80%;
    white-space: nowrap;
    border: 1px solid #212121;
    text-align: center;
}
#news li a dd{
    width: calc(100% - 120px);
}
#news li a dd span{
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    background: #1762ce;
    padding: 2px 10px;
    margin-left: 1em;
    line-height: 1;
    font-size: 80%;
}


.wp-pagenavi{
	margin-top: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 90%;
}
.wp-pagenavi a,
.wp-pagenavi span{
	width: 30px;
	padding: 10px;
	text-align: center;
	border: 1px solid #ccc;
	margin: 0 5px;
	box-sizing: content-box;
    color: #212121 !important;
    text-decoration: none !important;
    transition: all ease .5s;
    white-space: nowrap;
}
.wp-pagenavi a:hover{
	transform: translateY(5px);
}
.wp-pagenavi span,
.wp-pagenavi a.current,
.wp-pagenavi a:hover{
	border-color: #333;
}
.wp-pagenavi span.extend{
	border:none;
}

.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.previouspostslink{
	width:36px;
    position: relative;
	
    border: none;
    color: #fff !important;
    background: rgb(23,98,206);
	background: linear-gradient(90deg, rgba(23,98,206,1) 0%, rgba(91,144,220,1) 100%);
}

/*-----------------------------------------------
__Single
-----------------------------------------------*/
#single #page_navi{
    margin-bottom: 40px ;
}
#single #page_navi h1{
    border-bottom: 0;
    padding-bottom: 0;
}
#single #page_navi .f_min{
    line-height: 1.2;
}
#page_navi .date{
    border: none;
    border-bottom: 1px solid #d1deed;
    padding: 20px 0 50px 0;
    display: flex;
    align-items: center;
    font-size: 90%;
    opacity: 0;
    animation: page_navi_h1 1s forwards 1.4s;
}
#page_navi .date dt{
    font-weight: normal;
    color: #aaa;
}
#page_navi .date dd{
    padding: 5px 15px;
    border: 1px solid #212121;
    margin-left: 1em;
}
#single section.wrap p{
    margin-bottom: 1.5em;
}
#single .wp-pagenavi a{
    width: auto;
    min-width: 36px;
}

/*smart*/
@media screen and (min-width: 0px) and (max-width: 600px){
    #news li a{
        flex-direction: column;
        padding-left: 0;
    }
    #news li a small{
        margin-right: 0;
    }
    #news li a small,
    #news li a dl{
        width: 100%;
    }
    #news li a::before{
        right: 10px;
    }

    #single #page_navi{
        margin-bottom: 0;
    }
}