/* 移転報告ページ用CSS - シンプル版 */

/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.migration-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    margin-bottom: 30px;
}

.logo-text {
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.1em;
}

.logo img {
    max-width: 280px;
    width: 100%;
    height: auto;
}

.migration-notice h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
    border-bottom: 3px solid #3498db;
    display: inline-block;
    padding-bottom: 10px;
}

.main-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

.new-url-box {
    background: #f8f9fa;
    border: 2px solid #3498db;
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    position: relative;
}

.new-url-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71, #f39c12, #e74c3c);
}

.new-url-box h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.new-url-link {
    display: inline-block;
    font-size: 1.1rem;
    color: #3498db;
    text-decoration: none;
    background: white;
    padding: 15px 25px;
    border-radius: 30px;
    border: 2px solid #3498db;
    transition: all 0.3s ease;
    word-break: break-all;
}

.new-url-link:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.redirect-info {
    margin: 30px 0;
    padding: 20px;
    background: #e8f5e8;
    border-radius: 10px;
    border-left: 4px solid #2ecc71;
}

.redirect-info p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.redirect-info p:last-child {
    margin-bottom: 0;
}

#countdown {
    font-weight: bold;
    color: #e74c3c;
    font-size: 1.2rem;
    background: #fff;
    padding: 2px 8px;
    border-radius: 5px;
    border: 1px solid #e74c3c;
}

.manual-link {
    color: #666;
    font-size: 0.95rem;
}

.manual-link a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.manual-link a:hover {
    text-decoration: underline;
}

.cta-button-container {
    margin: 30px 0;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
    background: linear-gradient(135deg, #2ecc71, #3498db);
}

.footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 0.9rem;
}

.footer p {
    margin-bottom: 5px;
}

.footer p:last-child {
    margin-bottom: 0;
}

/* タブレット版 (768px以下) */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }
    
    .migration-content {
        padding: 30px;
    }
    
    .logo-text {
        font-size: 2.5rem;
    }
    
    .migration-notice h1 {
        font-size: 2rem;
    }
    
    .main-message {
        font-size: 1.1rem;
    }
    
    .logo img {
        max-width: 240px;
    }
    
    .new-url-box {
        padding: 20px;
    }
    
    .new-url-link {
        font-size: 1rem;
        padding: 12px 20px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

/* スマートフォン版 (480px以下) */
@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    
    .migration-content {
        padding: 20px;
        border-radius: 15px;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .migration-notice h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .main-message {
        font-size: 1rem;
    }
    
    .logo img {
        max-width: 200px;
    }
    
    .new-url-box {
        padding: 15px;
        margin: 20px 0;
    }
    
    .new-url-box h2 {
        font-size: 1.3rem;
    }
    
    .new-url-link {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
    
    .redirect-info {
        padding: 15px;
    }
    
    .redirect-info p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .footer {
        font-size: 0.8rem;
    }
}

/* 印刷用スタイル */
@media print {
    body {
        background: white;
    }
    
    .migration-content {
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .cta-button {
        background: #3498db;
        color: white;
    }
} 