/* layout.css - 共通パーツのデザイン */

/* ヘッダー全体 */
.lk-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;
    font-family: sans-serif;
}

/* ロゴ */
.lk-logo {
    font-size: 20px;
    font-weight: 800;
    color: #1d1d1f;
    text-decoration: none;
    letter-spacing: -0.5px;
}
.lk-logo span { color: #007AFF; } /* アクセントカラー */

/* 右側のナビゲーション */
.lk-nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ログインリンク */
.lk-btn-login {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    font-weight: 600;
}
.lk-btn-login:hover { color: #007AFF; }

/* Proアップグレードボタン */
.lk-btn-pro {
    background: #007AFF;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: 0.2s;
}
.lk-btn-pro:hover {
    background: #0062cc;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0,122,255,0.2);
}

/* フッター全体 */
.lk-footer {
    padding: 40px 20px;
    background: #f9f9f9;
    border-top: 1px solid #eee;
    text-align: center;
    font-family: sans-serif;
    margin-top: auto; /* コンテンツが少ない時も下に配置 */
}

.lk-footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.lk-footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 12px;
}
.lk-footer-links a:hover { color: #1d1d1f; text-decoration: underline; }

.lk-copyright {
    font-size: 11px;
    color: #999;
}