/* ============================= */
/* トレーニングカード全体 */
.c-trainingListItem {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 24px;   /* カード間の余白 */
    padding: 16px;         /* カード内の余白 */
    background-color: #fff;
    transition: box-shadow 0.3s;
}

.c-trainingListItem:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* トレーニングタイトル */
.c-trainingLinkListItem__title {
    font-size: 18px;
    font-weight: 600;
    margin: 12px 0 8px 0;
}

/* トレーニング説明文 */
.c-trainingLinkListItem__text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* ステータスラベル */
.c-trainingLinkListItem__tag {
    display: inline-block;
    padding: 2px 6px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    color: #fff;
    margin-bottom: 8px;
}

.c-trainingLinkListItem__tag--new {
    background-color: #f57c00; /* オレンジ */
}

.c-trainingLinkListItem__tag--update {
    background-color: #1976d2; /* 青 */
}

.c-trainingLinkListItem__tag--eol {
    background-color: #9e9e9e; /* グレー */
}


/* メインビジュアル下の余白 */
.mainVisual__content {
    margin-bottom: 40px;
}

/* セクション間の余白 */
.l-section {
    margin-bottom: 60px;
}

/* 見出しの余白調整 */
.l-sectionTitle {
    margin-bottom: 24px;
}

/* 2カラムの説明文＋画像 */
.l-2column {
    display: flex;
    flex-wrap: wrap;
    gap: 24px; /* カラム間の余白 */
}

.l-section__headerAreaImage {
    flex: 1 1 200px;
}

.l-section__headerAreaText {
    flex: 2 1 400px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .l-2column {
        flex-direction: column;
    }
}

