:root {
    --primary:      #1a73e8;
    --primary-dark: #0d47a1;
    --soft:         #f0f7ff;
    --border:       #d6e4f7;
    --text:         #2d2d2d;
    --muted:        #6c757d;
}
body {
    background: #f5f7fa;
    color: var(--text);
    font-family: 'Hiragino Kaku Gothic ProN','Hiragino Sans','Meiryo',sans-serif;
}

/* ナビ */
.site-nav {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 13px 0;
    position: sticky;
    top: 0;
    z-index: 300;
    box-shadow: 0 1px 6px rgba(0,0,0,.06);
}
.site-nav .brand {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.site-nav .brand small { font-size: 0.72rem; font-weight: 400; color: var(--muted); }

/* LPラッパー */
.lp-wrap { max-width: 640px; margin: 0 auto; }

/* ヘッダー */
.lp-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 2rem 1.5rem 1.8rem;
}
.lp-header .area-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.82rem;
    background: rgba(255,255,255,.22);
    border-radius: 20px;
    padding: 0.25rem 0.85rem;
    margin-bottom: 0.85rem;
}
.lp-header h1 { font-size: 1.5rem; font-weight: 800; line-height: 1.55; margin-bottom: 0.8rem; }
.lp-header .meta-badges { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.meta-badge { font-size: 0.8rem; font-weight: 600; padding: 0.28rem 0.8rem; border-radius: 4px; }
.badge-job-type  { background: rgba(255,255,255,.9); color: var(--primary); }
.badge-emp-type  { background: #ffd54f; color: #5d4037; }

/* コンテンツ */
.lp-content { padding: 1rem 1rem 180px; }

/* セクションカード */
.section-card {
    background: #fff;
    border-radius: 12px;
    border: 1.5px solid var(--border);
    box-shadow: 0 1px 6px rgba(26,115,232,.05);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
}
.section-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--soft);
}

/* 情報行 */
.info-row { display: flex; align-items: flex-start; padding: 0.55rem 0; border-bottom: 1px solid #f2f2f2; font-size: 0.93rem; }
.info-row:last-child { border-bottom: none; }
.info-label { color: var(--muted); width: 100px; flex-shrink: 0; font-weight: 500; }
.info-value  { flex: 1; font-weight: 600; color: #222; }

/* タグ */
.tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag-item { font-size: 0.83rem; font-weight: 600; border-radius: 20px; padding: 0.3rem 0.9rem; }
.tag-condition { background: var(--soft); color: var(--primary); }
.tag-appeal    { background: #e6f4ea; color: #137333; }

/* 本文 */
.seo-body-text { font-size: 0.92rem; line-height: 1.85; color: #444; white-space: pre-line; }

/* 写真 */
.job-photo {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 1rem;
    display: block;
    background: #f0f0f0;
}

/* 応募方法 */
.apply-method-item { display: flex; gap: 0.75rem; align-items: flex-start; padding: 0.7rem 0; border-bottom: 1px solid #f2f2f2; font-size: 0.9rem; }
.apply-method-item:last-child { border-bottom: none; }
.apply-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.apply-icon-line { background: #e8faf0; color: #06C755; }
.apply-icon-form { background: var(--soft); color: var(--primary); }
.apply-method-title { font-weight: 700; color: #222; margin-bottom: 2px; }
.apply-method-desc  { color: #666; font-size: 0.82rem; }

/* 固定CTAバー */
.cta-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--border);
    padding: 0.85rem 1rem;
    z-index: 200;
    box-shadow: 0 -4px 16px rgba(0,0,0,.08);
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.btn-line-apply {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    width: 100%; background: #06C755; color: #fff; border: none;
    border-radius: 30px; font-size: 1rem; font-weight: 800;
    padding: 0.78rem 1rem; margin-bottom: 0.5rem; text-decoration: none;
}
.btn-line-apply:hover { background: #05a847; color: #fff; }
.btn-form-apply {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    width: 100%; background: #fff; color: var(--primary);
    border: 2px solid var(--primary); border-radius: 30px;
    font-size: 1rem; font-weight: 800; padding: 0.7rem 1rem; text-decoration: none;
}
.btn-form-apply:hover { background: var(--primary); color: #fff; }
.cta-note { text-align: center; font-size: 0.72rem; color: #aaa; margin-top: 0.45rem; }
.line-icon { width: 22px; height: 22px; flex-shrink: 0; }

/* フッター */
.site-footer { background: #1a1a2e; color: #aaa; text-align: center; padding: 24px 0; font-size: 0.82rem; }
.site-footer a { color: #aaa; text-decoration: none; }
.site-footer a:hover { color: #fff; }
