/* ============================================================
   recruit-work.css — 採用サブページ: 仕事を知る
   recruit.css + recruit-vision.css と併用
   ============================================================ */


/* ============================
   ページヒーロー（上書き）
============================ */
.rw-hero {
  background-color: #FFF0C7;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.rw-hero .rv-hero-title {
  /* ベースの白+text-shadowを継承 */
}
.rc-breadcrumb {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 24px;
}

.rc-breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 0;
  margin: 0;
  font-size: 0.8rem;
  color: #999;
}

.rc-breadcrumb ol li:not(:last-child)::after {
  content: '>';
  margin-left: 4px;
  color: #ccc;
}

.rc-breadcrumb ol li a {
  color: #666;
  text-decoration: none;
}

.rc-breadcrumb ol li a:hover {
  text-decoration: underline;
}

/* ============================
   Intro — 水・空気・防災
============================ */
.rw-intro {
  padding: 80px 0 100px;
  background: #fff;
}

.rw-intro-heading {
  font-size: 32px;
  font-weight: 700;
  color: var(--rc-navy);
  text-align: left;
  line-height: 1.8;
  margin-bottom: 56px;
}

.rw-intro-cards {
  display: flex;
  gap: 32px;
}

.rw-intro-card {
  flex: 1;
}

.rw-intro-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #0C2C5D;
  text-align: center;
  margin-bottom: 16px;
}

.rw-intro-card-img {
  width: 100%;
  height: 220px;
  background-color: #e0e0e0;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  margin-bottom: 20px;
}

.rw-intro-card-text {
  font-size: 14px;
  font-weight: 500;
  color: #555;
  line-height: 2;
}


/* ============================
   Job Introduction — 職種紹介
============================ */
.rw-jobs {
  padding: 80px 0;
  background: #fff;
}

.rw-section-title {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 64px;
  font-weight: 300;
  color: var(--rc-orange);
  letter-spacing: 0.12em;
  line-height: 1;
  margin-bottom: 16px;
  text-align: center;
}

.rw-section-subtitle {
  font-size: 22px;
  font-weight: 600;
  color: var(--rc-orange);
  margin-bottom: 56px;
  text-align: center;
}

/* ジョブカード ヒーロー画像（タブレット以下で表示） */
.rw-job-card-hero {
  display: none;
}

/* ジョブカード */
.rw-job-card {
  background: #E5F4F7;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 48px;
}

.rw-job-card:last-child {
  margin-bottom: 0;
}

.rw-job-card-main {
  display: flex;
  gap: 40px;
}

.rw-job-card-body {
  flex: 1.2;
  min-width: 0;
}

.rw-job-label {
  display: inline-block;
  color: var(--rc-orange);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.rw-job-title {
  font-size: 28px;
  font-weight: 900;
  color: #0C2C5D;
  margin-bottom: 20px;
}

.rw-job-desc {
  font-size: 14px;
  font-weight: 500;
  color: #555;
  line-height: 2;
  margin-bottom: 28px;
}

.rw-job-duties-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--rc-orange);
  margin-bottom: 16px;
}

.rw-job-duties {
  list-style: none;
  padding: 8px 0;
  margin: 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.rw-job-duties li {
  font-size: 14px;
  font-weight: 500;
  color: #555;
  padding: 3px 0;
}

/* カード右サイド */
.rw-job-card-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-bottom: 28px;
}

.rw-job-card-img {
  width: 100%;
  height: 340px;
  background-color: #d0d0d0;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
}

.rw-job-interview-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--rc-navy);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 40px;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
  letter-spacing: 1px;
  position: relative;
  margin-top: -28px;
  z-index: 2;
}

.rw-job-interview-btn:hover {
  opacity: 0.85;
}

/* カード下部: 2カード横並び */
.rw-job-card-bottom {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  align-items: stretch;
}

/* こんな人が向いている */
.rw-job-fit {
  flex: 6;
  background: #fff;
  padding: 28px 32px;
  position: relative;
  z-index: 2;
}

.rw-job-fit::after {
  content: '';
  position: absolute;
  right: -37px;
  top: -1px;
  width: 38px;
  height: calc(100% + 2px);
  background: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  z-index: 3;
}

.rw-job-fit-title {
  font-size: 20px;
  font-weight: 700;
  color: #0C2C5D;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #0C2C5D;
}

.rw-job-fit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rw-job-fit-list li {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  line-height: 2;
  padding-left: 28px;
  position: relative;
}

.rw-job-fit-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 18px;
  height: 18px;
  background: #F1AA2A;
  border-radius: 50%;
}

/* 将来のイメージ */
.rw-job-future {
  flex: 4;
  background: #F36327;
  padding: 28px 32px 28px 60px;
  color: #fff;
  position: relative;
}

.rw-job-future::before {
  content: '';
  position: absolute;
  left: -1px;
  top: -1px;
  width: 38px;
  height: calc(100% + 2px);
  background: #E5F4F7;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  z-index: 1;
}

.rw-job-future-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #fff;
}

.rw-job-future-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.rw-job-future-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  flex: 1;
}

.rw-job-future-img {
  width: 120px;
  height: 120px;
  background-color: #fff;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  flex-shrink: 0;
}


/* ============================
   Organization — 組織イメージ
============================ */
.rw-org {
  padding: 80px 0;
  background: #F0F1F2;
}

.rw-org-chart {
  max-width: 900px;
  margin: 0 auto;
}

.rw-org-company {
  font-size: 28px;
  font-weight: 900;
  color: var(--rc-navy);
  text-align: center;
  margin-bottom: 8px;
}

.rw-org-date {
  font-size: 14px;
  font-weight: 500;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
}

/* カード横並び */
.rw-org-cards {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.rw-org-card {
  flex: 1;
  border: 2px solid var(--rc-navy);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.rw-org-card--wide {
  flex: 2;
}

.rw-org-card-header {
  background: var(--rc-navy);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  padding: 16px 20px;
}

.rw-org-card-body {
  background: #fff;
  padding: 28px 20px;
  text-align: center;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rw-org-card-count {
  font-size: 22px;
  font-weight: 700;
  color: var(--rc-navy);
}

/* 工事部: 2カラム分割 */
.rw-org-card-body--split {
  display: flex;
  padding: 0;
}

.rw-org-card-sub {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
}

.rw-org-card-sub + .rw-org-card-sub {
  border-left: 1px solid #ddd;
}

.rw-org-card-sub-name {
  font-size: 15px;
  font-weight: 700;
  color: #0095B5;
}


/* ============================
   RESPONSIVE — Tablet (≤ 1024px)
============================ */
@media (max-width: 1024px) {
  .rw-intro-heading { font-size: 24px; }
  .rw-intro-cards { gap: 20px; }
  .rw-intro-card-img { height: 220px; }
  .rw-intro-card-title { font-size: 16px; }
  .rw-intro-card-text { font-size: 13px; }

  .rw-section-title { font-size: 48px; }
  .rw-section-subtitle { font-size: 18px; }

  .rw-job-card { padding: 28px; }
  .rw-job-card-main { gap: 24px; }
  .rw-job-card-img { height: 320px; }
  .rw-job-title { font-size: 22px; }
  .rw-job-fit { padding: 24px 28px; }
  .rw-job-fit-title { font-size: 17px; }
  .rw-job-fit-list li { font-size: 16px; }
  .rw-job-future { padding: 24px 28px 24px 52px; }
  .rw-job-future-title { font-size: 17px; }
  .rw-job-future-text { font-size: 17px; }
  .rw-job-future-img { width: 90px; height: 90px; }

  .rw-org-cards { gap: 16px; }
  .rw-org-card-header { font-size: 16px; padding: 14px 16px; }
  .rw-org-card-count { font-size: 18px; }
}


/* ============================
   RESPONSIVE — Mobile (≤ 640px)
============================ */
@media (max-width: 640px) {
  /* Intro */
  .rw-intro {
    padding: 48px 0 60px;
  }
  .rw-intro-heading {
    font-size: 20px;
    margin-bottom: 32px;
  }
  .rw-intro-cards {
    flex-direction: column;
    gap: 32px;
  }
  .rw-intro-card-img { height: 180px; border-radius: 10px; }
  .rw-intro-card-title { font-size: 16px; }
  .rw-intro-card-text { font-size: 13px; line-height: 1.9; }

  /* Job Introduction */
  .rw-jobs { padding: 48px 0; }
  .rw-section-title { font-size: 32px; letter-spacing: 0.06em; }
  .rw-section-subtitle { font-size: 15px; margin-bottom: 28px; }

  .rw-job-card-hero {
    display: block;
    width: 100%;
    height: 220px;
    background-color: #d0d0d0;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 16px;
  }

  .rw-job-card {
    padding: 20px 16px;
    margin-bottom: 24px;
    border-radius: 14px;
  }

  .rw-job-card-main {
    flex-direction: column;
    gap: 20px;
  }

  .rw-job-card-side {
    width: 100%;
    align-items: center;
  }

  .rw-job-card-img { display: none; }
  .rw-job-interview-btn { font-size: 14px; padding: 14px 32px; margin-top: 0; }

  .rw-job-title { font-size: 22px; margin-bottom: 14px; }
  .rw-job-desc { font-size: 13px; line-height: 1.9; margin-bottom: 16px; }
  .rw-job-duties-title { font-size: 14px; }
  .rw-job-duties li { font-size: 13px; }

  .rw-job-card-bottom {
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
  }

  .rw-job-fit {
    padding: 20px 16px;
    padding-bottom: 48px;
  }
  .rw-job-fit::after {
    right: -1px;
    top: auto;
    bottom: -40px;
    left: -1px;
    transform: none;
    width: calc(100% + 2px);
    height: 42px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
  .rw-job-fit-title { font-size: 16px; }
  .rw-job-fit-list li { font-size: 15px; }

  .rw-job-future {
    width: 100%;
    padding: 48px 16px 20px;
  }
  .rw-job-future::before {
    left: -1px;
    top: -1px;
    transform: none;
    width: calc(100% + 2px);
    height: 42px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
  .rw-job-future-title { font-size: 16px; }
  .rw-job-future-text { font-size: 16px; }
  .rw-job-future-img { width: 80px; height: 80px; }

  /* Organization */
  .rw-org { padding: 48px 0; }
  .rw-org-company { font-size: 22px; }
  .rw-org-date { margin-bottom: 28px; }
  .rw-org-cards {
    flex-direction: column;
    gap: 16px;
  }
  .rw-org-card--wide { flex: 1; }
  .rw-org-card-header { font-size: 15px; padding: 12px 16px; }
  .rw-org-card-body { padding: 20px 16px; }
  .rw-org-card-count { font-size: 18px; }
  .rw-org-card-sub { padding: 16px 12px; }
  .rw-org-card-sub-name { font-size: 13px; }
}
.rw-job-card-img--4 {
  background-image: url("http://webkikaku-yoloi.site/okudashoukou-recruit/wp-content/uploads/2026/03/260313_0147-scaled.jpg");
}

.rw-job-future-img--4 {
  background-image: url("http://webkikaku-yoloi.site/okudashoukou-recruit/wp-content/uploads/2026/03/260313_0158-scaled.jpg");
}