
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Noto Sans', 'Hiragino Kaku Gothic Pro', 'Meiryo', Arial, sans-serif;
            font-size: 16px;
            line-height: 1.7;
            color: #333;
            background: #f5f5f5;
        }

        a {
            color: #1992D2;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: #DF5E4A;
        }

        header {
            background: #FFFF00;
            padding: 20px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #1992D2;
        }

        nav {
            background: #2FA1C9;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
        }

        .nav-item {
            flex: 1;
            min-width: 120px;
            text-align: center;
        }

        .nav-item a {
            display: block;
            padding: 18px 15px;
            color: #fff;
            font-weight: 500;
            transition: background 0.3s ease;
        }

        .nav-item a:hover {
            background: rgba(0,0,0,0.1);
        }

        .nav-item.town a { background: #EB9D37; }
        .nav-item.bay a { background: #2FA1C9; }
        .nav-item.village a { background: #78B521; }
        .nav-item.theme a { background: #F46967; }

        main {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }

        h1 {
            font-size: 2.5em;
            color: #2FA1C9;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #2FA1C9;
            font-weight: 300;
        }

        article {
            background: #fff;
            padding: 40px;
            margin-bottom: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }

        article h2 {
            font-size: 1.8em;
            color: #1992D2;
            margin: 30px 0 20px;
            font-weight: 400;
            position: relative;
            padding-top: 20px;
        }

        article h2:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: #1992D2;
        }

        article h3 {
            font-size: 1.4em;
            color: #333;
            margin: 25px 0 15px;
            font-weight: 600;
        }

        article p {
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .transition-section {
            background: #fff;
            padding: 30px 40px;
            margin-bottom: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }

        .transition-section p {
            margin-bottom: 15px;
            line-height: 1.8;
        }

        {% if links %}
        .links-section {
            background: #fff;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }

        .links-section h3 {
            font-size: 1.5em;
            color: #2FA1C9;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .links-section ul {
            list-style: none;
            column-count: 2;
            column-gap: 40px;
            margin-bottom: 30px;
        }

        .links-section li {
            margin-bottom: 12px;
            break-inside: avoid;
            padding-left: 20px;
            position: relative;
        }

        .links-section li:before {
            content: "→";
            position: absolute;
            left: 0;
            color: #1992D2;
        }

        .links-section a {
            color: #1992D2;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .links-section a:hover {
            color: #DF5E4A;
            padding-left: 5px;
        }
        {% endif %}

        footer {
            background: #fff;
            margin-top: 60px;
            padding: 40px 0 20px;
            border-top: 3px solid #F3E900;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .footer-section h4 {
            color: #777;
            font-size: 1.1em;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #ccc;
            font-weight: 400;
        }

        .footer-section p {
            color: #777;
            font-size: 0.9em;
            margin-bottom: 10px;
        }

        .copyright {
            background: #F3E900;
            text-align: center;
            padding: 15px 0;
            color: #1A93D2;
            margin-top: 20px;
        }

        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
            }

            .nav-container {
                flex-direction: column;
            }

            .nav-item {
                min-width: 100%;
            }

            h1 {
                font-size: 1.8em;
            }

            article {
                padding: 25px;
            }

            article h2 {
                font-size: 1.4em;
            }

            article h3 {
                font-size: 1.2em;
            }

            {% if links %}
            .links-section {
                padding: 25px;
            }

            .links-section ul {
                column-count: 1;
            }
            {% endif %}

            .footer-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 1.5em;
            }

            article {
                padding: 20px;
            }

            .transition-section {
                padding: 20px;
            }

            {% if links %}
            .links-section {
                padding: 20px;
            }
            {% endif %}
        }
    