@charset "utf-8";
.searchBox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 50px 0 0 0;
	font-size: 13px;
}
.searchBox span {
	display: inline-block;
	padding: 0 10px 0 0;
}
.contestSelect {
	margin-bottom: 15px;
}
.contestSelect select {
	display: inline-block;
	padding: 10px 15px;
	box-sizing: border-box;
    border: solid 1px #e1e1e1;
    margin: 0 30px 0 0;

}
.searchText {
    margin-right: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	margin-bottom: 15px;
}
.searchText input {
	margin-bottom: 0;
}
.entryList {
	max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    box-sizing: border-box;
}
.categoryBox span {
	display: block;
	text-align: left;
	font-size: 13px;
}
.categoryList {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
    flex-wrap: wrap;
	padding: 15px 0 0 0;
}
.categoryList input{
	margin:0 5px 2px 0;
}
.categoryList li {
	width: 20%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	color: #919191;
	font-size: 13px;
	padding: 0 15px 15px 0;
	box-sizing: border-box;
}
.ratingsList li a.current {
	color: #54246f;
}
.categoryList li:last-child:after{
	display: none;
}
.searchBtn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15px;
	border-bottom: 1px solid #e1e1e1;
}
.searchBtn input {
	width: 150px;
}
.ratingsList {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 13px;
    padding: 30px 0 50px;
    box-sizing: border-box;
}
.ratingsList li{
	padding: 0 20px 0 27px;
	line-height: 23px;
}
.ratingsList li a {
	color: #919191;
	text-decoration: none;
	white-space: nowrap;
}
.ratingsList li:nth-child(1){
	background:url('/img/entrylist/icon-latest.png') no-repeat center left;
}
.ratingsList li:nth-child(2){
	background:url('/img/entrylist/icon-heart.png') no-repeat center left;
}
.ratingsList li:nth-child(3){
	background:url('/img/entrylist/icon-comment.png') no-repeat center left;
}
.entryTotal {
	font-size: 13px;
}
.entryTotal span {
	font-weight: bold;
}
.entryListBox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-top:1px solid #e8e8e8;
}
.entryListBoxInner {
	width: 33.33%;
	overflow: hidden;
    box-sizing: border-box;
    border-left:1px solid #e8e8e8;
    border-bottom:1px solid #e8e8e8;
}
.entryListBoxInner:nth-child(3n),
.entryListBoxInner:last-child {
	border-right: 1px solid #e8e8e8;
}
.entryImg {
	position: relative;
	line-height: 0;
	width: 100%;
	padding: 66.66% 0 0 0;
	background-color: #000;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: auto 100%;
}
.entryImg a{
	width: 100%;
	height: 100%;
}
.innerContents {
	padding: 20px;
	text-align: left;
	font-size: 13px;
}
.innerContents a{
	text-decoration: none;
	display: block;
	margin-bottom: 10px;
	overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.entryBy {
	overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.ratingsComment {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 10px;
	border-top:1px solid #e8e8e8;
	padding-top: 10px;
}
.ratingsComment div {
	width: 50%;
	box-sizing: border-box;
	padding: 0 0 0 50px;
	line-height: 23px;
}
.ratingsComment div:nth-child(1){
	background:url('/img/entrylist/rating_1_off.gif') no-repeat center left;
}
.ratingsComment div:nth-child(1).On {
	background:url('/img/entrylist/rating_1_on.gif') no-repeat center left;
}
.ratingsComment div:nth-child(2) {
	background:url('/img/entrylist/comment.png') no-repeat center left;
}
.pagenationBox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 13px;
}
.pagenationBox div:first-child a {
	display: inline-block;
	text-decoration: none;
	color: #333;
	height: 35px;
	width: 35px;
	line-height: 35px;
	background:#fafafa;
	border-radius: 100px;
	border:1px solid #e8e8e8;
}
.pagenationBox div:first-child a:hover {
	border:1px solid #54246f;
	color: #54246f;
}
.pagenationBox div:first-child a.currentPage {
	color: #333;
	border:0;
}
.pagenationBox div:first-child a.currentPage:hover {
	color: #333;
}
@-webkit-keyframes avia_pop_small {
  0%   { -webkit-transform:rotate(-175deg) scale(0.2); }
  100% { -webkit-transform:rotate(0deg) scale(1); opacity: 1; }
}
@keyframes avia_pop_small {
  0%   { transform:rotate(-175deg) scale(0.2); }
  100% { transform:rotate(0deg) scale(1); opacity: 1;}
}
@-webkit-keyframes avia_pop_smallb {
  100% { opacity:0; }
}
@keyframes avia_pop_smallb {
  100% { opacity: 0;}
}
.hoverIcon:before {
    content: '';
    background-color: #54246f;
    color: #ffffff;
    border-color: #32024d;
    position: absolute;
    border-radius: 50px;
    height: 80px;
    width: 80px;
    line-height: 80px;
    left: 50%;
    top: 50%;
    margin: -40px 0 0 -40px;
    z-index: 500;
    text-align: center;
    font-size: 18px;
    font-weight: normal;
    background-image: url('/img/hover_icon.png');
    background-repeat: no-repeat;
    background-position: center center;
}
.hoverIcon{
	height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
	transition:0.5s all;
}
.entryImg:hover .hoverIcon{
	-webkit-animation: avia_pop_small 0.5s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275); /* Safari 4+ */
	animation:         avia_pop_small 0.5s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275); /* IE 10+ */
	opacity: 1;
}
/*///////////////////////////////////////////////////////////////////////////////////////////////////////////////////ここからスマホ////////////////////////////////////////////////////////////////*/
@media only screen and (max-width: 767px){
.entryListBoxInner {
	width: 100%;
	margin-bottom: 50px;
	border: 1px solid #e8e8e8;
}
.entryListBoxInner:nth-child(2n),
.entryListBoxInner:last-child {
	border-right: 1px solid #e8e8e8;
}
.categoryList li{
	width: 50%;
	text-align: left;
}
.ratingsList li {
	margin-bottom: 30px;
}
}
