/* ============================================================
   recruit-entry.css — 採用 エントリーページ
   ============================================================ */


/* ============================
   ヒーロー（背景画像）
============================ */
.rv-hero--entry {
  background: center center / cover no-repeat;
  position: relative;
}

.rv-hero--entry::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  border-radius: inherit;
}

.rv-hero--entry .rv-hero-title {
  position: relative;
  z-index: 1;
}
.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;
}

/* ============================
   フォームセクション
============================ */
.re-section {
  background: #fff;
  padding: 64px 0 96px;
}

.re-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.re-lead {
  font-size: 13px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 48px;
}


/* ============================
   フォーム行
============================ */
.re-form {
  display: flex;
  flex-direction: column;
}

.re-row {
  display: flex;
  align-items: flex-start;
  padding: 28px 0;
  border-top: 1px solid #ddd;
}

.re-row:last-of-type {
  border-bottom: 1px solid #ddd;
}


/* ============================
   ラベル
============================ */
.re-label {
  width: 180px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-top: 6px;
}

.re-label-text {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  width: 110px;
  flex-shrink: 0;
}

.re-badge {
  display: inline-block;
  background: #FB0000;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  line-height: 1.4;
}


/* ============================
   フィールド
============================ */
.re-field {
  flex: 1;
  min-width: 0;
  width: 100%;
}

/* テキスト入力 */
.re-input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  font-size: 14px;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}

.re-input:focus {
  border-color: #1B2A4A;
}

/* テキストエリア */
.re-textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 12px;
  font-size: 14px;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
  resize: vertical;
}

.re-textarea:focus {
  border-color: #1B2A4A;
}


/* ============================
   チェックボックス
============================ */
.re-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #333;
  margin-right: 20px;
  cursor: pointer;
  padding-top: 6px;
}

.re-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #1B2A4A;
}


/* ============================
   住所フィールド
============================ */
.re-field--address {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.re-address-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.re-address-prefix {
  font-size: 14px;
  color: #333;
  flex-shrink: 0;
}

.re-input--zip {
  max-width: 200px;
}


/* ============================
   ファイル添付
============================ */
.re-file-btn {
  display: inline-block;
  background: #333;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 24px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.re-file-btn:hover {
  background: #555;
}

.re-file-input {
  display: none;
}

.re-file-note {
  font-size: 12px;
  color: #777;
  margin-top: 8px;
  line-height: 1.6;
}


/* ============================
   個人情報
============================ */
.re-privacy {
  margin-top: 40px;
  font-size: 12px;
  color: #555;
  line-height: 1.85;
}


/* ============================
   送信ボタン
============================ */
.re-submit-wrap {
  margin-top: 40px;
  text-align: center;
}

.re-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: #eee;
  color: #555;
  font-size: 15px;
  font-weight: 500;
  padding: 18px 32px 18px 48px;
  min-width: 280px;
  justify-content: center;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}

.re-submit-btn:hover {
  background: #ddd;
}

.re-submit-arrow {
  font-size: 24px;
  font-weight: 900;
  color: #333;
}


/* ============================
   RESPONSIVE — Tablet (≤ 1024px)
============================ */
@media (max-width: 1024px) {
  .re-section {
    padding: 48px 0 72px;
  }

  .re-label {
    width: 160px;
  }
}


/* ============================
   RESPONSIVE — Mobile (≤ 640px)
============================ */
@media (max-width: 640px) {
  .re-section {
    padding: 40px 0 56px;
  }

  .re-container {
    padding: 0 16px;
  }

  .re-lead {
    font-size: 12px;
    margin-bottom: 32px;
  }

  .re-row {
    flex-direction: column;
    gap: 8px;
    padding: 20px 0;
  }

  .re-label {
    width: 100%;
    gap: 8px;
  }

  .re-label-text {
    width: auto;
    font-size: 13px;
  }

  .re-badge {
    font-size: 10px;
    padding: 2px 6px;
  }

  .re-checkbox {
    font-size: 13px;
    margin-right: 12px;
    padding-top: 0;
  }

  .re-input,
  .re-textarea {
    font-size: 16px; /* iOSズーム防止 */
    padding: 10px;
  }

  .re-input--zip {
    max-width: 160px;
  }

  .re-file-btn {
    font-size: 12px;
    padding: 8px 20px;
  }

  .re-file-note {
    font-size: 11px;
  }

  .re-privacy {
    margin-top: 28px;
    font-size: 11px;
  }

  .re-submit-wrap {
    margin-top: 28px;
  }

  .re-submit-btn {
    width: 100%;
    min-width: 0;
    font-size: 14px;
    padding: 16px 24px 16px 32px;
  }

  .re-submit-arrow {
    font-size: 20px;
  }
}
