@charset "utf-8";
/* CSS Document */

<!DOCTYPE html>
<html lang="ja">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>LPデザイン</title>
    <link rel="stylesheet" href="styles.css">
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            text-align: center;
        }
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            background-color: #333;
            color: white;
        }
        nav ul {
            list-style: none;
            padding: 0;
            display: flex;
            gap: 20px;
        }
        nav a {
            color: white;
            text-decoration: none;
        }
        #main-visual {
            padding: 50px;
            background-color: #f4f4f4;
        }
        .btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: #007BFF;
            color: white;
            text-decoration: none;
            border-radius: 5px;
        }
        section {
            padding: 50px;
        }
        .service-item {
            display: inline-block;
            width: 45%;
            margin: 20px;
            padding: 20px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        form {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        input, textarea {
            width: 80%;
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        button {
            padding: 10px 20px;
            background-color: #007BFF;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
    </style>
</head>
<body>
    <header>
        <div class="logo">
            <img src="logo.png" alt="ロゴ">
        </div>
        <nav>
            <ul>
                <li><a href="#about">About</a></li>
                <li><a href="#services">Services</a></li>
                <li><a href="#contact">Contact</a></li>
            </ul>
        </nav>
    </header>
    
    <section id="main-visual">
        <h1>キャッチコピーが入ります</h1>
        <p>説明文がここに入ります</p>
        <a href="#contact" class="btn">お問い合わせ</a>
    </section>
    
    <section id="about">
        <h2>私たちについて</h2>
        <p>ここに説明文が入ります。</p>
    </section>
    
    <section id="services">
        <h2>サービス</h2>
        <div class="service-item">
            <img src="image1.jpg" alt="サービス1">
            <h3>サービス1</h3>
            <p>サービスの詳細説明</p>
        </div>
        <div class="service-item">
            <img src="image2.jpg" alt="サービス2">
            <h3>サービス2</h3>
            <p>サービスの詳細説明</p>
        </div>
    </section>
    
    <section id="contact">
        <h2>お問い合わせ</h2>
        <form>
            <input type="text" placeholder="お名前">
            <input type="email" placeholder="メールアドレス">
            <textarea placeholder="お問い合わせ内容"></textarea>
            <button type="submit">送信</button>
        </form>
    </section>
</body>
</html>
