<!DOCTYPE html>

<html lang="ja">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <meta name="description" content="もぉにゃん - 牛の着ぐるみを被った猫のキャラクター。鯛焼きが大好き!">

    <meta name="keywords" content="もぉにゃん,mo-nyan,ゆるキャラ,キャラクター,牛猫">

    <title>もぉにゃん / Mo-nyan 公式サイト</title>

    

    <style>

        * {

            margin: 0;

            padding: 0;

            box-sizing: border-box;

        }

        

        body {

            font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;

            background: linear-gradient(135deg, #FFF5E6 0%, #FFE4CC 100%);

            color: #333;

            line-height: 1.6;

        }

        

        .container {

            max-width: 800px;

            margin: 0 auto;

            padding: 40px 20px;

            text-align: center;

        }

        

        .logo {

            font-size: 3em;

            margin-bottom: 10px;

            font-weight: bold;

            color: #8B4513;

        }

        

        .subtitle {

            font-size: 1.5em;

            color: #666;

            margin-bottom: 30px;

            font-weight: 300;

        }

        

        .character-image {

            max-width: 400px;

            width: 100%;

            height: auto;

            margin: 30px auto;

            border-radius: 20px;

            box-shadow: 0 10px 30px rgba(0,0,0,0.1);

        }

        

        .description {

            font-size: 1.2em;

            margin: 30px 0;

            line-height: 1.8;

        }

        

        .coming-soon {

            font-size: 1.5em;

            color: #FF6B6B;

            margin: 20px 0;

            font-weight: bold;

            animation: pulse 2s infinite;

        }

        

        @keyframes pulse {

            0%, 100% { opacity: 1; }

            50% { opacity: 0.6; }

        }

        

        .social-links {

            display: flex;

            justify-content: center;

            gap: 20px;

            margin: 40px 0;

            flex-wrap: wrap;

        }

        

        .social-btn {

            display: inline-block;

            padding: 15px 30px;

            background: white;

            color: #333;

            text-decoration: none;

            border-radius: 50px;

            font-weight: bold;

            box-shadow: 0 4px 15px rgba(0,0,0,0.1);

            transition: transform 0.3s, box-shadow 0.3s;

        }

        

        .social-btn:hover {

            transform: translateY(-5px);

            box-shadow: 0 6px 20px rgba(0,0,0,0.15);

        }

        

        .youtube { background: #FF0000; color: white; }

        .instagram { background: #E4405F; color: white; }

        .tiktok { background: #000000; color: white; }

        .twitter { background: #1DA1F2; color: white; }

        .suzuri { background: #4CAF50; color: white; }

        

        .contact {

            margin: 40px 0;

            padding: 30px;

            background: white;

            border-radius: 15px;

            box-shadow: 0 4px 15px rgba(0,0,0,0.1);

        }

        

        .contact h2 {

            margin-bottom: 15px;

            color: #8B4513;

        }

        

        .contact a {

            color: #FF6B6B;

            text-decoration: none;

            font-size: 1.2em;

        }

        

        .footer {

            margin-top: 50px;

            padding-top: 30px;

            border-top: 2px solid #DDD;

            font-size: 0.9em;

            color: #666;

        }

        

        @media (max-width: 600px) {

            .logo { font-size: 2em; }

            .subtitle { font-size: 1.2em; }

            .description { font-size: 1em; }

            .social-btn { padding: 12px 20px; font-size: 0.9em; }

        }

    </style>

</head>

<body>

    <div class="container">

        <h1 class="logo">🐮🐱 もぉにゃん</h1>

        <p class="subtitle">Mo-nyan</p>

        

        <img src="monyan_profile.png" alt="もぉにゃん" class="character-image">

        

        <div class="description">

            <p>牛の着ぐるみを被った猫のキャラクター🐮🐱</p>

            <p>鯛焼きが大好き🐟</p>

            <p>ゆる〜く楽しい日常をお届けします✨</p>

        </div>

        

        <p class="coming-soon">近日デビュー予定🎬</p>

        

        <div class="social-links">

            <a href="https://www.youtube.com/@monyan_official" target="_blank" class="social-btn youtube">

                📺 YouTube

            </a>

            <a href="https://www.instagram.com/monyan_official" target="_blank" class="social-btn instagram">

                📸 Instagram

            </a>

            <a href="https://www.tiktok.com/@monyan_official" target="_blank" class="social-btn tiktok">

                🎵 TikTok

            </a>

            <a href="https://x.com/monyan_official" target="_blank" class="social-btn twitter">

                🐦 X

            </a>

            <a href="https://suzuri.jp/monyan_official" target="_blank" class="social-btn suzuri">

                🛍️ グッズ

            </a>

        </div>

        

        <div class="contact">

            <h2>📧 お問い合わせ</h2>

            <p>お仕事のご依頼・ご相談はこちら</p>

            <a href="mailto:contact@mo-nyan.com">contact@mo-nyan.com</a>

        </div>

        

        <div class="footer">

            <p>© 2025 [もぉにゃん] All Rights Reserved.</p>

            <p>商標出願中</p>

        </div>

    </div>

</body>

</html>