<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Coming Soon */
.cs-container {
    max-width: 1024px;
    margin: 0 auto;
}

/* 繧｢繧ｫ繝�Α繝�け繝悶Ν繝ｼ繝�じ繧､繝ｳ */
.cs-coming-soon-section {
    background: white;
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.1);
    border: 1px solid #e0e7ff;
}

.cs-academic-header {
    background: #0068b7;
    padding: 20px;
    text-align: center;
    position: relative;
}

.cs-academic-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"&gt;&lt;defs&gt;&lt;pattern id="academicGrid" width="20" height="20" patternUnits="userSpaceOnUse"&gt;&lt;path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/&gt;&lt;/pattern&gt;&lt;/defs&gt;&lt;rect width="100" height="100" fill="url(%23academicGrid)"/&gt;&lt;/svg&gt;');
    opacity: 0.3;
}

.cs-academic-header h2 {
    font-size: 2.4rem;
    color: white;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.cs-academic-body {
    padding: 40px;
    text-align: center;
    background: #f8fafc;
}

.cs-progress-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.cs-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #1e3a8a;
    animation: academicPulse 2s infinite;
}

.cs-dot:nth-child(2) { 
    animation-delay: 0.2s; 
}

.cs-dot:nth-child(3) { 
    animation-delay: 0.4s; 
}

@keyframes academicPulse {
    0%, 80%, 100% { 
        opacity: 0.3; 
        transform: scale(1); 
    }
    40% { 
        opacity: 1; 
        transform: scale(1.2); 
    }
}

.cs-academic-info {
    color: #475569;
    margin: 0;
    font-size: 16px;
}

@media (max-width: 768px) {
    .cs-academic-header h2 {
        font-size: 2rem;
    }
    
    .cs-academic-header {
        padding: 30px 20px;
    }
    
    .cs-academic-body {
        padding: 30px 20px;
    }
}</pre></body></html>