/**
お知らせ（ニュース）画面　スタイルシート

  @author s.tanaka
  Copyright (C) eightis Inc.

  [履歴]
   2023/02/24 初版
   2023/03/30 ずれないように調整(ul->tableに置き換え)
 */

a {
    color:#0000FF; text-decoration:none;
}

/* ここから新規 */
.news-day {
    padding-left: 5px;
    vertical-align:middle;
    width: 140px;
    margin-left: 50px;
}
.news-tag-blue {
    width: 150px;
    color:white;
    background-color:blue;
    text-align:center;
    vertical-align:middle;
} @media screen and (max-width:800px) {
    .news-tag-blue{
        display: none;
    }
}
.news-tag-red {
    width: 150px;
    color:white;
    background-color:red;
    text-align:center;
    vertical-align:middle;
} @media screen and (max-width:800px) {
    .news-tag-red{
        display: none;
    }
}
.news-text {
    padding-left: 5px;
}

/* お知らせの下部線 */
table, td, th {
    border-bottom: 1px solid black;
}
table {
    border-collapse: collapse;
}
