/* This was edited by Seiya Abe at 2019/01/01. */
@charset "UTF-8";

.news .newstitle{
    padding-left: 20px;
    margin: 0;
    color: #000;
    font-size: 22px;
}
.news table {
    border-collapse:collapse;
    margin:10px auto;
    width: 90%;
}
.news a {
    color: blue;        /* 文字色を青に */
    text-decoration: underline; /* 下線を付ける */
}
.news td {
    text-align: left;
    padding:10px;
}
.news th {
    text-align: center;
    padding:10px;
    background:#696969;
}
.news table tr:nth-child(odd) {
    background:#f5f5f5;
}
td {
    border-bottom:2px solid #a9a9a9;
}

/* over 1190px */
@media (min-width: 1190px) {
    .news {
        width: 1140px;
        margin-left: auto;
        margin-right: auto;
    }
}