/* ヤドル — 大学職員の求人・転職メディア
   デザイン: 深緑×アイボリー×真鍮金のプレミアム編集デザイン
   明朝見出し・丸みのあるカード・余白広め・図書館の光 */

:root {
  --green: #1f3b2d;
  --green-mid: #2d5440;
  --green-deep: #122418;
  --green-tint: #e9efe9;
  --cream: #f7f5ef;
  --ivory: #fdfcf8;
  --ink: #2b2a24;
  --ink-soft: #7a755f;
  --gold: #c9a45c;
  --gold-deep: #a07f38;
  --gold-tint: #f5ead3;
  --red: #b3402e;
  --red-tint: #f9e8e4;
  --line: #e7e2d2;
  --radius: 14px;
  --radius-s: 8px;
  --shadow: 0 6px 24px rgba(31, 59, 45, 0.07);
  --shadow-lg: 0 16px 48px rgba(18, 36, 24, 0.16);
  --serif: "Shippori Mincho", "Hiragino Mincho ProN", serif;
  --sans: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.95;
  font-size: 15px;
}
img { max-width: 100%; display: block; }
a { color: var(--green); }
::selection { background: var(--gold-tint); }

/* ---------- ヘッダー ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 252, 248, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 12px 28px;
  display: flex; align-items: center; gap: 28px;
}
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.logo-mark svg { width: 38px; height: 38px; display: block; }
.logo-text {
  font-family: var(--serif); font-weight: 700; font-size: 1.45rem; color: var(--ink);
  display: flex; align-items: baseline; gap: 12px; letter-spacing: 0.14em; line-height: 1;
}
.logo-text small { font-family: var(--sans); font-weight: 500; font-size: 0.68rem; color: var(--ink-soft); letter-spacing: 0.12em; }
.nav-menu { margin-left: auto; }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a {
  text-decoration: none; font-weight: 500; font-size: 0.9rem; color: var(--ink);
  letter-spacing: 0.06em; padding: 6px 0; border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover, .nav-links a[aria-current] { color: var(--green); border-bottom-color: var(--gold); }
.btn-nav-cta {
  background: var(--green); color: var(--ivory); text-decoration: none;
  padding: 10px 22px; border-radius: var(--radius-s); font-size: 0.86rem; font-weight: 700;
  letter-spacing: 0.06em; white-space: nowrap; transition: background 0.2s, transform 0.2s;
}
.btn-nav-cta:hover { background: var(--green-mid); transform: translateY(-1px); }
.nav-burger { display: none; }
.mobile-menu { display: none; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-block; text-decoration: none; font-weight: 700;
  padding: 14px 30px; border-radius: var(--radius-s); font-size: 0.93rem;
  letter-spacing: 0.06em; transition: all 0.2s; border: 1.5px solid transparent;
}
.btn-primary { background: var(--green); color: var(--ivory); box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { background: var(--ivory); color: var(--green); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold-tint); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--green-deep); }
.btn-gold:hover { background: #d6b573; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.35); }

/* ---------- ヒーロー ---------- */
.hero {
  background:
    linear-gradient(96deg, var(--cream) 0%, rgba(247, 245, 239, 0.96) 42%, rgba(247, 245, 239, 0.55) 100%),
    url("../images/hero.jpg") right center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  max-width: 1160px; margin: 0 auto; padding: 84px 28px 92px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.hero-eyebrow {
  display: inline-block; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.18em;
  color: var(--green); border: 1px solid var(--gold); border-radius: 999px;
  padding: 5px 18px; margin-bottom: 26px; background: var(--ivory);
  animation: rise 0.7s 0.05s both;
}
.hero h1 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2.3rem, 4.6vw, 3.4rem);
  line-height: 1.55; letter-spacing: 0.06em; color: var(--ink);
  margin-bottom: 18px; animation: rise 0.7s 0.15s both;
}
.hero-lead {
  font-size: 0.95rem; font-weight: 700; color: var(--green); letter-spacing: 0.12em;
  margin-bottom: 14px; animation: rise 0.7s 0.25s both;
}
.hero-sub {
  color: var(--ink-soft); font-size: 0.94rem; max-width: 520px; margin-bottom: 34px;
  animation: rise 0.7s 0.32s both;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; animation: rise 0.7s 0.42s both; }

@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

/* 新着求人カード */
.hero-card {
  background: var(--ivory); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 10px 22px 18px; border: 1px solid rgba(231, 226, 210, 0.7);
  animation: rise 0.8s 0.5s both;
}
.hero-card-head {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 14px 2px 12px; border-bottom: 1px solid var(--line);
}
.hero-card-head span { font-family: var(--serif); font-weight: 700; font-size: 1.05rem; letter-spacing: 0.1em; }
.hero-card-head small { font-size: 0.72rem; color: var(--ink-soft); }
.pv-row {
  display: flex; gap: 14px; align-items: center; text-decoration: none; color: var(--ink);
  padding: 14px 2px; border-bottom: 1px solid var(--line);
  transition: background 0.15s;
}
.pv-row:hover { background: var(--cream); }
.pv-seal {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid var(--green); color: var(--green); background: var(--green-tint);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700; font-size: 1.15rem;
}
.pv-body { min-width: 0; }
.pv-univ { display: block; font-size: 0.72rem; font-weight: 700; color: var(--ink-soft); letter-spacing: 0.08em; }
.pv-title { display: block; font-size: 0.9rem; font-weight: 700; line-height: 1.6; }
.pv-meta { display: flex; gap: 10px; align-items: center; margin-top: 3px; }
.pv-dl { font-size: 0.74rem; color: var(--ink-soft); }
.pv-dl strong { color: var(--green); }
.hero-card-more {
  display: block; text-align: right; padding: 14px 2px 2px;
  font-size: 0.84rem; font-weight: 700; color: var(--green); text-decoration: none; letter-spacing: 0.06em;
}
.hero-card-more:hover { color: var(--gold-deep); }

/* ---------- 統計ストリップ ---------- */
.stats-strip { max-width: 1160px; margin: -40px auto 0; padding: 0 28px; position: relative; z-index: 2; }
.stats-inner {
  background: var(--ivory); border-radius: var(--radius); box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat { display: flex; gap: 14px; align-items: center; padding: 22px 26px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat svg { width: 34px; height: 34px; stroke: var(--green); fill: none; stroke-width: 1.4; flex-shrink: 0; opacity: 0.85; }
.stat dt { font-size: 0.72rem; font-weight: 700; color: var(--ink-soft); letter-spacing: 0.08em; }
.stat dd { font-family: var(--serif); font-weight: 700; font-size: 1.65rem; color: var(--ink); line-height: 1.3; }
.stat dd small { font-size: 0.85rem; margin-left: 1px; }
.stat .stat-small { font-family: var(--sans); font-size: 0.78rem; font-weight: 700; color: var(--green); line-height: 1.5; }

/* ---------- セクション共通 ---------- */
.section { max-width: 1160px; margin: 0 auto; padding: 84px 28px 8px; }
.section-head { margin-bottom: 34px; }
.section-head .en {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.26em; color: var(--gold-deep); text-transform: uppercase;
}
.section-head h2 {
  font-family: var(--serif); font-weight: 600; font-size: clamp(1.5rem, 2.8vw, 1.95rem);
  letter-spacing: 0.06em; margin-top: 6px;
}
.section-head p { color: var(--ink-soft); font-size: 0.88rem; margin-top: 6px; }

/* ---------- 課題セクション ---------- */
.pain-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr 1fr; gap: 22px; align-items: stretch; }
.pain-head h2 {
  font-family: var(--serif); font-weight: 600; font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  line-height: 1.7; letter-spacing: 0.05em; margin-bottom: 16px;
}
.pain-head p { font-size: 0.86rem; color: var(--ink-soft); max-width: 300px; }
.pain-card {
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 24px; text-align: center; box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pain-card svg {
  width: 38px; height: 38px; stroke: var(--gold-deep); fill: none; stroke-width: 1.3;
  margin: 4px auto 16px;
}
.pain-card h3 {
  font-family: var(--serif); font-weight: 600; font-size: 1.04rem; line-height: 1.75;
  letter-spacing: 0.05em; margin-bottom: 12px;
}
.pain-card p { font-size: 0.8rem; color: var(--ink-soft); text-align: left; }

/* ---------- 3ステップ ---------- */
.steps { border-top: 1px solid var(--line); margin-top: 84px; }
.steps-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr 1fr; gap: 30px; }
.steps-head h2 {
  font-family: var(--serif); font-weight: 600; font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  line-height: 1.85; letter-spacing: 0.04em;
}
.steps-head em { font-style: normal; color: var(--green); }
.step { padding-top: 6px; }
.step-num {
  font-family: var(--serif); font-size: 1.7rem; font-weight: 600; color: var(--gold);
  line-height: 1; margin-bottom: 14px; letter-spacing: 0.04em;
}
.step-num span { font-size: 1rem; color: var(--ink); margin-left: 10px; letter-spacing: 0.16em; }
.step h3 { font-size: 0.97rem; font-weight: 700; line-height: 1.8; margin-bottom: 8px; }
.step p { font-size: 0.8rem; color: var(--ink-soft); }

/* ---------- 絞り込み ---------- */
.filters {
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 22px; box-shadow: var(--shadow);
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
}
.filters label { font-size: 0.82rem; font-weight: 700; color: var(--ink-soft); }
.filters select, .filters input[type="search"] {
  font-family: var(--sans); font-size: 0.9rem; padding: 9px 13px; margin-left: 6px;
  border: 1px solid var(--line); border-radius: var(--radius-s); background: var(--cream); color: var(--ink);
}
.filters input[type="search"] { min-width: 200px; }
.filters select:focus, .filters input:focus { outline: none; border-color: var(--gold); }
.filter-toggle { display: flex; align-items: center; gap: 7px; font-size: 0.86rem; cursor: pointer; user-select: none; }
.filter-toggle input { accent-color: var(--green); width: 16px; height: 16px; }
.filter-count { margin-left: auto; font-size: 0.82rem; color: var(--ink-soft); }
.filter-count strong { font-family: var(--serif); color: var(--green); font-size: 1.3rem; font-weight: 700; }

/* ---------- 求人リスト ---------- */
.job-list { display: grid; gap: 12px; margin-top: 22px; }
.job-card {
  display: grid; grid-template-columns: 50px 1fr auto; gap: 18px; align-items: center;
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 24px; text-decoration: none; color: var(--ink); box-shadow: var(--shadow);
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.job-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.job-card.is-closed { opacity: 0.5; }
.job-seal {
  width: 50px; height: 50px; border-radius: 50%;
  border: 1.5px solid var(--green); color: var(--green); background: var(--green-tint);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700; font-size: 1.35rem;
}
.job-card.is-closed .job-seal { border-color: var(--ink-soft); color: var(--ink-soft); background: var(--cream); }
.job-body { min-width: 0; }
.job-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 6px; align-items: center; }
.badge {
  font-size: 0.7rem; font-weight: 700; padding: 2px 11px; border-radius: 999px; line-height: 1.8;
  letter-spacing: 0.05em;
}
.badge-univ { background: var(--green); color: var(--ivory); }
.badge-cat { background: var(--green-tint); color: var(--green); }
.badge-closed { background: #e8e6df; color: #8d897a; }
.badge-deadline { background: var(--gold-tint); color: var(--gold-deep); }
.badge-deadline.urgent { background: var(--red-tint); color: var(--red); }
.job-title { display: block; font-size: 1rem; font-weight: 700; line-height: 1.7; }
.job-card:hover .job-title { color: var(--green); }
.job-sub { display: flex; flex-wrap: wrap; gap: 14px; font-size: 0.76rem; color: var(--ink-soft); }
.job-go {
  font-size: 0.78rem; font-weight: 700; color: var(--gold-deep); letter-spacing: 0.06em; white-space: nowrap;
}
.jobs-empty { text-align: center; color: var(--ink-soft); padding: 44px 0; display: none; }
.jobs-note { font-size: 0.78rem; color: var(--ink-soft); margin-top: 20px; }

.univ-links { margin-top: 26px; font-size: 0.84rem; color: var(--ink-soft); font-weight: 700; }
.univ-chip {
  display: inline-block; background: var(--ivory); border: 1px solid var(--line);
  border-radius: 999px; padding: 6px 18px; margin: 4px 3px; text-decoration: none;
  font-weight: 700; font-size: 0.83rem; color: var(--green); box-shadow: var(--shadow);
  transition: all 0.2s;
}
.univ-chip:hover { background: var(--green); color: var(--ivory); transform: translateY(-2px); }

/* ---------- 記事カード ---------- */
.article-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 20px; }
.article-card {
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; text-decoration: none; color: var(--ink);
  box-shadow: var(--shadow); transition: transform 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.article-thumb {
  font-family: var(--serif); font-weight: 600; font-size: 1.06rem; line-height: 1.85;
  letter-spacing: 0.03em; padding: 26px 26px 0; color: var(--ink);
  position: relative;
}
.article-thumb::before {
  content: ""; display: block; width: 40px; height: 3px; background: var(--gold);
  border-radius: 2px; margin-bottom: 16px;
}
.article-card:hover .article-thumb { color: var(--green); }
.article-body { padding: 14px 26px 24px; margin-top: auto; }
.article-body p {
  font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 14px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.article-date { font-size: 0.72rem; color: var(--ink-soft); letter-spacing: 0.1em; }

/* ---------- 記事ページ ---------- */
.article-main { max-width: 760px; margin: 0 auto; padding: 64px 28px; }
.article-main h1 {
  font-family: var(--serif); font-weight: 600; font-size: clamp(1.6rem, 3.4vw, 2.1rem);
  line-height: 1.7; letter-spacing: 0.03em; margin-bottom: 16px;
}
.article-info {
  font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 40px;
  padding-bottom: 18px; border-bottom: 1px solid var(--line);
}
.article-content { font-size: 1rem; }
.article-content h2 {
  font-family: var(--serif); font-weight: 600; font-size: 1.4rem; letter-spacing: 0.04em;
  margin: 54px 0 18px; padding-left: 16px; border-left: 4px solid var(--gold);
}
.article-content h3 { font-size: 1.05rem; font-weight: 700; color: var(--green); margin: 34px 0 12px; }
.article-content p { margin-bottom: 18px; }
.article-content ul, .article-content ol { margin: 0 0 18px 26px; }
.article-content li { margin-bottom: 8px; }
.article-content blockquote {
  background: var(--ivory); border: 1px solid var(--line); border-left: 4px solid var(--green);
  border-radius: 0 var(--radius-s) var(--radius-s) 0;
  padding: 16px 22px; margin-bottom: 18px; color: var(--ink-soft); font-size: 0.94rem;
}
.article-content strong { color: var(--ink); background: linear-gradient(transparent 72%, var(--gold-tint) 72%); }
.article-content a { font-weight: 700; }

.author-box {
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; margin-top: 56px; display: flex; gap: 18px; align-items: flex-start; box-shadow: var(--shadow);
}
.author-box .avatar {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid var(--green); background: var(--green-tint); color: var(--green);
  display: flex; align-items: center; justify-content: center;
}
.job-seal svg { width: 26px; height: 26px; }
.pv-seal svg { width: 21px; height: 21px; }
.author-box .avatar svg { width: 30px; height: 30px; }
.author-box h3 { font-size: 0.95rem; font-weight: 700; }
.author-box p { font-size: 0.82rem; color: var(--ink-soft); margin-top: 6px; }

/* ---------- 相談CTA帯 ---------- */
.cta-band {
  background-size: cover; background-position: center;
  color: var(--cream); padding: 84px 28px; margin-top: 84px;
}
.cta-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: center;
}
.cta-text h2 {
  font-family: var(--serif); font-weight: 600; font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.8; letter-spacing: 0.05em; margin-bottom: 18px;
}
.cta-text p { font-size: 0.92rem; opacity: 0.85; max-width: 600px; }
.cta-card {
  background: rgba(253, 252, 248, 0.07); border: 1px solid rgba(201, 164, 92, 0.55);
  border-radius: var(--radius); padding: 34px 30px; text-align: center;
  backdrop-filter: blur(2px);
}
.cta-card-note { font-size: 0.84rem; font-weight: 700; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 16px; }
.cta-card .btn-gold { display: block; }
.cta-card-sub { font-size: 0.74rem; opacity: 0.75; margin-top: 14px; }

/* ---------- FAQ ---------- */
.faq { padding-bottom: 40px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; }
.faq details {
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius-s);
  padding: 0 22px; box-shadow: var(--shadow);
}
.faq summary {
  cursor: pointer; list-style: none; font-weight: 700; font-size: 0.92rem;
  padding: 18px 30px 18px 0; position: relative; letter-spacing: 0.02em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "＋"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  color: var(--gold-deep); font-weight: 400; font-size: 1.1rem; transition: transform 0.2s;
}
.faq details[open] summary::after { content: "－"; }
.faq details p { padding: 2px 0 20px; font-size: 0.86rem; color: var(--ink-soft); border-top: 1px solid var(--line); padding-top: 14px; }

/* ---------- 静的ページ・フォーム ---------- */
.page-main { max-width: 760px; margin: 0 auto; padding: 64px 28px; }
.page-main h1 {
  font-family: var(--serif); font-weight: 600; font-size: 1.9rem; letter-spacing: 0.05em;
  margin-bottom: 28px; padding-bottom: 16px; border-bottom: 1px solid var(--line);
}
.page-main h2 {
  font-family: var(--serif); font-weight: 600; font-size: 1.3rem; margin: 42px 0 14px;
  padding-left: 14px; border-left: 4px solid var(--gold);
}
.page-main p { margin-bottom: 16px; }
.page-main ul { margin: 0 0 16px 26px; }
.info-table {
  width: 100%; border-collapse: collapse; margin: 18px 0; background: var(--ivory);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.info-table th, .info-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.92rem; vertical-align: top; }
.info-table th { width: 32%; background: var(--green-tint); color: var(--green); font-weight: 700; }

.form { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.form-row { margin-bottom: 20px; }
.form-row label { display: block; font-size: 0.88rem; font-weight: 700; margin-bottom: 7px; color: var(--green); }
.form-row label .req {
  color: var(--ivory); background: var(--red); font-size: 0.66rem; padding: 1px 9px 2px;
  margin-left: 8px; border-radius: 999px; letter-spacing: 0.1em;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%; font-family: var(--sans); font-size: 0.95rem; padding: 12px 15px;
  border: 1px solid var(--line); border-radius: var(--radius-s); background: var(--cream);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--gold); background: var(--ivory);
  box-shadow: 0 0 0 3px rgba(201, 164, 92, 0.18);
}
.form-row textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 0.78rem; color: var(--ink-soft); margin: 16px 0; }
.form .btn-primary { width: 100%; cursor: pointer; font-family: var(--sans); font-size: 1rem; border: none; }
.form-status { margin-top: 16px; font-size: 0.9rem; font-weight: 700; display: none; }
.form-status.ok { color: #2e7d32; display: block; }
.form-status.ng { color: var(--red); display: block; }

/* ---------- フッター ---------- */
.footer { background: var(--green-deep); color: rgba(247, 245, 239, 0.78); margin-top: 96px; }
.footer-inner {
  max-width: 1160px; margin: 0 auto; padding: 60px 28px 32px;
  display: flex; flex-wrap: wrap; gap: 48px; justify-content: space-between; align-items: flex-start;
}
.footer-logo { font-family: var(--serif); font-size: 1.55rem; font-weight: 700; color: var(--cream); letter-spacing: 0.16em; }
.footer-tag { font-size: 0.82rem; color: var(--gold); margin: 4px 0 14px; letter-spacing: 0.1em; }
.footer-note { font-size: 0.74rem; max-width: 420px; opacity: 0.65; }
.footer-cols { display: flex; gap: 56px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(247, 245, 239, 0.78); text-decoration: none; font-size: 0.84rem; }
.footer-links a:hover { color: var(--gold); }
.footer-art { width: 200px; color: rgba(201, 164, 92, 0.45); flex-shrink: 0; }
.copyright {
  text-align: center; font-size: 0.72rem; padding: 18px;
  border-top: 1px solid rgba(247, 245, 239, 0.12); letter-spacing: 0.08em;
}

/* ---------- レスポンシブ ---------- */
@media (max-width: 920px) {
  .nav-menu, .btn-nav-cta { display: none; }
  .nav-burger {
    display: flex; flex-direction: column; gap: 6px; margin-left: auto;
    background: none; border: 1px solid var(--line); border-radius: var(--radius-s);
    cursor: pointer; padding: 12px 11px;
  }
  .nav-burger span { width: 20px; height: 2px; background: var(--green); border-radius: 2px; transition: transform 0.2s; }
  .nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-burger[aria-expanded="true"] span:nth-child(2) { transform: rotate(-45deg); }
  .mobile-menu {
    display: none; position: fixed; top: 63px; left: 0; right: 0; bottom: 0; z-index: 99;
    background: var(--cream); padding: 28px;
  }
  .mobile-menu.open { display: block; }
  .mobile-menu ul { list-style: none; }
  .mobile-menu li { border-bottom: 1px solid var(--line); }
  .mobile-menu a {
    display: block; padding: 16px 4px; text-decoration: none; color: var(--ink);
    font-weight: 700; font-family: var(--serif); font-size: 1.05rem; letter-spacing: 0.08em;
  }
  .mobile-menu-cta { margin-top: 28px; text-align: center; }

  .hero { background:
    linear-gradient(rgba(247, 245, 239, 0.94), rgba(247, 245, 239, 0.94)),
    url("../images/hero.jpg") center / cover no-repeat; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 56px 24px 72px; }
  .stats-strip { margin-top: -36px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat { padding: 16px 18px; border-bottom: 1px solid var(--line); }
  .stat:nth-child(odd) { border-right: 1px solid var(--line); }
  .stat:nth-child(even) { border-right: none; }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }

  .pain-grid, .steps-grid { grid-template-columns: 1fr; }
  .pain-head p { max-width: none; }

  .filters { flex-direction: column; align-items: stretch; }
  .filter-count { margin-left: 0; }
  .job-card { grid-template-columns: 44px 1fr; gap: 14px; padding: 16px 18px; }
  .job-seal { width: 44px; height: 44px; font-size: 1.2rem; }
  .job-go { display: none; }

  .cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .faq-grid { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .footer-art { display: none; }
  .aff-grid { grid-template-columns: 1fr; }
}

/* ---------- アフィリエイト比較ボックス ---------- */
.aff-box {
  margin: 48px 0 8px; padding: 28px 26px;
  background: var(--green-tint); border: 1px solid var(--line); border-radius: var(--radius);
}
.aff-title {
  font-family: var(--serif); font-weight: 600; font-size: 1.25rem; color: var(--green);
  letter-spacing: 0.04em; margin-bottom: 10px;
}
.aff-lead { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 8px; }
.aff-disclosure { font-size: 0.72rem; color: var(--ink-soft); margin-bottom: 18px; opacity: 0.85; }
.aff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.aff-card {
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius-s);
  padding: 18px 18px 16px; display: flex; flex-direction: column;
}
.aff-card-head { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.aff-name { font-family: var(--serif); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.aff-type { font-size: 0.68rem; font-weight: 700; color: var(--green); background: var(--green-tint); padding: 2px 9px; border-radius: 999px; }
.aff-strength { font-size: 0.82rem; color: var(--ink); margin-bottom: 8px; line-height: 1.7; }
.aff-good { font-size: 0.78rem; color: var(--ink-soft); margin-bottom: 14px; }
.aff-good strong { color: var(--green); }
.aff-btn {
  margin-top: auto; text-align: center; text-decoration: none;
  background: var(--gold); color: var(--green-deep); font-weight: 700; font-size: 0.88rem;
  padding: 10px 16px; border-radius: var(--radius-s); transition: background 0.2s, transform 0.2s;
}
.aff-btn:hover { background: #d6b573; transform: translateY(-1px); }
