/* パンくずリストのデザイン */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    font-size: 14px;
    letter-spacing: 0.05em;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 10px;
    border-radius: 20px;
    background: var(--primary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 3px 10px rgba(25, 118, 210, 0.3);
}

.breadcrumb a:hover {
    color: white;
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(25, 118, 210, 0.4);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb > span:first-of-type {
    font-size: 16px;
    margin: 0 8px;
    color: white;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.breadcrumb > span:last-child {
    color: white;
    font-weight: 500;
    padding: 5px 15px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(25, 118, 210, 0.3);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .breadcrumb {
        font-size: 12px;
        gap: 10px;
    }
    
    .breadcrumb a {
        padding: 3px 8px;
    }
    
    .breadcrumb > span:last-child {
        padding: 3px 10px;
    }
}