﻿.pj_list {
	display: flex;
    flex-wrap:wrap;
	margin-bottom: 40px;
}
.pj_item {
	width: calc(25% - 45px);
	margin: 0 60px 40px 0;
	border-radius: 15px;
	overflow: hidden;
	position: relative;
}
.pj_item:nth-child(4n) {
	margin-right: 0;
}
.pj_itm_img {
	margin: 0;
}
.pj_itm_img img {
	width: 100%;
}
.pj_itm_main {
	position: absolute;
	width: 100%;
	bottom: -40px;
	left: 0;
	background: #1a75b8;
	color: #fff;padding: 30px 40px;
	opacity: 0;
	transition: all 0.3s;
}
.pj_item:hover .pj_itm_main {
	opacity: 1;
	bottom: 0;
}
.pj_item a {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	height: 100%;
	z-index: 2;
}
.pj_itm_ttl {
	font-size: 19px;
	font-family: 'Oswald', sans-serif;
	line-height: 1.3em;
	margin-bottom: 10px;
}
.pj_itm_txt li {
	font-size: 12px;
	position: relative;
	padding-left: 15px;
}
.pj_itm_txt li:before {
	content: '';
	position: absolute;
	width: 5px;
	height: 5px;
	background: #fff;
	left: 0;
	top: 8px;
	border-radius: 50%;
}
.pj_other_header{margin-bottom:10px;line-height:1.0em;font-size:24px;padding:15px 0;color:#1a75b8;}
@media screen and (max-width:768px) {
	.pj_list {
    justify-content: space-between;
}
    .pj_item {
        width: calc(100%/2 - 10px);
        margin: 0 0px 20px;
    }
    .pj_itm_main {
        opacity: 1;
        bottom: 0;
        padding: 20px;
    }
    .pj_itm_ttl{
        font-size:16px;
    }
    .pj_itm_txt {
        display:none;
    }

}
@media screen and (max-width:480px){
    .pj-item {width: 100%;margin: 0 0 30px 0;}
    .pj-item:nth-child(3n){margin-right:0;}
    .pj-item:last-child{margin:0;}
    .pj_itm_main{padding: 5px;}
    .pj_itm_ttl{font-size:12px;}
}