        /* 全体のスタイル設定 */
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Noto Sans JP', sans-serif;
            line-height: 1.6;
            color: #333;
            margin: 0;
            padding: 0;
            background-color: #f4f7f6;
        }

        /* ヘッダー */
        header {
            background-color: #fff;
            padding: 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #2c3e50;
            text-decoration: none;
            /* ↓色が変わる時間を指定（0.3秒かけてフワッと変わる） */
            transition: color 0.3s;
        }
        /* マウスを乗せた（hover）時の設定 */
        .logo:hover {
            color: #3498db; /* ここで青色を指定 */
            text-decoration: none; /* 下線を消したままにする */
        }

        nav a {
            text-decoration: none;
            color: #666;
            margin-left: 20px;
            font-weight: bold;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #3498db;
        }

        /* メインコンテンツ */
        .container {
            max-width: 900px;
            margin: 40px auto;
            padding: 0 20px;
        }

        h2 {
            border-left: 5px solid #2c3e50;
            padding-left: 15px;
            margin-bottom: 30px;
        }

        /* 目次（ショートカット）のスタイル */
        .toc {
            background: #fff;
            border: 1px solid #ddd;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 40px;
        }
        .toc-title {
            font-weight: bold;
            margin-bottom: 10px;
            display: block;
            border-bottom: 1px solid #eee;
            padding-bottom: 5px;
        }
        .toc ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .toc li {
            margin: 8px 0;
        }
        .toc a {
            color: #3498db;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        .toc a::before {
            content: "▶";
            font-size: 0.8rem;
            margin-right: 8px;
        }
        .toc a:hover {
            text-decoration: underline;
        }

        /* 物件カードのデザイン */
        .property-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            margin-bottom: 40px;
        }
        
        /* 募集中 */
        .status-badge {
            display: inline-block;
            background: #e74c3c;
            color: #fff;
            padding: 5px 15px;
            border-radius: 4px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .property-content {
            padding: 25px;
        }

        .property-title {
            font-size: 1.4rem;
            margin-top: 0;
            color: #2c3e50;
        }

        /* 表の改善 */
        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }

        .info-table th, .info-table td {
            border: 1px solid #eee;
            padding: 12px;
            text-align: left;
        }

        .info-table th {
            background-color: #f9f9f9;
            width: 30%;
        }

        .property-image {
            width: 100%;
            height: auto;
            display: block;
        }

        .btn {
            display: inline-block;
            padding: 10px 20px;
            background: #3498db;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            transition: opacity 0.3s;
        }

        .btn:hover {
            opacity: 0.8;
        }

        /* 戻るボタン */
        .back-to-top {
            display: block;
            text-align: center;
            margin-top: 20px;
            color: #3498db;
            text-decoration: none;
            font-weight: bold;
        }

        /* フッター */
        footer {
            text-align: center;
            padding: 40px;
            background: #2c3e50;
            color: #fff;
        }

        footer a {
            color: #3498db;
            text-decoration: none;
        }

        /* スマホ対応 */
        @media (max-width: 600px) {
            header { flex-direction: column; text-align: center; }
            nav { margin-top: 15px; }
            nav a { margin: 0 10px; }
            .info-table th, .info-table td { display: block; width: 100%; }
        }
