/* ================================================================
   base.css — CSS変数・リセット・ベーススタイル
   全ページ共通で読み込む
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Serif+JP:wght@300;400;700&family=Shippori+Mincho:wght@400;500;600;700&display=swap');

/* ----------------------------------------------------------------
   CSS Variables
---------------------------------------------------------------- */
:root {
  --navy:        #1a2744;
  --navy-dark:   #0f1a30;
  --navy-mid:    #243258;
  --gold:        #c9a227;
  --gold-light:  #e8d59a;
  --gold-pale:   #fdf8ec;
  --gold-dark:   #9e7c18;
  --cream:       #f9f6f0;
  --cream-dark:  #ede8df;
  --white:       #ffffff;
  --text:        #2c2c2c;
  --text-mid:    #555555;
  --text-light:  #888888;
  --border:      #e0d8cc;

  /* 雇用形態カラー */
  --c-fulltime:  #1a2744;
  --c-parttime:  #2a6e7e;
  --c-spot:      #7d4315;

  /* ステータスカラー */
  --c-urgent:    #c0392b;
  --c-ahead:     #6b4380;

  --radius:      4px;
  --radius-lg:   8px;
  --shadow-sm:   0 2px 12px rgba(26,39,68,.07);
  --shadow-md:   0 6px 28px rgba(26,39,68,.12);
  --shadow-lg:   0 12px 48px rgba(26,39,68,.16);
  --ease:        all .25s ease;
}

/* ----------------------------------------------------------------
   Reset & Base
---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-size: 14px;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
button { font-family: inherit; }
