@charset "UTF-8";

/************************************
** アーカイブページCSS
************************************/

.page-header-title{
    background-image: url(../img/report/header_img.png);
}
.report-msg{
    text-align: center;
}
.page-header-intro{
    background-color: transparent;
    padding: 55px 65px;
}
.report-list{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin:75px 0;
}
.report-item a{
    text-decoration: none;
    color:#333333;
    font-weight: bold;
    border-radius: 5px;
}
.report-item .eye{
    width: 100%;
    height: 215px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.report-item a:hover .report-item .eye{
    transform:scale(1.1,1.1);
}
.report-item p{
    padding:20px;
    background-color: #ffffff;
}






/*スマホ版表示切り替えは1200px以下*/
@media screen and (max-width: 1200px) {
    .report-msg{
        text-align: justify;
    }
    .page-header-intro{
        padding: 25px 0;
        margin-top: 0;
    }
    .report-list{
        margin: 20px 15px;
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 10px;
        grid-row-gap: 10px;
    }
    .report-item .eye{
        height: 100px;
    }
    .report-item p{
        padding:10px;
    }
}
/*スマホ版表示のみのスタイル*/
@media screen and (max-width: 480px) {

}