<!DOCTYPE html>
<html lang="ja">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>s*単位変換 プライバシーポリシー</title>
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap" rel="stylesheet">
    
    <style>
        /* --- ベースのカラー設定（ライトモード） --- */
        :root {
            --primary-color: #0064c2; /* アプリのテーマに合わせたブルー */
            --bg-color: #f4f7f6;
            --text-color: #333333;
            --card-bg: #ffffff;
            --border-color: #e1e8ed;
        }

        /* --- ダークモード自動対応 --- */
        @media (prefers-color-scheme: dark) {
            :root {
                --primary-color: #4e8ac2;
                --bg-color: #121212;
                --text-color: #e0e0e0;
                --card-bg: #1e1e1e;
                --border-color: #333333;
            }
        }

        /* --- 全体のスタイル --- */
        body {
            font-family: 'Noto Sans JP', -apple-system, sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.8;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
        }

        /* --- 画面中央に配置するコンテナ --- */
        .container {
            max-width: 760px;
            margin: 50px auto;
            padding: 0 20px;
        }

        /* --- ヘッダー --- */
        .header {
            text-align: center;
            margin-bottom: 30px;
        }

        .header h1 {
            font-size: 1.8rem;
            color: var(--text-color);
            margin-bottom: 5px;
            letter-spacing: 1px;
        }

        .header p {
            color: var(--primary-color);
            font-weight: bold;
            font-size: 1rem;
            margin: 0;
        }

        /* --- 白いカード部分（本文） --- */
        .content {
            background-color: var(--card-bg);
            border-radius: 20px;
            padding: 40px 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--border-color);
        }

        .intro {
            margin-bottom: 40px;
            font-size: 1.05rem;
        }

        /* --- 各セクション --- */
        .section {
            margin-bottom: 35px;
        }

        .section:last-child {
            margin-bottom: 0;
        }

        .section h2 {
            font-size: 1.25rem;
            color: var(--text-color);
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 8px;
            margin-bottom: 16px;
            display: inline-block;
        }

        .section p {
            margin: 0 0 15px 0;
        }

        .contact-info {
            background-color: rgba(0, 100, 194, 0.05);
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid var(--primary-color);
        }

        /* --- フッター --- */
        .footer {
            margin-top: 40px;
            text-align: center;
            font-size: 0.85rem;
            color: #888;
        }

        .footer p {
            margin: 5px 0;
        }

        /* --- スマホ表示時の調整 --- */
        @media (max-width: 600px) {
            .container {
                margin: 20px auto;
            }
            .content {
                padding: 30px 20px;
                border-radius: 16px;
            }
            .header h1 {
                font-size: 1.5rem;
            }
        }
    </style>
</head>
<body>

<div class="container">
    <header class="header">
        <h1>プライバシーポリシー</h1>
        <p>s*単位変換</p>
    </header>

    <main class="content">
        <p class="intro">
            本プライバシーポリシーは、スマートフォン向けアプリ「s*単位変換」（以下、「本アプリ」）における、ユーザーの個人情報の取り扱いについて定めるものです。
        </p>

        <section class="section">
            <h2>1. 個人情報の収集と利用について</h2>
            <p>本アプリは、ユーザーの個人情報（名前、住所、電話番号、メールアドレス、端末固有のID、位置情報など）を一切収集、保存、または外部へ送信することはありません。</p>
            <p>アプリ内で入力された数値や計算データは、すべてユーザーの端末内（ローカル環境）でのみ処理・完結しており、開発者や第三者が取得することは不可能です。</p>
        </section>

        <section class="section">
            <h2>2. 第三者への情報提供について</h2>
            <p>本アプリは個人情報を収集していないため、第三者へデータを提供することも一切ありません。また、アクセス解析ツールや広告配信モジュールなども組み込んでおりません。</p>
        </section>

        <section class="section">
            <h2>3. プライバシーポリシーの変更</h2>
            <p>本アプリのアップデート等により、情報の取り扱いに変更が生じる場合は、本ページにて事前にお知らせいたします。</p>
        </section>

        <section class="section">
            <h2>4. お問い合わせ先</h2>
            <p>本アプリのプライバシーポリシーに関するお問い合わせは、以下の連絡先までお願いいたします。</p>
            <div class="contact-info">
                <strong>メールアドレス：</strong>suport@mizouchi.com<br>
                <span style="font-size: 0.85rem; color: #666;"></span>
            </div>
        </section>
    </main>

    <footer class="footer">
        <p>制定日：2026年3月1日</p>
        <p>開発者：mizouchi.com</p>
        <p>&copy; 2026 mizouchi.com All Rights Reserved.</p>
    </footer>
</div>

</body>
</html>