@charset "utf-8";

.notice_gallery_section {
    margin-top: calc(min(3.3854vw, 65px) + min(3.6458vw, 70px));
}

.notice_gallery_section .post-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 30px;
}

.notice_gallery_section .post-wrap .post-row {
    width: calc((100% - 40px)/2);
}

.notice_gallery_section .post-wrap .gallery_img{
    margin-bottom: 20px;
}

.notice_gallery_section .post-wrap .gallery_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.notice_gallery_section .post-wrap .gallery_title p {
    font-size: 20px;
    font-weight: 600;
    color:#0c0c0c;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

@media (max-width:991px) {
    .notice_gallery_section {
        margin-top: 50px;
        box-sizing: border-box;
        overflow: hidden;
    }

    .notice_gallery_section .post-wrap {
        gap:20px 15px;
        opacity: 0;
        transform: translateY(100%);
        transition:all 1s 0.6s;
    }

    .notice_gallery_section .post-wrap .post-row {
        width: calc((100% - 15px)/2);
    }

    .notice_gallery_section .post-wrap .gallery_img {
        margin-bottom: 16px;
    }

    .notice_gallery_section .post-wrap .gallery_title p {
        font-size: 16px;   
    }

    .section07.animate .notice_gallery_section .post-wrap{
        transform:translateY(0%);
        opacity: 1; 
    }
}