/* ニュースコンテンツ全体のコンテナ */
.news-content {
    width: 100%;
    max-width: 800px; /* 読みやすい幅に制限 */
    margin: 0 auto;   /* 中央寄せ */
    padding-bottom: 80px;
}

.news-content img {
    width: 100%;
    height: auto;
    border-radius: 8px; /* 角を少し丸めるとモダンになります */
    margin-bottom: 30px;
}

/* 日付とタイトルのエリア */
.article-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.article-date {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.article-title {
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.4;
    color: #050505;
}

/* 本文エリア */
.article-body {
    font-size: 1.0rem;
    color: #222222;
}

.article-body p {
    margin-bottom: 0.5rem;
}

/* --- リンクの基本設定 --- */
.article-body a {
    color: #007bff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
    position: relative;
}

.article-body a:hover {
    color: #0056b3;
}

.article-body a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: currentColor;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.article-body a:hover::after {
    transform: scaleX(1);
}

.article-body .link {
    margin-top: 30px;
}
.article-credit {
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05); /* 黒背景に馴染む薄いグレー */
    border-left: 2px solid #ffc900;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.credit-item {
    display: flex;
    flex-direction: column;
}

.role {
    font-family: 'Orbitron', sans-serif; /* 英字フォント */
    font-size: 0.75rem;
    color: #000000;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.name {
    font-size: 1rem;
    color: #000000;
    font-weight: 500;
}