<!DOCTYPE html>
<html lang="ja">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>メンテナンス中 | J-CLASSIC EntryWebSite</title>
    <style>
        body {
            font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
            background-color: #f4f6f8;
            color: #333;
            margin: 0;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100vh;
            text-align: center;
        }
        .container {
            background-color: #ffffff;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            max-width: 600px;
            width: 90%;
        }
        h1 {
            font-size: 24px;
            margin-bottom: 10px;
            color: #2c3e50;
            border-bottom: 2px solid #ecf0f1;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 18px;
            color: #e74c3c;
            margin-top: 20px;
        }
        p {
            font-size: 15px;
            line-height: 1.6;
            color: #555;
            margin-bottom: 20px;
        }
        .footer {
            font-size: 12px;
            color: #999;
            margin-top: 30px;
        }
    </style>
</head>
<body>

    <div class="container">
        <h1>J-CLASSIC EntryWebSite</h1>
        
        <h2>ただいまメンテナンス中です</h2>
        
        <p>
            現在、ウェブサイトのシステムメンテナンスを行っております。<br>
            ご不便をおかけいたしますが、今しばらくお待ちください。
        </p>
        
        <p>
            Maintenance is currently in progress.<br>
            Please check back later.
        </p>

        <div class="footer">
            &copy; J-CLASSIC EntryWebSite
        </div>
    </div>

</body>
</html>