h1 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 25px;
    border-left: 6px solid #0b78d1;
    padding-left: 10px;
}

/* 検索フォーム */
.search-box {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.search-box input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}
.search-text {
    flex: 2;
}
.search-date {
    flex: 1;
}

/* ニュースカード */
.news-item {
    display: flex;
    gap: 16px;
    background: white;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.2s;
    align-items: flex-start;
    min-height: 120px;
}

.news-item:hover {
    transform: translateY(-2px);
}

.news-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.news-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.news-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

.news-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.2;
    word-break: break-word;
}

.news-tag {
    display: inline-block;
    font-size: 14px;
    padding: 2px 2px;
    border-radius: 12px;
    margin-bottom: 2px;
    color: white;
    line-height: 1.2;
    word-break: break-word;
    width: 100px;
    text-align: center;
}

.news-tag.最新情報 {
    background: #0b78d1; 
}  
.news-tag.機能改善 {
    background: #28a745;
}  
.news-tag.メンテナンス {
    background: #dc3545;
}

.news-content {
    font-size: 15px;
    color: #333;
    line-height: 1.4;
    word-break: break-word;
    overflow-wrap: break-word;
}