@charset "utf-8";

/* CSS Document */

.list-maincenter {
margin: 40px 0;
}
.list-maincenter ul{
list-style: none;
padding: 0;
margin: -10px;
display: flex;
flex-wrap: wrap;
}
.list-maincenter li {
    margin: 0;
    padding: 30px;
    width: 33.33%;
}
.list-maincenter li:before {
    content: "";
    background-color: #2e3192;
    position: absolute;
    left: 15px;
    top: 15px;
    width: 80%;
    height: 85%;
    z-index: 0;
    border-radius: 10px;
}
.list-maincenter li:after {
    content: "";
    background-color: #3eaf7c;
    position: absolute;
    right: 15px;
    bottom: 15px;
    width: 80%;
    height: 85%;
    z-index: 0;
    border-radius: 10px;
}
.list-maincenter li img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}
.list-maincenter-img{
width: 100%;
padding-top: 166.5% ;
z-index: 1;
}
.list-maincenter-imgscale{
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
}
.list-maincenter-img a{
display: block;
width: 100%;
height: 100%;
}
.list-maincenter-img a:hover{
    color: #999;
    cursor: pointer;
}
.list-maincenter-img span{
position: absolute;
bottom: 0;
left: 0;
width: 100%;
padding: 20px;
}
.list-maincenter-img span p{
padding: 0;
margin: 0;
}
.list-maincenter-img span .title {
    font-size: 34px;
    color: #2e3192;
    line-height: 1.2;
}

@media screen and (max-width:1024px) {
.list-maincenter-img span .title {
    font-size: 24px;
    color: #2e3192;
    line-height: 1.2;
}
}

@media screen and (max-width:768px) {
.list-maincenter li {
    width: 50%;
}
}

@media screen and (max-width:767px) and (orientation:portrait){
.list-maincenter li {
    width: 100%;
}
}