@charset "UTF-8";

/* =========================================
 * 履歴書バイト 静的ページ共通レイアウト
 * （運営会社／利用規約／プライバシーポリシー／お問い合わせ）
 * 配色トークン・フォントは style.css（:root/body）を共用し、本ファイルは
 * 静的ページのガワと本文レイアウトのみを持つ（ページへのインラインstyle禁止）。
 * クラス名は v2 本体の assets/css/static.css と同一契約＝本番配線時は
 * head/header/footer を PHP パーシャルへ差し替えるだけで移行できる。
 * ========================================= */

/* 静的ページ共通ヘッダー（body.static スコープ＝アプリ画面と非干渉） */
body.static .site-header { background: var(--card-bg); border-bottom: 3px solid var(--border); padding: 15px 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(--primary); text-decoration: none; }
body.static .authbar { display: flex; gap: 12px; align-items: center; font-size: 12.5px; }
body.static .authbar a { color: var(--primary); text-decoration: none; }
body.static .authbar a:hover { text-decoration: underline; }
body.static .authbar__btn { background: var(--secondary); border: 2px solid var(--border); color: #4a4a4a; border-radius: 999px; padding: 6px 14px; cursor: pointer; font-family: inherit; font-size: 12.5px; font-weight: 700; }

/* ドキュメント本体（クラス契約は v2 assets/css/static.css と同一） */
.sdoc { padding: 0 18px 56px; }
.sdoc__wrap { max-width: 860px; margin: 0 auto; }
.crumb { font-size: 12.5px; color: #8a8a8a; padding: 16px 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: 16px 0 22px; }
.shero h1 { font-size: 26px; color: var(--primary); }
.card { background: var(--card-bg); border: 1px solid rgba(51,51,51,0.25); border-radius: 16px; padding: 28px 26px; }
.updated { font-size: 12px; color: #8a8a8a; margin: 0 0 14px; }
.intro { font-size: 14px; color: #4a4a4a; margin: 0 0 26px; }
.section-h { font-size: 18px; color: var(--primary); 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: #4a4a4a; border-left: 4px solid var(--primary); padding-left: 12px; margin: 0 0 11px; line-height: 1.5; }
.art p { font-size: 13.5px; color: #4a4a4a; margin: 0 0 10px; }
.art p:last-child { margin-bottom: 0; }
.list { margin: 0 0 10px; padding-left: 1.4em; }
.list li { font-size: 13.5px; color: #4a4a4a; margin: 0 0 7px; }
.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 rgba(51,51,51,0.25); padding: 11px 14px; text-align: left; vertical-align: top; color: #4a4a4a; }
.ctable th { background: var(--bg-main); 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 rgba(51,51,51,0.25); border-radius: 16px; padding: 18px; background: var(--bg-main); }
.svc__name { font-weight: 800; font-size: 15px; color: #4a4a4a; }
.svc__url { font-size: 12px; margin: 3px 0 9px; color: #8a8a8a; }
.svc__url a { color: var(--accent); }
.svc__desc { font-size: 12.5px; color: #8a8a8a; line-height: 1.75; }
.svc.is-self { border-color: var(--primary); box-shadow: 0 0 0 2px rgba(127,127,127,0.15); }
.contact-row { display: flex; gap: 6px 14px; flex-wrap: wrap; font-size: 14px; padding: 15px 2px; border-bottom: 1px solid rgba(51,51,51,0.25); }
.contact-row:last-child { border-bottom: none; }
.contact-row .k { font-weight: 800; min-width: 130px; color: #4a4a4a; }
.contact-row .v { color: #4a4a4a; }
.mail { font-weight: 800; font-size: 17px; letter-spacing: 0.02em; }
.note { font-size: 12.5px; color: #8a8a8a; margin-top: 18px; line-height: 1.8; }
.backhome { display: inline-block; margin-top: 28px; background: var(--primary); color: #fff; text-decoration: none; padding: 11px 22px; border-radius: 16px; font-weight: 800; font-size: 14px; }
.backhome:hover { text-decoration: none; opacity: 0.92; }
.backhome:active { transform: translateY(1px); }

/* 06のカード枠はポップな太枠（テーブル罫線は薄グレーのまま） */
body.static .card { border: 3px solid var(--border); }
body.static .backhome { border-radius: 999px; }
