/* テンプレート45: モバイルアプリ風 */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Noto+Sans+JP:wght@400;500;700&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', 'Noto Sans JP', sans-serif; font-size: 16px; line-height: 1.8; color: #333; background: linear-gradient(180deg, #667eea 0%, #764ba2 100%); min-height: 100vh; padding-bottom: 90px; }

.app-header { background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); padding: 20px 25px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 100; border-radius: 0 0 25px 25px; margin: 0 15px; box-shadow: 0 5px 30px rgba(102, 126, 234, 0.2); }
.app-logo { font-size: 1.3rem; font-weight: 700; color: #667eea; }
.app-avatar { width: 40px; height: 40px; background: linear-gradient(135deg, #667eea, #764ba2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 600; }

.main-content { padding: 25px 15px; }

.card { background: #fff; border-radius: 20px; padding: 25px; margin-bottom: 20px; box-shadow: 0 10px 40px rgba(102, 126, 234, 0.15); }
.card-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.card-icon { width: 50px; height: 50px; background: linear-gradient(135deg, #667eea, #764ba2); border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.card-title { font-size: 1.2rem; font-weight: 600; color: #333; }
.card-subtitle { font-size: 0.85rem; color: #888; }
.card p { color: #666; font-size: 0.95rem; }

.card-image { margin: 20px -25px; }
.card-image img { width: 100%; height: 200px; object-fit: cover; }

.hero-card { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: #fff; padding: 35px 25px; }
.hero-card .card-title { color: #fff; font-size: 1.5rem; }
.hero-card p { color: rgba(255,255,255,0.9); }

.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 20px; }
.stat-card { background: #fff; border-radius: 15px; padding: 20px; text-align: center; box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1); }
.stat-number { font-size: 1.8rem; font-weight: 700; color: #667eea; display: block; }
.stat-label { font-size: 0.75rem; color: #888; }

/* ドック型ナビ */
.dock-nav { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-radius: 25px; padding: 12px 20px; display: flex; gap: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.15); z-index: 1000; }
.dock-nav a { width: 55px; height: 55px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-decoration: none; color: #888; border-radius: 15px; transition: all 0.3s; font-size: 0.65rem; }
.dock-nav a span { font-size: 1.3rem; margin-bottom: 3px; }
.dock-nav a:hover, .dock-nav a.active { background: linear-gradient(135deg, #667eea, #764ba2); color: #fff; transform: translateY(-5px); }

.site-footer { text-align: center; padding: 30px 20px 100px; color: rgba(255,255,255,0.7); font-size: 0.85rem; }

.fade-in { opacity: 0; transform: translateY(20px); transition: all 0.5s; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.sitemap-list { list-style: none; }
.sitemap-list li { margin-bottom: 12px; padding: 15px; background: #f8f9fa; border-radius: 12px; }
.sitemap-list a { color: #667eea; text-decoration: none; font-weight: 500; }

@media (max-width: 500px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .dock-nav a { width: 50px; height: 50px; }
    .dock-nav a span { font-size: 1.1rem; }
}
