<!DOCTYPE html>
<html lang="ja">
<head>
    <meta charset="UTF-8">
    <title>γ‚ˆγ†γ“γ 🌸</title>
    <style>
        body {
            margin: 0;
            font-family: "Hiragino Maru Gothic Pro", "Arial", sans-serif;
            background: linear-gradient(135deg, #ffe6f0, #e6f7ff);
            color: #444;
            text-align: center;
        }

        .container {
            margin-top: 100px;
            padding: 30px;
            background: rgba(255,255,255,0.8);
            border-radius: 20px;
            display: inline-block;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        h1 {
            font-size: 36px;
            color: #ff66a3;
        }

        p {
            font-size: 18px;
            margin-top: 10px;
        }

        .cute {
            font-size: 50px;
            margin-top: 20px;
        }

        footer {
            margin-top: 50px;
            font-size: 14px;
            color: #888;
        }

        .btn {
            margin-top: 20px;
            display: inline-block;
            padding: 10px 20px;
            background: #ff99cc;
            color: white;
            text-decoration: none;
            border-radius: 999px;
            transition: 0.3s;
        }

        .btn:hover {
            background: #ff66a3;
        }
    </style>
</head>
<body>

<div class="container">
    <h1>γ‚ˆγ†γ“γγ€œοΌπŸŒΈ</h1>
    <p>kabochao.xsrv.jpへいらっしゃいませ!</p>
    <p>γ“γ“γ―γ¨γ£γ¦γ‚‚γ‹γ‚γ„γ„γ‚¦γ‚§γƒ–γ‚΅γ‚€γƒˆγ§γ™ πŸ’•</p>

    <div class="cute">πŸ°βœ¨πŸ“</div>

    <a href="#" class="btn">γ―γ˜γ‚γ‚‹</a>
</div>

<footer>
    Β© <?php echo date("Y"); ?> kabochao.xsrv.jp πŸ’–
</footer>

</body>
</html>