<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:news="http://www.google.com/schemas/sitemap-news/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:mobile="http://www.google.com/schemas/sitemap-mobile/1.0" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xmlns:video="http://www.google.com/schemas/sitemap-video/1.1">
    <!-- トップページ -->
    <url>
        <loc>https://{サイトドメイン}/</loc>
        <lastmod><?php echo date('Y-m-d'); ?></lastmod>
        <changefreq>daily</changefreq>
        <priority>1.0</priority>
    </url>
    
    <!-- 物件検索ページ -->
    <url>
        <loc>https://{サイトドメイン}/bukkens</loc>
        <lastmod><?php echo date('Y-m-d'); ?></lastmod>
        <changefreq>weekly</changefreq>
        <priority>0.9</priority>
    </url>
    
    <!-- 地域の物語ページ -->
    <url>
        <loc>https://{サイトドメイン}/stories</loc>
        <lastmod><?php echo date('Y-m-d'); ?></lastmod>
        <changefreq>weekly</changefreq>
        <priority>0.8</priority>
    </url>
    
    <!-- 物語スライドページ -->
    <url>
        <loc>https://{サイトドメイン}/story_slide</loc>
        <lastmod><?php echo date('Y-m-d'); ?></lastmod>
        <changefreq>weekly</changefreq>
        <priority>0.7</priority>
    </url>
    
    <!-- 売却相談ページ -->
    <url>
        <loc>https://{サイトドメイン}/sell</loc>
        <lastmod><?php echo date('Y-m-d'); ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.7</priority>
    </url>
    
    <!-- お問い合わせページ -->
    <url>
        <loc>https://{サイトドメイン}/inquiry/</loc>
        <lastmod><?php echo date('Y-m-d'); ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.6</priority>
    </url>
    
    <!-- 物件詳細ページ（動的に生成される想定） -->
    <!-- 
    物件データから自動生成する場合のサンプル：
    <url>
        <loc>https://{サイトドメイン}/bukkens/view?id={物件ID}</loc>
        <lastmod>{物件更新日}</lastmod>
        <changefreq>weekly</changefreq>
        <priority>0.8</priority>
    </url>
    -->
    
    <!-- 個別物語ページ（動的に生成される想定） -->
    <!--
    物語データから自動生成する場合のサンプル：
    <url>
        <loc>https://{サイトドメイン}/story/{物語ID}</loc>
        <lastmod>{物語更新日}</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.6</priority>
    </url>
    -->
</urlset>