        :root {
            --bg-dark: #020617;
            --accent-cyan: #22d3ee;
            --btn-blue-start: #0c4db3;
            --btn-blue-end: #073684;
            --text-silver: #94a3b8;
            --header-height: 100px;
        }

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

        body {
            font-family: 'Inter', 'Noto Sans JP', sans-serif;
            background-color: var(--bg-dark);
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .hero-viewport {
            position: relative;
            width: 100%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* 背景：img/head_bg.png */
.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 80vh; /* 画面の高さの70%分だけ背景を表示 */
    background-image: url('../img/head_bg.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain; /* 枠の中に収まるように比率を維持 */
    opacity: 0.85;
    z-index: -2;
}

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, 
                var(--bg-dark) 0%, 
                rgba(2, 6, 23, 0.9) 35%, 
                rgba(2, 6, 23, 0) 80%
            );
            z-index: -1;
        }

        header {
            height: var(--header-height);
            padding: 0 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 10;
        }

        .brand-top {
            display: flex;
            align-items: center;
            gap: 12px;
        }


		.logo-img {
		    width: 250px;
		    height: auto;
		    object-fit: contain;
		    margin-top: 20px;
		}

        .brand-name {
            font-size: 1.6rem;
            font-weight: 900;
            letter-spacing: 0.15em;
            font-style: italic;
        }

        nav {
            display: flex;
            gap: 2.5rem;
        }

        nav a {
            color: var(--text-silver);
            text-decoration: none;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.15em;
            transition: 0.3s;
        }

        .btn-lancers-blue {
            background: linear-gradient(to bottom, var(--btn-blue-start), var(--btn-blue-end));
            color: #fff;
            padding: 0.7rem 1.5rem;
            border-radius: 4px;
            font-size: 13px;
            font-weight: 700;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            white-space: nowrap;
        }

        main {
            flex: 1;
            display: flex;
            align-items: center;
            padding: 4rem 6rem;
        }

        .hero-content { width: 100%; max-width: 800px; }

        .main-title h1 {
            font-size: clamp(40px, 8vw, 80px); /* 画面幅に合わせて伸縮 */
            font-weight: 900;
            letter-spacing: 0.18em;
            line-height: 1.1;
            margin-bottom: 0.8rem;
            text-transform: uppercase;
        }

        .sub-heading {
            font-size: clamp(1rem, 2vw, 1.2rem);
            font-weight: 700;
            margin-bottom: 3rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .sub-heading span {
            color: var(--accent-cyan);
            text-transform: uppercase;
            letter-spacing: 0.2em;
        }

        .copy-block {
            border-left: 4px solid var(--accent-cyan);
            padding-left: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .copy-block h2 {
            font-size: clamp(1.8rem, 5vw, 3.2rem);
            font-weight: 900;
            line-height: 1.3;
            letter-spacing: 0.05em;
        }

        .description {
            font-size: clamp(0.9rem, 1.5vw, 1.05rem);
            color: var(--text-silver);
            margin-left: 1.8rem;
            margin-bottom: 3rem;
            max-width: 550px;
        }

        .cta-area {
            margin-left: 1.8rem;
            display: flex;
            gap: 1.2rem;
            flex-wrap: wrap; /* ボタンが入りきらない時に折り返し */
        }

        .btn {
            padding: 1rem 2.2rem;
            font-size: 0.95rem;
            font-weight: 900;
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.3s ease;
            text-align: center;
        }

        .btn-fill { 
            border: 2px solid #2563eb;
            background: linear-gradient(135deg, #1d4ed8, #2563eb); 
            color: #fff; 
        }

        .btn-border { 
            border: 2px solid #334155; 
            color: #fff; 
            background: rgba(255, 255, 255, 0.03); 
            backdrop-filter: blur(8px); 
        }

        footer {
            padding: 2rem 6rem;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .footer-line { width: 60px; height: 1px; background: var(--accent-cyan); }
        .footer-status { font-family: monospace; font-size: 10px; letter-spacing: 0.4em; color: var(--accent-cyan); }

        /* --- レスポンシブ用メディアクエリ --- */
        @media (max-width: 1024px) {
            header, main, footer { padding-left: 3rem; padding-right: 3rem; }
            nav { gap: 1.5rem; }
        }

        @media (max-width: 768px) {
            /* ナビゲーションを隠す（またはハンバーガーメニューにする準備） */
            nav { display: none; }
            
            header { padding: 0 1.5rem; }
            main { padding: 2rem 1.5rem; align-items: flex-start; margin-top: 2rem; }
            footer { padding: 2rem 1.5rem; }

            .hero-bg { background-position: 70% center; } /* ギアを少し中央に寄せる */
            
            .hero-overlay {
                background: linear-gradient(0deg, 
                    rgba(2, 6, 23, 0.8) 0%, 
                    rgba(2, 6, 23, 0.4) 100%
                );
            }

            .copy-block { padding-left: 1rem; }
            .description, .cta-area { margin-left: 0; }
            
            .btn { width: 100%; } /* スマホではボタンを全幅に */
        }


.framework-section {
    position: relative;
    background-color: #020617;
    /* --- 1. グリッド背景（セクション本体に敷く） --- */
    background-image: 
        linear-gradient(rgba(34, 211, 238, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    
    padding: 100px 6rem;
    overflow: hidden;
    z-index: 1;
    text-align:center;
}

/* --- 2. スキャニング・ライン（擬似要素で動かす） --- */
.framework-section::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(34, 211, 238, 0.1) 50%, /* 視認性を少しアップ */
        transparent
    );
    animation: scanline 6s linear infinite;
    z-index: 0; /* 背景グリッドのすぐ上に配置 */
    pointer-events: none;
}

/* コンテンツはスキャンラインより上に配置 */
.section-title, .framework-steps {
    position: relative;
    z-index: 2;
}

@keyframes scanline {
    0% { top: -150px; }
    100% { top: 100%; }
}
    .section-title {
        margin-bottom: 60px;
    }

    .section-title h2 {
        font-size: 24px;
        letter-spacing: 0.15em;
        font-weight: 900;
        margin-bottom: 15px;
    }

    .section-title h2 span {
        color: #22d3ee;
    }

    .section-title p {
        font-family: 'Noto Sans JP', sans-serif;
        font-size: 14px;
        color: #94a3b8;
        letter-spacing: 0.05em;
    }

    .framework-steps {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
    }

    .step-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        position: relative;
    }

    /* 精密ギアのデザイン（自作CSS） */
    .gear-container {
        position: relative;
        width: 120px;
        height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
    }

    /* ギア本体：細い線で構成 */
    .precision-gear {
        position: absolute;
        width: 100%;
        height: 100%;
        border: 1px solid currentColor;
        border-radius: 50%;
        opacity: 0.4;
        animation: gear-rotate 20s linear infinite;
    }

    /* ギアの歯：細く、数を多く（32枚） */
    .precision-gear::after {
        content: "";
        position: absolute;
        inset: -8px;
        border-radius: 50%;
        border: 6px dotted currentColor; /* 点線で細い歯を表現 */
        mask: radial-gradient(circle, transparent 65%, black 66%);
        -webkit-mask: radial-gradient(circle, transparent 65%, black 66%);
    }

    /* 内部の装飾ライン */
    .precision-gear::before {
        content: "";
        position: absolute;
        inset: 15px;
        border: 1px dashed currentColor;
        border-radius: 50%;
        opacity: 0.5;
    }

    @keyframes gear-rotate {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    /* 中央のアイコン：細い線画スタイル */
    .gear-container i {
        font-size: 28px;
        position: relative;
        z-index: 2;
    }

    .step-arrow {
        color: #1e40af;
        font-size: 18px;
        padding-bottom: 70px;
        opacity: 0.5;
    }

    /* カラー設定 */
    .step-core { color: #22d3ee; }
    .step-core .gear-container { filter: drop-shadow(0 0 12px rgba(34, 211, 238, 0.4)); }

    .step-modules { color: #818cf8; }
    .step-modules .gear-container { filter: drop-shadow(0 0 12px rgba(129, 140, 248, 0.4)); }

    .step-plugins { color: #3b82f6; }
    .step-plugins .gear-container { filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.4)); }

    .step-services { color: #2dd4bf; }
    .step-services .gear-container { filter: drop-shadow(0 0 12px rgba(45, 212, 191, 0.4)); }

    .step-deployment { color: #f97316; }
    .step-deployment .gear-container { filter: drop-shadow(0 0 12px rgba(249, 115, 22, 0.4)); }

    .step-label {
        font-weight: 900;
        font-size: 14px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .step-desc {
        font-family: 'Noto Sans JP', sans-serif;
        font-size: 12px;
        color: #94a3b8;
    }

    @media (max-width: 768px) {
        .framework-steps { flex-direction: column; gap: 50px; }
        .step-arrow { transform: rotate(90deg); padding: 0; margin: -25px 0; }
        .gear-container { width: 100px; height: 100px; }
    }

    .products-section {
        position: relative;
        /* 前のセクションと同じ背景・グリッド設定を推奨 */
        background-color: #020617;
        padding: 100px 6rem;
        color: #fff;
        z-index: 1;
    }

    .products-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* カードグリッド */
    .product-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-bottom: 50px;
    }

    /* 個別カード */
    .product-card {
        background: rgba(15, 23, 42, 0.6);
        border: 1px solid rgba(34, 211, 238, 0.2);
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        text-decoration: none;
        color: inherit;
        position: relative;
    }

    .product-card:hover {
        transform: translateY(-5px);
        border-color: rgba(34, 211, 238, 0.6);
        box-shadow: 0 10px 30px rgba(34, 211, 238, 0.1);
    }

    /* バナー画像エリア */
    .card-banner {
        width: 100%;
        aspect-ratio: 12 / 10;
        overflow: hidden;
    }

    .card-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* テキストコンテンツ */
    .card-content {
        padding: 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .product-name {
        font-size: 16px;
        font-weight: 900;
        letter-spacing: 0.05em;
    }

    .product-tag {
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }

    /* タグ別の配色（画像に基づき調整） */
    .tag-framework { color: #f59e0b; } /* オレンジ */
    .tag-tool { color: #ef4444; }      /* レッド */
    .tag-plugin { color: #3b82f6; }    /* ブルー */
    .tag-media { color: #10b981; }     /* グリーン */

    .product-desc {
        font-size: 12px;
        color: #94a3b8;
        line-height: 1.6;
        margin-top: 5px;
    }

    /* 外部リンクアイコン */
    .external-link {
        position: absolute;
        bottom: 15px;
        right: 15px;
        font-size: 14px;
        color: #94a3b8;
        opacity: 0.6;
    }

    /* 下部ボタン */
    .view-all-wrapper {
        text-align: center;
    }

    .btn-view-all {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 40px;
        border: 1px solid rgba(34, 211, 238, 0.8);
        border-radius: 4px;
        background: transparent;
        color: #fff;
        text-decoration: none;
        font-size: 14px;
        font-weight: 700;
        transition: all 0.3s ease;
    }

    .btn-view-all:hover {
        background: rgba(34, 211, 238, 0.1);
        box-shadow: inset 0 0 10px rgba(34, 211, 238, 0.2);
    }

    /* レスポンシブ */
    @media (max-width: 1024px) {
        .product-grid { grid-template-columns: repeat(2, 1fr); }
        .products-section { padding: 80px 2rem; }
    }

    @media (max-width: 640px) {
        .product-grid { grid-template-columns: 1fr; }
    }




.category-section {
    background-color: #020617;
    padding: 60px 6rem;
    position: relative;
    z-index: 1;
}


.category-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* カテゴリ見出し */
.category-title {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    padding-left: 15px;
    border-left: 4px solid #fff;
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.category-title span {
    font-size: 12px;
    font-weight: 500;
    color: #94a3b8;
    text-transform: uppercase;
}

/* カラー定義（borderとtext） */
.color-framework { border-color: #f59e0b; color: #f59e0b; }
.color-plugin    { border-color: #3b82f6; color: #3b82f6; }
.color-tool      { border-color: #ef4444; color: #ef4444; }
.color-other     { border-color: #94a3b8; color: #94a3b8; }

/* その他リストのスタイル */
.other-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.other-item {
    background: rgba(30, 41, 59, 0.4);
    padding: 18px 25px;
    border-radius: 6px;
    border: 1px solid rgba(148, 163, 184, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}
.other-item:hover {
    background: rgba(148, 163, 184, 0.1);
    border-color: rgba(148, 163, 184, 0.4);
    color: #fff;
}

/* --- FOOTER AREA STYLES --- */
.site-footer-wrapper {
    background-color: #020617;
    background-image: url('../img/footer_bg_gears.png'); /* ギア背景画像 */
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    color: #fff;
    padding-top: 100px;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* 1. OUR PHILOSOPHY */
.philosophy-section {
    border: 1px solid rgba(34, 211, 238, 0.3);
    background: rgba(15, 23, 42, 0.6);
    padding: 60px 40px;
    border-radius: 8px;
    margin-bottom: 80px;
    text-align: center;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.philo-item {
    text-align: left;
}

.philo-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.philo-header i {
    font-size: 28px;
    color: #38bdf8;
}

.philo-title-en {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.1em;
    display: block;
}

.philo-title-jp {
    font-size: 14px;
    color: #94a3b8;
}

.philo-text {
    font-size: 12px;
    line-height: 1.8;
    color: #cbd5e1;
}

/* 2. LET'S BUILD SOMETHING GREAT */
.cta-section {
    text-align: center;
    margin-bottom: 100px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.btn-cta {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
    min-width: 320px;
    text-align: left;
}

.btn-lancers {
    background: linear-gradient(90deg, #0284c7 0%, #0369a1 100%);
}

.btn-contact {
    border: 1px solid #fff;
    background: transparent;
}

.cta-icon { font-size: 24px; margin-right: 20px; }
.cta-text-main { font-size: 16px; font-weight: 700; display: block; }
.cta-text-sub { font-size: 11px; opacity: 0.8; }

/* 3. SITE FOOTER INFO */
.footer-main {
    display: flex;
    justify-content: space-between;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    font-size: 24px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand .tagline {
    font-size: 12px;
    margin: 10px 0 20px;
}

.footer-nav-group {
    display: flex;
    gap: 60px;
}

.nav-col h4 {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.nav-col ul { list-style: none; padding: 0; }
.nav-col ul li { margin-bottom: 10px; }
.nav-col ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    transition: 0.3s;
}

.copyright {
    padding: 30px 0;
    text-align: center;
    font-size: 11px;
    color: #64748b;
}

/* 実績セクション全体のベース */
.category-section {
    display: block;      /* ブロック要素として明示 */
    position: relative;  /* 背景色や余白の計算を独立させる */
    padding: 100px 0;    /* 上下に100pxの余白 */
    width: 100%;
    overflow: hidden;    /* 余白の突き抜けを防止 */
    transition: background-color 0.4s ease;
}

/* 1. GEAR MECHANICS (現在のOKな色) */
#cat-framework {
    background-color: #1e293b; /* 明るめのネイビーグレー */
}

/* 2. WordPress Plugins (温かみのあるチャコール・インダストリアル) */
#cat-plugins {
    background-color: #27272a; /* Zinc 800: 鉄板のような重厚なグレー */
}

/* 3. Web Tools (清潔感のあるディープブルー) */
#cat-tools {
    background-color: #0f172a; /* Slate 900: 深みがありつつも黒ではない青 */
}

/* 4. Other (落ち着いたミッドナイト・グレー) */
#cat-other {
    background-color: #1c1917; /* Stone 800: わずかに茶色を含んだ温かみのある黒 */
}

/* カードの質感を強化 */
.product-card {
    background: rgba(255, 255, 255, 0.08); /* 背景より少しだけ明るく */
    border: 1px solid rgba(255, 255, 255, 0.1); /* 繊細な枠線 */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* 軽い影で浮かせる */
    height:100%;
}

/* ホバー時に色が変わるエフェクト */
.product-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #3b82f6; /* GearPortなどのイメージに合わせた青 */
    transform: translateY(-3px);
}

.category-container {
    padding-top: 20px; /* セクションのpaddingに加えて、内部でも少し余裕を持たせる */
}

.category-title {
    margin-top: 0;
    margin-bottom: 40px; /* 下の実績カードとの間隔 */
}




/* --- フッターのレスポンシブ対応 --- */

/* タブレット・スマホ向けの調整（992px以下） */
@media (max-width: 992px) {
    .footer-main {
        flex-direction: column; /* 縦並びに変更 */
        gap: 40px;
        text-align: center;    /* 中央揃えで視認性アップ */
    }

    .footer-brand {
        max-width: 100%;       /* ブランド紹介の幅を制限解除 */
        margin: 0 auto;
    }

    .footer-nav-group {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* 自動で折り返し */
        gap: 30px;
        width: 100%;
    }

    .nav-col h4::after {
        left: 50%;             /* 見出し下のラインを中央に */
        transform: translateX(-50%);
    }
}

/* スマホ向けのさらなる調整（640px以下） */
@media (max-width: 640px) {
    .philosophy-grid {
        grid-template-columns: 1fr; /* 哲学セクションも1列に */
        gap: 20px;
    }

    .footer-nav-group {
        grid-template-columns: 1fr; /* ナビも1列に */
        text-align: center;
    }

    .nav-col ul li {
        margin-bottom: 15px;    /* タップしやすく余白を広げる */
    }

    .company-info {
        padding: 0 20px;
    }
}

/* --- 既存のスタイルへの微調整（共通） --- */
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap; /* 折り返しを許可 */
}

.footer-nav-group {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

/* フッター全体のコンテナ */
.site-footer-wrapper {
    background-color: #0a0c10; /* 深いネイビーブラック */
    color: #e0e0e0;
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 163, 255, 0.2);
}

/* 背景に薄く浮かぶギアの装飾（アニメーション付き） */
.site-footer-wrapper::before {
    content: '\f013';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: -100px;
    left: -50px;
    font-size: 400px;
    color: rgba(0, 163, 255, 0.02);
    animation: gear-rotate 30s linear infinite;
    pointer-events: none;
}

/* footer-main のレイアウト */
.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr; /* ブランドエリアとナビエリアの比率 */
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

/* ブランド・ロゴエリア */
.footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand .logo i {
    color: #00a3ff; /* ネオンブルー */
    filter: drop-shadow(0 0 5px rgba(0, 163, 255, 0.5));
}

.footer-brand .tagline {
    font-size: 0.9rem;
    color: #00a3ff;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* ナビゲーション（4列のグリッド） */
.footer-nav-group {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.nav-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

/* 見出しの下に短いアクセントライン */
.nav-col h4::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 30px;
    height: 1px;
    background: #00a3ff;
}

.nav-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-col ul li {
    font-size: 0.75rem;
    line-height: 2.2;
    color: #888;
    transition: all 0.3s ease;
    cursor: default; /* リンクではないため */
}

/* ホバーで少し光る演出 */
.nav-col ul li:hover {
    color: #00a3ff;
    padding-left: 5px;
}

/* コピーライトエリア */
.copyright {
    text-align: center;
    font-size: 0.7rem;
    color: #444;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* アニメーション定義 */
@keyframes gear-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-nav-group {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;

    /* 背景の追加：グラスモフィズム */
    background: rgba(255, 255, 255, 0.03); /* 極薄い白の層 */
    backdrop-filter: blur(10px);          /* 背景をぼかして文字を浮かす */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05); /* 繊細な外枠 */
    border-radius: 8px;                   /* 角を少し丸めて洗練された印象に */
    padding: 40px;                         /* 内側に余白を作って読みやすく */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37); /* 重厚感のある影 */
}

/* 各カラムの見出しとテキストのコントラスト調整 */
.nav-col h4 {
    color: #fff; /* 純白にして視認性アップ */
    text-shadow: 0 0 10px rgba(0, 163, 255, 0.3); /* わずかに発光 */
}

.nav-col ul li {
    color: #bbb; /* 少し明るいグレーに変更 */
}

承知いたしました！以前のデザインの良さを活かしつつ、今後の機能増加を見越して「3列＋4列目を下段」に配置し、視認性を高めるために横幅を拡張する調整案です。

footer-main のグリッド設定を調整し、1項目あたりの幅を広げることで、テキストの折り返しにも余裕を持たせます。

1. footer-main 周りの修正 CSS
display: grid の設定を変更し、3列で回り込むようにします。また、全体の最大幅を少し広げています。

CSS
/* footer-main のレイアウト修正 */
.footer-main {
    display: grid;
    grid-template-columns: 320px 1fr; /* ブランドエリアを固定し、残りをナビに */
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;

    /* 横幅の拡張（お好みに合わせて調整してください） */
    max-width: 1400px; 
    margin-left: auto;
    margin-right: auto;
    padding: 40px;
    
    /* 前回のグラスモフィズム背景 */
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

/* ナビゲーションを3列＋回り込みに設定 */
.footer-nav-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3列表示に固定 */
    gap: 40px 30px; /* 縦の隙間を広め(40px)に取って下段との間隔を確保 */
}

/* 各カラム内の調整 */
.nav-col {
    min-width: 0; /* 折り返しを正常に動作させるため */
}

.nav-col ul li {
    font-size: 0.7rem;
    line-height: 1.8;
    color: #bbb;
    margin-bottom: 6px;
    /* ぶら下がりインデントの維持 */
    padding-left: 1.2em;
    text-indent: -1.2em;
}

/* レスポンシブ対応：スマホ等のときは1列にする */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
    }
    .footer-nav-group {
        grid-template-columns: repeat(2, 1fr); /* タブレットでは2列 */
    }
}

.nav-col ul li {
    font-size: 0.75rem; /* 前のサイズに戻した状態を想定 */
    line-height: 2.2;
    color: #b0b0b0;    /* ここを #888 から変更 */
    transition: all 0.3s ease;
    cursor: default;
    padding-left: 1.2em;
    text-indent: -1.2em;
}

/* ホバー時は純白（#fff）にして、より「アクティブなシステム」感を出す */
.nav-col ul li:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(0, 163, 255, 0.6); /* 青白く光る演出 */
    padding-left: -0.7em; /* インデントを維持したまま少し右へ */
    transform: translateX(5px);
}

/* ナビゲーションエリアの基本設定（PC: 3列） */
.footer-nav-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3列表示 */
    gap: 40px 30px;
}

/* --- レスポンシブ設定 --- */

/* タブレット・スマートフォン向け（1024px以下） */
@media (max-width: 1024px) {
    /* メインエリアを縦並びに変更 */
    .footer-main {
        grid-template-columns: 1fr; /* ブランドエリアとナビエリアを縦に */
        gap: 40px;
        padding: 30px 20px; /* モバイルでは余白を少し詰める */
        max-width: 95%;     /* 画面端に少し余白を作る */
    }

    /* ナビゲーションカテゴリを縦1列に（4つ並ぶ） */
    .footer-nav-group {
        grid-template-columns: 1fr; /* 1列に固定 */
        gap: 30px;
    }

    /* ブランドエリアのテキスト配置を微調整 */
    .footer-brand {
        text-align: left;
        max-width: 100%;
    }

    /* リスト項目の文字サイズをスマホで見やすく微調整 */
    .nav-col ul li {
        font-size: 0.8rem; /* 小さすぎるとスマホで読みにくいため微増 */
        line-height: 2.4;  /* タップミスを防ぐために行間を少し確保 */
    }
}

.detail-panel {
    display: none; /* 初期は非表示 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 12, 16, 0.95); /* 背景を暗く */
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 60px 20px;
}

.detail-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 163, 255, 0.3);
    border-radius: 12px;
    padding: 40px;
    position: relative;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.close-detail {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: 1px solid #00a3ff;
    color: #00a3ff;
    padding: 5px 15px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: 0.3s;
}

.close-detail:hover {
    background: #00a3ff;
    color: #fff;
}

/* PCでの基本スタイル */
.category-title {
    display: flex;
    align-items: baseline; /* ベースラインで揃えて精密感を出す */
    gap: 15px;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 30px;
}

.category-title span {
    font-size: 0.9rem;
    color: #00a3ff; /* アクセントカラーのネオンブルー */
    font-family: 'Orbitron', sans-serif; /* 工業的なフォントがあれば指定 */
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* レスポンシブ設定（スマホ向け） */
@media (max-width: 1024px) {
    .category-title {
        flex-direction: column; /* 縦並びに変更 */
        align-items: center;    /* 中央揃え */
        text-align: center;
        gap: 8px;               /* 上下の隙間を調整 */
    }

    .category-title span {
        font-size: 0.8rem;      /* モバイル用に少し小さく */
    }

    .category-section {
       padding:0;
    }

	.logo-img {
		width:200px;
		height:auto;
	}

	.card-banner {
		text-align:center;
		padding-top:20px;
	}

	.card-banner img {
		width:90%;
		height:90%;
	}

    .card-content {
        padding-top: 0;
    }

    .card-banner {
        aspect-ratio: 11 / 10;
    }
}