<!DOCTYPE html>
<html lang="ja">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>お問い合わせ | 有限会社One Factory</title>
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <header>
        <div class="container header-inner">
            <a href="index.html" class="logo">One Factory</a>
            <nav>
                <ul>
                    <li><a href="index.html">ホーム</a></li>
                    <li><a href="services.html">事業内容</a></li>
                    <li><a href="company.html">会社案内</a></li>
                    <li><a href="contact.html">お問い合わせ</a></li>
                </ul>
            </nav>
        </div>
    </header>

    <main class="container">
        <section class="section">
            <h2>お問い合わせ</h2>
            <p>お見積り依頼やご相談など、お気軽にお問い合わせください。</p>
            
            <form action="mail.php" method="post">
                <label>お名前</label>
                <input type="text" name="name" required>

                <label>メールアドレス</label>
                <input type="email" name="email" required>

                <label>お問い合わせ内容</label>
                <textarea name="message" rows="8" required></textarea>

                <button type="submit">送信する</button>
            </form>
        </section>
    </main>

    <footer>
        <div class="container">
            <p>&copy; 2024 One Factory Inc. All Rights Reserved.</p>
        </div>
    </footer>
</body>
</html>