body { background: #faf6eb; margin: 0; font-family: 'Noto Sans JP', sans-serif; }
.c-header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.c-header-logo img { width: 180px; }
.c-header-nav a {
    font-size: 14px;
    color: #555;
    text-decoration: none;
    margin-left: 20px;
}
.c-header-nav a:hover { text-decoration: underline; }
.c-main { max-width: 900px; margin: 40px auto; padding: 0 24px 80px; }
.c-page-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}
.c-page-subtitle {
    font-size: 14px;
    color: #888;
    margin-bottom: 32px;
}
.c-event-list { display: flex; flex-direction: column; gap: 20px; }
.c-event-card {
    background: #fff;
    border-radius: 8px;
    padding: 28px 32px;
}
.c-event-header {
    margin-bottom: 14px;
}
.c-event-name {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 0;
    word-break: break-all;
    overflow-wrap: break-word;
}
.c-event-company {
    display: block;
    font-size: 12px;
    color: #888;
    line-height: 1.4;
    margin-bottom: 6px;
}
.c-event-header .c-badge {
    margin-top: 8px;
}
.c-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
}
.c-badge-open { background: #e3f2fd; color: #1565c0; }
.c-event-meta {
    display: grid;
    grid-template-columns: 30% 25% 20% auto;
    gap: 0px;
    margin-bottom: 18px;
}
.c-event-meta-item {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 14px;
    color: #444;
    padding: 8px 0 0;
}
.c-event-meta-item.c-event-meta-item--full {
    grid-column: 1 / -1;
}
.c-event-meta-label {
    font-weight: 700;
    color: #666;
    font-size: 12px;
    white-space: nowrap;
    margin-top: 2px;
    margin-right: 10px;
    margin-bottom: 2px;
    padding: 5px 0;
    border-radius: 2px;
    background-color: #c8e2f0;
    min-width: 60px;
    text-align: center;
}
.c-event-meta-item.c-event-meta-item--full .c-event-meta-label {
    background-color: #fde7d3;
    color: #c9782c;
}
.c-event-meta-item span:not(.c-event-meta-label) {
    min-width: 0;
    color: #333;
}
.c-event-detail {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    white-space: pre-wrap;
    border-top: 1px solid #f0f0f0;
    padding-top: 14px;
    margin-top: 4px;
    word-break: break-all;
    overflow-wrap: break-word;
}
.c-empty {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 60px 32px;
    text-align: center;
    color: #999;
    font-size: 15px;
}
.c-apply-wrap {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}
.c-apply-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}
.c-btn-apply {
    display: inline-block;
    padding: 16px 64px;
    background: #f39e4a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}
.c-btn-applied {
    display: inline-block;
    padding: 16px 64px;
    background: #bdbdbd;
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
}
.c-btn-cancel {
    display: inline-block;
    padding: 16px 64px;
    background: #fff;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}
.c-alert-error {
    background: #fdecea;
    border: 1px solid #ef9a9a;
    color: #c62828;
    padding: 12px 20px;
    border-radius: 4px;
    margin-bottom: 24px;
    font-size: 14px;
}
.c-alert-success {
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    color: #2e7d32;
    padding: 12px 20px;
    border-radius: 4px;
    margin-bottom: 24px;
    font-size: 14px;
}
