/* =======================
   キャスト募集 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;
}

/* ======================
   strong 共通設定
   （太字だけ・色は親要素のまま）
   ====================== */

.section strong,
.recruit-lead strong {
  font-weight: 700;
  color: inherit;
  background: none;
}

/* -----------------------
   ページ見出し
   ----------------------- */

.sr-only{
  position:absolute!important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

.section-intro {
  margin-top: 24px;
}

/* TOP画像スペース */
.recruit-hero {
  margin-top: 10px;
  border-radius: 22px;
  background: #dfefff;
  height: 520px; /* SPは縦長を想定 */
  overflow: hidden;
  position: relative;
}

.recruit-hero__picture,
.recruit-hero__img {
  width: 100%;
  height: 100%;
  display: block;
}

.recruit-hero__img {
  object-fit: cover;
}

.recruit-lead {
  margin: 70px 0 70px;
  font-size: 13px;
  line-height: 1.9;
  color: #34536f;
  text-align: center;
}

/* 共通ボタン */
.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-center__text {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.8;
  color: #34536f;
}

.cta-note {
  margin-top: 6px;
  font-size: 11px;
  color: #6a7c93;
}

/* -----------------------
   リード文
   ----------------------- */

.section-lead {
  font-size: 12px;
  line-height: 1.8;
  color: #34536f;
  margin: 0 0 16px;
}

/* ======================
   推しカノで働く3つのポイント
   ====================== */

.section-point .section-title {
  margin-bottom: 12px;
  color: #00b5e7;
}

.point-card-list {
  display: grid;
  gap: 10px;
}

.point-card {
  background: #ffffffee;
  border-radius: 18px;
  padding: 16px 14px 18px;
  box-shadow: 0 4px 10px rgba(13, 71, 125, 0.08);
  border: 1px solid #e2f1ff;
}

/* 番号丸 */
.point-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #00b5e7;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 10px;
}

/* タイトルと丸を横並びにする */
.point-card__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.point-card__title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #00b5e7;
}

.point-card__text {
  margin: 0;
  font-size: 12px;
  line-height: 1.8;
  color: #34536f;
}

/* ポイント用マーカー（青） */
.section-point .point-card__text strong {
  background: linear-gradient(transparent 60%, #e4f7ff 60%);
}

/* ======================
   どんなお仕事？1日の流れ
   ====================== */

.section-title--center1 {
  text-align: center;
  color: #ffbc1f;
}

.section-flow {
  margin-top: 90px;
}

.section-flow .section-lead {
  font-size: 12px;
  line-height: 1.8;
  color: #34536f;
  margin: 0 0 18px;
}

/* リスト（SPは1列） */
.flow-step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

/* 上部：丸番号＋タイトル */
.flow-step__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

/* 丸番号 */
.flow-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;
}

/* 見出し */
.flow-step__title {
  font-size: 13px;
  color: #ffc02c;
  font-weight: 600;
}

/* 本文カード（白の内側） */
.flow-step__body {
  background: #ffffffee;
  border-radius: 18px;
  padding: 12px 12px 14px;
  box-shadow: 0 4px 10px rgba(13, 71, 125, 0.08);
}

/* テキスト */
.flow-step__text {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.8;
  color: #34536f;
}

/* 画像枠 */
.flow-step__media {
  width: 100%;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  background: #dcdcdc;
}

.flow-step__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 流れ用マーカー（黄色） */
.section-flow .flow-step__text strong {
  background: linear-gradient(transparent 60%, #fff4cf 60%);
}

/* ======================
   安心して働ける仕組み など
   ====================== */

.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-info .info-card__list strong {
  background: linear-gradient(transparent 60%, #e7f3ff 60%);
}

/* ======================
   募集要項
   ====================== */

.section-title--center2 {
  text-align: center;
  color: #1ab80f;
}

.section-spec {
  margin-top: 80px;
}

.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: #1ab80f;
  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-spec .spec-item__text strong,
.section-spec .spec-item__list strong,
.section-spec .spec-item__note strong {
  background: linear-gradient(transparent 60%, #e7f9e4 60%);
}

/* ======================
   収入について
   ====================== */

.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;
}

/* 収入系マーカー（オレンジ） */
.section-income .income-summary-card__text strong,
.section-income .income-summary-card__list strong,
.section-income .income-summary-card__note strong,
.section-income .income-table__row strong,
.section-income .income-rank__note strong {
  background: linear-gradient(transparent 60%, #fff0d8 60%);
}

/* ======================
   応募方法
   ====================== */

.section-apply {
  margin-top: 52px;
}

/* ステップ全体を1つの白カードに */
.apply-card {
  background: #ffffffee;
  border-radius: 22px;
  padding: 16px 14px 18px;
  box-shadow: 0 4px 10px rgba(13, 71, 125, 0.08);
  border: 1px solid #e2f1ff;
}

.apply-step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.apply-step {
  padding-bottom: 10px;
}

.apply-step + .apply-step {
  border-top: 1px dashed #e2f1ff;
  padding-top: 12px;
}

.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: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 4px 0 0;
}

.apply-step__text {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.8;
  color: #34536f;
}

/* 応募方法用マーカー（薄い黄色） */
.section-apply .apply-step__text strong,
.section-apply .cta-center__text strong {
  background: linear-gradient(transparent 60%, #fff5cf 60%);
}

/* ======================
   FAQ
   ====================== */

.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;
}

/* FAQ 用マーカー（淡い黄色） */
.section-faq .faq-item__answer-text strong {
  background: linear-gradient(transparent 60%, #fff5cf 60%);
}

.apply-step__icon-img{
  width: 18px;
  height: 18px;
  margin-left: 6px;
  vertical-align: middle;
  opacity: 0.9;
}
.apply-illustration{
  margin: 20px auto 8px;
  text-align: center;
}

.apply-illustration__img{
  width: 160px;
  max-width: 60%;
  height: auto;
  opacity: 0.95;
}
.apply-step__img{
  display: block;
  margin: 12px auto 0;
  width: 180px;
  max-width: 70%;
  height: auto;
  opacity: 0.95;
}

/* ======================
   小さめ端末用
   ====================== */

@media (max-width: 360px) {
  .spec-card {
    padding-inline: 14px;
  }
}

/* ======================
   PC・タブレット向けレイアウト
   ====================== */
@media (min-width: 768px) {

  /* ページ全体の幅 */
  .main {
    max-width: 1040px;
    padding: 0 24px 64px;
  }

  .section__inner {
    max-width: 960px;
  }

  .section {
    margin-top: 60px;
  }

  /* ---------- TOPまわり（少し小さめ＆中央寄せ） ---------- */

  .section-intro .section__inner {
    max-width: 960px;
  }

  /* TOP画像：高さを少し小さく */
  .recruit-hero {
    height: 460px;
    margin: 24px auto 0;
    width: 80%;  /* ←前より小さめ */
    border-radius: 26px;
  }

  .recruit-lead {
    margin-top: 20px;
    font-size: 13px;
    line-height: 2;
  }

  .section-lead {
    font-size: 13px;
  }

  /* ---------- 3つのポイント ---------- */

  .point-card-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  /* ---------- どんなお仕事？1日の流れ ---------- */

  /* ここだけ横幅を少し細めに */
  .section-flow .section__inner {
    max-width: 780px;
  }

  /* PCでは1カラム・余白広めにしてスッキリ */
  .flow-step-list {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .flow-step__body {
    padding: 18px 18px 20px;
  }

  /* 画像を縦長に（だいたい2.5倍くらい） */
  .flow-step__media {
    width: 90%;
    height: 300px;
    margin: 24px auto 0;
  }

  .flow-step__text {
    font-size: 13px;
  }

  .section-flow {
    margin-top: 56px;
  }

  /* ---------- 募集要項・応募方法（横幅を細くして中央） ---------- */

  .section-spec .section__inner,
  .section-apply .section__inner {
    max-width: 720px;   /* ← ここで“キュッ”と細く */
  }

  .spec-card {
    padding: 22px 24px 24px;
  }

  .section-spec {
    margin-top: 80px;
  }

  .section-apply {
    margin-top: 64px;
  }

  /* ---------- その他 ---------- */

  .info-card {
    margin-bottom: 24px;
  }

  .income-rank-list {
    gap: 18px;
  }

  .section-faq {
    margin-top: 80px;
  }
}
