@media screen and (max-width: 1200px) {}

/* タブレット（一般的なサイズ） */
@media screen and (max-width: 1024px) {}



/* 小さめタブレット・スマホ大きめ */
@media screen and (max-width: 896px) {}



/* スマホ（iPhoneなど） */
@media screen and (max-width: 768px) {
    .report-area {
        .report-text {
            width: 90%;
            margin: 0 auto;
        }
    }
    /* .top-img{
        display:none;
        width: 100%;
        height: 80vh;
        background-image: url(../../images/library/main.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;

    } */
}


/* 超小型スマホ（iPhone SEなど） */
@media screen and (max-width: 440px) {}
