.publisher {
    margin: 0px 0 0px;
}
.publisher .meMsg_MsgBlk .meMsg_MsgTitle {
    margin-bottom: 50px;
}

.publisher .meMsg_MsgList .itemMsgList {
    padding: 10px 30px;
    margin-bottom: 50px;
    display: flex;
    position: relative;
    flex-direction: column-reverse;
}
.publisher .meMsg_MsgList .itemMsgList .meMsg_ItemContent {
    display: block;
    text-align: center;
    color: #000000;
    font-weight: bold;
}

.publisher .meMsg_MsgList .itemMsgList .meMsg_ItemTxtURL {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #fff;
    color: #fff;
    padding: 5px 10px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 2s ease;
}
.publisher .meMsg_MsgList .itemMsgList:hover .meMsg_ItemTxtURL {
    opacity: 1;
    transition: opacity 2s ease;
}

.publisher .meMsg_MsgList .itemMsgList .meMsg_ItemImgURL {
    background-color: #000;
}
.publisher .meMsg_MsgList .itemMsgList .meMsg_ItemImgURL img {
    width: 100%;
    opacity: 1;
    transition: opacity 2s ease;
}
.publisher .meMsg_MsgList .itemMsgList:hover .meMsg_ItemImgURL img {
    opacity: 0.6;
    transition: opacity 2s ease;
}

.txt img {
    width: 100%;
}



@media (max-width: 700px) {
.publisher .meMsg_MsgList .itemMsgList {
    padding: 10px 0px;
    margin-bottom: 50px;
    display: flex;
    position: relative;
    flex-direction: column-reverse;
}

}



