.news-box {
  max-height: calc(10em * 8);
  overflow-y: auto;
  padding: 10px;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-item {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.news-icon {
  padding: 2px 6px;
  font-size: 12px;
  color: #fff;
  border-radius: 3px;
}

.news-icon.new { background: #2196f3; }
.news-icon.important { background: #e53935; }
.news-icon.other { background: #757575; }

.news-date {
  font-size: 12px;
  color: #666;
}

.news-text {
  width: 100%;
}

/* 管理画面 */
.news-form textarea {
  width: 100%;
  min-height: 100px;
  resize: both;
}

/* レスポンシブ */
@media (max-width: 800px) {
  .news-item {
    font-size: 14px;
}
    
.news-box {
width: auto;
}    
}