@charset "utf-8";



/* news list */

.newsList {
    width: 1000px;
    padding: 0;
    margin: auto;
    position: relative;
}

.newsList dl {
    float: left;
    width: 316px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 26px;
    margin-bottom: 26px;
    box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.1);
}

.newsList dl>a {
    display: block;
    transition: 0.5s ease;
    box-shadow: inset 0 0 0 0 #ffffff00, inset 0 0 0 0 #ffffff00;
}

.newsList dl>a:hover {
    box-shadow: inset 0 0 30px 0 #ffffff, inset 0 0 5px 0 #ffffff;
    opacity: 0.8;
}

.newsList dl:nth-child(3n) {
    margin-right: 0;
}

.newsList dl dt {
    background-color: #555;
    padding-top: 56.25%;
    position: relative;
    overflow: hidden;
}

.newsList dl dt img {
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.newsList dl dd {
    background-color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    color: #4f455c;
    line-height: 1.5;
    padding: 5px 10px 20px;
}

.newsList dl dd>ul {
    margin: 0 0 10px;
}

.newsList dl dd>ul>li {
    float: left;
    font-size: 1.4rem;
    line-height: 30px;
}

.newsList dl dd>ul>li.icon {
    float: right;
}


.pager {
    margin-top: 6.5625%;
    text-align: center;
}

.pager ul li {
    display: inline-block;
}

.pager ul li a,
.page-numbers {
    display: inline-block;
    line-height: 36px;
    width: 36px;
    height: 36px;
    background-color: #fff;
    border-radius: 50%;
    margin: 0 5px;
    color: #4f455c;
    transition: 0.3s;
}

.pager ul li a:hover,
a.page-numbers:hover {
    opacity: 0.8;
}

.pager ul li.selected a,
.page-numbers.current {
    background-color: #CC92BF;
    color: #fff;
}

.page-numbers.dots {
    display: none;
}

p.nolist {
    text-align: center;
}

@media screen and (max-width: 999px) {
    .newsList {
        width: 80%;
    }

    .newsList dl,
    .newsList dl:nth-child(3n) {
        width: 48%;
        margin-right: 4%;
        margin-bottom: 4%;
    }

    .newsList dl:nth-child(2n) {
        margin-right: 0;
    }

    .newsList dl>dt img {
        width: 100%;
    }


}


/* SP */
@media screen and (max-width: 767px) {
    /* news */

    .newsList {
        width: 100%;
        padding: 0 10px;
    }

    .newsList dl dd {
        font-size: 0.9rem;
        padding: 5px;
    }

    .newsList dl dd>ul {
        margin: 0 0 5px;
    }

    .newsList dl dd>ul>li {
        font-size: 0.9rem;
        line-height: 15px;
    }

    .newsList dl dd>ul>li.icon {
        width: 30%;
    }

    .pager {
        margin-top: 6.5625%;
        text-align: center;
    }

    .pager ul li {
        display: inline-block;
    }

    .pager ul li a,
    .page-numbers {
        line-height: 25px;
        width: 25px;
        height: 25px;
        font-size: 1.0rem;
    }
}