.works-stage {
            width: 100vw; height: 100vh;
            display: flex; align-items: center; justify-content: center;
            padding: 70px 30px 30px;
        }

        .works-panel {
            width: 80vw; height: 75vh;
            min-width: 320px; min-height: 400px;
            max-width: 1100px; max-height: 760px;
            display: flex; flex-direction: column; overflow: hidden;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(160,70,15,0.12) 0%, rgba(90,20,75,0.08) 45%, rgba(20,15,70,0.14) 100%),
                        linear-gradient(135deg, rgba(186,199,212,0.26) 0%, rgba(186,199,212,0.2) 50%, rgba(186,199,212,0.22) 100%);
            backdrop-filter: blur(1px); -webkit-backdrop-filter: blur(1px);
            border-top: 2px solid #f4f4f4;
            border-left: 2px solid #cfcfcf;
            border-right: 2px solid #6a6a6a;
            border-bottom: 2px solid #454545;
            box-shadow: 0 8px 32px rgba(0,0,0,0.45), inset 1px 1px 2px rgba(255,255,255,0.45), inset -1px -1px 2px rgba(0,0,0,0.4);
            animation: section-fade-in 0.5s var(--ease-out-expo);
        }
        @keyframes section-fade-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
        @media (prefers-reduced-motion: reduce) { .works-panel { animation: none; } }

        .works-header { flex-shrink: 0; padding: 16px 24px; border-bottom: 1px solid rgba(255,255,255,0.2); }
        .works-title {
            font-family: 'Excelorate', 'Lexend Tera', sans-serif;
            font-size: 18px; font-weight: 400; letter-spacing: 3px; text-transform: uppercase;
            color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,0.3);
        }
        .works-subtitle {
            font-family: 'Shippori Antique B1', sans-serif;
            font-size: 12px; color: rgba(255,255,255,0.6); margin-left: 12px;
        }

        /* 制作物を並べるグリッド（中身は今後追加） */
        .works-grid-scroll { flex: 1; min-height: 0; overflow-y: auto; padding: 24px; }
        .works-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 18px;
        }
        .work-card {
            aspect-ratio: 4 / 3;
            display: flex; align-items: center; justify-content: center;
            border-radius: 8px;
            background: transparent;
            border: 1px solid rgba(255,255,255,0.8);
            box-shadow: 0 0 8px rgba(255,255,255,0.15);
            color: rgba(255,255,255,0.4);
            font-family: 'Excelorate', 'Lexend Tera', sans-serif;
            font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
            transition: all 0.2s ease;
        }
        .work-card:hover {
            transform: translateY(-3px);
            border-color: #fff;
            box-shadow: 0 6px 16px rgba(0,0,0,0.2), 0 0 12px rgba(255,255,255,0.25);
        }

.work-image { position: relative; overflow: hidden; padding: 0; cursor: pointer; }
.work-image img { width: 100%; height: 100%; object-fit: cover; }
.work-image span { position: absolute; bottom: 0; left: 0; right: 0; padding: 8px; color: #fff; background: rgba(0,0,0,.65); font-family: 'Shippori Antique B1', sans-serif; text-transform: none; letter-spacing: normal; }
@media (max-width: 600px) {
  .works-stage { padding: 65px 15px 20px; }
  .works-panel { width: 100%; min-width: 0; min-height: 0; height: calc(100dvh - 100px); }
  .works-grid-scroll { padding: 16px; }
  .works-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 12px; }
}
