:root {
  --color-main: #0070b8;
  --color-accent: #f3e20e;
  --color-bg: #ffffff;
  --color-section: #b1d4ea;
  --color-text: #122746;
  --color-main-dark: #005a93;
  /* 採用ページ見出し帯・フッター共通の薄い背景 */
  --color-surface-soft: #f4f7f9;
  --font-sans: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "Yu Gothic", "Meiryo", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #e7eef3;
  transition: box-shadow 0.35s ease;
}

.header-inner {
  min-height: 102px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: min-height 0.45s ease;
}

.site-logo-heading {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1;
}

.logo {
  display: inline-flex;
  align-items: center;
  color: var(--color-main);
}

.site-logo {
  width: clamp(248px, 31vw, 400px);
  height: auto;
  transition: width 0.45s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 20px rgba(18, 39, 70, 0.08);
}

.site-header.is-scrolled .header-inner {
  min-height: 76px;
}

.site-header.is-scrolled .site-logo {
  width: clamp(220px, 30vw, 360px);
}

.nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: font-size 0.35s ease;
}

.site-header:not(.is-scrolled) .nav ul {
  font-size: 1.0625rem;
}

.site-header.is-scrolled .nav ul {
  font-size: 1rem;
}

.nav a {
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav a:not(.btn-contact):hover {
  color: #0372b6;
}

.btn {
  display: inline-block;
  background: var(--color-main);
  color: #fff;
  border-radius: 9999px;
  padding: 11px 18px;
  font-weight: 700;
  transition: background-color 0.2s ease;
}

.btn:hover {
  background: var(--color-main-dark);
}

.btn-contact {
  background: var(--color-accent);
  color: var(--color-text);
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease, font-size 0.35s ease;
}

.site-header:not(.is-scrolled) .btn-contact {
  font-size: 0.95rem;
}

.site-header.is-scrolled .btn-contact {
  font-size: 0.88rem;
}

.btn-contact:hover {
  background: #0372b6;
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #d3e1eb;
  border-radius: 9999px;
  background: #fff;
  padding: 9px 8px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

.menu-toggle span + span {
  margin-top: 6px;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-slides,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.7s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide--1 {
  background-image: url("../images/image01.webp");
}

.hero-slide--2 {
  background-image: url("../images/image02.webp");
}

.hero-slide--3 {
  background-image: url("../images/image03.webp");
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.28);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  transform: translateY(18vh);
}

.hero-kicker {
  font-weight: 700;
  letter-spacing: 0.1em;
}

.hero .hero-heading {
  margin: 8px 0 14px;
  font-size: clamp(2.7rem, 6.2vw, 4.8rem);
  line-height: 1.2;
}

.hero-subsmall {
  margin: -6px 0 0;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  opacity: 0.95;
  font-weight: 500;
}

.hero-subcopy {
  max-width: 760px;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-dots {
  position: absolute;
  z-index: 2;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.dot.is-active {
  background: var(--color-accent);
}

.section {
  padding: 72px 0 144px;
}

.section h2 {
  margin: 0 0 6px;
  text-align: center;
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
}

.section-subtitle {
  margin: 0 0 40px;
  text-align: center;
  color: #4f7fa7;
  font-size: clamp(0.92rem, 1.65vw, 1.08rem);
  line-height: 1.2;
  letter-spacing: 0.08em;
  font-weight: 500;
  transform: translateY(-5px);
}

.services h2,
.recruit h2 {
  margin-bottom: 0;
}

.value {
  background: var(--color-bg);
}

.services {
  position: relative;
  background: url("../images/bg.jpg") center / cover no-repeat;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(177, 212, 234, 0.82);
  pointer-events: none;
}

.services > .container {
  position: relative;
}

.value-copy {
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
}

.value-copy h2 {
  margin: 0 0 24px;
  line-height: 1.45;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
}

.value-marker {
  display: inline;
  background: linear-gradient(transparent 62%, var(--color-accent) 62%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0 0.1em;
}

/* 左から黄色ハイライトが塗られる（画面内に入ったら .is-inview） */
.value-marker.marker-draw {
  background: none;
  background-image: linear-gradient(transparent 62%, var(--color-accent) 62%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: left top;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.value-marker.marker-draw.is-inview {
  animation: markerPaint 1.05s cubic-bezier(0.22, 0.8, 0.2, 1) forwards;
  animation-delay: var(--marker-draw-delay, 0s);
}

.value-copy h2 > span.marker-draw:first-of-type {
  --marker-draw-delay: 0.55s;
}

.value-copy h2 > span.marker-draw ~ span.marker-draw {
  --marker-draw-delay: calc(0.55s + 0.75s);
}

.recruit-copy > p:first-of-type .marker-draw {
  --marker-draw-delay: 1.4s;
}

@keyframes markerPaint {
  to {
    background-size: 100% 100%;
  }
}

.value-copy p {
  margin: 0;
  font-size: clamp(1rem, 1.7vw, 1.12rem);
}

.value-copy p + p {
  margin-top: 16px;
}

.service-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.service-card img {
  height: 220px;
  object-fit: cover;
}

.service-body {
  padding: 18px;
}

.section-link {
  margin: 28px 0 0;
  text-align: center;
}

.services .btn:hover,
.recruit .btn:hover {
  background: #2c93d6;
}

.recruit {
  background: var(--color-bg);
}

.recruit-layout {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.recruit-image img {
  border-radius: 12px;
  height: 300px;
  object-fit: cover;
}

.recruit-copy {
  text-align: left;
}

.recruit-copy p {
  margin: 0 0 14px;
}

.recruit-copy p strong {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.site-footer {
  background: var(--color-surface-soft);
  color: var(--color-text);
  padding: 60px 0 82px;
}

.footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
}

/* index.html 専用：左カラムをややコンパクトに */
.footer-grid.footer-grid--index-compact {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.footer-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.footer-drone-stack {
  width: min(92%, 560px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* index.html 専用：バナーを左寄せ + ひと回り小さく */
.footer-drone-stack.footer-drone-stack--index-compact {
  width: min(84%, 500px);
  margin: 0;
}

.footer-drone-banner {
  display: block;
  line-height: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(18, 39, 70, 0.08);
  transition: opacity 0.2s ease;
}

.footer-drone-banner:hover {
  opacity: 0.9;
}

.footer-drone-banner:focus-visible {
  outline: 2px solid var(--color-main);
  outline-offset: 3px;
}

.footer-drone-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-info h2 {
  margin-top: 0;
  margin-bottom: 0.35rem;
}

.footer-info > p.footer-logo-wrap {
  margin: 0 0 0.95rem;
  line-height: 0;
}

.footer-logo {
  width: clamp(220px, 28vw, 360px);
  height: auto;
  display: block;
}

.footer-info > p {
  margin: 0;
  line-height: 1.4;
}

.footer-info > p + p {
  margin-top: 0.2rem;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.contact-badge {
  display: inline-block;
  border: 1px solid rgba(18, 39, 70, 0.35);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.footer-nav-rule {
  border: 0;
  margin: 0;
  height: 0;
  display: none;
}

.footer-nav {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 0;
  row-gap: 6px;
  margin: 14px 0 0;
  padding-top: 10px;
}

.footer-nav::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  border-top: 1px solid rgba(18, 39, 70, 0.12);
}

.footer-nav a:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-left: 12px;
  margin-right: 12px;
  background-color: rgba(18, 39, 70, 0.2);
  vertical-align: middle;
}

.footer-nav a {
  color: var(--color-text);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--color-main);
}

.footer-map {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  height: 100%;
}

.footer-map iframe {
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 12px;
}

.footer-copyright {
  margin: 40px 0 28px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(18, 39, 70, 0.7);
}

/* 会社情報ページ・アクセス内の地図 */
.company-access-map {
  margin-top: 16px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.company-access-section > .company-access-map:first-child {
  margin-top: 0;
}

.company-access-map iframe {
  display: block;
  width: 100%;
  min-height: 440px;
  height: clamp(360px, 48vh, 560px);
  border: 0;
}

/* 採用ページ：右列は地図の代わりにドローンバナー（左列にあったときと同じく自然比率） */
.footer-map--drone {
  align-items: flex-start;
}

.footer-map--drone .footer-drone-banner--side {
  flex: 0 0 auto;
  width: 100%;
}

.footer-map--drone .footer-drone-banner--side img {
  width: 100%;
  height: auto;
  display: block;
}

/* company/recruit/service 用：右カラムの2枚バナーを小さめ + 右寄せ */
.footer-map--drone .footer-drone-stack {
  width: min(70%, 420px);
  margin-left: auto;
  margin-right: clamp(8px, 2vw, 20px);
}

.sp-call-bar {
  display: none;
}

@media (max-width: 920px) {
  .nav ul {
    gap: 14px;
  }

  .site-header:not(.is-scrolled) .nav ul {
    font-size: 1rem;
  }

  .site-header.is-scrolled .nav ul {
    font-size: 0.9rem;
  }

  .service-grid,
  .recruit-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  /* index.html: コンパクト用2カラム指定より特異性を揃え、スマホは1列に */
  .footer-grid.footer-grid--index-compact {
    grid-template-columns: 1fr;
  }

  .footer-map iframe {
    min-height: 300px;
    height: 320px;
  }

  .company-access-map iframe {
    min-height: 360px;
    height: clamp(320px, 42vh, 480px);
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 84vh;
  }

  .hero-content {
    transform: translateY(22vh);
  }

  .hero .hero-heading {
    font-size: clamp(1.7rem, 7.2vw, 2.3rem);
  }

  .section h2 {
    font-size: clamp(1.5rem, 5.6vw, 1.9rem);
  }

  .header-inner {
    position: relative;
    min-height: 64px;
    align-items: center;
    padding: 10px 0;
  }

  .site-logo {
    width: clamp(180px, 56vw, 290px);
  }

  .site-header.is-scrolled .header-inner {
    min-height: 56px;
    padding: 6px 0;
  }

  .site-header.is-scrolled .site-logo {
    width: clamp(160px, 48vw, 250px);
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e7eef3;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(18, 39, 70, 0.12);
    padding: 10px;
    display: none;
  }

  .nav.is-open {
    display: block;
  }

  .nav ul {
    display: grid;
    gap: 8px;
  }

  .nav li {
    width: 100%;
  }

  .nav a {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border-radius: 9999px;
  }

  .btn-contact {
    text-align: center;
  }

  .section {
    padding: 56px 0 112px;
  }

  .value-copy {
    width: min(680px, 100%);
    text-align: left;
  }

  .value-copy h2 {
    text-align: left;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: clamp(1.12rem, 4.9vw, 1.46rem);
  }

  .value-copy p {
    font-size: clamp(0.88rem, 3.2vw, 0.96rem);
    line-height: 1.8;
  }

  .site-footer {
    padding-bottom: 130px;
  }

  .sp-call-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 110;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    padding-bottom: max(10px, env(safe-area-inset-bottom, 0px));
    background: var(--color-main);
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 -4px 16px rgba(18, 39, 70, 0.08);
    transform: translateY(110%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.38s cubic-bezier(0.22, 0.8, 0.2, 1),
      opacity 0.32s ease,
      visibility 0.32s ease;
  }

  .sp-call-bar.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .sp-call-tel {
    flex: 1 1 auto;
    min-width: 0;
    font-weight: 900;
    font-size: clamp(0.95rem, 3.8vw, 1.05rem);
    letter-spacing: 0.02em;
    text-decoration: none;
    color: #fff;
  }

  .sp-call-tel:active {
    opacity: 0.82;
  }

  .sp-call-contact.btn {
    flex: 0 0 auto;
    padding: 10px 18px;
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
    background: #fff;
    color: var(--color-main);
  }

  .sp-call-contact.btn:hover {
    background: var(--color-surface-soft);
    color: var(--color-main-dark);
  }
}

/* 採用ページ（募集要項レイアウト）— ヒーローはリクルートサイト風の明るい見出しエリア */
.recruit-page-hero {
  background: var(--color-surface-soft);
  color: var(--color-text);
  padding: clamp(36px, 5vw, 52px) 0 clamp(32px, 4.5vw, 44px);
  border-bottom: 1px solid #dde5eb;
}

.recruit-page-hero .recruit-page-kicker {
  margin: 0 0 7px;
  padding-left: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-main);
  line-height: 1.4;
}

.recruit-page-hero .recruit-page-hero-heading {
  margin: 0;
  font-size: clamp(1.65rem, 4.8vw, 2.55rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #0f1f2e;
  padding: 0;
  border: none;
}

.recruit-spec {
  padding: 56px 0 144px;
  background: var(--color-bg);
}

.recruit-spec-intro {
  margin: 0 0 56px;
}

/* 会社情報ページ：セクションへジャンプ */
.company-section-jump {
  margin: 48px 0 48px;
}

.company-section-jump-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.company-section-jump-list li {
  margin: 0;
  min-width: 0;
}

.company-jump-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  min-width: 13.5em;
  max-width: 100%;
  padding: 11px 36px 11px 38px;
  font-size: 0.92rem;
  line-height: 1.35;
}

/* 下方向シェブロン（ボタン内の右寄せ） */
.company-jump-btn::after {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.92;
}

.recruit-spec .recruit-intro-panel {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  font-size: clamp(1.12rem, 2.6vw, 1.48rem);
  line-height: 1.6;
  font-weight: 400;
  color: var(--color-text);
}

.recruit-spec .recruit-intro-panel p {
  margin: 0;
  font-weight: inherit;
  color: var(--color-text);
}

.recruit-spec .recruit-intro-panel p + p {
  margin-top: 8px;
  color: var(--color-main);
}

/* 本文「募集要項」— セクション見出し（左ライン） */
.recruit-spec .section-head {
  margin: 90px 0 44px;
  padding: 0 0 0 16px;
  border: none;
  border-left: 4px solid var(--color-main);
  font-size: clamp(1.28rem, 2.8vw, 1.72rem);
  font-weight: 700;
  color: #0f1f2e;
  line-height: 1.35;
  scroll-margin-top: 100px;
}

/* 会社情報：ジャンプ直後の「会社概要」見出し（.section-head より後で上書き） */
.recruit-spec .company-section-jump + .section-head {
  margin-top: 20px;
  margin-bottom: 18px;
}

.recruit-spec-frame {
  border: 2px solid #b3b8bf;
  border-radius: 12px;
  padding: clamp(18px, 3vw, 26px) clamp(16px, 3vw, 24px) clamp(44px, 7vw, 60px);
  background: #fff;
  box-shadow: 0 4px 18px rgba(18, 39, 70, 0.06);
}

/* 会社情報ページ・会社概要のみ枠線なし */
.recruit-spec-frame.recruit-spec-frame--plain {
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: clamp(8px, 1.5vw, 12px) 0 clamp(20px, 3vw, 28px);
}

.recruit-spec-frame--plain .recruit-spec-divider {
  margin: 28px 0;
}

/* 会社情報：代表挨拶など、見出し直後の2つ目以降 */
.recruit-spec .section-head.company-section-subhead {
  margin-top: 96px;
}

.company-message-body {
  max-width: 68em;
  margin: 0 auto 16px;
  padding-inline: clamp(1rem, 3vw, 2rem);
}

.company-message-body p {
  margin: 0 0 1.15em;
  font-size: clamp(0.98rem, 1.65vw, 1.06rem);
  line-height: 1.85;
  color: var(--color-text);
}

.company-message-body p:last-child {
  margin-bottom: 0;
}

.company-access-section .company-access-map + .recruit-spec-row {
  margin-top: 28px;
}

.recruit-spec-row {
  display: grid;
  grid-template-columns: minmax(8rem, 13rem) minmax(0, 1fr);
  gap: 10px 28px;
  align-items: start;
}

.recruit-spec-label {
  margin: 0;
  font-size: clamp(1.02rem, 1.9vw, 1.12rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.45;
}

.company-overview-table .recruit-spec-label {
  padding-left: 1.25rem;
}

.recruit-spec-body {
  min-width: 0;
}

.recruit-spec-body p {
  margin: 0 0 12px;
}

.recruit-spec-body p:last-child {
  margin-bottom: 0;
}

.recruit-spec-text-link {
  color: var(--color-main);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.recruit-spec-text-link:hover {
  color: var(--color-main-dark);
}

.recruit-spec-tel-link {
  display: none;
}

@media (max-width: 760px) {
  .recruit-spec-tel-text {
    display: none;
  }

  .recruit-spec-tel-link {
    display: inline;
    color: inherit;
    font-weight: inherit;
    text-decoration: none;
  }

  .recruit-spec-tel-link:hover {
    color: inherit;
  }
}

.recruit-spec-body ul,
.recruit-spec-body ol {
  margin: 0 0 12px;
  padding-left: 1.35em;
}

.recruit-spec-body ul:last-child,
.recruit-spec-body ol:last-child {
  margin-bottom: 0;
}

.recruit-spec-body li + li {
  margin-top: 6px;
}

.recruit-spec-body .note {
  margin-top: 0;
  font-size: 0.92rem;
  color: #3d5a73;
}

.recruit-spec-body p + .note {
  margin-top: 6px;
}

.recruit-spec-body .recruit-salary-highlight {
  margin-bottom: 0;
}

.recruit-job-table-wrap {
  overflow-x: auto;
  margin: 12px 0 0;
  border-radius: 10px;
  border: 1px solid #d3e1eb;
  background: #fff;
  box-shadow: 0 2px 12px rgba(18, 39, 70, 0.06);
}

.recruit-job-table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(0.88rem, 1.5vw, 0.98rem);
  min-width: 520px;
}

.recruit-job-table th,
.recruit-job-table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #e7eef3;
}

.recruit-job-table tr:last-child th,
.recruit-job-table tr:last-child td {
  border-bottom: none;
}

.recruit-job-table th {
  width: 28%;
  background: #f0f7fb;
  font-weight: 700;
  color: var(--color-main-dark);
  white-space: nowrap;
}

.recruit-subsection {
  margin-top: 20px;
}

.recruit-subsection:first-of-type {
  margin-top: 0;
}

.recruit-subsection h4 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
}

.recruit-spec-divider {
  border: 0;
  border-top: 1px solid rgba(18, 39, 70, 0.14);
  margin: 64px 0;
}

.recruit-salary-highlight {
  margin: 14px 0 0;
  padding: 12px 16px;
  background: rgba(243, 226, 14, 0.35);
  border-radius: 8px;
  font-weight: 700;
  font-size: clamp(0.95rem, 1.7vw, 1.05rem);
}

.recruit-income-grid {
  margin: 16px 0 0;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.recruit-income-item {
  margin: 0;
  padding: 14px 16px;
  background: #f5fafd;
  border: 1px solid #d3e1eb;
  border-radius: 10px;
  text-align: center;
  line-height: 1.5;
}

.recruit-income-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-main-dark);
  margin-bottom: 4px;
}

.recruit-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.recruit-check-list li {
  position: relative;
  padding-left: 1.5em;
}

.recruit-check-list li + li {
  margin-top: 8px;
}

.recruit-check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--color-main-dark);
  font-weight: 700;
}

.recruit-contact-box {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 18px;
  row-gap: 10px;
  align-items: baseline;
  margin-top: 12px;
  padding: 18px 20px;
  background: #f5fafd;
  border: 1px solid #d3e1eb;
  border-radius: 10px;
  line-height: 1.65;
}

.recruit-contact-box dt {
  margin: 0;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-main-dark);
}

.recruit-contact-box dd {
  margin: 0;
}

.recruit-spec-body .recruit-apply-btn {
  margin-top: 18px;
  display: inline-block;
  padding: 12px 28px;
}

.recruit-contact-box a {
  color: var(--color-main);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.recruit-contact-box a:hover {
  color: var(--color-main-dark);
}

@media (max-width: 760px) {
  .recruit-income-grid {
    grid-template-columns: 1fr;
  }

  .recruit-spec-row {
    grid-template-columns: 1fr;
    gap: 4px 0;
  }

  .recruit-spec-label {
    padding-bottom: 8px;
    margin-bottom: 6px;
    border-bottom: 2px solid #e7eef3;
  }

  .recruit-page-hero {
    padding: 36px 0 32px;
  }

  .recruit-spec {
    padding: 44px 0 112px;
  }

  /* 会社情報：ジャンプボタン（狭い幅では横並び＋min-width で崩れるため縦積み・全幅） */
  .company-section-jump {
    margin: 28px 0 28px;
  }

  .company-section-jump-list {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .company-section-jump-list li {
    width: 100%;
    min-width: 0;
  }

  .company-jump-btn {
    width: 100%;
    min-width: 0;
    padding: 12px 18px 12px 20px;
  }

  .recruit-spec .section-head.company-section-subhead {
    margin-top: 56px;
  }

  .recruit-job-table th {
    width: 34%;
  }
}
