@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Noto Sans JP', sans-serif;
}

.font-roboto {
    font-family: 'Roboto', sans-serif;
}

/* Hero Badge Animation */
@keyframes pulse-badge {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.animate-pulse-badge {
    animation: pulse-badge 2s infinite ease-in-out;
}

/* Floating CTA */
.floating-cta {
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1), 0 -2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Excel-like Table Styling */
.excel-table th {
    background-color: #f3f3f3;
    border: 1px solid #d4d4d4;
    font-weight: normal;
    color: #333;
}

.excel-row-header {
    background-color: #f3f3f3;
    text-align: center;
    width: 40px;
    color: #666;
}

.excel-cell {
    border: 1px solid #d4d4d4;
    padding: 4px 8px;
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Timeline Custom Styles */
.timeline-line {
    width: 4px;
    background-color: #e5e7eb;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
        transform: none;
    }
}
