/* =======================
   キャスト募集 page
   ======================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Noto Sans JP", sans-serif;
  color: #145087;
}

/* 背景より前に出す & 高さ確保 */
.page-content {
  position: relative;
  z-index: 10;
  min-height: 100vh;
}

/* コンテンツ幅（SP） */
.main {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 16px 40px;
}

/* SECTION 共通 */
.section {
  margin-top: 40px;
}

.section__inner {
  max-width: 480px;
  margin: 0 auto;
}

.section-title {
  font-size: 18px;
  letter-spacing: 0.25em;
  color: #145087;
  margin: 0 0 16px;
}

.section-title--center {
  text-align: center;
}

/* -----------------------
   ページ見出し
   ----------------------- */

.section-intro {
  margin-top: 24px;
}

.page-heading {
  background: #ffffffee;
  border-radius: 18px;
  padding: 12px 12px 16px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(13, 71, 125, 0.08);
  border: 1px solid #e2f1ff;
  margin-bottom: 16px;
}

.page-heading__title {
  margin: 0 0 4px;
  font-size: 16px;
  letter-spacing: 0.2em;
  color: #145087;
}

.page-heading__subtitle {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
  color: #34536f;
}

/* TOP画像スペース */
.recruit-hero {
  margin-top: 10px;
  border-radius: 22px;
  background: #dfefff;
  height: 220px;          /* 好きに調整してOK */
  overflow: hidden;
  position: relative;
}

.recruit-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.recruit-lead {
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.9;
  color: #34536f;
}

/* 共通ボタン */
.btn-primary {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 999px;
  background: #1c63d2;
  color: #ffffff;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.18em;
}

.btn-primary--wide {
  padding-left: 36px;
  padding-right: 36px;
}

.cta-center {
  margin-top: 18px;
  text-align: center;
}

.cta-note {
  margin-top: 6px;
  font-size: 11px;
  color: #6a7c93;
}

/* -----------------------
   レンタル彼女とは
   ----------------------- */

.section-job .section-title {
  margin-bottom: 10px;
}

.section-lead {
  font-size: 12px;
  line-height: 1.8;
  color: #34536f;
  margin: 0 0 16px;
}

.job-card-list {
  display: grid;
  gap: 14px;
}

.job-card__image {
  position: relative;
  border-radius: 22px;
  background: #dcdcdc;
  padding: 32px 20px;
  text-align: center;
  overflow: hidden;
}

/* 将来画像を入れたとき、少し薄く見せるレイヤー */
.job-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}

.job-card__text {
  position: relative;
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #145087;
  font-weight: 500;
}

/* -----------------------
   安心して働ける仕組み
   & こんな方にお勧め
   ----------------------- */

.section-info {
  margin-top: 40px;
}

.info-card {
  background: #ffffffee;
  border-radius: 22px;
  padding: 16px 16px 18px;
  box-shadow: 0 4px 12px rgba(13, 71, 125, 0.08);
  border: 1px solid #e2f1ff;
  margin-bottom: 20px;
}

.info-card__title {
  font-size: 14px;
  letter-spacing: 0.12em;
  color: #145087;
  margin: 0 0 10px;
  text-align: center;
}

.info-card__list {
  margin: 0;
  padding-left: 1.1em;
  list-style: disc;
  font-size: 12px;
  line-height: 1.8;
  color: #34536f;
}

/* チェックマーク版 */
.info-card__list--check {
  list-style: none;
  padding-left: 0;
}

.info-card__list--check li {
  position: relative;
  padding-left: 20px;
}

.info-card__list--check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.2em;
  font-size: 13px;
  color: #1bbf5c;
}

/* -----------------------
   募集要項
   ----------------------- */

.section-spec {
  margin-top: 44px;
}

.spec-card {
  background: #ffffffee;
  border-radius: 24px;
  padding: 18px 16px 20px;
  box-shadow: 0 4px 12px rgba(13, 71, 125, 0.08);
  border: 1px solid #e2f1ff;
}

.spec-item + .spec-item {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed #ffe08a;
}

.spec-item__title {
  display: inline-block;
  position: relative;
  font-size: 13px;
  font-weight: 600;
  color: #145087;
  padding-bottom: 3px;
  margin: 0 0 6px;
}

.spec-item__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffe08a, #ffd25a);
  opacity: 0.6;
  z-index: -1;
}

.spec-item__text {
  margin: 0;
  font-size: 12px;
  line-height: 1.8;
  color: #34536f;
}

.spec-item__list {
  margin: 0;
  padding-left: 1.2em;
  list-style: disc;
  font-size: 12px;
  line-height: 1.8;
  color: #34536f;
}

.spec-item__note {
  margin: 4px 0 0;
  font-size: 11px;
  line-height: 1.7;
  color: #6a7c93;
}

/* -----------------------
   収入について
   ----------------------- */

.section-income {
  margin-top: 48px;
}

.income-summary-card {
  background: #fffaf0;
  border-radius: 20px;
  padding: 16px 16px 18px;
  border: 1px solid #ffe5a3;
  margin-bottom: 18px;
}

.income-summary-card__title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  color: #145087;
}

.income-summary-card__text {
  margin: 0 0 8px;
  font-size: 12px;
  line-height: 1.8;
  color: #34536f;
}

.income-summary-card__list {
  margin: 0 0 6px;
  padding-left: 1.2em;
  list-style: disc;
  font-size: 12px;
  line-height: 1.8;
  color: #34536f;
}

.income-summary-card__note {
  margin: 4px 0 0;
  font-size: 11px;
  color: #6a7c93;
}

/* ランクカード */

.income-rank-list {
  display: grid;
  gap: 16px;
}

.income-rank {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #e2f1ff;
  box-shadow: 0 4px 12px rgba(13, 71, 125, 0.08);
  padding-bottom: 12px;
}

.income-rank__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 24px 24px 0 0;
  border-bottom: 1px solid #edf3ff;
}

.income-rank__name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.income-rank__tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ffffff;
}

/* 色だけラベルに付ける */
.income-rank__header--regular {
  background: #e2f1ff;
  color: #145087;
}

.income-rank__header--regular .income-rank__tag {
  border: 1px solid #14508733;
  color: #145087;
}

.income-rank__header--premium {
  background: #ffe5a3;
  color: #8a5a00;
}

.income-rank__header--premium .income-rank__tag {
  border: 1px solid #8a5a0033;
  color: #8a5a00;
}

.income-table {
  padding: 10px 12px 6px;
  font-size: 12px;
  color: #34536f;
}

.income-table__row {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1.1fr;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid #f2f3f7;
}

.income-table__row--head {
  font-weight: 600;
  font-size: 11px;
  color: #6a7c93;
  background: #f7f9ff;
  padding: 6px 8px;
  margin: 0 -8px 2px;
  border-radius: 10px;
}

.income-table__row--head div {
  padding: 0 4px;
}

.income-table__row:last-child {
  border-bottom: none;
}

.income-table__row div {
  padding: 0 4px;
  line-height: 1.6;
}

.income-rank__note {
  margin: 0 12px 8px;
  font-size: 11px;
  line-height: 1.7;
  color: #6a7c93;
}

/* -----------------------
   応募方法（flow風ステップ）
   ----------------------- */

.section-apply {
  margin-top: 52px;
}

.apply-step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.apply-step__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.apply-step__num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffc94a;
  color: #ffffff;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.apply-step__title {
  font-size: 13px;
  color: #145087;
}

.apply-step__body {
  background: #ffffffee;
  border-radius: 18px;
  padding: 12px 12px 14px;
  box-shadow: 0 4px 10px rgba(13, 71, 125, 0.08);
}

.apply-step__text {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.8;
  color: #34536f;
}

/* グレーの画像エリア（あとで差し替え可） */
.apply-step__media {
  width: 100%;
  height: 120px;
  border-radius: 16px;
  background: #dcdcdc;
}

/* 共通ボタン */
.btn-primary {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 999px;
  background: #1c63d2;
  color: #ffffff;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.18em;
}

.btn-primary--wide {
  padding-left: 36px;
  padding-right: 36px;
}

.cta-center {
  margin-top: 18px;
  text-align: center;
}

.cta-note {
  margin-top: 6px;
  font-size: 11px;
  color: #6a7c93;
}

/* -----------------------
   FAQ（flowと共通デザイン）
   ----------------------- */

.section-faq {
  margin-top: 56px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(13, 71, 125, 0.08);
  overflow: hidden;
}

.faq-item__summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
}

.faq-item__summary::-webkit-details-marker {
  display: none;
}

.faq-item__qmark {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #1c63d2;
  color: #1c63d2;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-item__question {
  font-size: 12px;
  color: #145087;
  flex: 1;
}

.faq-item__toggle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #f5d45d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #f5d45d;
  flex-shrink: 0;
}

.faq-item__toggle::before {
  content: "+";
}

.faq-item[open] .faq-item__toggle::before {
  content: "−";
}

.faq-item__content {
  border-top: 1px solid #f2f3f7;
  padding: 8px 14px 12px;
  background: #fffcf4;
}

.faq-item__answer {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.faq-item__amark {
  font-size: 12px;
  color: #f5a400;
  font-weight: 600;
  margin-top: 2px;
}

.faq-item__answer-text {
  font-size: 12px;
  color: #555f6d;
  line-height: 1.8;
}

.faq-item__answer-text p {
  margin: 0 0 6px;
}

/* -----------------------
   小さめ端末用
   ----------------------- */

@media (max-width: 360px) {
  .entry-heading {
    padding-inline: 6px;
  }
  .spec-card {
    padding-inline: 14px;
  }
}

/* -----------------------
   PC向けレイアウト
   ----------------------- */

@media (min-width: 768px) {

  .main,
  .section__inner {
    max-width: 960px;
  }

  .section {
    margin-top: 56px;
  }

  .section-entry-lead {
    margin-top: 40px;
  }

  .entry-hero {
    height: 260px;
  }

  .job-card-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .info-card {
    margin-bottom: 24px;
  }

  .spec-card {
    padding: 22px 24px 24px;
  }

  .income-rank-list {
    gap: 18px;
  }

  .section-apply {
    margin-top: 64px;
  }

  .section-faq {
    margin-top: 72px;
  }
}
