/* ニュースセクション */
.news-section {
    padding: 80px 0;
    background-color: var(--light-background);
}

.news-card {
    background-color: var(--light-background);
    border-radius: 10px;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
    padding: 30px;
    margin-bottom: 30px;
    max-width: 775px;
    margin-left: auto;
    margin-right: auto;
}

.news-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.news-item:last-child {
    border-bottom: none;
}

.news-date {
    font-size: 16px;
    color: var(--text-color);
    margin-right: 30px;
    min-width: 120px;
}

.news-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    flex-grow: 1;
}

.news-arrow {
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.news-arrow:hover {
    transform: translateX(5px);
}

.news-more {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.news-title-with-icon {
    display: flex;
    align-items: center;
}

.news-icon {
    margin-left: 15px;
    width: 130px;
    position: relative;
    top: -25px;
    height: auto;
}
