/*重要なお知らせ*/

/*sp*/
.notification_wrap {
    position: relative;
    margin-top: 70px;
    z-index: 999;
}
.notification_area {
    padding: 20px 16px;
    height: auto;
    background-color: #ececec;
    color: black;    
}

.notificationList {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 6px 16px;
    font-size: 14px;   
}

.notificationDate {
    color: #707070;
    margin-right: 10px;
}

.notificationLabel {
    display: inline-block;
    padding: 2px 7px;
    background-color: #fff;
    color: black;
    border-radius: 5px;
}

.notificationTxt a {
    color: #000;
    transition: .3s;
}

@media screen and (min-width: 768px) {
    .notificationTxt a:hover {
        color: #d0576a;
        text-decoration: underline;
    }
    .notificationList{
        font-size: 17px;
    }
}


/*mid*/
@media screen and (min-width: 1024px) {
    .notification_area {
        padding: 24px 90px;
    }

    .notificationList {
        width: 100%;
        gap: 6px 28px;
    }

    .notificationDateWrap {
        width: 260px;
    }

    .notificationDate {
        color: #707070;
    }

    .notificationTxt {
        width: calc(100% - 288px);

    }

}

/*pc*/
@media screen and (min-width: 1260px) {
    .notification_wrap {
        margin-top: 150px;
    }

    .notification_body {
        width: 100%;
        max-width: 1090px;
        margin: 0 auto;
    }

    .notificationDate {
        margin-bottom: 0px;

    }

}