/*===== .main-visual =====*/
.main-visual {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 10px;
}
.main-visual .item {
  margin-bottom: 5px;
}
.main-visual .item:nth-child(1) {
  width: 100%;
}
.main-visual .item:nth-child(n + 2) {
  width: 49%;
}
.main-visual .item img {
  border: 1px solid #909090;
  background-color: #c8c8c8;
}
@media (min-width: 768px) {
}

/* ------------------------------------------------------------------------------
.news
------------------------------------------------------------------------------ */
.news {
    display: flex;
    border: 1px solid #333;
    border-radius: 4px;
    background: #444;
}

.news h2 {
    min-width: 4.5em;
    margin: 0;
    padding-top: .2em;
    color: #fff;
    font-size: 14px;
    font-weight: normal;
    text-shadow: 1px 1px 1px #000;
}

.news .list {
    width: 100%;
    padding: 3px 5px;
    border-radius: 2px;
    background: #fff;
    box-sizing: border-box;
}

.news .list a {
    padding: 2px;
    text-decoration: none;
}

.news .list a:hover {
    background: #ffff7f;
    text-decoration: underline;
}

.news .list .important {
    color: #c00;
    font-weight: bold;
}

.news .list .date {
    display: inline-block;
    margin-right: 5px;
    color: #777;
    text-align: right;
}

.news .list .open-others {
    color: #777;
}

.news .list .others a {
    display: block;
}

@media (min-width: 768px) {
    .news h2 {
        padding-top: .3em;
    }
}
