@charset "UTF-8";
/* ============================================================
   オリジナルデザイン  信頼感カラー(ネイビー×ホワイト×オレンジCTA)
   ============================================================ */

:root {
  --navy-900: #0e2237;
  --navy-800: #16324c;
  --navy-700: #1f4468;
  --navy-100: #e8eef5;
  --blue-500: #2f74b5;
  --blue-100: #e2edf7;
  --teal-500: #0e8f85;
  --teal-100: #e0f2f0;
  --accent:      #ef7d1a;
  --accent-dark: #d96a08;
  --accent-100:  #fdeedd;
  --bg:    #f5f7fa;
  --card:  #ffffff;
  --line:  #dbe3ec;
  --text:  #22303c;
  --muted: #5f7286;
  --danger: #d64545;
  --radius: 10px;
  --shadow: 0 2px 10px rgba(14, 34, 55, .08);
  --shadow-hover: 0 6px 20px rgba(14, 34, 55, .14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  font-size: 15px;
}

img { max-width: 100%; height: auto; }
a { color: var(--blue-500); text-decoration: none; }
a:hover { opacity: .85; }
ul, ol { padding-left: 1.4em; }

/* ---------------- ボタン ---------------- */
.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: transform .15s, box-shadow .15s, background .15s;
  line-height: 1.5;
}
.btn:hover { transform: translateY(-1px); opacity: 1; }
.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 3px 10px rgba(239, 125, 26, .35);
}
.btn-accent:hover { box-shadow: 0 6px 16px rgba(239, 125, 26, .45); }
.btn-outline { background: #fff; border-color: var(--navy-800); color: var(--navy-800); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,.0); color: var(--navy-800); font-size: 13px; }
.btn-line { background: #06c755; color: #fff; box-shadow: 0 3px 10px rgba(6, 199, 85, .3); }
.btn-tel { background: var(--navy-800); color: #fff; box-shadow: 0 3px 10px rgba(22, 50, 76, .3); }
.btn-lg { padding: 15px 34px; font-size: 16px; }
.btn-block { display: block; width: 100%; }

/* ---------------- ヘッダー(追従固定) ---------------- */
.site-header {
  background: #fff; box-shadow: 0 1px 0 var(--line);
  position: sticky; top: 0; z-index: 50;
}
/* 固定ヘッダーの高さぶん、ページ内ジャンプ位置を下げる */
[data-nav] { scroll-margin-top: 130px; }
.header-inner {
  max-width: 1120px; margin: 0 auto; padding: 12px 16px;
  display: flex; align-items: center; gap: 16px;
}
.logo { display: flex; align-items: center; gap: 10px; color: var(--navy-900); }
.logo-mark {
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy-800), var(--blue-500));
  color: #fff; font-weight: 900; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
}
.logo-text { font-weight: 900; font-size: 20px; line-height: 1.2; }
.logo-text small { display: block; font-size: 11px; font-weight: 500; color: var(--muted); }
.header-actions { margin-left: auto; display: flex; gap: 8px; align-items: center; }

.nav-toggle { display: none; }

.global-nav { background: var(--navy-800); }
.global-nav > ul {
  max-width: 1120px; margin: 0 auto; padding: 0 8px;
  display: flex; list-style: none;
}
.global-nav li { position: relative; }
.global-nav button,
.global-nav > ul > li > a {
  display: block; padding: 13px 18px;
  background: none; border: none; cursor: pointer;
  color: #fff; font-size: 14px; font-weight: 700;
  font-family: inherit;
}
.global-nav .has-dropdown > button::after {
  content: "▾"; margin-left: 6px; font-size: 11px; opacity: .7;
}
.global-nav li:hover > button,
.global-nav li:hover > a { background: var(--navy-700); }
.dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  min-width: 230px; background: #fff; border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-hover); padding: 8px 0; z-index: 60;
}
.has-dropdown:hover .dropdown, .has-dropdown.open .dropdown { display: block; }
.dropdown a {
  display: block; padding: 9px 18px; color: var(--text); font-size: 14px;
  border-left: 3px solid transparent;
}
.dropdown a:hover { background: var(--blue-100); border-left-color: var(--accent); opacity: 1; }

/* ---------------- ヒーロー ---------------- */
.hero {
  background:
    radial-gradient(ellipse 90% 120% at 85% -20%, rgba(47,116,181,.55), transparent),
    linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: #fff;
  padding: 56px 16px 64px;
}
.hero-inner { max-width: 1120px; margin: 0 auto; }
.hero-lead { color: #ffd9ae; font-weight: 700; letter-spacing: .08em; margin-bottom: 8px; }
.hero-title { font-size: 34px; font-weight: 900; line-height: 1.4; margin-bottom: 18px; }
.hero-em { color: #ffb668; }
.hero-points { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 22px; margin-bottom: 28px; }
.hero-points li { font-size: 14px; font-weight: 500; opacity: .95; }
.hero-points li::before { content: "✓"; color: #7fd6c2; font-weight: 900; margin-right: 7px; }

.search-panel {
  background: #fff; border-radius: var(--radius);
  padding: 20px; box-shadow: var(--shadow-hover);
}
.search-row { display: flex; gap: 14px; align-items: end; flex-wrap: wrap; }
.search-row label {
  flex: 1 1 180px; display: flex; flex-direction: column; gap: 6px;
  color: var(--navy-800); font-size: 13px; font-weight: 700;
}
.search-row select,
.side-search select, .side-search input,
.apply-form select, .apply-form input, .apply-form textarea {
  width: 100%; padding: 11px 12px;
  border: 1.5px solid var(--line); border-radius: 8px;
  font-size: 15px; font-family: inherit; color: var(--text); background: #fff;
}
.search-row select:focus, .side-search input:focus, .side-search select:focus,
.apply-form select:focus, .apply-form input:focus, .apply-form textarea:focus {
  outline: none; border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(47,116,181,.15);
}
.btn-search { flex: 0 0 auto; padding: 12px 36px; }

/* ---------------- バナー ---------------- */
.banner-section { padding: 28px 16px 0; }
.banner-section + .banner-section { padding-top: 14px; }

.banner-carousel { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.carousel-track { display: flex; transition: transform .5s ease; }
.carousel-slide { flex: 0 0 100%; min-width: 100%; }
.banner-main { display: block; }
.banner-main img { display: block; width: 100%; aspect-ratio: 3 / 1; object-fit: cover; }

.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  border: none; cursor: pointer; font-size: 24px; line-height: 1;
  background: rgba(255,255,255,.85); color: var(--navy-800);
  box-shadow: var(--shadow); z-index: 5;
  transition: background .15s;
}
.carousel-btn:hover { background: #fff; }
.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }
.carousel-dots {
  position: absolute; left: 0; right: 0; bottom: 10px;
  display: flex; justify-content: center; gap: 8px; z-index: 5;
}
.carousel-dots button {
  width: 10px; height: 10px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,.55); padding: 0;
}
.carousel-dots button.active { background: var(--accent); }

.banner-large-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 14px; }
.banner-large { display: block; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .15s, box-shadow .15s; }
.banner-large:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); opacity: 1; }
.banner-large img { display: block; width: 100%; aspect-ratio: 2 / 1; object-fit: cover; }

.banner-side { display: block; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.banner-side img { display: block; width: 100%; }

/* ---------------- セクション ---------------- */
.section { padding: 48px 16px; }
.section-alt { background: #fff; }
.section-inner { max-width: 1120px; margin: 0 auto; }
.section-title {
  font-size: 24px; font-weight: 900; color: var(--navy-900);
  margin-bottom: 24px; display: flex; align-items: center; gap: 12px;
}
.section-title span {
  font-size: 11px; letter-spacing: .15em; color: var(--accent);
  border: 1.5px solid var(--accent); border-radius: 4px; padding: 2px 8px;
}
.section-more { text-align: center; margin-top: 28px; }

/* ---------------- 求人カード ---------------- */
.job-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 18px;
}
.job-card {
  display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px; color: var(--text); box-shadow: var(--shadow);
  transition: box-shadow .15s, transform .15s;
}
.job-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); opacity: 1; }
.job-card-img { margin: -18px -18px 14px; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; }
.job-card-img img { display: block; width: 100%; aspect-ratio: 2 / 1; object-fit: cover; }
.job-card-head { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; flex-wrap: wrap; }
.job-card-company { font-size: 13px; color: var(--muted); font-weight: 500; }
.job-card-title { font-size: 16px; font-weight: 700; color: var(--navy-900); line-height: 1.55; margin-bottom: 12px; }
.job-card-meta { margin-bottom: 12px; }
.job-card-meta div { display: flex; gap: 8px; font-size: 13px; padding: 3px 0; }
.job-card-meta dt {
  flex: 0 0 48px; color: var(--navy-800); background: var(--navy-100);
  text-align: center; border-radius: 4px; font-size: 12px; font-weight: 700; height: fit-content;
}
.job-card-meta dd { color: var(--muted); }
.job-card-meta .salary { color: var(--accent-dark); font-weight: 700; }
.job-card-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.job-card-more { margin-top: auto; text-align: right; color: var(--blue-500); font-size: 13px; font-weight: 700; }

.chip {
  display: inline-block; font-size: 11px; font-weight: 500;
  padding: 2px 10px; border-radius: 999px;
}
.chip-cond { background: var(--teal-100); color: var(--teal-500); }
.chip-area { background: var(--blue-100); color: var(--blue-500); }
.chip-type { background: var(--navy-100); color: var(--navy-800); }

.badge {
  display: inline-block; font-size: 11px; font-weight: 900;
  padding: 2px 9px; border-radius: 4px; color: #fff;
}
.badge-urgent { background: var(--danger); }
.badge-new { background: var(--teal-500); }

/* ---------------- ランキング ---------------- */
.ranking-list { list-style: none; padding: 0; }
.ranking-list li {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  margin-bottom: 10px; padding: 14px 18px; box-shadow: var(--shadow);
}
.rank-num {
  flex: 0 0 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 18px; background: var(--navy-100); color: var(--navy-800);
}
.rank-1 { background: linear-gradient(135deg, #f7d774, #d9a520); color: #fff; }
.rank-2 { background: linear-gradient(135deg, #d9dfe5, #9fabb8); color: #fff; }
.rank-3 { background: linear-gradient(135deg, #e6b48b, #b97333); color: #fff; }
.ranking-list a { display: flex; flex-direction: column; color: var(--text); flex: 1; }
.rank-company { font-size: 13px; color: var(--muted); }
.rank-copy { font-weight: 700; color: var(--navy-900); }
.rank-area { font-size: 12px; color: var(--muted); }

/* ---------------- 信頼セクション ---------------- */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.trust-item { background: #fff; border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow); border-top: 3px solid var(--accent); }
.trust-icon { font-size: 13px; letter-spacing: .2em; color: var(--accent); font-weight: 900; margin-bottom: 8px; }
.trust-item h3 { font-size: 16px; color: var(--navy-900); margin-bottom: 8px; }
.trust-item p { font-size: 13px; color: var(--muted); }

/* ---------------- ページヘッダ・一覧 ---------------- */
.page-head { background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); color: #fff; padding: 26px 16px; }
.page-head h1 { font-size: 24px; font-weight: 900; }
.breadcrumb { font-size: 12px; opacity: .8; margin-bottom: 6px; }
.breadcrumb a { color: #fff; }
.result-count { font-size: 13px; opacity: .9; }
.result-count strong { color: #ffb668; font-size: 18px; }

.list-layout, .detail-layout { display: grid; grid-template-columns: 1fr 300px; gap: 28px; align-items: start; }
.job-grid-list { grid-template-columns: 1fr 1fr; }

.list-side, .detail-side { position: sticky; top: 16px; display: flex; flex-direction: column; gap: 14px; }
.side-search, .side-apply {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 12px;
}
.side-search label { display: flex; flex-direction: column; gap: 5px; font-size: 13px; font-weight: 700; color: var(--navy-800); }
.side-head { font-weight: 900; color: var(--navy-900); border-left: 4px solid var(--accent); padding-left: 10px; }
.side-copy { font-size: 13px; color: var(--muted); }

.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 28px; }
.pagination a {
  min-width: 38px; padding: 8px 0; text-align: center;
  background: #fff; border: 1px solid var(--line); border-radius: 8px; color: var(--navy-800); font-weight: 700;
}
.pagination a.current { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }

.empty-box, .done-box, .error-box {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; text-align: center; box-shadow: var(--shadow);
}
.error-box { border-color: var(--danger); color: var(--danger); padding: 14px; margin-bottom: 20px; font-weight: 700; }
.done-box h2 { color: var(--teal-500); margin-bottom: 12px; }
.done-box p { margin-bottom: 10px; }

/* ---------------- 求人詳細 ---------------- */
.job-head-company { font-size: 14px; opacity: .85; margin-top: 10px; }
.job-head-copy { font-size: 26px; font-weight: 900; line-height: 1.5; margin: 4px 0 14px; }
.job-head-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.job-head-chips .chip { font-size: 12px; }

.job-banner { margin-bottom: 24px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.job-banner img { display: block; width: 100%; }

.detail-title {
  font-size: 19px; font-weight: 900; color: var(--navy-900);
  border-left: 5px solid var(--accent); padding-left: 12px;
  margin: 34px 0 16px;
}
.detail-main .detail-title:first-child { margin-top: 0; }
.detail-table {
  width: 100%; border-collapse: collapse; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); font-size: 14px;
}
.detail-table th, .detail-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.detail-table tr:last-child th, .detail-table tr:last-child td { border-bottom: none; }
.detail-table th { width: 140px; background: var(--navy-100); color: var(--navy-800); font-weight: 700; }
.pr-box {
  background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--teal-500);
  border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); font-size: 14px;
}
.tel-link { font-size: 20px; font-weight: 900; color: var(--navy-800); }

.apply-cta {
  margin-top: 34px; background: var(--accent-100);
  border-radius: var(--radius); padding: 28px; text-align: center;
  display: flex; flex-direction: column; gap: 14px; align-items: center;
}
.apply-cta-lead { font-weight: 900; font-size: 18px; color: var(--navy-900); }
.apply-methods { display: flex; flex-direction: column; gap: 12px; width: 100%; max-width: 440px; }
.btn-method { display: flex; flex-direction: column; gap: 2px; padding: 14px 24px; }
.btn-method strong { font-size: 17px; }
.btn-method small { font-size: 12px; font-weight: 500; opacity: .9; }
.apply-note { font-size: 12px; color: var(--muted); }

.sticky-apply {
  display: none; position: fixed; left: 0; right: 0; bottom: 0;
  padding: 10px 14px; background: rgba(255,255,255,.95);
  box-shadow: 0 -3px 12px rgba(14,34,55,.12); z-index: 40;
}
.sticky-apply-row { display: flex; gap: 8px; }
.sticky-apply-row .btn { flex: 1; padding: 12px 8px; white-space: nowrap; }
.sticky-apply-row .btn-line { flex: 0 0 auto; }

/* ---------------- フォーム ---------------- */
.form-inner { max-width: 720px; }
.form-lead { margin-bottom: 22px; font-size: 14px; }
.apply-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 20px;
}
.form-field label, .form-field .label { display: block; font-weight: 700; color: var(--navy-800); font-size: 14px; margin-bottom: 6px; }
.form-field-s input { max-width: 140px; }
.req {
  display: inline-block; background: var(--danger); color: #fff;
  font-size: 10px; font-weight: 700; border-radius: 3px; padding: 1px 6px; margin-left: 6px; vertical-align: 2px;
}
.radio-row { display: flex; gap: 18px; flex-wrap: wrap; }
.radio, .checkbox { font-weight: 500 !important; display: flex !important; align-items: center; gap: 6px; margin-bottom: 0 !important; cursor: pointer; }
.radio input, .checkbox input { width: 18px; height: 18px; accent-color: var(--accent); }
.field-error { color: var(--danger); font-size: 13px; margin-top: 4px; font-weight: 700; }
.form-note { font-size: 13px; color: var(--muted); }
.preview-bar {
  background: #2f74b5; color: #fff; text-align: center;
  font-size: 13px; font-weight: 700; padding: 8px 14px;
}

.apply-locked-company {
  background: var(--navy-100); border: 1.5px solid var(--line); border-radius: 8px;
  padding: 12px 14px;
}
.apply-locked-company strong { display: block; color: var(--navy-900); font-size: 16px; }
.apply-locked-company small { color: var(--muted); font-size: 12px; }
.apply-locked-note { font-size: 12px; color: var(--muted); margin-top: 6px; }

.form-switch-note {
  background: var(--blue-100); border: 1px solid #c6dcef; border-radius: 8px;
  padding: 10px 14px; font-size: 13px; margin-bottom: 20px;
}
.checks-wrap { gap: 10px 18px; flex-wrap: wrap; }

/* ---------------- 静的ページ ---------------- */
.static-inner { max-width: 800px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 36px; }
.static-inner h2 { color: var(--navy-900); font-size: 19px; border-left: 5px solid var(--accent); padding-left: 12px; margin: 30px 0 12px; }
.static-inner h2:first-child { margin-top: 0; }
.static-inner p, .static-inner ul, .static-inner ol { margin-bottom: 14px; font-size: 14px; }
.flow-list li { margin-bottom: 10px; }
.faq-item { border: 1px solid var(--line); border-radius: 8px; margin-bottom: 10px; background: #fff; }
.faq-item summary {
  padding: 14px 16px; font-weight: 700; color: var(--navy-900); cursor: pointer; list-style: none;
}
.faq-item summary::before { content: "Q."; color: var(--accent); font-weight: 900; margin-right: 8px; }
.faq-item p { padding: 0 16px 14px; font-size: 14px; color: var(--muted); }

/* ---------------- 追従セクションナビ ---------------- */
.float-nav {
  position: fixed; right: 18px; bottom: 24px; z-index: 45;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity .25s, transform .25s;
}
.float-nav.visible { opacity: 1; pointer-events: auto; transform: none; }

.float-nav-list {
  display: flex; flex-direction: column; gap: 2px;
  background: rgba(255, 255, 255, .97);
  border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-hover); padding: 8px;
}
.float-nav-list a {
  padding: 7px 14px; border-radius: 8px;
  font-size: 12px; font-weight: 700; color: var(--navy-800);
  text-align: right; white-space: nowrap;
}
.float-nav-list a:hover { background: var(--blue-100); opacity: 1; }
.float-nav-list a.active { background: var(--accent-100); color: var(--accent-dark); }
.float-nav-list a.active::before { content: "● "; font-size: 8px; vertical-align: 2px; }

.float-nav-toggle, .float-nav-top {
  width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer;
  font-size: 17px; line-height: 1;
  background: var(--navy-800); color: #fff;
  box-shadow: var(--shadow-hover);
  transition: transform .15s, background .15s;
}
.float-nav-toggle:hover, .float-nav-top:hover { transform: translateY(-2px); background: var(--navy-700); }
.float-nav-toggle { display: none; }

/* ---------------- フッター ---------------- */
.site-footer { background: var(--navy-900); color: #cfdae6; margin-top: 40px; }
.footer-inner {
  max-width: 1120px; margin: 0 auto; padding: 44px 16px 28px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 28px;
}
.footer-logo { font-size: 20px; font-weight: 900; color: #fff; margin-bottom: 8px; }
.footer-tag { font-size: 13px; opacity: .8; }
.footer-head { color: #fff; font-weight: 700; font-size: 14px; margin-bottom: 10px; }
.footer-col a { display: block; color: #cfdae6; font-size: 13px; padding: 4px 0; }
.copyright { text-align: center; font-size: 12px; padding: 16px; border-top: 1px solid rgba(255,255,255,.12); opacity: .7; }

/* ---------------- レスポンシブ ---------------- */
@media (max-width: 900px) {
  .list-layout, .detail-layout { grid-template-columns: 1fr; }
  .job-grid-list { grid-template-columns: 1fr; }
  .list-side, .detail-side { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .sticky-apply { display: block; }
  .detail-side .side-apply { display: none; }
}

@media (max-width: 700px) {
  .hero { padding: 36px 16px 44px; }
  .hero-title { font-size: 24px; }
  .header-actions { display: none; }

  .nav-toggle {
    display: block; margin-left: auto; background: none; border: none; cursor: pointer;
    width: 40px; height: 40px; position: relative;
  }
  .nav-toggle span {
    display: block; width: 22px; height: 2px; background: var(--navy-900);
    margin: 5px auto; transition: .2s;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .global-nav { display: none; }
  .global-nav.open { display: block; max-height: calc(100vh - 70px); overflow-y: auto; }
  [data-nav] { scroll-margin-top: 80px; }
  .global-nav > ul { flex-direction: column; padding: 0; }
  .dropdown { position: static; box-shadow: none; border-radius: 0; background: var(--navy-700); }
  .dropdown a { color: #fff; padding-left: 32px; }
  .dropdown a:hover { background: var(--navy-900); }
  .global-nav .has-dropdown:hover .dropdown { display: none; }
  .global-nav .has-dropdown.open .dropdown { display: block; }

  .section { padding: 34px 14px; }
  .section-title { font-size: 20px; }
  .job-head-copy { font-size: 20px; }
  .apply-cta .btn { min-width: 100%; }
  .static-inner { padding: 24px 18px; }
  .footer-inner { grid-template-columns: 1fr; }
  body { padding-bottom: 70px; } /* sticky-apply分 */

  /* 追従ナビ: スマホはボタンで開閉、追従応募バーの上に配置 */
  .float-nav { right: 12px; bottom: 86px; }
  .float-nav-toggle { display: block; }
  .float-nav-list { display: none; }
  .float-nav.open .float-nav-list { display: flex; }
  .float-nav-toggle, .float-nav-top { width: 44px; height: 44px; }
}
