/* =====================================================
    イベント情報カード (events-card.css)
===================================================== */

.event-info-card {
    background: var(--color_gray);
    padding: 1.2em;
    margin: 10px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    box-sizing: border-box;
    display: block;
    width: 100%;
    clear: both;
    border-radius: 8px;
    border: 1px solid var(--color_border);
}

.event-info-card .company-table {
    width: 100%;
    display: block;
}

.event-info-card .company-row {
    display: flex;
    gap: 8px;
    padding: 12px 0;
    border-bottom: 1px solid var(--color_border);
    align-items: flex-start;
}

.event-info-card .company-row:last-child {
    border-bottom: none;
}

.event-info-card .company-label {
    min-width: 85px; /* ラベル幅を少し広めに調整 */
    font-weight: 700;
    font-size: 13px;
    color: var(--color_text);
    opacity: 0.8;
}

.event-info-card .company-value {
    flex: 1;
    font-size: 15px;
    color: var(--color_text);
    line-height: 1.5;
    word-break: break-word;
}

.event-info-card .company-value strong {
    font-size: 1.1em;
    color: var(--color_main); /* 強調色（SWELLの設定色） */
}

/* SNSアイコン */
.event-info-card .company-sns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 5px;
}

.event-info-card .sns-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    line-height: 32px;
    font-size: 16px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.event-info-card .sns-icon:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.event-info-card .sns-instagram { background: #E4405F; }
.event-info-card .sns-facebook  { background: #1877F2; }
.event-info-card .sns-x         { background: #000; }

/* レスポンシブ表示（スマホ） */
@media (max-width: 480px) {
    .event-info-card .company-row {
        flex-direction: column;
        gap: 4px;
    }
    .event-info-card .company-label {
        min-width: auto;
        font-size: 12px;
    }
    .event-info-card .company-value {
        font-size: 16px;
    }
}