/* ===== JOB CARDS ===== */
  .jobs-section { background: var(--pink-pale); position: relative; overflow: hidden; }

  .jobs-section::before {
    content: 'JOBS';
    position: absolute;
    right: -8px; bottom: -16px;
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(68px, 16vw, 160px);
    font-weight: 700;
    color: rgba(240,62,122,0.05);
    letter-spacing: 0.08em;
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
  }

  .job-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

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

  .job-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--pink-light);
    transition: transform 0.25s;
    cursor: pointer;
    animation: fadeUp 0.7s ease both;
    display: flex;
    flex-direction: column;
  }

  .job-card:nth-child(1) { animation-delay: 0.2s; }
  .job-card:nth-child(2) { animation-delay: 0.3s; }
  .job-card:nth-child(3) { animation-delay: 0.4s; }

  .job-card:hover {
    transform: translateY(-4px);
  }

  /* ★ カード上部の画像エリア ★ */
  .job-card-thumb {
    width: 100%;
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
  }

  /* 画像の上にピンクグラデオーバーレイ */
  .job-card-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(192,24,90,0.15) 0%,
      rgba(255,240,245,0.55) 100%
    );
  }

  .job-card:hover .job-card-thumb {
    background-size: 108%;
    transition: background-size 0.5s ease;
  }

  /* badge をサムネ上に重ねる */
  .job-card-thumb .job-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 1;
    margin-bottom: 0;
  }

  /* サムネ以下のコンテンツエリア */
  .job-card-body {
    padding: 16px 26px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .job-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
    letter-spacing: 0.08em;
  }

  .badge-new { background: var(--pink-main); color: white; }
  .badge-popular { background: var(--navy); color: white; }
  .badge-daily { background: var(--pink-light); color: var(--pink-deep); }

  .job-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.6;
  }

  .job-pay {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--pink-main);
    margin-bottom: 12px;
    font-family: 'Noto Serif JP', serif;
  }

  .job-pay span { font-size: 14px; font-weight: 400; color: var(--gray-text); }

  .job-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }

  .job-tag {
    font-size: 13px;
    color: var(--gray-text);
    background: var(--pink-pale);
    border: 1px solid var(--pink-light);
    padding: 4px 12px;
    border-radius: 50px;
  }

  .job-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--pink-light);
  }

  .job-store { font-size: 14px; color: var(--gray-text); }

  .btn-sm {
    font-size: 14px;
    font-weight: 700;
    color: var(--pink-main);
    background: rgba(240,62,122,0.08);
    border: 1px solid rgba(240,62,122,0.25);
    padding: 7px 18px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s;
    cursor: pointer;
  }

  .btn-sm:hover { background: rgba(240,62,122,0.18); }
