@charset "UTF-8";

/* =========================================
 * さくさく履歴書 静的ページ共通レイアウト
 * （運営会社／利用規約／プライバシーポリシー／お問い合わせ）
 * 配色トークン・フォントは style.css（:root/body）を共用。本ファイルは
 * 静的ページのガワと本文レイアウトのみ。クラス名は v2 本体の static.css と同一契約。
 * ========================================= */

body.static .site-header { background: #fff; border-bottom: 1px solid var(--line); padding: 16px 20px; position: sticky; top: 0; z-index: 10; }
body.static .site-header__inner { max-width: 1000px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
body.static a.site-header__logo { font-size: 20px; font-weight: 800; color: var(--navy); text-decoration: none; letter-spacing: .03em; }
body.static .authbar { display: flex; gap: 14px; align-items: center; font-size: 12.5px; justify-content: flex-end; }
body.static .authbar a { color: var(--accent); text-decoration: none; border: none; }
body.static .authbar a:hover { text-decoration: underline; }
body.static .authbar__btn { background: var(--accent); border: 1px solid var(--accent); color: #fff; border-radius: 7px; padding: 7px 16px; cursor: pointer; font-family: inherit; font-size: 12.5px; font-weight: 700; }
body.static .authbar__btn:hover { background: #33507d; }

body.static .sfoot { background: var(--navy); margin-top: 60px; padding: 36px 20px; }
body.static .sfoot__wrap { max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
body.static .sfoot__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 24px; }
body.static .sfoot__links a { color: rgba(255,255,255,.9); text-decoration: none; font-size: 14px; font-weight: 600; }
body.static .sfoot__links a:hover { color: #fff; text-decoration: underline; }
body.static .sfoot__copy { font-size: 12px; color: rgba(255,255,255,.55); }

.sdoc { padding: 0 18px 56px; }
.sdoc__wrap { max-width: 860px; margin: 0 auto; }
.crumb { font-size: 12.5px; color: var(--muted); padding: 18px 2px; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.crumb a { color: var(--accent); text-decoration: none; }
.crumb a:hover { text-decoration: underline; }
.shero { margin: 12px 0 24px; }
.shero h1 { font-size: 26px; color: var(--ink); font-weight: 800; margin: 0; }
.card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 30px 28px; box-shadow: 0 2px 12px rgba(30,40,70,.05); }
.updated { font-size: 12px; color: var(--muted); margin: 0 0 14px; }
.intro { font-size: 14px; color: var(--ink); margin: 0 0 26px; line-height: 1.9; }
.section-h { font-size: 18px; color: var(--ink); font-weight: 800; margin: 36px 0 16px; }
.section-h:first-child { margin-top: 0; }
.art { margin: 0 0 24px; }
.art:last-child { margin-bottom: 0; }
.art h2 { font-size: 15px; color: var(--ink); font-weight: 700; border-left: 3px solid var(--accent); padding-left: 12px; margin: 0 0 11px; line-height: 1.5; }
.art p { font-size: 13.5px; color: var(--ink); margin: 0 0 10px; line-height: 1.95; }
.art p:last-child { margin-bottom: 0; }
.list { margin: 0 0 10px; padding-left: 1.4em; }
.list li { font-size: 13.5px; color: var(--ink); margin: 0 0 7px; line-height: 1.9; }
.list li:last-child { margin-bottom: 0; }
.art a, .intro a, .note a { color: var(--accent); text-decoration: underline; }
.art strong { color: var(--accent); }
.ctable { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.ctable th, .ctable td { border: 1px solid var(--line); padding: 11px 14px; text-align: left; vertical-align: top; color: var(--ink); }
.ctable th { background: #f8f9fb; width: 34%; white-space: nowrap; font-weight: 700; }
.ctable td a { color: var(--accent); }
@media (max-width: 560px) { .ctable th { width: 42%; white-space: normal; } }
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; }
.svc { border: 1px solid var(--line); border-radius: 10px; padding: 18px; background: #f8f9fb; }
.svc__name { font-weight: 800; font-size: 15px; color: var(--ink); }
.svc__url { font-size: 12px; margin: 3px 0 9px; color: var(--muted); }
.svc__url a { color: var(--accent); }
.svc__desc { font-size: 12.5px; color: var(--muted); line-height: 1.85; }
.svc.is-self { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-soft); }
.contact-row { display: flex; gap: 6px 14px; flex-wrap: wrap; font-size: 14px; padding: 15px 2px; border-bottom: 1px solid var(--line); }
.contact-row:last-child { border-bottom: none; }
.contact-row .k { font-weight: 700; min-width: 150px; color: var(--ink); }
.contact-row .v { color: var(--ink); }
.mail { font-weight: 700; font-size: 16px; letter-spacing: .01em; }
.note { font-size: 12.5px; color: var(--muted); margin-top: 18px; line-height: 1.9; }
.backhome { display: inline-block; margin-top: 30px; background: var(--accent); color: #fff; text-decoration: none; padding: 12px 24px; border-radius: 9px; font-weight: 700; font-size: 14px; }
.backhome:hover { background: #33507d; }
