/* =========================
   募集ページ
========================= */

.recruit-page {
  background: #f5fbf6;
  color: #24352a;
}

.recruit-hero {
  padding: 70px 20px;
  background: linear-gradient(135deg, #e8f7ec, #ffffff);
  text-align: center;
}

.recruit-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.recruit-badge {
  display: inline-block;
  background: #2f8f46;
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: bold;
  margin-bottom: 20px;
}

.recruit-hero h1 {
  font-size: 42px;
  line-height: 1.35;
  margin-bottom: 20px;
  color: #1f6b34;
}

.recruit-hero p {
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 30px;
}

.recruit-hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.recruit-info,
.recruit-flow,
.recruit-cta {
  max-width: 960px;
  margin: 40px auto;
  padding: 36px 20px;
  background: #fff;
  border-radius: 20px;
  text-align: center;
}

.recruit-info h2,
.recruit-flow h2,
.recruit-cta h2 {
  text-align: center;
  color: #1f6b34;
  margin-bottom: 26px;
}

.recruit-point-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.recruit-point {
  background: #f1f8f3;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.recruit-point h3 {
  color: #2f8f46;
  margin-bottom: 10px;
}

.recruit-flow ol {
  list-style-position: inside;

  padding: 0;
  margin: 0 auto;

  text-align: center;

  line-height: 2.2;

  font-size: 18px;
}

.recruit-cta {
  text-align: center;
  margin-bottom: 60px;
}

.recruit-cta p {
  margin-bottom: 24px;
}

.btn-line.large {
  font-size: 18px;
  padding: 16px 28px;
}

@media (max-width: 768px) {
  .recruit-hero h1 {
    font-size: 32px;
  }

  .recruit-point-grid {
    grid-template-columns: 1fr;
  }
}

/* 共通ボタン */
.btn-line,
.btn-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 220px;
  padding: 16px 28px;

  border-radius: 999px;

  font-size: 17px;
  font-weight: bold;

  text-decoration: none;

  transition: 0.25s ease;

  box-sizing: border-box;
}

.btn-line {
  background: #39c94b;
  color: #fff;

  border: 2px solid #39c94b;
}

.btn-line:hover {
  background: #2fa63f;
  border-color: #2fa63f;

  transform: translateY(-2px);
}

.btn-detail {
  background: #fff;
  color: #2f8f46;

  border: 2px solid #59b443;
}

.btn-detail:hover {
  background: #59b443;
  color: #fff;

  transform: translateY(-2px);
}

.recruit-hero-buttons {
  display: flex;
  justify-content: center;

  gap: 18px;
  flex-wrap: wrap;

  margin-top: 32px;
}

.recruit-flyer {
  max-width: 1000px;

  margin: 50px auto;
  padding: 40px;

  background: #fff;

  border-radius: 28px;

  text-align: center;
}

.recruit-flyer h2 {
  color: #1f6b34;
  margin-bottom: 20px;
}

.flyer-buttons {
  margin: 24px 0 36px;
}

.flyer-preview img {
  width: 100%;
  max-width: 700px;

  border-radius: 20px;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08);
}

/* =========================
   共通カード
========================= */

.content-card {
  width: 100%;
  max-width: 1000px;

  margin: 50px auto;
  padding: 50px;

  background: #ffffff;

  border-radius: 28px;

  box-sizing: border-box;

  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.05);
}

.flow-list {
  max-width: 420px;
  margin: 0 auto;
}

.flow-item {
  display: grid;

  grid-template-columns: 40px 1fr;

  align-items: center;

  margin-bottom: 18px;

  font-size: 18px;
  line-height: 1.8;
}

.flow-item .num {
  font-weight: bold;
  text-align: right;
}

/* =========================
   スマホ対応
========================= */

@media (max-width: 768px) {

  .recruit-card {
    grid-template-columns: 1fr;
  }

  .recruit-image {
    padding: 18px 18px 0;
  }

  .recruit-content {
    padding: 28px 24px 36px;
    text-align: center;
    align-items: center;
  }

  .recruit-content h2 {
    font-size: 36px;
    line-height: 1.4;
  }

  .recruit-content p {
    font-size: 16px;
    line-height: 1.9;
  }

  .recruit-buttons {
    width: 100%;
    justify-content: center;
  }

  .btn-line,
  .btn-detail {
    width: 100%;
    max-width: 320px;
  }

  .content-card {
    padding: 32px 22px;
    border-radius: 22px;
  }

  .flyer-preview img {
    max-width: 100%;
  }

  .flow-list {
    max-width: 100%;
  }

  .flow-item {
    grid-template-columns: 34px 1fr;
    font-size: 16px;
  }

  .recruit-point-grid {
    grid-template-columns: 1fr;
  }

}