@charset "UTF-8";
/* ============================================================================
   apprhythm.net Recruit Site — Light Theme
   AX営業採用LP のデザイントークンを共通CSS化したもの。
   全クラスに aprz- プレフィックスを付与し、複数ページで共有する。
   ============================================================================ */

/* ---------- 1. Design tokens ---------- */
:root {
  --bg:        #FFFFFF;
  --bg-2:      #F2F6FD;
  --panel:     #FFFFFF;
  --line:      rgba(24, 64, 140, 0.13);
  --blue:      #2E6BFF;
  --blue-d:    #1E52D6;
  --cyan:      #12B8CE;
  --ink:       #0E1B33;
  --muted:     #566489;
  --faint:     #93A1BD;
  --grad:      linear-gradient(100deg, #2E6BFF 0%, #12B8CE 100%);
  --grad-soft: linear-gradient(100deg, rgba(46, 107, 255, 0.09), rgba(18, 184, 206, 0.09));
  --radius:    20px;
  --maxw:      1160px;
  --ease:      cubic-bezier(.22, .61, .36, 1);
  --shadow:    0 10px 30px rgba(24, 60, 130, .07);
  --danger:    #C0261F;
  --ok:        #14663F;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* 固定ナビの高さぶんだけアンカー着地点を下げる。
     これが無いと #tech 等へジャンプした際に見出しがナビの下に隠れる。 */
  scroll-padding-top: 96px;
}
/* scroll-padding-top 非対応ブラウザ向けのフォールバック */
section[id], details[id] { scroll-margin-top: 96px; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-feature-settings: "palt" 1;
}
a { color: inherit; text-decoration: none; }
img, svg, iframe { max-width: 100%; display: block; border: 0; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 6px; }

.aprz-sr {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap;
}
.aprz-skip {
  position: absolute; top: -100px; left: 16px; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 999px; font-size: 14px;
}
.aprz-skip:focus { top: 14px; }

/* ---------- 2. 共通レイアウト ---------- */
.aprz-container { width: min(var(--maxw), 90%); margin-inline: auto; }
.aprz-sec { padding: 104px 0; position: relative; }
.aprz-sec--alt { background: var(--bg-2); }
.aprz-head { max-width: 720px; }
.aprz-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 20px;
}
.aprz-eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--cyan); }
.aprz-h2 {
  font-family: "Space Grotesk", "Noto Sans JP", sans-serif;
  font-size: clamp(27px, 4.2vw, 44px); font-weight: 600;
  line-height: 1.32; letter-spacing: 0.01em; margin-bottom: 18px; color: var(--ink);
}
.aprz-h3 {
  font-family: "Space Grotesk", "Noto Sans JP", sans-serif;
  font-size: clamp(19px, 2.4vw, 25px); font-weight: 600; line-height: 1.5; margin-bottom: 12px;
}
.aprz-lead { color: var(--muted); font-size: clamp(15px, 1.5vw, 17px); max-width: 660px; }
.aprz-lead + .aprz-lead { margin-top: 16px; }
.aprz-center { text-align: center; }
.aprz-center .aprz-head { max-width: 720px; margin-inline: auto; }
.aprz-center .aprz-lead { margin-inline: auto; }
.aprz-grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- 3. ボタン ---------- */
.aprz-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Space Grotesk", "Noto Sans JP", sans-serif;
  font-weight: 700; font-size: 15px; letter-spacing: 0.03em;
  padding: 16px 38px; border-radius: 999px; cursor: pointer; border: 1px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
}
.aprz-btn--primary { background: var(--grad); color: #fff; box-shadow: 0 10px 30px rgba(46, 107, 255, .28); }
.aprz-btn--primary::after { content: "→"; font-weight: 400; transition: transform .3s var(--ease); }
.aprz-btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 42px rgba(18, 184, 206, .34); }
.aprz-btn--primary:hover::after { transform: translateX(5px); }
.aprz-btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow); }
.aprz-btn--ghost:hover { transform: translateY(-3px); border-color: rgba(46, 107, 255, .45); }
.aprz-btn--sm { padding: 11px 24px; font-size: 14px; }

/* ---------- 4. ナビ ---------- */
.aprz-nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 44px);
  transition: background .35s, border-color .35s, padding .35s, box-shadow .35s;
  border-bottom: 1px solid transparent;
}
.aprz-nav.is-stuck {
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 24px rgba(24, 60, 130, .05);
  padding-top: 12px; padding-bottom: 12px;
}
.aprz-brand {
  display: flex; align-items: center; gap: 11px;
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 19px; color: var(--ink);
}
.aprz-brand svg { width: 30px; height: 30px; flex: 0 0 30px; }
.aprz-navlinks { display: flex; gap: 30px; align-items: center; }
.aprz-navlinks a { font-size: 14px; color: var(--muted); transition: color .25s; position: relative; }
.aprz-navlinks a::after {
  content: ""; position: absolute; left: 0; bottom: -5px;
  width: 0; height: 1px; background: var(--grad); transition: width .3s var(--ease);
}
.aprz-navlinks a:hover { color: var(--ink); }
.aprz-navlinks a:hover::after { width: 100%; }
.aprz-navcta {
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 14px;
  padding: 10px 22px; border-radius: 999px; background: var(--grad); color: #fff;
  box-shadow: 0 6px 18px rgba(46, 107, 255, .25); transition: transform .3s;
  white-space: nowrap;
}
.aprz-navcta:hover { transform: translateY(-2px); }
.aprz-navtog {
  display: none; width: 44px; height: 44px;
  border: 1px solid var(--line); border-radius: 12px; background: #fff;
  align-items: center; justify-content: center;
}
.aprz-navtog span,
.aprz-navtog span::before,
.aprz-navtog span::after { display: block; width: 20px; height: 2px; background: var(--ink); position: relative; }
.aprz-navtog span::before, .aprz-navtog span::after { content: ""; position: absolute; left: 0; }
.aprz-navtog span::before { top: -6px; }
.aprz-navtog span::after { top: 6px; }
.aprz-navlinks.is-open {
  display: flex; position: absolute; top: 100%; right: 20px;
  flex-direction: column; gap: 14px; align-items: flex-start;
  background: rgba(255, 255, 255, .97); border: 1px solid var(--line); border-radius: 16px;
  padding: 18px 26px; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 34px rgba(24, 60, 130, .12);
}

/* ---------- 5. HERO ---------- */
.aprz-hero {
  position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden;
  background:
    radial-gradient(46% 44% at 84% 10%, rgba(46, 107, 255, .10), transparent 62%),
    radial-gradient(42% 40% at 8% 88%, rgba(18, 184, 206, .08), transparent 62%),
    var(--bg);
}
.aprz-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .6;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 66px 66px;
  mask-image: radial-gradient(ellipse 74% 66% at 52% 42%, #000 8%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 74% 66% at 52% 42%, #000 8%, transparent 78%);
}
.aprz-hero__in { position: relative; z-index: 1; padding: 140px 0 96px; }
.aprz-hero__tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "JetBrains Mono", monospace; font-size: 12px; letter-spacing: 0.2em;
  color: var(--blue); background: #fff; border: 1px solid var(--line);
  padding: 8px 18px; border-radius: 999px; margin-bottom: 30px; box-shadow: var(--shadow);
}
.aprz-hero__tag .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan); animation: aprzPulse 2s infinite;
}
@keyframes aprzPulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.aprz-hero__title {
  font-family: "Space Grotesk", "Noto Sans JP", sans-serif;
  font-size: clamp(34px, 6.6vw, 68px); font-weight: 700;
  line-height: 1.24; letter-spacing: 0.01em; margin-bottom: 20px; color: var(--ink);
}
.aprz-hero__sub { font-size: clamp(16px, 2vw, 20px); color: var(--ink); font-weight: 500; margin-bottom: 14px; }
.aprz-hero__desc { color: var(--muted); font-size: clamp(14px, 1.6vw, 16px); max-width: 620px; margin-bottom: 22px; }
.aprz-hero__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.aprz-hero__badge {
  font-size: 13px; font-weight: 700; color: var(--blue);
  background: rgba(46, 107, 255, .07); border: 1px solid rgba(46, 107, 255, .26);
  border-radius: 999px; padding: 7px 17px;
}
.aprz-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- 6. 実績ストリップ ---------- */
.aprz-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 64px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.aprz-stat { background: #fff; padding: 30px 22px; text-align: center; }
.aprz-stat__v {
  font-family: "Space Grotesk", sans-serif; font-size: clamp(30px, 4vw, 44px);
  font-weight: 700; line-height: 1; letter-spacing: -0.02em;
}
.aprz-stat__l { font-size: 13px; color: var(--muted); margin-top: 10px; }

/* ---------- 7. 3本柱（シグネチャ） ---------- */
.aprz-pillars { display: grid; gap: 22px; margin-top: 56px; }
.aprz-pillar {
  display: grid; grid-template-columns: 74px 1fr; gap: 28px; align-items: start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 36px;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s;
}
.aprz-pillar::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--grad); }
.aprz-pillar:hover { transform: translateY(-4px); border-color: rgba(46, 107, 255, .4); }
.aprz-pillar__no { font-family: "Space Grotesk", sans-serif; font-size: 52px; font-weight: 700; line-height: 1; letter-spacing: -0.03em; }
.aprz-pillar__t { font-family: "Space Grotesk", "Noto Sans JP", sans-serif; font-size: clamp(19px, 2.4vw, 25px); font-weight: 600; margin-bottom: 12px; }
.aprz-pillar__d { font-size: 15px; color: var(--muted); }
.aprz-pillar__d strong { color: var(--ink); font-weight: 700; }

/* ---------- 8. カード群 ---------- */
.aprz-cards { display: grid; gap: 22px; margin-top: 56px; }
.aprz-cards--2 { grid-template-columns: repeat(2, 1fr); }
.aprz-cards--3 { grid-template-columns: repeat(3, 1fr); }
.aprz-cards--4 { grid-template-columns: repeat(4, 1fr); }
.aprz-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; box-shadow: var(--shadow);
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
}
.aprz-card:hover { transform: translateY(-6px); border-color: rgba(46, 107, 255, .42); box-shadow: 0 20px 46px rgba(24, 60, 130, .13); }
.aprz-card__ic {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 22px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-soft); border: 1px solid var(--line);
}
.aprz-card__ic svg { width: 26px; height: 26px; stroke: var(--blue); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.aprz-card__t { font-family: "Space Grotesk", "Noto Sans JP", sans-serif; font-size: 18px; font-weight: 600; margin-bottom: 11px; }
.aprz-card__d { font-size: 14px; color: var(--muted); line-height: 1.85; }
.aprz-card__d strong { color: var(--ink); font-weight: 700; }

/* ---------- 9. 定義ブロック＋数式（シグネチャ） ---------- */
.aprz-def { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.aprz-def__body p { color: var(--muted); margin-bottom: 18px; }
.aprz-def__body strong { color: var(--ink); font-weight: 700; }
.aprz-formula { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); text-align: center; }
.aprz-formula__row { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.aprz-formula__box {
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 16px;
  padding: 16px 22px; border-radius: 14px; border: 1px solid var(--line); background: var(--bg-2);
}
.aprz-formula__box.is-x { background: var(--grad); color: #fff; border-color: transparent; }
.aprz-formula__op { font-size: 24px; color: var(--blue); font-weight: 700; }
.aprz-formula__note { font-size: 13px; color: var(--faint); margin-top: 22px; font-family: "JetBrains Mono", monospace; letter-spacing: 0.08em; }

/* ---------- 10. 比較 ---------- */
.aprz-vs { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 56px; }
.aprz-vs__col { border-radius: var(--radius); padding: 36px 32px; border: 1px solid var(--line); }
.aprz-vs__col--old { background: var(--bg-2); }
.aprz-vs__col--new { background: #fff; box-shadow: 0 16px 40px rgba(24, 60, 130, .10); border-color: rgba(46, 107, 255, .28); position: relative; }
.aprz-vs__badge {
  position: absolute; top: -13px; left: 32px;
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 0.06em;
  color: #fff; background: var(--grad); padding: 6px 16px; border-radius: 999px;
}
.aprz-vs__h { font-family: "Space Grotesk", "Noto Sans JP", sans-serif; font-size: 20px; font-weight: 600; margin-bottom: 20px; }
.aprz-vs__col--old .aprz-vs__h { color: var(--muted); }
.aprz-vs__list { display: grid; gap: 14px; }
.aprz-vs__list li { display: flex; gap: 12px; font-size: 14.5px; color: var(--muted); }
.aprz-vs__list li::before { content: "—"; color: var(--faint); flex: 0 0 auto; }
.aprz-vs__col--new .aprz-vs__list li { color: var(--ink); }
.aprz-vs__col--new .aprz-vs__list li::before { content: "✓"; color: var(--blue); font-weight: 700; }

/* ---------- 11. STEP ---------- */
.aprz-steps { margin-top: 60px; position: relative; max-width: 800px; margin-inline: auto; }
.aprz-steps::before {
  content: ""; position: absolute; left: 29px; top: 12px; bottom: 12px; width: 2px;
  background: linear-gradient(180deg, var(--blue), var(--cyan)); opacity: .5;
}
.aprz-step { display: flex; gap: 28px; align-items: flex-start; position: relative; padding-bottom: 40px; }
.aprz-step:last-child { padding-bottom: 0; }
.aprz-step__n {
  flex: 0 0 60px; height: 60px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: #fff; border: 1px solid rgba(46, 107, 255, .4); box-shadow: 0 6px 18px rgba(46, 107, 255, .16);
  font-family: "JetBrains Mono", monospace; position: relative; z-index: 1;
}
.aprz-step__n small { font-size: 8px; letter-spacing: 0.18em; color: var(--muted); }
.aprz-step__n strong { font-size: 20px; color: var(--blue); }
.aprz-step__b { flex: 1; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px 26px; box-shadow: var(--shadow); }
.aprz-step__t { font-family: "Space Grotesk", "Noto Sans JP", sans-serif; font-size: 17px; font-weight: 600; margin-bottom: 7px; }
.aprz-step__d { font-size: 14px; color: var(--muted); }

/* ---------- 12. 人物像 ---------- */
.aprz-persona { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-top: 48px; max-width: 900px; margin-inline: auto; }
.aprz-persona li {
  display: flex; align-items: center; gap: 15px; background: #fff;
  border: 1px solid var(--line); border-radius: 14px; padding: 19px 24px;
  font-weight: 500; font-size: 15px; box-shadow: var(--shadow);
  transition: border-color .3s, transform .3s;
}
.aprz-persona li:hover { border-color: rgba(46, 107, 255, .4); transform: translateX(4px); }
.aprz-persona .ck {
  flex: 0 0 26px; height: 26px; border-radius: 50%; background: var(--grad);
  display: flex; align-items: center; justify-content: center; font-size: 13px; color: #fff;
}

/* ---------- 13. キャリア ---------- */
.aprz-career { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.aprz-career__c {
  border-radius: var(--radius); padding: 34px 30px;
  background: linear-gradient(160deg, rgba(46, 107, 255, .06), #fff);
  border: 1px solid var(--line); box-shadow: var(--shadow);
  transition: transform .4s var(--ease), border-color .4s;
}
.aprz-career__c:hover { transform: translateY(-6px); border-color: rgba(46, 107, 255, .4); }
.aprz-career__y { font-family: "JetBrains Mono", monospace; font-size: 13px; letter-spacing: 0.16em; color: var(--cyan); margin-bottom: 12px; }
.aprz-career__t { font-family: "Space Grotesk", "Noto Sans JP", sans-serif; font-size: 19px; font-weight: 600; margin-bottom: 11px; }
.aprz-career__d { font-size: 14px; color: var(--muted); }
.aprz-career__bar { height: 4px; border-radius: 2px; background: var(--grad); margin-top: 22px; }
.aprz-career__c:nth-child(1) .aprz-career__bar { width: 33%; }
.aprz-career__c:nth-child(2) .aprz-career__bar { width: 66%; }
.aprz-career__c:nth-child(3) .aprz-career__bar { width: 100%; }

/* ---------- 14. 取引先 ---------- */
.aprz-clients { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 48px; }
.aprz-clients li {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 18px 22px; font-size: 14.5px; font-weight: 500; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px;
}
.aprz-clients li::before { content: ""; flex: 0 0 6px; height: 6px; border-radius: 50%; background: var(--grad); }

/* ---------- 15. 募集要項 ---------- */
.aprz-jobs { margin-top: 56px; display: grid; gap: 18px; }
.aprz-job {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); transition: border-color .3s;
}
.aprz-job[open] { border-color: rgba(46, 107, 255, .4); }
.aprz-job__sum {
  cursor: pointer; list-style: none; display: flex; align-items: center; gap: 18px;
  padding: 26px 30px; font-weight: 700; font-size: clamp(15px, 2vw, 17px);
  font-family: "Space Grotesk", "Noto Sans JP", sans-serif;
}
.aprz-job__sum::-webkit-details-marker { display: none; }
.aprz-job__no { font-family: "JetBrains Mono", monospace; color: var(--cyan); font-size: 13px; letter-spacing: 0.12em; flex: 0 0 auto; }
.aprz-job__pl { margin-left: auto; width: 22px; height: 22px; position: relative; flex: 0 0 22px; }
.aprz-job__pl::before, .aprz-job__pl::after {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: var(--blue);
}
.aprz-job__pl::before { width: 14px; height: 2px; }
.aprz-job__pl::after { width: 2px; height: 14px; transition: transform .3s var(--ease); }
.aprz-job[open] .aprz-job__pl::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.aprz-job__body { padding: 0 30px 32px; }

.aprz-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.aprz-tag {
  font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 999px;
  background: rgba(46, 107, 255, .07); color: var(--blue); border: 1px solid rgba(46, 107, 255, .22);
}

.aprz-tbl { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: #fff; }
.aprz-tbl__r { display: grid; grid-template-columns: 200px 1fr; border-bottom: 1px solid var(--line); }
.aprz-tbl__r:last-child { border-bottom: none; }
.aprz-tbl__k {
  padding: 20px 26px; font-family: "Space Grotesk", "Noto Sans JP", sans-serif;
  font-weight: 700; font-size: 14.5px; color: var(--cyan);
  background: rgba(46, 107, 255, .045); border-right: 1px solid var(--line);
}
.aprz-tbl__v { padding: 20px 26px; font-size: 14.5px; }
.aprz-tbl__v small { display: block; color: var(--muted); font-size: 13px; margin-top: 6px; }
.aprz-tbl__v p + p { margin-top: 14px; }
.aprz-tbl__v ul { display: grid; gap: 8px; margin-top: 8px; }
.aprz-tbl__v ul li { display: flex; gap: 10px; color: var(--muted); }
.aprz-tbl__v ul li::before { content: ""; flex: 0 0 5px; height: 5px; margin-top: .85em; border-radius: 50%; background: var(--cyan); }
.aprz-tbl__v strong { font-weight: 700; }

/* ---------- 16. FAQ ---------- */
.aprz-faq { margin-top: 56px; max-width: 860px; margin-inline: auto; display: grid; gap: 14px; }
.aprz-faq details { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); transition: border-color .3s; }
.aprz-faq details[open] { border-color: rgba(46, 107, 255, .4); }
.aprz-faq summary { cursor: pointer; list-style: none; display: flex; align-items: center; gap: 16px; padding: 22px 26px; font-weight: 700; font-size: 15px; color: var(--ink); }
.aprz-faq summary::-webkit-details-marker { display: none; }
.aprz-faq summary .q { font-family: "JetBrains Mono", monospace; color: var(--cyan); font-size: 13px; flex: 0 0 auto; }
.aprz-faq summary .pl { margin-left: auto; width: 22px; height: 22px; position: relative; flex: 0 0 22px; }
.aprz-faq summary .pl::before, .aprz-faq summary .pl::after {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: var(--blue);
}
.aprz-faq summary .pl::before { width: 14px; height: 2px; }
.aprz-faq summary .pl::after { width: 2px; height: 14px; transition: transform .3s var(--ease); }
.aprz-faq details[open] summary .pl::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.aprz-faq__a { padding: 0 26px 24px 62px; font-size: 14px; color: var(--muted); }

/* ---------- 17. ニュース ---------- */
.aprz-news { margin-top: 48px; border-top: 1px solid var(--line); }
.aprz-news__item { border-bottom: 1px solid var(--line); }
.aprz-news__link { display: grid; grid-template-columns: 118px 92px 1fr; gap: 6px 20px; align-items: baseline; padding: 22px 6px; transition: background .25s; }
.aprz-news__link:hover { background: rgba(46, 107, 255, .035); }
/* 記事ページ未作成の項目はリンクにしないため、ホバー演出も出さない */
.aprz-news__link.is-plain { cursor: default; }
.aprz-news__link.is-plain:hover { background: transparent; }
.aprz-news__link.is-plain:hover .aprz-news__title { color: var(--ink); }
.aprz-news__date { font-family: "JetBrains Mono", monospace; font-size: 13px; letter-spacing: 0.06em; color: var(--faint); }
.aprz-news__cat {
  font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: 0.1em;
  color: var(--cyan); border: 1px solid rgba(18, 184, 206, .35); border-radius: 999px;
  padding: 2px 10px; justify-self: start;
}
.aprz-news__title { font-size: 15px; font-weight: 500; line-height: 1.7; transition: color .25s; }
.aprz-news__link:hover .aprz-news__title { color: var(--blue); }
.aprz-news__status { padding: 28px 6px; color: var(--muted); font-size: 14px; }

/* ---------- 18. オフィス・アクセス ---------- */
.aprz-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 48px; }
.aprz-gallery img { width: 100%; height: 230px; object-fit: cover; border-radius: 16px; border: 1px solid var(--line); }
.aprz-map { width: 100%; height: 400px; border-radius: var(--radius); margin-top: 22px; border: 1px solid var(--line); filter: grayscale(.2); }
.aprz-figure { margin-top: 48px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.aprz-figure img { width: 100%; }

/* ---------- 19. 最終CTA ---------- */
.aprz-final {
  text-align: center; padding: 140px 0; position: relative; overflow: hidden;
  background: radial-gradient(55% 60% at 50% 100%, rgba(46, 107, 255, .10), transparent 70%), var(--bg-2);
}
.aprz-final__t { font-family: "Space Grotesk", "Noto Sans JP", sans-serif; font-size: clamp(28px, 5vw, 52px); font-weight: 700; line-height: 1.4; margin-bottom: 22px; }
.aprz-final__d { color: var(--muted); max-width: 560px; margin: 0 auto 40px; }
.aprz-final__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- 20. Footer ---------- */
.aprz-foot { border-top: 1px solid var(--line); padding: 56px 0 36px; }
.aprz-foot__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.aprz-foot__brand { display: flex; align-items: center; gap: 11px; font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 20px; margin-bottom: 16px; }
.aprz-foot__brand svg { width: 30px; height: 30px; flex: 0 0 30px; }
.aprz-foot p { color: var(--muted); font-size: 14px; }
.aprz-foot h4 { font-family: "JetBrains Mono", monospace; font-size: 12px; letter-spacing: 0.14em; color: var(--faint); text-transform: uppercase; margin-bottom: 16px; font-weight: 500; }
.aprz-foot ul { display: grid; gap: 11px; }
.aprz-foot ul a { color: var(--muted); font-size: 14px; transition: color .25s; }
.aprz-foot ul a:hover { color: var(--ink); }
.aprz-foot__bottom { border-top: 1px solid var(--line); padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.aprz-foot__bottom p { font-family: "JetBrains Mono", monospace; font-size: 12px; color: var(--faint); letter-spacing: 0.05em; }

/* ---------- 21. フォーム ---------- */
.aprz-formwrap {
  max-width: 760px; margin-inline: auto; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(28px, 5vw, 52px); box-shadow: var(--shadow); margin-top: 48px;
}
.aprz-field { margin-bottom: 26px; }
.aprz-label {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-family: "Space Grotesk", "Noto Sans JP", sans-serif;
  font-weight: 700; font-size: 14.5px; margin-bottom: 9px;
}
.aprz-req { font-family: "JetBrains Mono", monospace; font-size: 10px; letter-spacing: 0.08em; color: #fff; background: var(--grad); border-radius: 999px; padding: 3px 9px; }
.aprz-input, .aprz-textarea, .aprz-select {
  width: 100%; padding: 15px 18px; font: inherit; font-size: 15px; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  transition: border-color .25s, box-shadow .25s;
}
.aprz-input:focus, .aprz-textarea:focus, .aprz-select:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(46, 107, 255, .12);
}
.aprz-textarea { min-height: 190px; resize: vertical; line-height: 1.8; }
.aprz-error { display: block; margin-top: 7px; font-size: 13px; font-weight: 700; color: var(--danger); }
.aprz-input.is-error, .aprz-textarea.is-error, .aprz-select.is-error { border-color: var(--danger); }
.aprz-check { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--muted); line-height: 1.8; font-weight: 400; }
.aprz-check input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 7px; accent-color: var(--blue); }
.aprz-alert { padding: 18px 24px; border-radius: 14px; margin-bottom: 30px; font-size: 14.5px; font-weight: 500; }
.aprz-alert--error { background: #FDECEA; color: #8C1E18; border: 1px solid #F2C4C0; }
.aprz-alert--ok { background: #E9F6EF; color: var(--ok); border: 1px solid #BEE3D0; }
.aprz-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- 22. reveal ---------- */
.aprz-rv { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.aprz-rv.is-vis { opacity: 1; transform: none; }
[data-d="1"] { transition-delay: .08s; }
[data-d="2"] { transition-delay: .16s; }
[data-d="3"] { transition-delay: .24s; }
[data-d="4"] { transition-delay: .32s; }

/* ---------- 25. 記事ページ ---------- */
.aprz-art { padding: 148px 0 96px; }
.aprz-art__wrap { width: min(760px, 90%); margin-inline: auto; }
.aprz-art__meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.aprz-art__date { font-family: "JetBrains Mono", monospace; font-size: 13px; letter-spacing: 0.08em; color: var(--faint); }
.aprz-art__cat {
  font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: 0.1em;
  color: var(--cyan); border: 1px solid rgba(18, 184, 206, .35);
  border-radius: 999px; padding: 3px 12px;
}
.aprz-art__title {
  font-family: "Space Grotesk", "Noto Sans JP", sans-serif;
  font-size: clamp(25px, 3.8vw, 40px); font-weight: 600;
  line-height: 1.4; letter-spacing: 0.01em; margin-bottom: 28px;
}
.aprz-art__hero { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-bottom: 44px; }
.aprz-art__hero img { width: 100%; }

/* 本文のタイポグラフィ */
.aprz-art__body { font-size: 16px; line-height: 2.05; color: var(--ink); }
.aprz-art__body > * + * { margin-top: 24px; }
.aprz-art__body p { color: var(--muted); }
.aprz-art__body strong { color: var(--ink); font-weight: 700; }
.aprz-art__body a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.aprz-art__body a:hover { opacity: .75; }
.aprz-art__body h2 {
  font-family: "Space Grotesk", "Noto Sans JP", sans-serif;
  font-size: clamp(20px, 2.8vw, 27px); font-weight: 600; line-height: 1.5;
  margin-top: 56px; padding-left: 18px; border-left: 4px solid transparent;
  border-image: var(--grad) 1; border-image-slice: 1;
}
.aprz-art__body h3 {
  font-family: "Space Grotesk", "Noto Sans JP", sans-serif;
  font-size: clamp(17px, 2.2vw, 21px); font-weight: 600; line-height: 1.55;
  margin-top: 44px; color: var(--ink);
}
.aprz-art__body h4 { font-size: 16px; font-weight: 700; margin-top: 34px; }
.aprz-art__body ul, .aprz-art__body ol { display: grid; gap: 11px; padding-left: 4px; }
.aprz-art__body ul li { display: flex; gap: 13px; color: var(--muted); }
.aprz-art__body ul li::before {
  content: ""; flex: 0 0 7px; height: 7px; margin-top: .82em;
  border-radius: 50%; background: var(--grad);
}
.aprz-art__body ol { counter-reset: aprzol; }
.aprz-art__body ol li { display: flex; gap: 13px; color: var(--muted); counter-increment: aprzol; }
.aprz-art__body ol li::before {
  content: counter(aprzol); flex: 0 0 22px; height: 22px; margin-top: .38em;
  border-radius: 50%; background: var(--grad-soft); border: 1px solid var(--line);
  color: var(--blue); font-family: "JetBrains Mono", monospace;
  font-size: 11px; display: flex; align-items: center; justify-content: center;
}
.aprz-art__body li ul, .aprz-art__body li ol { margin-top: 10px; }
.aprz-art__body blockquote {
  background: var(--bg-2); border-radius: 16px; padding: 26px 30px;
  border-left: 4px solid var(--cyan); color: var(--muted); font-size: 15px;
}
.aprz-art__body blockquote p { margin: 0; }
.aprz-art__body blockquote p + p { margin-top: 14px; }
.aprz-art__body figure { margin: 0; }
.aprz-art__body img { width: 100%; height: auto; border-radius: 16px; border: 1px solid var(--line); }
.aprz-art__body figcaption { margin-top: 10px; font-size: 13px; color: var(--faint); text-align: center; }
.aprz-art__body hr { border: 0; height: 1px; background: var(--line); margin: 48px 0; }
.aprz-art__body pre {
  background: var(--ink); color: #E6EDF7; border-radius: 14px; padding: 22px 24px;
  overflow-x: auto; font-family: "JetBrains Mono", monospace; font-size: 13.5px; line-height: 1.8;
}
.aprz-art__body code {
  font-family: "JetBrains Mono", monospace; font-size: .92em;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 5px; padding: 2px 7px;
}
.aprz-art__body pre code { background: none; border: 0; padding: 0; color: inherit; }
.aprz-art__tablewrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; }
.aprz-art__body table { border-collapse: collapse; width: 100%; font-size: 14.5px; min-width: 480px; }
.aprz-art__body th, .aprz-art__body td { padding: 14px 20px; border-bottom: 1px solid var(--line); text-align: left; }
.aprz-art__body th { background: rgba(46, 107, 255, .045); font-weight: 700; color: var(--ink); white-space: nowrap; }
.aprz-art__body td { color: var(--muted); }
.aprz-art__body tr:last-child th, .aprz-art__body tr:last-child td { border-bottom: 0; }

/* 記事フッタ：前後記事と導線 */
.aprz-art__foot { margin-top: 72px; padding-top: 40px; border-top: 1px solid var(--line); }
.aprz-art__nav { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 40px; }
.aprz-art__navlink {
  border: 1px solid var(--line); border-radius: 16px; padding: 20px 24px;
  box-shadow: var(--shadow); transition: border-color .3s, transform .3s; background: #fff;
}
.aprz-art__navlink:hover { border-color: rgba(46, 107, 255, .4); transform: translateY(-3px); }
.aprz-art__navlink small {
  display: block; font-family: "JetBrains Mono", monospace;
  font-size: 11px; letter-spacing: 0.12em; color: var(--cyan); margin-bottom: 8px;
}
.aprz-art__navlink span { font-size: 14px; font-weight: 500; line-height: 1.65; }
.aprz-art__navlink--next { text-align: right; }
.aprz-art__cta {
  background: var(--bg-2); border-radius: var(--radius); padding: 40px 36px; text-align: center;
}
.aprz-art__cta h2 {
  font-family: "Space Grotesk", "Noto Sans JP", sans-serif;
  font-size: clamp(19px, 2.4vw, 24px); font-weight: 600; margin-bottom: 12px;
}
.aprz-art__cta p { color: var(--muted); font-size: 14.5px; margin-bottom: 26px; }
.aprz-art__cta .aprz-final__cta { justify-content: center; }

@media (max-width: 860px) {
  .aprz-art { padding: 118px 0 72px; }
  .aprz-art__nav { grid-template-columns: 1fr; }
  .aprz-art__navlink--next { text-align: left; }
  .aprz-art__body h2 { margin-top: 44px; }
}

/* ---------- 26. ニュース一覧のカテゴリ絞り込み ---------- */
.aprz-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.aprz-filter button {
  font-family: "JetBrains Mono", monospace; font-size: 12px; letter-spacing: 0.1em;
  padding: 9px 20px; border-radius: 999px; border: 1px solid var(--line);
  background: #fff; color: var(--muted); transition: all .25s var(--ease);
}
.aprz-filter button:hover { border-color: rgba(46, 107, 255, .4); color: var(--ink); }
.aprz-filter button[aria-pressed="true"] { background: var(--grad); color: #fff; border-color: transparent; }
.aprz-news__item[hidden] { display: none; }

/* ---------- 23. サブページ用の上部余白 ---------- */
.aprz-pagetop { padding-top: 148px; }

/* ---------- 24. レスポンシブ ---------- */
@media (max-width: 1000px) {
  .aprz-cards--4 { grid-template-columns: repeat(2, 1fr); }
  .aprz-def { grid-template-columns: 1fr; gap: 36px; }
  .aprz-clients { grid-template-columns: repeat(2, 1fr); }
  .aprz-foot__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .aprz-navlinks { display: none; }
  .aprz-navtog { display: flex; }
  .aprz-stats { grid-template-columns: repeat(2, 1fr); }
  .aprz-cards--3, .aprz-cards--2 { grid-template-columns: 1fr; }
  .aprz-vs { grid-template-columns: 1fr; }
  .aprz-career { grid-template-columns: 1fr; }
  .aprz-sec { padding: 76px 0; }
  .aprz-final { padding: 100px 0; }
  .aprz-gallery { grid-template-columns: 1fr; }
  .aprz-gallery img { height: 210px; }
  .aprz-news__link { grid-template-columns: 1fr; }
  .aprz-hero { min-height: auto; }
  .aprz-hero__in { padding: 124px 0 76px; }
  .aprz-pagetop { padding-top: 120px; }
  html { scroll-padding-top: 80px; }
  section[id], details[id] { scroll-margin-top: 80px; }
}
@media (max-width: 560px) {
  .aprz-cards--4 { grid-template-columns: 1fr; }
  .aprz-persona { grid-template-columns: 1fr; }
  .aprz-pillar { grid-template-columns: 1fr; gap: 14px; padding: 30px 26px; }
  .aprz-pillar__no { font-size: 40px; }
  .aprz-tbl__r { grid-template-columns: 1fr; }
  .aprz-tbl__k { border-right: none; border-bottom: 1px solid var(--line); }
  .aprz-hero__cta, .aprz-final__cta { flex-direction: column; }
  .aprz-hero__cta .aprz-btn, .aprz-final__cta .aprz-btn { justify-content: center; }
  .aprz-clients { grid-template-columns: 1fr; }
  .aprz-foot__grid { grid-template-columns: 1fr; gap: 32px; }
  .aprz-job__sum, .aprz-job__body { padding-left: 22px; padding-right: 22px; }
  .aprz-faq__a { padding-left: 26px; }
  .aprz-brand { font-size: 17px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .aprz-rv { opacity: 1 !important; transform: none !important; }
}
@media print {
  .aprz-nav, .aprz-final { display: none !important; }
  .aprz-hero::before { display: none !important; }
  body { color: #000; background: #fff; }
}
