@charset "utf-8";
/* 404ページ専用
   ※ templates/404.html の <style> 直書きを外部化したもの（2026-07-09） */
.error-404-container {
    text-align: center;
    padding: 60px 20px;
    max-width: 600px;
    margin: 0 auto;
}
.error-404-number {
    font-size: 120px;
    font-weight: 700;
    color: var(--primary-color, #132F71);
    line-height: 1;
    margin-bottom: 20px;
}
.error-404-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px;
}
.error-404-message {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-sub);
    line-height: 1.8;
    margin-bottom: 40px;
}
.error-404-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}
.error-404-links a {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: var(--primary-color, #132F71);
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}
.error-404-links a:hover {
    background: var(--primary-dark, #0E2455);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(19, 47, 113, 0.3);
}
.error-404-links a i {
    margin-right: 8px;
}
@media (max-width: 768px) {
    .error-404-container {
        padding: 0 0;
    }
    .error-404-number {
        font-size: 5.5rem;
    }
    .error-404-title {
        font-size: 18px;
    }
    .error-404-message {
        font-size: clamp(13px, 3.0vw, 15px);
    }
}
