@charset "UTF-8";

/* =========================================================
   推しONE+ - style.css
   BtoB人材サービスとしての信頼感を土台に、人の温度を残す配色。
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* 基調：深いネイビー（淡い水色は使わない） */
  --navy-900: #0b1f38;
  --navy-800: #102c4d;
  --navy-700: #163a63;
  --navy-600: #1d4a7c;
  --steel-400: #4d7098;
  --steel-200: #a8bcd2;

  /* 人の温度：温かみのあるアンバー／サンド */
  --accent: #d9822b;
  --accent-dark: #bd6c1c;
  --accent-soft: #fbf1e4;

  /* 背景・文字 */
  --sand-050: #faf8f4;
  --sand-100: #f2eee7;
  --ink: #1a2230;
  --ink-70: #4c5a6d;
  --ink-50: #7b8798;
  --line: #dfe4ea;
  --line-strong: #c8d1dc;

  --white: #fff;
  --radius-s: 6px;
  --radius-m: 12px;
  --radius-l: 20px;

  --shadow-card: 0 4px 18px rgba(11, 31, 56, .07);
  --shadow-pop: 0 14px 38px rgba(11, 31, 56, .15);

  --container: 1120px;
  --header-h: 76px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
}

h1, h2, h3, h4, p, figure, ul, ol, dl, dd, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
input, select, textarea { font: inherit; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.ico {
  width: 1em; height: 1em;
  fill: currentColor;
  flex: none;
  display: inline-block;
  vertical-align: -.125em;
}

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.container--narrow { width: min(100% - 40px, 840px); }

.skip {
  position: absolute;
  left: 50%; top: -60px;
  transform: translateX(-50%);
  z-index: 200;
  padding: 10px 20px;
  background: var(--navy-800);
  color: #fff;
  font-size: 13px;
  border-radius: 0 0 var(--radius-s) var(--radius-s);
  transition: top .2s var(--ease);
}
.skip:focus { top: 0; }

.br-sp { display: none; }
.tbd {
  color: var(--accent-dark);
  font-weight: 700;
  background: var(--accent-soft);
  padding: 0 .35em;
  border-radius: 3px;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--navy-700);
  --btn-fg: #fff;
  --btn-bd: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  min-height: 46px;
  padding: 0 24px;
  border: 1.5px solid var(--btn-bd);
  border-radius: var(--radius-s);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .02em;
  text-align: center;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease),
              background-color .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-pop); }
.btn:active { transform: translateY(0); }

.btn--sm { min-height: 38px; padding: 0 16px; font-size: 12.5px; }
.btn--lg { min-height: 56px; padding: 0 32px; font-size: 15px; }
.btn--pill { border-radius: 999px; min-width: 220px; }

.btn--primary { --btn-bg: var(--navy-700); }
.btn--accent  { --btn-bg: var(--accent); --btn-fg: #fff; }
.btn--accent:hover { --btn-bg: var(--accent-dark); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--navy-700); --btn-bd: var(--line-strong); }
.btn--ghost:hover { --btn-bg: var(--navy-700); --btn-fg: #fff; --btn-bd: var(--navy-700); }

.btn--line { --btn-bg: #fff; --btn-fg: var(--navy-800); --btn-bd: var(--navy-800); }
.btn--line:hover { --btn-bg: var(--navy-800); --btn-fg: #fff; }

.btn--outline { --btn-bg: #fff; --btn-fg: var(--navy-700); --btn-bd: var(--navy-700); border-radius: 999px; }
.btn--outline:hover { --btn-bg: var(--navy-700); --btn-fg: #fff; }

.btn--white { --btn-bg: #fff; --btn-fg: var(--navy-800); }
.btn--white:hover { --btn-bg: var(--sand-100); }

.btn--outline-white { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.65); }
.btn--outline-white:hover { --btn-bg: rgba(255,255,255,.14); --btn-bd: #fff; }

/* =========================================================
   Header
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  width: min(100% - 32px, 1280px);
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand { display: flex; align-items: center; gap: 11px; }
/* ロゴマークは画像。縦横比を保ち、潰れないようにする */
.brand__mark { width: auto; height: 29px; display: block; }
.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__name {
  /* 「推し」は Noto Sans JP、「ONE」だけ Poppins に切り替える */
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .005em;
  color: var(--navy-800);
  white-space: nowrap;
}
/* ONE の部分。欧文なので Poppins で組む */
.brand__name span { font-family: "Poppins", sans-serif; font-weight: 700; letter-spacing: .02em; }
/* ＋ はアクセント色。装飾なので、外しても名前として成立する */
.brand__name em { font-style: normal; color: var(--accent); font-family: "Poppins", sans-serif; font-weight: 700; }
.brand__ja { font-size: 9.5px; letter-spacing: .22em; color: var(--ink-50); font-weight: 500; }

.gnav { margin-left: auto; }
.gnav__list { display: flex; gap: 24px; }
.gnav__list a {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-70);
  white-space: nowrap;
  transition: color .2s var(--ease);
}
.gnav__list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.gnav__list a:hover { color: var(--navy-700); }
.gnav__list a:hover::after { transform: scaleX(1); transform-origin: left; }

.header__actions { display: flex; gap: 8px; }

.burger {
  display: none;
  width: 44px; height: 44px;
  margin-left: auto;
  border: 0; background: none; cursor: pointer; padding: 10px;
}
.burger span { display: block; height: 2px; background: var(--navy-800); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease); }
.burger span + span { margin-top: 6px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.drawer { border-top: 1px solid var(--line); background: #fff; padding: 12px 20px 24px; }
.drawer[hidden] { display: none; }
.drawer__list a { display: block; padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 500; }
.drawer__actions { display: flex; gap: 10px; margin-top: 18px; }
.drawer__actions .btn { flex: 1; }

/* =========================================================
   ① Hero
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  padding: 62px 0 76px;
  background: linear-gradient(180deg, var(--sand-050) 0%, #fff 62%);
}
.wave { position: absolute; pointer-events: none; }
.wave--hero { inset: 40px 0 auto 0; width: 100%; height: 620px; opacity: .12; }
.hero__inner { position: relative; z-index: 1; text-align: center; }

.hero__eyebrow {
  display: inline-block;
  padding: 5px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  color: var(--navy-600);
}

.hero__title {
  margin-top: 22px;
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .01em;
  color: var(--navy-900);
}

.hero__lead {
  margin-top: 22px;
  font-size: clamp(13px, 1.5vw, 15.5px);
  line-height: 2;
  letter-spacing: .02em;
  color: var(--ink-70);
}

.hero__btns { margin-top: 30px; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

.hero__points {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 26px;
}
.hero__points li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--navy-700);
}
.hero__points .ico { font-size: 15px; color: var(--accent); }

.hero__photos {
  display: grid;
  grid-template-columns: 1fr 1.28fr 1fr;
  align-items: center;
  gap: clamp(10px, 1.8vw, 20px);
  margin-top: 44px;
}
.hero__photo { position: relative; overflow: hidden; border-radius: var(--radius-m); box-shadow: var(--shadow-card); }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo--a { aspect-ratio: 4 / 5; }
.hero__photo--b { aspect-ratio: 5 / 4; }
.hero__photo--c { aspect-ratio: 4 / 5; }

/* ---------- 候補者検索バー ---------- */
.searchbar {
  margin-top: 34px;
  text-align: left;
  border-radius: var(--radius-m);
  background: linear-gradient(165deg, var(--navy-800), var(--navy-900));
  color: #fff;
  box-shadow: var(--shadow-pop);
  overflow: hidden;
}
.searchbar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 22px 12px;
}
.searchbar__title { display: flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 700; letter-spacing: .04em; }
.searchbar__count { font-size: 12px; letter-spacing: .03em; color: var(--steel-200); }
.searchbar__count strong { font-family: "Poppins", sans-serif; font-size: 21px; font-weight: 700; color: var(--accent); margin: 0 4px 0 6px; }
.searchbar__count span { font-size: 10.5px; margin-left: 4px; opacity: .8; }

.searchbar__body {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 1.5fr auto auto;
  gap: 10px;
  align-items: center;
  padding: 0 14px 16px;
}

.field {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid transparent;
  border-radius: var(--radius-s);
  height: 44px;
  padding-left: 12px;
  color: var(--ink-70);
}
.field > .ico { font-size: 16px; color: var(--steel-400); }
.field select,
.field input {
  width: 100%; height: 100%;
  border: 0; background: transparent;
  font-size: 13px;
  color: var(--ink);
  padding: 0 30px 0 8px;
}
.field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%234d7098' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 11px;
}
.field--text { padding-left: 14px; }
.field input::placeholder { color: var(--ink-50); }
.field input[type="search"]::-webkit-search-decoration,
.field input[type="search"]::-webkit-search-cancel-button { appearance: none; }

.check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .03em;
  color: var(--steel-200);
  cursor: pointer;
  white-space: nowrap;
  padding: 0 4px;
}
.check input {
  appearance: none;
  width: 16px; height: 16px;
  border: 1.5px solid var(--steel-400);
  border-radius: 3px;
  background: transparent;
  display: grid; place-content: center;
  cursor: pointer; margin: 0; flex: none;
}
.check input::after {
  content: "";
  width: 8px; height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) scale(0);
  transition: transform .15s var(--ease);
}
.check input:checked { background: var(--accent); border-color: var(--accent); }
.check input:checked::after { transform: rotate(-45deg) scale(1); }

.searchbar__submit { min-width: 112px; height: 44px; min-height: 44px; }

/* =========================================================
   Section common
   ========================================================= */
.section { padding: 84px 0 88px; position: relative; }
.section--soft { background: var(--sand-050); }

.sec-head { text-align: center; margin-bottom: 46px; }
.sec-head__en {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
}
.sec-head__ja {
  margin-top: 8px;
  font-size: clamp(22px, 3.2vw, 33px);
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.45;
  color: var(--navy-900);
}
.sec-head__note {
  margin: 16px auto 0;
  max-width: 44em;
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--ink-70);
}

.sec-more { margin-top: 44px; text-align: center; }

.disclaimer {
  margin-top: 26px;
  font-size: 11.5px;
  line-height: 1.8;
  color: var(--ink-50);
  text-align: center;
}

/* =========================================================
   ② 課題提起
   ========================================================= */
.problem__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.problem__item {
  position: relative;
  padding: 30px 22px 26px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--navy-700);
  border-radius: 0 0 var(--radius-m) var(--radius-m);
  background: #fff;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.problem__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.problem__num {
  position: absolute;
  top: 14px; right: 18px;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  color: var(--sand-100);
}
.problem__ico { width: 26px; height: 26px; color: var(--accent); fill: none; stroke: currentColor; }
.problem__ico use { stroke: currentColor; }
.problem__item h3 {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--navy-800);
}
.problem__item p {
  margin-top: 10px;
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--ink-70);
}

.problem__answer {
  margin-top: 40px;
  padding: 30px 24px;
  border-radius: var(--radius-m);
  background: var(--navy-800);
  color: #fff;
  text-align: center;
  font-size: clamp(13.5px, 1.6vw, 16px);
  line-height: 2;
  letter-spacing: .02em;
}
.problem__answer strong {
  color: var(--accent);
  font-weight: 700;
  border-bottom: 2px solid rgba(217, 130, 43, .5);
  padding-bottom: 2px;
}

/* =========================================================
   ③ サービスの特徴
   ========================================================= */
.feature__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.feature__item {
  position: relative;
  padding: 32px 30px 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.feature__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--line-strong); }
.feature__num {
  display: inline-grid;
  place-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy-700);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
}
.feature__title {
  margin-top: 16px;
  font-size: clamp(16px, 1.9vw, 19px);
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--navy-900);
}
.feature__text { margin-top: 10px; font-size: 13.5px; line-height: 1.95; color: var(--ink-70); }

/* =========================================================
   ④ 候補者カード
   ========================================================= */
.cand {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.cand:hover { border-color: var(--line-strong); box-shadow: var(--shadow-card); }

.cand__head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px 16px;
  background: linear-gradient(180deg, #f4f7fa, #eef2f7);
  border-bottom: 1px solid var(--line);
}
.cand__avatar {
  --av-bg: #dde6f0;
  width: 64px; height: 64px;
  flex: none;
  border-radius: 50%;
  background: var(--av-bg);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(11, 31, 56, .07);
}
.cand__avatar--b { --av-bg: #eee3d6; }
.cand__avatar--c { --av-bg: #e2e6ea; }
.cand__avatar--d { --av-bg: #f0e2e0; }
.cand__avatar svg { width: 100%; height: 100%; display: block; }

.cand__name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--navy-900);
  line-height: 1.4;
}
.cand__name span { font-size: 12px; font-weight: 500; color: var(--ink-50); }
.cand__office { margin-top: 3px; font-size: 11.5px; color: var(--ink-70); }

.cand__body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.cand__block + .cand__block { margin-top: 12px; }
.cand__block h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  color: var(--ink-50);
}
.cand__soft { margin-top: 5px; font-size: 12.5px; color: var(--ink); }

.tags { margin-top: 7px; display: flex; flex-wrap: wrap; gap: 5px; }
.tags li {
  padding: 3px 10px;
  border-radius: 4px;
  background: var(--navy-800);
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #fff;
}

.cand__cond { margin-top: 14px; display: grid; gap: 6px; padding-top: 14px; border-top: 1px dashed var(--line-strong); }
.cand__cond li { display: flex; align-items: flex-start; gap: 8px; font-size: 12.5px; line-height: 1.6; color: var(--ink-70); }
.cand__cond .ico { font-size: 15px; color: var(--steel-400); margin-top: 2px; }

.cand__comment {
  position: relative;
  margin-top: 14px;
  padding: 16px 16px 14px;
  border-radius: var(--radius-s);
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
}
.cand__comment > .ico {
  font-size: 17px;
  color: var(--accent);
  opacity: .55;
}
.cand__comment p { margin-top: 4px; font-size: 12.5px; line-height: 1.85; color: #4a3a26; }
.cand__comment cite { display: block; margin-top: 8px; font-size: 10.5px; font-style: normal; color: #8a7358; }

.cand__link {
  margin-top: auto;
  padding-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy-700);
  transition: gap .2s var(--ease), color .2s var(--ease);
}
.cand__link:hover { gap: 12px; color: var(--accent-dark); }

/* =========================================================
   Carousel
   ========================================================= */
.carousel { position: relative; padding: 0 56px; }
.carousel__viewport { overflow: hidden; padding: 14px 0 6px; }
.carousel__track { display: flex; gap: 24px; transition: transform .5s var(--ease); will-change: transform; align-items: stretch; }
.carousel__item {
  flex: 0 0 var(--card-w, 320px);
  width: var(--card-w, 320px);
  opacity: .5;
  transform: scale(.94);
  transform-origin: center center;
  transition: opacity .45s var(--ease), transform .45s var(--ease);
  display: flex;
}
.carousel__item > * { width: 100%; }
.carousel__item.is-active { opacity: 1; transform: scale(1); }
.carousel__item.is-active .cand { box-shadow: var(--shadow-pop); border-color: var(--line-strong); }

.carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px; height: 42px;
  display: grid; place-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: #fff;
  color: var(--navy-700);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.carousel__nav:hover { background: var(--navy-700); color: #fff; border-color: var(--navy-700); }
.carousel__nav .ico { font-size: 17px; }
.carousel__nav--prev { left: 0; }
.carousel__nav--prev .ico { transform: rotate(180deg); }
.carousel__nav--next { right: 0; }

.carousel__dots { margin-top: 24px; display: flex; justify-content: center; gap: 9px; }
.carousel__dots button {
  width: 8px; height: 8px;
  padding: 0; border: 0; border-radius: 50%;
  background: var(--line-strong);
  cursor: pointer;
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.carousel__dots button.is-active { background: var(--accent); transform: scale(1.3); }

/* =========================================================
   ⑤ ご利用の流れ
   ========================================================= */
.flow__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.flow__step {
  position: relative;
  padding: 26px 18px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  display: flex;
  flex-direction: column;
}
.flow__step::after {
  content: "";
  position: absolute;
  top: 50%; right: -11px;
  width: 10px; height: 10px;
  border-top: 2px solid var(--line-strong);
  border-right: 2px solid var(--line-strong);
  transform: translateY(-50%) rotate(45deg);
}
.flow__step:last-child::after { display: none; }

.flow__num {
  font-family: "Poppins", sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--steel-400);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.flow__num b { font-size: 26px; font-weight: 700; letter-spacing: 0; color: var(--navy-700); }
.flow__title { margin-top: 6px; font-size: 15px; font-weight: 700; letter-spacing: .02em; color: var(--navy-900); }
.flow__text { margin-top: 8px; font-size: 12px; line-height: 1.85; color: var(--ink-70); flex: 1; }
.flow__cost {
  margin-top: 14px;
  align-self: flex-start;
  padding: 3px 12px;
  border-radius: 999px;
  background: var(--sand-100);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ink-70);
}
.flow__cost--fee { background: var(--accent); color: #fff; }

/* =========================================================
   ⑥ 料金
   ========================================================= */
.price__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.price__card {
  padding: 32px 24px 28px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  display: flex;
  flex-direction: column;
}
.price__card--main {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: #fff;
  box-shadow: var(--shadow-pop);
}
.price__label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--ink-50);
}
.price__card--main .price__label { color: var(--steel-200); }

.price__value {
  margin-top: 10px;
  font-family: "Poppins", sans-serif;
  line-height: 1;
  color: var(--navy-900);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.price__value b { font-size: 54px; font-weight: 700; }
.price__value span { font-size: 18px; font-weight: 600; }
.price__card--main .price__value { color: var(--accent); }
.price__value--rate b { font-size: 46px; }

.price__unit { margin-top: 10px; font-size: 12.5px; font-weight: 700; color: #fff; }
.price__note {
  margin-top: 12px;
  font-size: 11.5px;
  line-height: 1.8;
  color: var(--ink-50);
}
.price__card--main .price__note { color: var(--steel-200); }

.price__foot {
  margin-top: 34px;
  padding: 26px 28px;
  border-radius: var(--radius-m);
  background: var(--sand-050);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.price__foot p { font-size: 13px; line-height: 1.9; color: var(--ink-70); }

/* =========================================================
   ⑦ 福祉事業所の方へ
   ========================================================= */
.cta { padding: 0 0 88px; }
.cta__box {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-l);
  background: linear-gradient(115deg, var(--navy-900) 0%, var(--navy-700) 58%, var(--navy-600) 100%);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 330px;
  align-items: stretch;
  min-height: 330px;
}
.wave--cta { inset: 0; width: 100%; height: 100%; opacity: .14; }

.cta__text { position: relative; z-index: 1; padding: 48px 20px 48px 52px; align-self: center; }
.cta__eyebrow {
  display: inline-block;
  padding: 4px 14px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
}
.cta__title { margin-top: 16px; font-size: clamp(21px, 2.9vw, 31px); font-weight: 700; line-height: 1.5; letter-spacing: .03em; }
.cta__lead { margin-top: 16px; font-size: 13px; line-height: 2; letter-spacing: .02em; color: #cfdcec; }
.cta__btns { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 14px; }

.cta__figure { position: relative; z-index: 1; }
.cta__figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 30%, #000 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 30%, #000 100%);
}

/* =========================================================
   ⑧ FAQ
   ========================================================= */
.faq__list { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 4px;
  border: 0;
  background: none;
  text-align: left;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--navy-900);
  cursor: pointer;
  transition: color .2s var(--ease);
}
.faq__q::before {
  content: "Q";
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  flex: none;
  margin-right: -8px;
}
.faq__q span { flex: 1; }
.faq__q .ico {
  font-size: 15px;
  color: var(--steel-400);
  transform: rotate(90deg);
  transition: transform .3s var(--ease), color .2s var(--ease);
}
.faq__q:hover { color: var(--navy-600); }
.faq__q[aria-expanded="true"] .ico { transform: rotate(-90deg); color: var(--accent); }

.faq__a { padding: 0 4px 22px 30px; }
.faq__a[hidden] { display: none; }
.faq__a p { font-size: 13.5px; line-height: 1.95; color: var(--ink-70); }

/* =========================================================
   ⑨ お問い合わせ
   ========================================================= */
.contact { background: var(--sand-050); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 36px;
  align-items: start;
}

.form {
  padding: 34px 34px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
}
.form__row + .form__row { margin-top: 20px; }
.form__row--half { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--navy-800);
  margin-bottom: 7px;
}
.req {
  padding: 1px 8px;
  border-radius: 3px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
}
.form input[type="text"],
.form input[type="tel"],
.form input[type="email"],
.form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-s);
  background: #fff;
  font-size: 13.5px;
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form textarea { resize: vertical; line-height: 1.8; }
.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: var(--navy-600);
  box-shadow: 0 0 0 3px rgba(29, 74, 124, .12);
}
.form ::placeholder { color: #b3bcc8; }

.field--form { border: 1px solid var(--line-strong); height: 46px; padding-left: 4px; }
.field--form select { padding-left: 12px; font-size: 13.5px; }

.check--form { margin-top: 22px; color: var(--ink-70); font-size: 13px; }
.check--form input { border-color: var(--line-strong); }
.check--form a { color: var(--navy-600); text-decoration: underline; }

.form__submit { width: 100%; margin-top: 20px; }

.contact__side { display: grid; gap: 18px; }
.contact__card {
  padding: 22px 24px 20px;
  background: var(--navy-800);
  color: #fff;
  border-radius: var(--radius-m);
}
.contact__card h3 { font-size: 12.5px; font-weight: 700; letter-spacing: .06em; color: var(--steel-200); }
.contact__tel {
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: .01em;
}
.contact__tel .ico { font-size: 21px; color: var(--accent); }
.contact__hours { margin-top: 4px; font-size: 11.5px; color: var(--steel-200); }

.contact__photo { border-radius: var(--radius-m); overflow: hidden; border: 1px solid var(--line); background: #fff; }
.contact__photo img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.contact__photo figcaption { padding: 10px 14px; font-size: 11px; line-height: 1.7; color: var(--ink-70); }

.contact__facts { display: grid; gap: 9px; }
.contact__facts li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--ink-70);
}
.contact__facts .ico { font-size: 15px; color: var(--accent); margin-top: 3px; }

/* =========================================================
   Footer
   ========================================================= */
.footer { background: var(--navy-900); color: #fff; padding: 52px 0 26px; }
.footer__inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px 56px;
}

.brand--footer .brand__name { color: #fff; }
.brand--footer .brand__name span { color: #fff; }
.brand--footer .brand__name em { color: var(--accent); }
.brand--footer .brand__ja { color: var(--steel-200); }

.footer__desc { margin-top: 16px; font-size: 12px; line-height: 1.9; color: var(--steel-200); }

.footer__legal dl { display: grid; gap: 10px; }
.footer__legal div { display: grid; grid-template-columns: 200px 1fr; gap: 16px; }
.footer__legal dt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--steel-400);
  padding-top: 1px;
}
.footer__legal dd { font-size: 12.5px; line-height: 1.7; color: #e7eef7; }

.fnav { grid-column: 1 / -1; padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, .14); }
.fnav__list { display: flex; flex-wrap: wrap; gap: 12px 26px; }
.fnav__list a { font-size: 12px; color: var(--steel-200); transition: color .2s var(--ease); }
.fnav__list a:hover { color: var(--accent); }

.footer__copy {
  margin-top: 26px;
  text-align: center;
  font-size: 10.5px;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .5);
}

/* =========================================================
   Scroll reveal
   ========================================================= */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.is-visible {
  opacity: 1; transform: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1180px) {
  .gnav__list { gap: 18px; }
  .header__inner { gap: 18px; }
}

@media (max-width: 1080px) {
  .searchbar__body { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .field--text { grid-column: span 2; }
  .check { justify-self: start; }
  .searchbar__submit { grid-column: 3; }

  .problem__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .flow__list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .flow__step:nth-child(3)::after { display: none; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__side { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; }
  .contact__facts { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  :root { --header-h: 64px; }
  .gnav, .header__actions { display: none; }
  .burger { display: block; }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__legal div { grid-template-columns: 1fr; gap: 2px; }

  .cta__box { grid-template-columns: 1fr; }
  .cta__text { padding: 40px 28px 8px; }
  .cta__figure { min-height: 220px; max-height: 250px; margin-top: 24px; }
  .cta__figure img {
    -webkit-mask-image: linear-gradient(to bottom, #000 55%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 55%, transparent 100%);
  }
}

@media (max-width: 760px) {
  .br-sp { display: inline; }

  .hero { padding: 40px 0 56px; }
  .hero__photos { grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 32px; }
  .hero__photo--a { aspect-ratio: 1 / 1; }
  .hero__photo--b { aspect-ratio: 1 / 1; }
  .hero__photo--c { display: none; }
  .hero__btns .btn { width: 100%; }
  .hero__points { flex-direction: column; align-items: flex-start; width: fit-content; margin-inline: auto; gap: 6px; }

  .searchbar__head { flex-direction: column; align-items: flex-start; gap: 2px; padding: 14px 16px 8px; }
  .searchbar__body { grid-template-columns: 1fr 1fr; padding: 0 12px 14px; }
  .field--text { grid-column: span 2; }
  .searchbar__submit { grid-column: span 2; }

  .section { padding: 56px 0 60px; }
  .sec-head { margin-bottom: 32px; }

  .problem__list { grid-template-columns: 1fr; }
  .problem__item h3 br { display: none; }
  .br-pc { display: none; }

  .feature__list { grid-template-columns: 1fr; }
  .feature__item { padding: 26px 22px 24px; }

  .carousel { padding: 0; }
  .carousel__nav { width: 36px; height: 36px; }
  .carousel__nav--prev { left: -4px; }
  .carousel__nav--next { right: -4px; }

  .flow__list { grid-template-columns: 1fr; gap: 12px; }
  .flow__step::after {
    top: auto; bottom: -11px; right: 50%;
    transform: translateX(50%) rotate(135deg);
  }
  .flow__step:last-child::after { display: none; }
  .flow__step:nth-child(3)::after { display: block; }

  .price__cards { grid-template-columns: 1fr; }
  .price__foot { flex-direction: column; align-items: stretch; text-align: center; }
  .price__foot .btn { width: 100%; }

  .contact__side { grid-template-columns: 1fr; }
  .form { padding: 24px 20px 24px; }
  .form__row--half { grid-template-columns: 1fr; gap: 20px; }

  .btn--pill { min-width: 0; width: 100%; }
  .cta__btns .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   ===============  下層ページ共通  ========================
   ========================================================= */

/* ---------- ページヘッダー ---------- */
.page-head {
  padding: 34px 0 40px;
  background: linear-gradient(180deg, var(--sand-050), #fff);
  border-bottom: 1px solid var(--line);
}
.page-head__en {
  margin-top: 18px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
}
.page-head__ja {
  margin-top: 6px;
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--navy-900);
}
.page-head__note {
  margin-top: 14px;
  font-size: 13.5px;
  line-height: 1.95;
  color: var(--ink-70);
}

/* ---------- パンくず ---------- */
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.breadcrumb li { font-size: 11.5px; color: var(--ink-50); }
.breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: var(--line-strong);
}
.breadcrumb a { color: var(--ink-70); transition: color .2s var(--ease); }
.breadcrumb a:hover { color: var(--accent-dark); text-decoration: underline; }
.breadcrumb--light li { color: rgba(255, 255, 255, .6); }
.breadcrumb--light a { color: rgba(255, 255, 255, .85); }
.breadcrumb--light a:hover { color: var(--accent); }
.breadcrumb--light li + li::before { color: rgba(255, 255, 255, .35); }

/* =========================================================
   候補者一覧ページ
   ========================================================= */
.list-section { padding-top: 44px; }
.list-layout {
  display: grid;
  grid-template-columns: 268px 1fr;
  gap: 36px;
  align-items: start;
}

/* ---------- 絞り込み ---------- */
.filter {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  max-height: calc(100vh - var(--header-h) - 40px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 22px 20px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
}
.filter__head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 0 14px;
  border: 0;
  border-bottom: 2px solid var(--navy-800);
  background: none;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--navy-900);
  cursor: default;
}
.filter__head span { flex: 1; }
.filter__chev { display: none; }
.filter__group { margin-top: 20px; }
.filter__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--navy-800);
  padding-left: 9px;
  border-left: 3px solid var(--accent);
  line-height: 1.4;
}
.filter__opts { margin-top: 10px; display: grid; gap: 2px; }

.opt {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 6px;
  border-radius: var(--radius-s);
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-70);
  cursor: pointer;
  transition: background-color .2s var(--ease);
}
.opt:hover { background: var(--sand-050); }
.opt input {
  appearance: none;
  width: 16px; height: 16px;
  flex: none;
  border: 1.5px solid var(--line-strong);
  border-radius: 3px;
  background: #fff;
  display: grid;
  place-content: center;
  cursor: pointer;
  margin: 0;
}
.opt input[type="radio"] { border-radius: 50%; }
.opt input::after {
  content: "";
  width: 8px; height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) scale(0);
  transition: transform .15s var(--ease);
}
.opt input[type="radio"]::after {
  width: 7px; height: 7px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  transform: scale(0);
}
.opt input:checked { background: var(--accent); border-color: var(--accent); }
.opt input[type="checkbox"]:checked::after { transform: rotate(-45deg) scale(1); }
.opt input[type="radio"]:checked::after { transform: scale(1); }
.opt span { flex: 1; }
.opt em {
  font-style: normal;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  color: var(--ink-50);
}

.filter__actions { margin-top: 24px; display: grid; gap: 8px; }
.filter__actions .btn { width: 100%; }

/* ---------- 一覧本体 ---------- */
.list-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.list-count { font-size: 13px; color: var(--ink-70); }
.list-count strong {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  color: var(--navy-900);
  margin: 0 2px;
}
.sort { display: flex; align-items: center; gap: 10px; }
.sort label { font-size: 12px; font-weight: 700; color: var(--ink-70); white-space: nowrap; }
.sort .field--form { height: 38px; min-width: 170px; }
.sort .field--form select { font-size: 12.5px; }

.cand-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.cand-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 0; }
.cand-grid > li { display: flex; }
.cand-grid > li > * { width: 100%; }

.cand__head { position: relative; }
.cand__badge {
  position: absolute;
  top: 10px; right: 12px;
  padding: 2px 9px;
  border-radius: 3px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
}
.cand__block h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  color: var(--ink-50);
}

/* ---------- ページャー ---------- */
.pager {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.pager__item {
  display: grid;
  place-content: center;
  min-width: 40px; height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-s);
  background: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-700);
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.pager__item:hover { background: var(--navy-700); color: #fff; border-color: var(--navy-700); }
.pager__item.is-current {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: #fff;
}
.pager__item--next .ico { font-size: 14px; }

.disclaimer--left { text-align: left; }

.cta__box--slim { grid-template-columns: 1fr; min-height: 0; }
.cta__box--slim .cta__text { padding: 44px 52px; text-align: center; }
.cta__box--slim .cta__btns { justify-content: center; }

/* =========================================================
   候補者詳細ページ
   ========================================================= */
.detail-hero {
  padding: 28px 0 34px;
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700) 70%, var(--navy-600));
  color: #fff;
}
.detail-hero__inner {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 132px 1fr 280px;
  gap: 28px;
  align-items: center;
}
.detail-hero__avatar {
  width: 132px; height: 132px;
  border-radius: 50%;
  overflow: hidden;
  background: #dde6f0;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, .16);
}
.detail-hero__avatar svg { width: 100%; height: 100%; display: block; }

.detail-hero__code {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--steel-200);
}
.detail-hero__name {
  margin-top: 4px;
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.35;
}
.detail-hero__name span { font-size: 15px; font-weight: 500; color: var(--steel-200); }
.detail-hero__office {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: #d3e0ee;
}
.detail-hero__office .ico { font-size: 15px; color: var(--accent); }

.tags--lg { margin-top: 14px; gap: 6px; }
.tags--lg li {
  padding: 5px 13px;
  font-size: 12px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .22);
}

.detail-hero__actions { display: grid; gap: 10px; }
.detail-hero__actions .btn { width: 100%; }
.detail-hero__free {
  font-size: 11px;
  text-align: center;
  color: var(--steel-200);
}

.detail-summary {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.detail-summary li {
  padding: 16px 18px;
  background: rgba(11, 31, 56, .35);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 10px;
  align-items: center;
}
.detail-summary .ico { grid-row: span 2; font-size: 20px; color: var(--accent); }
.detail-summary__label { font-size: 10.5px; letter-spacing: .08em; color: var(--steel-200); }
.detail-summary__value { font-size: 13.5px; font-weight: 700; line-height: 1.5; }

/* ---------- 詳細レイアウト ---------- */
.detail-section { padding-top: 52px; }
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 44px;
  align-items: start;
}

.block + .block { margin-top: 44px; }
.block__title {
  padding-bottom: 12px;
  border-bottom: 2px solid var(--navy-800);
  font-size: clamp(17px, 2.1vw, 21px);
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--navy-900);
}
.block__note { margin-top: 12px; font-size: 12.5px; color: var(--ink-50); }

/* できる作業 */
.skill-list { margin-top: 18px; display: grid; gap: 14px; }
.skill-list li {
  position: relative;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-s) var(--radius-s) 0;
}
.skill-list h3 { font-size: 15px; font-weight: 700; color: var(--navy-800); }
.skill-list p { margin-top: 6px; font-size: 13px; line-height: 1.9; color: var(--ink-70); }
.skill-list__level {
  display: inline-block;
  margin-top: 10px;
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--sand-100);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ink-70);
}

/* 使用ソフト */
.soft-list {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.soft-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  background: #fff;
}
.soft-list b { display: block; font-size: 14px; color: var(--navy-800); }
.soft-list span { display: block; margin-top: 3px; font-size: 12px; color: var(--ink-70); }

/* タイムライン */
.timeline { margin-top: 20px; display: grid; gap: 0; }
.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 18px;
  padding: 0 0 22px 0;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: 72px; top: 8px; bottom: -4px;
  width: 2px;
  background: var(--line);
}
.timeline li:last-child::before { display: none; }
.timeline li::after {
  content: "";
  position: absolute;
  left: 68px; top: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.timeline time {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-700);
  text-align: right;
  padding-top: 1px;
}
.timeline > li > div { padding-left: 16px; }
.timeline h3 { font-size: 14px; font-weight: 700; color: var(--navy-800); }
.timeline p { margin-top: 4px; font-size: 12.5px; line-height: 1.85; color: var(--ink-70); }

/* 推薦コメント（長文） */
.comment-lg {
  margin-top: 20px;
  padding: 28px 30px 24px;
  background: var(--accent-soft);
  border-radius: var(--radius-m);
  border-left: 4px solid var(--accent);
}
.comment-lg > .ico { font-size: 24px; color: var(--accent); opacity: .6; }
.comment-lg p { margin-top: 10px; font-size: 13.5px; line-height: 2.05; color: #463623; }
.comment-lg p + p { margin-top: 14px; }
.comment-lg footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(217, 130, 43, .28);
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.comment-lg__who { font-size: 12px; font-weight: 700; color: #7a5f38; }
.comment-lg__note { font-size: 11px; color: #9a8261; }

/* 合っている環境 / 配慮事項 */
.two-col {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.note-card {
  padding: 20px 22px;
  border-radius: var(--radius-m);
  border: 1px solid var(--line);
  background: #fff;
}
.note-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-800);
}
.note-card h3 .ico { font-size: 17px; }
.note-card--good { border-top: 3px solid var(--navy-700); }
.note-card--good h3 .ico { color: var(--navy-600); }
.note-card--care { border-top: 3px solid var(--accent); background: var(--sand-050); }
.note-card--care h3 .ico { color: var(--accent); }
.note-card ul { margin-top: 12px; display: grid; gap: 8px; }
.note-card li {
  position: relative;
  padding-left: 15px;
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--ink-70);
}
.note-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--line-strong);
}
.note-card__foot { margin-top: 12px; font-size: 11px; line-height: 1.7; color: var(--ink-50); }

/* 実習で試せること */
.trial-list { margin-top: 18px; display: grid; gap: 10px; }
.trial-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 18px;
  background: var(--sand-050);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  font-size: 13px;
  line-height: 1.8;
  color: var(--ink);
}
.trial-list span {
  flex: none;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  padding-top: 1px;
}

/* ---------- 詳細サイド ---------- */
.detail-side {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  display: grid;
  gap: 18px;
}
.side-card {
  padding: 22px 22px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
}
.side-card__title {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--navy-900);
}
.side-dl { margin-top: 14px; display: grid; gap: 9px; }
.side-dl div { display: grid; grid-template-columns: 84px 1fr; gap: 10px; }
.side-dl dt { font-size: 11px; font-weight: 700; color: var(--ink-50); padding-top: 2px; }
.side-dl dd { font-size: 12.5px; line-height: 1.6; color: var(--ink); }
.side-card__btn { width: 100%; margin-top: 18px; }
.side-card__note { margin-top: 10px; font-size: 11px; line-height: 1.75; color: var(--ink-50); }

.side-photo { margin-top: 14px; border-radius: var(--radius-s); overflow: hidden; }
.side-photo img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }
.side-card__text { margin-top: 12px; font-size: 12px; line-height: 1.85; color: var(--ink-70); }
.side-card__link {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy-700);
  transition: gap .2s var(--ease), color .2s var(--ease);
}
.side-card__link:hover { gap: 12px; color: var(--accent-dark); }

/* =========================================================
   福祉事業所向けページ
   ========================================================= */
.partner-hero {
  position: relative;
  overflow: hidden;
  padding: 30px 0 0;
  background: linear-gradient(118deg, var(--navy-900) 0%, var(--navy-700) 62%, var(--navy-600) 100%);
  color: #fff;
}
.partner-hero .wave--hero { inset: 0; height: 100%; opacity: .13; }
.partner-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 44px;
  align-items: end;
}
.partner-hero__text { padding: 0 0 56px; }
.partner-hero__eyebrow {
  display: inline-block;
  margin-top: 22px;
  padding: 5px 16px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .08em;
}
.partner-hero__title {
  margin-top: 18px;
  font-size: clamp(26px, 3.9vw, 42px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .03em;
}
.partner-hero__lead {
  margin-top: 18px;
  font-size: 13.5px;
  line-height: 2.05;
  letter-spacing: .02em;
  color: #cfdcec;
}
.partner-hero__btns { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px; }
.partner-hero__figure { align-self: end; }
.partner-hero__figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-m) var(--radius-m) 0 0;
}

/* ご用意いただくもの / 費用 */
.prep-layout {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 36px;
  align-items: start;
}
.prep__title {
  padding-bottom: 12px;
  border-bottom: 2px solid var(--navy-800);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--navy-900);
}
.prep__list { margin-top: 18px; display: grid; gap: 14px; }
.prep__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
}
.prep__num {
  display: grid;
  place-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--navy-700);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
}
.prep__list h4 { font-size: 14.5px; font-weight: 700; color: var(--navy-800); }
.prep__list p { margin-top: 5px; font-size: 12.5px; line-height: 1.9; color: var(--ink-70); }

.prep-cost {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  padding: 28px 26px 26px;
  background: var(--navy-800);
  color: #fff;
  border-radius: var(--radius-m);
  text-align: center;
  box-shadow: var(--shadow-pop);
}
.prep-cost .price__label { color: var(--steel-200); }
.prep-cost .price__value { color: var(--accent); }
.prep-cost__note { margin-top: 12px; font-size: 11.5px; line-height: 1.85; color: var(--steel-200); }
.prep-cost .contact__facts {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  text-align: left;
}
.prep-cost .contact__facts li { color: #d9e4f0; }
.prep-cost__btn { width: 100%; margin-top: 18px; min-width: 0; }

/* 掲載のイメージ */
.sample-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: start;
}
.sample-notes { display: grid; gap: 16px; }
.sample-notes li {
  padding: 20px 22px;
  background: var(--sand-050);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
}
.sample-notes h3 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy-800);
  padding-left: 12px;
  border-left: 3px solid var(--accent);
  line-height: 1.5;
}
.sample-notes p { margin-top: 8px; font-size: 12.5px; line-height: 1.9; color: var(--ink-70); }

/* =========================================================
   下層ページ レスポンシブ
   ========================================================= */
@media (max-width: 1080px) {
  .list-layout { grid-template-columns: 1fr; }
  .filter { position: static; max-height: none; overflow: visible; }
  .filter__head { cursor: pointer; }
  .filter__head:hover { color: var(--accent-dark); }
  .filter__chev {
    display: block;
    font-size: 15px;
    color: var(--steel-400);
    transform: rotate(90deg);
    transition: transform .3s var(--ease);
  }
  .filter__head[aria-expanded="true"] .filter__chev { transform: rotate(-90deg); color: var(--accent); }
  .filter__body { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 24px; }
  .filter__body[hidden] { display: none; }
  .filter__actions { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }

  .detail-layout { grid-template-columns: 1fr; }
  .detail-side { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail-hero__inner { grid-template-columns: 110px 1fr; }
  .detail-hero__avatar { width: 110px; height: 110px; }
  .detail-hero__actions { grid-column: 1 / -1; grid-template-columns: 1fr 1fr auto; align-items: center; }
  .detail-hero__free { grid-column: 1 / -1; text-align: left; }

  .prep-layout { grid-template-columns: 1fr; }
  .prep-cost { position: static; }
  .sample-layout { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .partner-hero__inner { grid-template-columns: 1fr 320px; gap: 28px; }
}

@media (max-width: 900px) {
  .cand-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partner-hero__inner { grid-template-columns: 1fr; }
  .partner-hero__text { padding-bottom: 8px; }
  .partner-hero__figure { max-width: 480px; margin-inline: auto; }
}

@media (max-width: 760px) {
  .page-head { padding: 22px 0 28px; }
  .list-section { padding-top: 28px; }
  .filter__body { grid-template-columns: 1fr; }
  .filter__actions { grid-template-columns: 1fr; }
  .list-bar { flex-direction: column; align-items: stretch; }
  .sort { justify-content: space-between; }

  .cand-grid, .cand-grid--3 { grid-template-columns: 1fr; }

  .detail-hero__inner { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 16px; }
  .detail-hero__avatar { width: 100px; height: 100px; }
  .detail-hero__office { justify-content: center; }
  .tags--lg { justify-content: center; }
  .detail-hero__actions { grid-template-columns: 1fr; width: 100%; }
  .detail-hero__free { text-align: center; }
  .detail-summary { grid-template-columns: 1fr; }
  .detail-section { padding-top: 34px; }

  .soft-list { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .timeline li { grid-template-columns: 54px 1fr; gap: 12px; }
  .timeline li::before { left: 60px; }
  .timeline li::after { left: 56px; }
  .timeline > li > div { padding-left: 12px; }
  .comment-lg { padding: 22px 20px 20px; }

  .detail-side { grid-template-columns: 1fr; }

  .cta__box--slim .cta__text { padding: 34px 24px; }
  .partner-hero__btns .btn { width: 100%; }
  .prep__list li { grid-template-columns: 1fr; gap: 10px; }
}

/* ---------- 管理画面へのログイン導線 ---------- */
.header__login {
  align-self: center;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-70);
  padding: 6px 4px;
  margin-right: 4px;
  border-bottom: 1px solid transparent;
  transition: color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.header__login:hover { color: var(--navy-700); border-bottom-color: var(--navy-700); }

/* =========================================================
   掲載中のお仕事（トップページ）
   ========================================================= */
.pubjob-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.pubjob-list > li { display: flex; }
.pubjob-list > li > * { width: 100%; }

.pubjob {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 22px 24px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  border-top: 3px solid var(--navy-700);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.pubjob:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--line-strong);
  border-top-color: var(--accent);
}

.pubjob__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.pubjob__cat {
  padding: 3px 11px;
  border-radius: 999px;
  background: var(--navy-800);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.7;
}
.pubjob__anon {
  font-size: 11px;
  line-height: 1.6;
  color: var(--ink-50);
  text-align: right;
}

.pubjob__title {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .01em;
  color: var(--navy-900);
}

.pubjob__meta {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line-strong);
  display: grid;
  gap: 6px;
}
.pubjob__meta li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-70);
}
.pubjob__meta .ico { font-size: 15px; color: var(--steel-400); margin-top: 2px; }

.pubjob .tags { margin-top: 14px; }

.pubjob__trial {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11.5px;
  line-height: 1.6;
  font-weight: 700;
  color: var(--accent-dark);
}
.pubjob__trial .ico { font-size: 14px; margin-top: 2px; }

.pubjob__empty {
  padding: 48px 20px;
  text-align: center;
  font-size: 13.5px;
  color: var(--ink-50);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
}

@media (max-width: 1080px) {
  .pubjob-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .pubjob-list { grid-template-columns: 1fr; }
}

/* ---------- ヘッダーの項目が増えたため、中間幅では補助リンクを省く ---------- */
@media (max-width: 1200px) {
  .header__login { display: none; }
  .header__actions .btn--ghost { display: none; }
  .gnav__list { gap: 16px; }
  .gnav__list a { font-size: 12.5px; }
}

/* =========================================================
   規約ページ（プライバシーポリシー・利用規約）
   ========================================================= */
.legal { padding: 46px 0 76px; }
.legal__lead {
  margin-top: 18px;
  padding: 18px 22px;
  border-radius: var(--radius-m);
  background: var(--sand-050);
  border: 1px solid var(--line);
  font-size: 13.5px;
  line-height: 1.95;
  color: var(--ink-70);
}
.legal__toc {
  margin-top: 26px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
}
.legal__toc-title { font-size: 13px; font-weight: 700; letter-spacing: .06em; color: var(--navy-900); }
.legal__toc ol { margin-top: 12px; display: grid; gap: 5px; counter-reset: lt; }
.legal__toc li { counter-increment: lt; }
.legal__toc a {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-70);
  transition: color .2s var(--ease);
}
.legal__toc a::before {
  content: counter(lt) ".";
  font-family: "Poppins", sans-serif;
  color: var(--accent);
  font-weight: 600;
  flex: none;
}
.legal__toc a:hover { color: var(--navy-700); text-decoration: underline; }

.legal__sec { margin-top: 40px; }
.legal__h2 {
  padding-bottom: 10px;
  border-bottom: 2px solid var(--navy-800);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--navy-900);
}
.legal__h3 {
  margin-top: 24px;
  padding-left: 11px;
  border-left: 3px solid var(--accent);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.5;
}
.legal__sec p { margin-top: 12px; font-size: 13.5px; line-height: 2; color: var(--ink); }
.legal__sec > p:first-of-type { margin-top: 16px; }

.legal__ol { margin-top: 12px; counter-reset: lo; display: grid; gap: 8px; }
.legal__ol > li {
  counter-increment: lo;
  position: relative;
  padding-left: 28px;
  font-size: 13.5px;
  line-height: 1.95;
}
.legal__ol > li::before {
  content: "(" counter(lo) ")";
  position: absolute;
  left: 0;
  color: var(--steel-400);
  font-weight: 700;
  font-size: 12.5px;
}
.legal__ul { margin-top: 12px; display: grid; gap: 7px; }
.legal__ul > li {
  position: relative;
  padding-left: 17px;
  font-size: 13.5px;
  line-height: 1.9;
}
.legal__ul > li::before {
  content: "";
  position: absolute;
  left: 2px; top: 11px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--steel-400);
}

.legal__table { width: 100%; border-collapse: collapse; margin-top: 14px; font-size: 13px; }
.legal__table th, .legal__table td {
  padding: 11px 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.8;
}
.legal__table th { background: var(--navy-800); color: #fff; font-size: 12px; font-weight: 700; }
.legal__table tbody th { background: var(--sand-050); color: var(--navy-800); white-space: nowrap; }

.legal__note {
  margin-top: 18px;
  padding: 16px 20px;
  border-radius: var(--radius-s);
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  font-size: 12.5px;
  line-height: 1.9;
  color: #7a5312;
}
.legal__note strong { color: #6b4610; }

.legal__contact {
  margin-top: 34px;
  padding: 22px 26px;
  border-radius: var(--radius-m);
  background: var(--navy-800);
  color: #fff;
}
.legal__contact-title { font-size: 14px; font-weight: 700; letter-spacing: .05em; }
.legal__contact-body { margin-top: 10px; font-size: 13px; line-height: 2; color: #d6e3f6; }
.legal__contact-body a { color: #f3b878; }

.legal__meta {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.9;
  color: var(--ink-50);
}

.legal__switch {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.legal__switch a {
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-70);
  transition: all .2s var(--ease);
}
.legal__switch a:hover { border-color: var(--navy-700); color: var(--navy-700); }
.legal__switch a.is-current { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }

@media (max-width: 760px) {
  .legal { padding: 30px 0 56px; }
  .legal__sec { margin-top: 30px; }
}

/* 迷惑投稿よけの入力欄。人の目にも読み上げにも触れないようにする */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
