mobile-first-design
Design for mobile devices first, then scale up to larger screens. Create responsive interfaces that work seamlessly across all device sizes.
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o mobile-first-design.zip https://jpskill.com/download/21471.zip && unzip -o mobile-first-design.zip && rm mobile-first-design.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/21471.zip -OutFile "$d\mobile-first-design.zip"; Expand-Archive "$d\mobile-first-design.zip" -DestinationPath $d -Force; ri "$d\mobile-first-design.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
mobile-first-design.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
mobile-first-designフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 5
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
モバイルファーストデザイン
目次
概要
モバイルファーストデザインは、小さな画面を起点として優先し、すべてのデバイスでコア機能が動作することを保証しつつ、より大きな画面では強化されたエクスペリエンスを活用します。
使用場面
- ウェブアプリケーションのデザイン
- レスポンシブウェブサイトの作成
- 機能の優先順位付け
- パフォーマンスの最適化
- プログレッシブエンハンスメント
- クロスデバイスエクスペリエンスのデザイン
クイックスタート
最小限の動作例:
Mobile-First Approach:
Step 1: Design for Mobile (320px - 480px)
- Constrained space forces priorities
- Focus on essential content and actions
- Single column layout
- Touch-friendly interactive elements
Step 2: Enhance for Tablet (768px - 1024px)
- Add secondary content
- Multi-column layouts possible
- Optimize spacing and readability
- Take advantage of hover states
Step 3: Optimize for Desktop (1200+)
- Full-featured experience
- Advanced layouts
- Rich interactions
- Multiple columns and sidebars
---
## Responsive Breakpoints:
Mobile: 320px - 480px
- iPhone SE, older phones
// ... (see reference guides for full implementation)
参考ガイド
references/ ディレクトリ内の詳細な実装:
| ガイド | 内容 |
|---|---|
| Responsive Design Implementation | レスポンシブデザインの実装 |
| Mobile Performance | モバイルパフォーマンス |
| Progressive Enhancement | プログレッシブエンハンスメント |
ベストプラクティス
✅ DO
- 最初に最小の画面向けにデザインする
- 実際のモバイルデバイスでテストする
- レスポンシブ画像を使用する
- モバイルパフォーマンスを最適化する
- タッチターゲットを最低 44x44px にする
- モバイルではコンテンツを垂直に積み重ねる
- モバイルではハンバーガーメニューを使用する
- モバイルでは不要なコンテンツを非表示にする
- 低速ネットワークでテストする
- プログレッシブエンハンスメントのアプローチをとる
❌ DON'T
- すべてのモバイルユーザーが高速ネットワークを持っていると仮定する
- モバイルでデスクトップ専用のパターンを使用する
- タッチ操作のニーズを無視する
- ボタンを小さくしすぎる
- 横向き表示を忘れる
- モバイルレイアウトを複雑にしすぎる
- モバイルパフォーマンスを無視する
- キーボードがないと仮定する(iPadユーザー)
- モバイルユーザーテストをスキップする
- ノッチやセーフエリアを忘れる
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
Mobile-First Design
Table of Contents
Overview
Mobile-first design prioritizes small screens as the starting point, ensuring core functionality works on all devices while leveraging larger screens for enhanced experience.
When to Use
- Web application design
- Responsive website creation
- Feature prioritization
- Performance optimization
- Progressive enhancement
- Cross-device experience design
Quick Start
Minimal working example:
Mobile-First Approach:
Step 1: Design for Mobile (320px - 480px)
- Constrained space forces priorities
- Focus on essential content and actions
- Single column layout
- Touch-friendly interactive elements
Step 2: Enhance for Tablet (768px - 1024px)
- Add secondary content
- Multi-column layouts possible
- Optimize spacing and readability
- Take advantage of hover states
Step 3: Optimize for Desktop (1200px+)
- Full-featured experience
- Advanced layouts
- Rich interactions
- Multiple columns and sidebars
---
## Responsive Breakpoints:
Mobile: 320px - 480px
- iPhone SE, older phones
// ... (see reference guides for full implementation)
Reference Guides
Detailed implementations in the references/ directory:
| Guide | Contents |
|---|---|
| Responsive Design Implementation | Responsive Design Implementation |
| Mobile Performance | Mobile Performance |
| Progressive Enhancement | Progressive Enhancement |
Best Practices
✅ DO
- Design for smallest screen first
- Test on real mobile devices
- Use responsive images
- Optimize for mobile performance
- Make touch targets 44x44px minimum
- Stack content vertically on mobile
- Use hamburger menu on mobile
- Hide non-essential content on mobile
- Test with slow networks
- Progressive enhancement approach
❌ DON'T
- Assume all mobile users have fast networks
- Use desktop-only patterns on mobile
- Ignore touch interaction needs
- Make buttons too small
- Forget about landscape orientation
- Over-complicate mobile layout
- Ignore mobile performance
- Assume no keyboard (iPad users)
- Skip mobile user testing
- Forget about notches and safe areas
同梱ファイル
※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。
- 📄 SKILL.md (2,622 bytes)
- 📎 references/mobile-performance.md (1,030 bytes)
- 📎 references/progressive-enhancement.md (1,025 bytes)
- 📎 references/responsive-design-implementation.md (2,135 bytes)
- 📎 scripts/validate-config.sh (427 bytes)