@charset "UTF-8";
/* 404エラーページ専用CSS */

/* エラーコンテナ */
.error-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: #fff3e0;
    padding: 3rem;
    border-radius: 12px;

    margin-bottom: 2rem;
}

.error-icon {
    font-size: 4rem;
    color: #ff9800;
    flex-shrink: 0;
}

.error-content {
    flex: 1;
}

.error-title {
    color: #ff9800;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.error-message {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    margin: 0;
}

/* ページリンクグリッド */
.page-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.page-link-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    text-align: center;
}

.page-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
    border-color: #f48fb1;
    text-decoration: none;
    color: inherit;
}

.link-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f48fb1, #ec407a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.page-link-card h3 {
    color: #f48fb1;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: bold;
}

.page-link-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* お問い合わせセクション */
.contact-section {
    background: linear-gradient(135deg, #f48fb1, #ec407a);
    color: white;
}

.contact-section .section-title {
    color: white;
}

.contact-section .section-title::after {
    background-color: white;
}

.contact-info {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.contact-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    text-align: center;
    max-width: 400px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.contact-details h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-phone {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.contact-hours {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .error-container {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .error-icon {
        font-size: 3rem;
    }
    
    .error-title {
        font-size: 1.6rem;
    }
    
    .error-message {
        font-size: 1rem;
    }
    
    .page-links-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .page-link-card {
        padding: 1.5rem;
    }
    
    .link-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .error-container {
        padding: 1.5rem;
    }
    
    .error-title {
        font-size: 1.4rem;
    }
    
    .page-link-card {
        padding: 1rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-phone {
        font-size: 1.4rem;
    }
}