/* トップセクション */
.top-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 0.8em;
    margin: 1.5em 1em;
    padding: 1em;
}

.top-container h1 {
    font-weight: bold;
    font-size: 1.8rem;
    text-align: center;
    color: #334669;
    line-height: 1.3;
    margin: 0;
}

.top-container p.description {
    font-weight: normal;
    font-size: 1rem;
    text-align: center;
    color: #334669;
    opacity: 70%;
    line-height: 1.4;
    margin: 0;
}

.search-status {
    display: flex;
    align-items: center;
    gap: 1em;
    margin-top: 0.5em;
    padding: 0.8em 1.2em;
    background: rgba(51, 70, 105, 0.05);
    border-radius: 2em;
    border: 1px solid rgba(51, 70, 105, 0.1);
}

.status-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2em;
}

.status-number {
    font-size: 1.3em;
    font-weight: bold;
    color: #334669;
}

.status-label {
    font-size: 0.8em;
    color: #334669;
    opacity: 70%;
}

.status-divider {
    font-size: 1.1em;
    color: #334669;
    opacity: 50%;
    font-weight: bold;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .top-container {
        margin: 1em 0.5em;
        padding: 0.8em;
    }
    
    .top-container h1 {
        font-size: 1.6rem;
    }
    
    .top-container p.description {
        font-size: 0.9rem;
    }
    
    .search-status {
        gap: 0.8em;
        padding: 0.6em 1em;
    }
    
    .status-number {
        font-size: 1.2em;
    }
    
    .status-label {
        font-size: 0.75em;
    }
}

@media (max-width: 480px) {
    .top-container h1 {
        font-size: 1.4rem;
    }
    
    .search-status {
        flex-direction: column;
        gap: 0.5em;
        text-align: center;
    }
    
    .status-divider {
        transform: rotate(90deg);
        font-size: 1em;
    }
}
