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

/*とりあえずcopyright削*/
.pkoboC {
    display: none !important;
}

#workList{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 4em;
}
#workList li{
    width: calc((100% - 50px) / 3);
    margin: 0 25px 2em 0;
    position: relative;
}
#workList li:nth-of-type(3n) {
    margin-right: 0;
}

#workList li .catName {
    position: absolute;
    top: 0;
    left: 0;
}
#workList li img {
    width: 100%;
    max-height: 160px;
    object-fit: cover;
}

.catName{
    width: 95px;
    text-align: center;
    color: #FFF;
    font-size: 11px !important;
    line-height: 1.2em;
    padding: 5px;
    box-sizing: border-box;
    font-weight: 700;
}

.cat-0 .catName {
    background: #187fc4;
}
.cat-1 .catName {
    background: #7ebf41;
}
.cat-2 .catName {
    background: #f6ac19;
}

/*.newMark{
	display:inline-block;
	border:1px solid #F00;
	padding:1px 4px;
	font-size:11px;
	line-height:100%;
	background:#F00;
	color:#fff;
	box-shadow:1px 1px 1px #999;
	border-radius:8px;
	font-style:italic;
}*/
/*.comment{
	display:block;
	padding:3px 0;
	float:left;
	overflow:hidden;
}*/
.thumbNailWrap img{
    width: 100%;
}

.w-title {
    line-height: 1.4em;
    margin-top: 0.5em;
}

/* Pager style（外部化可） */
.pager{
	text-align:right;
	padding:10px;
	clear:both;
}
/*ページャーボタン*/
.pager a{
    border: 1px solid #999;
    border-radius: 5px 5px 5px 5px;
    color: #333;
    font-size: 12px;
    padding: 3px 7px 2px;
    text-decoration: none;
	margin:0 1px;
}

/*現在のページのボタン*/
.pager a.current{
    background: #999;
    border: 1px solid #999;
    border-radius: 5px 5px 5px 5px;
    color: #fff;
    font-size: 12px;
    padding: 3px 7px 2px;
	margin:0 1px;
    text-decoration: none;
}

.pager a:hover{
    background:#999;
    color: #fff;
}

.overPagerPattern{
	padding:0 2px ;	
}

/* /Pager style */

.category_menu {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3em;
    max-width: 600px;
}

.category_menu p {
    width: calc((100% - 80px) / 4);
}
.category_menu p a {
    text-decoration: none;
    padding: 7px 5px;
    display: block;
    text-align: center;
    border-radius: 5px;
    color: #FFF;
    line-height: 1em;
}
.category_menu .all {
    background: #808080;
}
.category_menu .cat-0 {
    background: #187fc4;
}
.category_menu .cat-1 {
    background: #7ebf41;
}
.category_menu .cat-2 {
    background: #f6ac19;
}


@media screen and (max-width: 639px) {
    .category_menu {
        flex-wrap: wrap;
    }
    .category_menu p{
        width: calc((100% - 10px) / 2);
    }
    
    /*#workList li{
        width: calc((100% - 10px) / 2);
        margin-right: 10px;
    }
    #workList li:nth-of-type(2n) {
        margin-right: 0
    }
    #workList li:nth-of-type(3n) {
        margin-right: auto;
    }*/
    #workList {
        display: block;
    }
    #workList li{
        width: 100%;
        margin-right: 0;
    }
}