@charset "UTF-8";

/* =========================
   Base / Tokens
   ========================= */
:root {
  --c-ink: #111;
  --c-muted: rgba(17, 17, 17, .72);
  --c-blue: #2f67ad;
  /* 連絡CTA / ナビCTA */
  --c-blue-deep: #005bac;
  /* 比較表のWeGo列 */
  --c-red: #e60012;
  --c-bg-soft: #f3f5f7;
  /* サポート背景 */
  --c-panel: #dbe8f4;
  /* 安全対策パネル */
  --radius: 16px;
  --shadow: 0 12px 28px rgba(0, 0, 0, .06);
  --header-h: 72px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--c-ink);
  font-size: 1.6rem;
  line-height: 1.75;
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
}

.l-container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

@media (max-width: 520px) {
  .l-container {
    width: min(1120px, calc(100% - 28px));
  }
}

/* アンカー位置（固定ヘッダー分） */
:where(section, div)[id] {
  scroll-margin-top: calc(var(--header-h) + 18px);
}

/* 見出し */
.sec-title {
  font-size: clamp(2.2rem, 2.4vw, 3.2rem);
  text-align: center;
  margin: 0 0 18px;
  letter-spacing: .02em;
  font-weight: 900;
}

.sec-desc {
  text-align: center;
  margin: 0 auto 26px;
  color: var(--c-muted);
  max-width: 900px;
}

.sec-kicker {
  text-align: center;
  margin: 0 0 10px;
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(17, 17, 17, .78);
}

.sec-subtitle {
  text-align: center;
  margin: 0 0 12px;
  font-size: 2.0rem;
  font-weight: 900;
}

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 60px;
  padding: 0 34px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1;
  border: 1px solid transparent;
  transition: filter .15s ease, transform .15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--c-red);
  color: #fff;
}

.btn-primary:hover {
  filter: brightness(.96);
}

/* =========================
   MV（動画対応）
   - 1920×1080（16:9）を基準に高さ調整
   - オーバーレイはクリックを邪魔しない
   ========================= */
.mv {
  position: relative;
  height: 56.25vw;
  /* fallback: 16:9 */
  max-height: 1080px;
  height: min(56.25vw, 100svh, 1080px);
  /* 16:9 */
  min-height: 520px;
  overflow: hidden;
}

@media (max-width: 480px) {
  .mv {
    min-height: 460px;
  }
}

.mv-title-break {
  display: inline;
}

@media (max-width: 768px) {
  .mv-title-break {
    display: block;
  }
}

.mv-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.mv-bg img,
.mv-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv-bg video {
  pointer-events: none;
}

.mv::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* ←ボタンが押せない原因対策 */
  background: linear-gradient(180deg, rgba(0, 0, 0, .42), rgba(0, 0, 0, .42));
}

.mv-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: calc(var(--header-h) + 32px) 0 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mv-copy {
  color: #fff;
  max-width: 760px;
  text-shadow: 0 6px 18px rgba(0, 0, 0, .22);
}

.mv-kicker {
  margin: 0 0 10px;
  font-weight: 800;
  letter-spacing: .06em;
  opacity: .95;
}

.mv-title {
  margin: 0 0 14px;
  font-size: clamp(3.4rem, 4.3vw, 4.4rem);
  line-height: 1.25;
  font-weight: 900;
}

.mv-sub {
  margin: 0 0 22px;
  opacity: .95;
  font-size: clamp(1.6rem, 1.2vw, 1.6rem);
}

.mv-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.mv .btn-primary {
  background: rgba(0, 0, 0, .72);
  border-color: rgba(255, 255, 255, .18);
}

.mv .btn-primary:hover {
  filter: none;
  background: rgba(0, 0, 0, .82);
}

/* =========================
   Issues
   ========================= */
.issues {
  padding: clamp(56px, 6vw, 84px) 0 clamp(56px, 6vw, 84px);
  background: #fff;
}

.issues-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 3vw, 56px);
  margin-top: clamp(22px, 3vw, 34px);
  align-items: start;
}

@media (min-width: 860px) {
  .issues-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.issue-card {
  text-align: center;
  border: 1px solid rgba(0, 0, 0, .10);
  background: #fff;
  border-radius: 18px;
  padding: clamp(18px, 2.2vw, 26px) clamp(16px, 2vw, 22px);
  box-shadow: var(--shadow);
  height: 100%;
}

.issue-ico {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
}

.issue-ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.issue-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 1.45vw, 1.8rem);
  line-height: 1.55;
  font-weight: 900;
  letter-spacing: .02em;
}

/* 箇条書き：resetで消えるため疑似要素で統一 */
.issue-card ul {
  margin: 0 auto;
  padding: 0;
  max-width: 320px;
  text-align: left;
  list-style: none;
  color: rgba(17, 17, 17, .76);
}

.issue-card li {
  position: relative;
  padding-left: 1.1em;
  font-size: 1.6rem;
  line-height: 1.85;
}

.issue-card li+li {
  margin-top: 8px;
}

.issue-card li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(17, 17, 17, .55);
}

/* 矢印（SVG） */
.issues-arrow {
  display: flex;
  justify-content: center;
  margin: clamp(34px, 5vw, 56px) 0 14px;
}

.issues-arrow img {
  width: clamp(72px, 8vw, 120px);
  height: auto;
  filter: brightness(0) saturate(100%);
}

.issues-lead {
  text-align: center;
  font-weight: 900;
  font-size: clamp(2.4rem, 3.4vw, 4.0rem);
  letter-spacing: .01em;
  margin: 0;
}

/* =========================
   Support
   ========================= */
.support {
  padding: clamp(56px, 6vw, 86px) 0;
  background: var(--c-bg-soft);
}

.support-figure {
  margin: clamp(18px, 3vw, 30px) auto 18px;
  width: min(600px, 100%);
}

.support-note {
  text-align: center;
  margin: 0;
  font-weight: 900;
  color: rgba(17, 17, 17, .75);
  font-size: clamp(2.5rem, 3.5vw, 2.8rem);
  line-height: 1.6;
  margin-top: 80px;
}

.sp-break-point {
  display: inline;
}

@media (max-width: 768px) {
  .sp-break-point {
    display: inline-block;
  }
}

/* =========================
   Compare (Price)
   ========================= */
.price {
  padding: clamp(56px, 6vw, 86px) 0;
  background: #fff;
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 10px;
  padding-bottom: 10px;
}

.table-scroll .scroll-hint-text {
  font-size: 1.2rem;
}

.table-scroll .scroll-hint-icon-wrap {
  z-index: 2;
}

.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
}

.compare-table thead th {
  background: #f4f6f8;
  color: rgba(17, 17, 17, .65);
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: .02em;
  padding: 14px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  text-align: center;
}

.compare-table thead th:first-child {
  text-align: left;
}

.compare-table thead th.is-wego {
  background: var(--c-blue-deep);
  color: #fff;
}

.compare-table tbody th,
.compare-table tbody td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  font-size: 1.6rem;
}

.compare-table tbody th {
  background: rgba(244, 246, 248, .6);
  text-align: left;
  font-weight: 700;
  white-space: nowrap;
}

.compare-table tbody td {
  text-align: center;
  color: rgba(17, 17, 17, .78);
}

.compare-table tbody td.is-wego {
  border-left: none;
  border-right: none;
  background: #eef6ff;
  font-weight: 800;
}

.compare-table tbody td.is-wego.is-wego-muted {
  color: rgba(17, 17, 17, .7);
  font-weight: 700;
}

.compare-table .wego-red {
  color: var(--c-red);
  font-weight: 900;
}

.compare-table .is-blue {
  color: var(--c-blue);
  font-weight: 800;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

/* =========================
   Area
   ========================= */
.area {
  padding: clamp(56px, 6vw, 86px) 0;
  background: #fff;
}

.area-map {
  margin: 18px auto 0;
  width: min(760px, 100%);
  text-align: center;
}

/* =========================
   Safety（パネル）
   ========================= */
.safety {
  padding: 0;
  /* パネル側で余白を管理 */
  background: #fff;
}

.safety-panel {
  background: var(--c-panel);
  /* 背景を横幅いっぱい */
  padding: clamp(56px, 6vw, 86px) 0;
}

.safety-panel .sec-desc {
  margin-bottom: clamp(18px, 3vw, 26px);
  color: rgba(17, 17, 17, .7);
}

.safety-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

@media (min-width: 860px) {
  .safety-grid {
    grid-template-columns: 1fr 1.25fr;
    gap: 28px;
  }
}

.safety-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.safety-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.safety-body {
  padding-top: 4px;
}

.safety-item+.safety-item {
  margin-top: 16px;
}

.safety-item h3 {
  margin: 0 0 6px;
  font-size:2.0rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 8px;
}

.safety-item h3::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #e60012;
  /* default: red */
  flex: none;
}

/* 2番目：青 / 3番目：緑 */
.safety-item:nth-child(2) h3::before {
  background: #2f67ad;
}

.safety-item:nth-child(3) h3::before {
  background: #259b6c;
}

.safety-item h4 {
  margin: 0 0 8px;
  font-size: 1.6rem;
  font-weight: 800;
  color: rgba(17, 17, 17, .72);
}

.safety-item ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.safety-item li {
  position: relative;
  padding-left: 1.1em;
  font-size: 1.6rem;
  line-height: 1.85;
  color: rgba(17, 17, 17, .78);
}

.safety-item li+li {
  margin-top: 6px;
}

.safety-item li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(17, 17, 17, .55);
}

/* =========================
   Scenes（交互レイアウト）
   ========================= */
.scenes {
  padding: clamp(56px, 6vw, 86px) 0;
  background: #fff;
}

.scenes-list {
  margin-top: clamp(22px, 3vw, 34px);
  display: grid;
  gap: clamp(26px, 4vw, 44px);
}

.scene {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
}

@media (min-width: 860px) {
  .scene {
    grid-template-columns: 352px 1fr;
    gap: 26px;
  }

  .scene.is-reverse {
    grid-template-columns: 1fr 352px;
  }

  .scene.is-reverse .scene-media {
    order: 2;
  }

  .scene.is-reverse .scene-content {
    order: 1;
  }
}

.scene-media {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.scene-media img {
  width: 100%;
  height: 232px;
  object-fit: cover;
}

@media (min-width: 860px) {
  .scene-media img {
    height: 210px;
  }
}

.scene-content h3 {
  margin: 0 0 8px;
  font-size: 2.0rem;
  font-weight: 900;
}

.scene-content h4 {
  margin: 0 0 10px;
  font-size: 1.6rem;
  font-weight: 800;
  color: rgba(17, 17, 17, .72);
}

.scene-content p {
  margin: 0;
  color: rgba(17, 17, 17, .78);
  font-size: 1.6rem;
  line-height: 1.85;
}

/* =========================
   Company（2カラム表）
   ========================= */
.company {
  padding: clamp(56px, 6vw, 86px) 0;
  background: #fff;
}

.info-tableWrap {
  width: min(860px, 100%);
  margin: 22px auto 0;
  border: 1px solid rgba(0, 0, 0, .08);
  overflow: hidden;
  background: #fff;
}

.info-table {
  margin: 0;
}

.info-row {
  display: grid;
  grid-template-columns: 180px 1fr;
}

.info-row+.info-row {
  border-top: 1px solid rgba(0, 0, 0, .06);
}

.info-row dt {
  background: #f2f2f2;
  padding: 16px 16px;
  font-weight: 800;
  color: rgba(17, 17, 17, .72);
  display: flex;
  align-items: center;
}

.info-row dd {
  padding: 16px 16px;
  margin: 0;
  color: rgba(17, 17, 17, .82);
  line-height: 1.8;
}

.info-zip {
  margin: 0 0 4px;
  font-size: 1.6rem;
  /* 他と合わせる */
  color: rgba(17, 17, 17, .82);
  font-weight: 700;
}

.info-address {
  margin: 0 0 10px;
}

.info-phone {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .04);
  font-size: 2.4rem;
}

.info-phone span {
  font-size: 1.0rem;
  letter-spacing: .12em;
  color: rgba(17, 17, 17, .55);
  font-weight: 800;
}

.info-phone a {
  font-weight: 900;
  color: var(--c-blue-deep);
  text-decoration: none;
}

.info-phone a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .info-row {
    grid-template-columns: 1fr;
  }

  .info-row dt {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
  }

  .info-row dd {
    padding: 14px;
  }
}

/* =========================
   Recruit
   ========================= */
.recruit {
  padding: clamp(56px, 6vw, 86px) 0;
  background: #fff;
}

.recruit-leadBox {
  max-width: 980px;
  /* テーブルと揃える */
  margin: 0 auto 26px;
  background: #f2f2f2;
  padding: 18px 18px;
  border-radius: 16px;
}

.recruit-leadList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.recruit-leadList li {
  position: relative;
  padding-left: 1.1em;
  font-size: 1.6rem;
  color: rgba(17, 17, 17, .78);
  line-height: 1.7;
}

.recruit-leadList li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(17, 17, 17, .55);
}

.job-card {
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, .08);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* dl表 */
.job-table {
  margin: 0;
}

.job-row {
  display: grid;
  grid-template-columns: 220px 1fr;
}

.job-row+.job-row {
  border-top: 1px solid rgba(0, 0, 0, .06);
}

.job-label {
  background: #f2f2f2;
  padding: 18px 16px;
  font-weight: 900;
  color: rgba(17, 17, 17, .72);
  display: flex;
  align-items: flex-start;
}

.job-content {
  padding: 18px 16px;
  margin: 0;
}

.job-title {
  margin: 0 0 4px;
  font-size: 1.8rem;
  font-weight: 900;
}

.job-note {
  margin: 0;
  font-size: 1.6rem;
  color: rgba(17, 17, 17, .6);
}

.job-text {
  margin: 0;
  color: rgba(17, 17, 17, .78);
  line-height: 1.85;
  font-size: 1.6rem;
}

.job-text+.job-bullets,
.job-bullets+.job-strong {
  margin-top: 12px;
}

.job-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.job-bullets li {
  position: relative;
  padding-left: 1.1em;
  color: rgba(17, 17, 17, .78);
  line-height: 1.75;
  font-size: 1.6rem;
}

.job-bullets li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(17, 17, 17, .45);
  font-size: .9em;
}

.job-strong {
  margin: 0;
  font-weight: 900;
  color: rgba(17, 17, 17, .85);
  line-height: 1.8;
  font-size: 1.35rem;
}

.job-hours {
  margin: 0 0 10px;
  font-size: 1.6rem;
  font-weight: 900;
}

.job-hours span {
  margin-left: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(17, 17, 17, .62);
}

.job-small {
  margin: 0 0 8px;
  font-size: 1.4rem;
  color: rgba(17, 17, 17, .55);
}

.salary-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 10px;
  background: #fff;
  padding-bottom: 10px;
}

.salary-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 1.3rem;
}

@media (max-width: 768px) {
  .salary-wrap {
    margin-top: 10px;
  }

  .salary-table {
    min-width: 560px;
    font-size: 1.2rem;
  }

  .salary-table th,
  .salary-table td {
    padding: 10px 8px;
    white-space: nowrap;
  }

  .salary-table td.is-strong {
    font-size: 1.5rem;
  }

  .salary-table td span,
  .salary-table .is-muted {
    font-size: 1.0rem;
  }
}

@media (max-width: 520px) {
  .salary-table {
    min-width: 520px;
  }

  .salary-table th,
  .salary-table td {
    padding: 9px 8px;
  }
}

.salary-table th {
  background: #f8fafc;
  padding: 10px 10px;
  text-align: left;
  border-bottom: 2px solid var(--c-blue-deep);
  color: rgba(17, 17, 17, .7);
  font-weight: 900;
}

.salary-table td {
  padding: 10px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  color: rgba(17, 17, 17, .78);
}

.salary-table td span {
  display: block;
  font-size: 1.1rem;
  color: rgba(17, 17, 17, .55);
}

.salary-table td.is-strong {
  font-weight: 900;
  font-size: 1.6rem;
  color: rgba(17, 17, 17, .88);
}

.salary-table .is-muted {
  font-size: 1.1rem;
  color: rgba(17, 17, 17, .55);
}

/* =========================
   採用・給与テーブル SP対応
   ========================= */
@media (max-width: 768px) {
  .salary-wrap {
    overflow: visible;
    border: none;
    background: transparent;
    padding-bottom: 0;
  }

  .salary-table,
  .salary-table tbody,
  .salary-table tr,
  .salary-table th,
  .salary-table td {
    display: block;
    width: 100%;
  }

  .salary-table {
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 1.3rem;
  }

  .salary-table thead {
    display: none;
  }

  .salary-table tbody tr {
    margin-bottom: 14px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .04);
  }

  .salary-table tbody th {
    padding: 12px 14px;
    background: #f7f9fc;
    border: none;
    font-size: 1.4rem;
    font-weight: 800;
    text-align: left;
  }

  .salary-table tbody td {
    position: relative;
    padding: 10px 14px 10px 110px;
    border: none;
    border-top: 1px solid rgba(0, 0, 0, .06);
    text-align: left;
    white-space: normal;
    min-height: 44px;
  }

  .salary-table tbody td::before {
    position: absolute;
    top: 10px;
    left: 14px;
    width: 84px;
    color: #6b7280;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    content: "";
  }

  /* 列見出し名をここで指定 */
  .salary-table tbody td:nth-of-type(1)::before {
    content: "給与";
  }

  .salary-table tbody td:nth-of-type(2)::before {
    content: "備考";
  }

  .salary-table tbody td:nth-of-type(3)::before {
    content: "補足";
  }

  .salary-table td.is-strong {
    font-size: 1.6rem;
  }

  .salary-table td span,
  .salary-table .is-muted {
    font-size: 1.1rem;
  }
}

@media (max-width: 520px) {
  .salary-table tbody th {
    padding: 11px 12px;
    font-size: 1.3rem;
  }

  .salary-table tbody td {
    padding: 10px 12px 10px 96px;
  }

  .salary-table tbody td::before {
    left: 12px;
    width: 74px;
    font-size: 1.6rem;
  }

  .salary-table td.is-strong {
    font-size: 1.5rem;
  }
}

.job-grid2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
}

@media (min-width: 860px) {
  .job-grid2 {
    grid-template-columns: 1fr 1fr;
  }
}

.job-box {
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, .06);
  padding: 14px 14px;
}

.job-boxTitle {
  margin: 0 0 10px;
  font-weight: 900;
  color: rgba(17, 17, 17, .8);
}

.job-miniList {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  color: rgba(17, 17, 17, .75);
  font-size: 1.25rem;
}

.job-miniList li {
  position: relative;
  padding-left: 1.1em;
}

.job-miniList li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(17, 17, 17, .55);
}

.job-smallText {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.8;
  color: rgba(17, 17, 17, .65);
}

.job-ordered {
  margin: 12px 0 0;
  padding-left: 1.4em;
  color: rgba(17, 17, 17, .78);
  font-size: 1.35rem;
  line-height: 1.85;
}

.job-ordered li+li {
  margin-top: 8px;
}

@media (max-width: 768px) {
  .job-row {
    grid-template-columns: 1fr;
  }

  .job-label {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
  }

  .job-content {
    padding: 14px;
  }
}

/* =========================
   Recruit responsive tuning
   ========================= */
@media (max-width: 768px) {
  .recruit .sec-desc br {
    display: none;
  }

  .recruit-leadBox {
    padding: 16px 14px;
    border-radius: 12px;
  }

  .recruit-leadList li {
    font-size: 1.6rem;
    line-height: 1.75;
  }

  .job-card {
    border-radius: 12px;
  }

  .job-row {
    grid-template-columns: 1fr;
  }

  .job-label {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    font-size: 1.6rem;
    line-height: 1.5;
  }

  .job-content {
    padding: 14px;
  }

  .job-title {
    font-size: 1.7rem;
    line-height: 1.5;
  }

  .job-note,
  .job-small,
  .job-smallText {
    font-size: 1.6rem;
  }

  .job-text,
  .job-bullets li,
  .job-strong,
  .job-ordered {
    font-size: 1.6rem;
    line-height: 1.8;
  }

  .job-hours {
    font-size: 1.7rem;
    line-height: 1.5;
  }

  .job-hours span {
    display: block;
    margin: 6px 0 0;
    font-size: 1.4rem;
  }

  .job-grid2 {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .job-box {
    padding: 12px;
  }

  .job-boxTitle {
    font-size: 1.6rem;
  }

  .job-miniList {
    font-size: 1.3rem;
  }

  .salary-wrap {
    margin-top: 10px;
    border-radius: 10px;
  }

  .salary-table {
    min-width: 560px;
    font-size: 1.2rem;
  }

  .salary-table th,
  .salary-table td {
    padding: 10px 8px;
    white-space: nowrap;
  }

  .salary-table td.is-strong {
    font-size: 1.5rem;
  }

  .salary-table td span,
  .salary-table .is-muted {
    font-size: 1.6rem;
  }

  .recruit-apply {
    margin-top: 22px;
  }
}

@media (max-width: 520px) {
  .recruit {
    padding: 48px 0 72px;
  }

  .job-label {
    padding: 11px 12px;
  }

  .job-content {
    padding: 12px;
  }

  .salary-table {
    min-width: 520px;
  }

  .salary-table th,
  .salary-table td {
    padding: 9px 8px;
  }
}
@media (max-width: 768px) {
  .job-row {
    grid-template-columns: 1fr;
  }

  .job-label {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
  }

  .job-content {
    padding: 14px;
  }
}

/* Recruit CTA（テーブル下） */
.recruit-apply {
  max-width: 980px;
  margin: 26px auto 0;
  text-align: center;
}

.btn-apply {
  min-height: 60px;
  padding: 0 34px;
  font-size: 1.8rem;
  background: var(--c-red);
  color: #fff;
}

.btn-apply:hover {
  filter: brightness(.95);
  transform: translateY(-1px);
}

/* =========================
   Contact Phone
   ========================= */
.contactPhone {
  background: var(--c-blue);
  color: #fff;
  padding: clamp(44px, 5vw, 64px) 0;
  text-align: center;
}

.contactPhone-inner {
  max-width: 980px;
}

.contactPhone-kicker {
  margin: 0 0 6px;
  font-size: 1.1rem;
  letter-spacing: .18em;
  opacity: .8;
  font-weight: 800;
}

.contactPhone-title {
  margin: 0 0 18px;
  font-size: 2.4rem;
  font-weight: 900;
}

.contactPhone-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .12);
}

.contactPhone-tel {
  display: inline-block;
  text-decoration: none;
  font-size: clamp(3.0rem, 4.6vw, 4.6rem);
  font-weight: 900;
  letter-spacing: .01em;
  color: #fff;
}

.contactPhone-tel:hover {
  opacity: .9;
  text-decoration: underline;
}

.contactPhone-hours {
  margin: 10px 0 0;
  font-size: 1.6rem;
  opacity: .85;
}

/* =========================
   Contact (Tabs + CF7)
   ========================= */
.contact {
  padding: clamp(56px, 6vw, 86px) 0;
  background: #fff;
}

/* Tab UI */
.tab-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
}

.tab-buttons {
  display: flex;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
}

.tab-btn {
  flex: 1;
  padding: 16px 10px;
  font-weight: 900;
  border: none;
  cursor: pointer;
  background: #e5e7eb;
  color: rgba(17, 17, 17, .6);
  transition: background .2s ease, color .2s ease;
}

.tab-btn.is-active {
  background: var(--c-blue);
  color: #fff;
}

.tab-panel {
  border: 1px solid rgba(0, 0, 0, .08);
  border-top: none;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .06);
  padding: 0;
}

/* CF7：フォームを“表”風に寄せる（フォーム側にクラスが無くても効くように広めに当てる） */
.tab-panel .wpcf7 form {
  margin: 0;
}

.tab-panel input[type="text"],
.tab-panel input[type="email"],
.tab-panel input[type="tel"],
.tab-panel input[type="file"],
.tab-panel textarea,
.tab-panel select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 12px 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #f9fafb;
  font-size: 1.4rem;
  line-height: 1.5;
}

.tab-panel textarea {
  min-height: 160px;
  resize: vertical;
}

/* 送信ボタン（CF7標準） */
.tab-panel input[type="submit"],
.tab-panel button[type="submit"] {
  appearance: none;
  border: none;
  background: var(--c-red);
  color: #fff;
  font-weight: 900;
  min-height: 60px;
  padding: 0 34px;
  border-radius: 999px;
  font-size: 1.8rem;
  cursor: pointer;
  transition: transform .15s ease, filter .2s ease;
}

.tab-panel input[type="submit"]:hover,
.tab-panel button[type="submit"]:hover {
  filter: brightness(.95);
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .tab-btn,
  .tab-panel input[type="submit"],
  .tab-panel button[type="submit"] {
    transition: none !important;
  }
}

@media (max-width: 768px) {
  .tab-panel .wpcf7 form p:last-child,
  .cf7-wrap .cf7-submit-wrap,
  .cf7-wrap .cf7-actions {
    text-align: center;
  }

  .tab-panel input[type="submit"],
  .tab-panel button[type="submit"],
  .cf7-wrap .cf7-submit {
    display: inline-flex;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .tab-panel .wpcf7 form p:last-child,
  .cf7-wrap .cf7-submit-wrap,
  .cf7-wrap .cf7-actions,
  .cf7-footer {
    text-align: center;
  }

  .tab-panel input[type="submit"],
  .tab-panel button[type="submit"],
  .cf7-wrap .cf7-submit {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

/* =========================
   CF7（フォーム側に class="cf7-wrap" 等を付けた場合の“完全版”スタイル）
   例：<div class="cf7-wrap"><div class="cf7-row">...</div></div>
   ========================= */
.cf7-wrap {
  color: #333;
}

.cf7-rows {
  display: block;
}

.cf7-row {
  display: flex;
  border-bottom: 1px solid #e5e7eb;
}

.cf7-row:last-child {
  border-bottom: none;
}

.cf7-label {
  width: 30%;
  min-width: 160px;
  background: #f2f2f2;
  padding: 20px 18px;
  display: flex;
  align-items: center;
  font-weight: 900;
  color: #4b5563;
  line-height: 1.5;
}

.cf7-badge {
  background: var(--c-red);
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 8px;
  font-weight: 700;
  flex: none;
}

.cf7-content {
  width: 70%;
  background: #fff;
  padding: 16px 18px;
}

.cf7-wrap .wpcf7-form-control-wrap {
  display: block;
}

.cf7-wrap input[type="text"],
.cf7-wrap input[type="email"],
.cf7-wrap input[type="tel"],
.cf7-wrap input[type="file"],
.cf7-wrap textarea,
.cf7-wrap select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 12px 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #f9fafb;
  font-size: 14px;
  line-height: 1.5;
}

.cf7-wrap textarea {
  min-height: 160px;
  resize: vertical;
}

.cf7-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  padding-top: 6px;
}

.cf7-wrap .wpcf7-list-item {
  margin: 0;
}

.cf7-wrap .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  /* gap: 8px; */
  cursor: pointer;
  user-select: none;
  color: #111827;
}

.cf7-wrap input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--c-blue);
}

.cf7-footer {
  padding: 26px 18px;
  text-align: center;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
}

.cf7-wrap .cf7-submit {
  appearance: none;
  border: none;
  background: var(--c-red);
  color: #fff;
  font-weight: 900;
  min-height: 60px;
  padding: 0 34px;
  border-radius: 999px;
  font-size: 1.8rem;
  cursor: pointer;
  transition: transform .15s ease, filter .2s ease;
}

.cf7-wrap .cf7-submit:hover {
  filter: brightness(.95);
  transform: translateY(-1px);
}

.cf7-wrap .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 12px;
  color: var(--c-red);
}

.cf7-wrap .wpcf7-response-output {
  margin: 16px auto 0;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.6;
  max-width: 720px;
}

@media (max-width:768px) {
  .cf7-row {
    flex-direction: column;
  }

  .cf7-label {
    width: 100%;
    min-width: 0;
    padding: 14px 18px;
    border-bottom: 1px solid #e5e7eb;
  }

  .cf7-content {
    width: 100%;
    padding: 14px 18px;
  }
}



/* =========================
   MV Scroll Down indicator
   - 円と矢印を1要素で完結（ズレ防止）
   ========================= */
.mv {
  position: relative;
}

/* ===== MV scroll indicator: center arrow vertically ===== */
.mv-scroll {
  display: block;
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, .75);
  transform: translateX(-50%);
  z-index: 10;
  text-decoration: none;
}

/* 中にimg/svgが入っていてもズレないように非表示 */
.mv-scroll>* {
  display: none !important;
}

/* 棒（円のど真ん中に置く） */
.mv-scroll::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 16px;
  background: rgba(255, 255, 255, .9);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  /* ←上下中央に固定 */
}

/* V字（棒の下端に自然に付く位置に） */
.mv-scroll::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(255, 255, 255, .9);
  border-bottom: 2px solid rgba(255, 255, 255, .9);
  transform: translate(-50%, -45%) rotate(45deg);
  /* ←中央付近に寄せる */
}

/* 上下アニメは円ごと動かす */
@keyframes mvScrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(7px);
  }
}

.mv-scroll {
  animation: mvScrollBounce 1.6s ease-in-out infinite;
}

@media (max-width: 480px) {
  .mv-scroll {
    bottom: 24px;
    width: 52px;
    height: 52px;
  }
}

/* =========================
   Typography (accessibility)
   - 本文は最低16px
   ========================= */
body {
  font-size: 1.6rem;
}

p,
li,
dd,
dt,
td,
th,
input,
textarea,
select,
button {
  font-size: 1.6rem;
}

/* スクロール表示アニメーション */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 少し遅らせたいとき用 */
.fade-up.delay-1 {
  transition-delay: 0.15s;
}

.fade-up.delay-2 {
  transition-delay: 0.3s;
}

.fade-up.delay-3 {
  transition-delay: 0.45s;
}

/* 動きを減らしたい環境への配慮 */
@media (prefers-reduced-motion: reduce) {
  .fade-up,
  .fade-up.is-visible,
  .fade-up.delay-1,
  .fade-up.delay-2,
  .fade-up.delay-3 {
    opacity: 1;
    transform: none;
    transition: none;
  }
}