/* page-entry.php — 採用エントリー（__prototype/entry.html より移植） */
    /* ========== Entry MV ========== */
    .entry-mv {
      position: relative;
      width: 100%;
      aspect-ratio: 375 / 240;
      background-color: #2a2a2a;
      /* タイトル背景は jobs と同じ title_job.png ＋ 可読性確保の暗幕 */
      background-image:
        linear-gradient(rgba(0,0,0,0.42), rgba(0,0,0,0.42)),
        url(../images/title_job.png);
      background-size: cover;
      background-position: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }
    .entry-mv__en {
      font-family: var(--font-serif);
      font-weight: 300;
      font-size: 12px;
      color: var(--gold);
      letter-spacing: 0.15em;
    }
    .entry-mv__ja {
      font-family: var(--font-serif);
      font-weight: 500;
      font-size: 20px;
      color: var(--white);
      letter-spacing: 0.08em;
    }

    /* ========== Entry Cards ========== */
    .entry-list {
      display: flex;
      flex-direction: column;
      gap: 40px;
      padding: 40px calc(20 / 375 * 100%) 40px;
    }
    /* オンライン会社説明会バナー（白帯＋右ゴールド矢印・画像なし） */
    .entry-seminar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 22px 20px;
      background: var(--white);
      box-shadow: 0 20px 14px rgba(0, 0, 0, 0.1);
      font-family: var(--font-sans);
      font-weight: 600;
      font-size: 15px;
      color: var(--heading);
      letter-spacing: 0.05em;
      line-height: 1.4;
    }
    .entry-seminar__arrow {
      flex-shrink: 0;
      width: 9px;
      height: 9px;
      border-top: 2px solid var(--gold);
      border-right: 2px solid var(--gold);
      transform: rotate(45deg);
      margin-left: auto;
    }
    .entry-card {
      position: relative;
      display: block;
      width: 100%;
      aspect-ratio: 335 / 189;
      background-color: var(--gray-400);
      background-image:
        linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0.05) 100%);
      background-size: cover;
      background-position: center;
      box-shadow: 0 20px 14px rgba(0, 0, 0, 0.1);
    }
    .entry-card__btn {
      position: absolute;
      right: 0;
      bottom: 20px;
      display: flex;
      align-items: center;
      width: 172px;
      height: 73px;
      padding: 0 20px;
      background: var(--white);
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: 14px;
      color: var(--heading);
      letter-spacing: 0.05em;
      line-height: 1.4;
    }
    .entry-card__btn::after {
      content: "";
      flex-shrink: 0;
      width: 8px;
      height: 8px;
      border-top: 2px solid var(--gold);
      border-right: 2px solid var(--gold);
      transform: rotate(45deg);
      margin-left: auto;
    }

    /* ========== Entry Card Accordion (4職種: 看護師/カウンセラー/コンシェルジュ/CSC) ========== */
    .entry-card--accordion {
      display: block;
      position: relative;
      width: 100%;
      background: transparent;
      box-shadow: none;
      aspect-ratio: auto;
    }
    .entry-card__summary {
      list-style: none;
      display: block;
      position: relative;
      width: 100%;
      aspect-ratio: 335 / 189;
      background-color: var(--gray-400);
      background-image:
        linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0.05) 100%);
      background-size: cover;
      background-position: center;
      box-shadow: 0 20px 14px rgba(0, 0, 0, 0.1);
      cursor: pointer;
    }
    .entry-card__summary::-webkit-details-marker { display: none; }
    .entry-card__summary::marker { content: ""; }
    .entry-card--accordion .entry-card__btn::after { display: none; }
    .entry-card__icon {
      flex-shrink: 0;
      position: relative;
      width: 14px;
      height: 14px;
      margin-left: auto;
    }
    .entry-card__icon::before,
    .entry-card__icon::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      background: var(--gold);
    }
    .entry-card__icon::before {
      width: 14px;
      height: 2px;
      transform: translate(-50%, -50%);
    }
    .entry-card__icon::after {
      width: 2px;
      height: 14px;
      transform: translate(-50%, -50%);
      transition: transform 0.2s ease;
    }
    .entry-card--accordion[open] .entry-card__icon::after {
      transform: translate(-50%, -50%) scaleY(0);
    }

    /* ========== Job Panel (アコーディオン展開コンテンツ) ========== */
    .job-panel {
      background: var(--white);
      padding: 28px 18px 32px;
      font-family: var(--font-sans);
    }
    .job-panel__title {
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: 18px;
      color: var(--heading);
      letter-spacing: 0.05em;
      text-align: center;
      margin: 0 0 24px;
    }
    .job-panel__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      column-gap: 14px;
      row-gap: 28px;
      align-items: start;
    }
    .job-area { text-align: center; }
    .job-area__name {
      font-family: var(--font-sans);
      font-weight: 600;
      font-size: 14px;
      color: var(--heading);
      letter-spacing: 0.04em;
      margin: 0 0 8px;
    }
    .job-area__status {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      width: 100%;
      height: 30px;
      border-radius: 999px;
      background: var(--gold);
      color: var(--white);
      font-family: var(--font-sans);
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 0.05em;
      margin-bottom: 12px;
    }
    .job-area__status--closed { background: var(--gray-400); }
    .job-area__status-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 16px;
      height: 16px;
      background: var(--white);
      border-radius: 50%;
    }
    .job-area__status-icon::after {
      content: "";
      width: 4px;
      height: 4px;
      border-top: 1.5px solid var(--gold);
      border-right: 1.5px solid var(--gold);
      transform: rotate(45deg) translate(-1px, 1px);
    }
    .job-area__clinics {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2px 10px;
      font-family: var(--font-sans);
      font-weight: 400;
      font-size: 13px;
      color: var(--heading);
      line-height: 1.9;
    }

