        /* --- 基本設定 (Reset & Base) --- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
            background-color: #fff;
            color: #333;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: opacity 0.3s;
        }

        a:hover {
            opacity: 0.8;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* --- レイアウトコンテナ (Responsive) --- */
        /* PCでは幅広に、スマホでは適切な余白を */
        .main-container {
            width: 100%;
            max-width: 1200px; /* PCでの最大幅 */
            margin: 0 auto;
            background-color: #fff;
            min-height: 100vh;
            position: relative;
        }

        /* --- ヘッダー --- */
        header {
            padding: 16px;
            text-align: center;
            background: #fff;
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid #f5f5f5;
        }

        .logo {
            font-size: 18px;
            font-weight: 700;
            letter-spacing: 0.15em;
            color: #222;
        }

        /* --- 1. ヒーローエリア --- */
        .hero {
            position: relative;
            width: 100%;
            height: 420px; /* スマホ時の高さ */
            overflow: hidden;
        }

        /* ▼▼▼ 追加修正: 画像の下半分に黒のグラデーションをかける ▼▼▼ */
        .hero::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            /* 修正点1: グラデーションの高さを60%から70%に広げました */
            height: 70%; 
            
            /* 修正点2: 黒の濃さを0.7から0.9に強めました */
            background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
            
            pointer-events: none; /* 下にある要素のクリックを妨げないように */
            z-index: 1; /* 画像より上、文字より下 */
        }

        .hero-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.9);
            /* PCでの画像の焦点位置調整（任意） */
            object-position: center 30%;
        }

        .hero-content {
            position: absolute;
            bottom: 30px;
            left: 20px;
            right: 20px;
            color: #fff;
            text-shadow: 0 2px 8px rgba(0,0,0,0.3);
            max-width: 600px; /* PCで文字が広がりすぎないように */
            
            /* ▼▼▼ 追加修正: グラデーションより手前に表示させる ▼▼▼ */
            z-index: 2;
        }

        .hero-tag {
            display: inline-block;
            background: rgba(255, 255, 255, 0.95);
            color: #333;
            font-size: 11px;
            /*font-weight: bold;*/
            padding: 4px 12px;
            border-radius: 20px;
            margin-bottom: 12px;
            letter-spacing: 0.05em;
        }

        .hero-title {
            font-size: 28px;
            line-height: 1.3;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .hero-sub {
            font-size: 13px;
            opacity: 0.95;
        }

        /* --- 2. コンセプトエリア --- */
        .concept-section {
            padding: 60px 24px;
            text-align: center;
            background-color: #fff;
        }

        .section-label {
            display: block;
            font-size: 10px;
            color: #999;
            letter-spacing: 0.2em;
            margin-bottom: 16px;
            text-transform: uppercase;
        }

        .concept-inner {
            max-width: 600px; /* 文章が読みやすい幅に制限 */
            margin: 0 auto;
        }

        .concept-text {
            font-size: 15px;
            text-align: left;
            color: #555;
            line-height: 2.0;
            margin-bottom: 0;
            font-feature-settings: "palt";
        }
        
        .keyword-highlight {
            background: linear-gradient(transparent 70%, #ffeeba 70%);
            font-weight: bold;
            color: #333;
            padding: 0 2px;
        }

        /* --- 3. カテゴリナビ --- */
        .nav-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 0 20px 60px;
            /* PCで巨大になりすぎないように制限 */
            max-width: 800px;
            margin: 0 auto;
        }

        .nav-item {
            position: relative;
            border-radius: 0; 
            overflow: hidden;
            aspect-ratio: 1 / 1; /* 正方形 */
            display: block;
            /* PCで高さが出すぎないようにするなら aspect-ratio を調整可 */
        }

        .nav-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .nav-item:hover .nav-img {
            transform: scale(1.05);
        }

        .nav-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-text {
            color: #fff;
            font-size: 16px;
            font-weight: bold;
            border: 1px solid rgba(255,255,255,0.95);
            padding: 10px 24px;
            background: rgba(0,0,0,0.1);
            backdrop-filter: blur(4px);
            letter-spacing: 0.05em;
        }

        /* --- 4. 商品一覧エリア (レスポンシブ対応) --- */
        .product-section {
            padding: 0 20px 100px;
            background: #fff;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 30px;
            padding-bottom: 10px;
            /* PCでも見やすいように幅制限 */
            max-width: 100%; 
        }

        .section-title {
            font-size: 22px;
            font-weight: bold;
            color: #222;
            letter-spacing: 0.05em;
        }

        .view-all {
            font-size: 13px;
            color: #888;
            border-bottom: 1px solid #ccc;
        }

        /* ▼▼▼ グリッド設定の変更点 ▼▼▼ */
        .product-grid {
            display: grid;
            /* デフォルト（スマホ）: 2列 */
            grid-template-columns: repeat(2, 1fr);
            gap: 40px 15px; /* 縦の隙間広め、横狭め */
        }

        /* タブレット (600px以上): 3列 */
        @media screen and (min-width: 600px) {
            .product-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 40px 20px;
            }
            .hero { height: 500px; } /* 画像を少し高く */
        }

        /* PC小 (900px以上): 4列 */
        @media screen and (min-width: 900px) {
            .product-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* PC大 (1100px以上): 5列 */
        @media screen and (min-width: 1100px) {
            .product-grid {
                grid-template-columns: repeat(5, 1fr);
            }
        }

        .product-card {
            display: block;
        }

        .product-thumb {
            width: 100%;
            aspect-ratio: 1 / 1; /* 正方形 */
            object-fit: cover;
            border-radius: 2px;
            margin-bottom: 12px;
            background-color: #f5f5f5;
            transition: opacity 0.3s;
        }
        
        .product-card:hover .product-thumb {
            opacity: 0.9;
        }

        .product-name {
            font-size: 13px;
            color: #333;
            line-height: 1.5;
            margin-bottom: 6px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            letter-spacing: 0.02em;
        }

        .product-price {
            font-size: 15px;
            font-weight: bold;
            color: #000;
            font-family: "Helvetica Neue", sans-serif;
        }

        /* --- フッター --- */
        footer {
            background-color: #f9f9f9;
            color: #555;
            text-align: center;
            padding: 60px 20px;
            font-size: 12px;
        }

        .footer-nav {
            margin-bottom: 30px;
            display: flex;
            justify-content: center;
            gap: 30px;
        }
        
        .footer-nav a {
            color: #555;
            font-weight: 500;
        }
