@charset "UTF-8";
/* ==========================================================================
   Component（c-*）— 見出し・ボタン・表・フォーム・画像・注記
   ========================================================================== */

.c-icon {
  flex: none;
}

/* ── 節見出し ──
   1ページものは英字ラベルでなく「章番号」（35_マニュアル L2 — 進み具合と序列を同時に出す）。
   🔴 左線・下線のアクセントは使わない（本人の禁止事項）。番号の薄い面だけで立てる */
.c-heading {
  margin-bottom: 40px;
}

.c-heading h2,
.c-heading h3 {
  font-size: clamp(24px, 3vw, 31px);
  letter-spacing: 0.03em;
}

.c-heading__lead {
  margin-top: 12px;
  color: var(--c-muted);
  max-width: 46em;
}

.c-heading--c {
  text-align: center;
}

.c-heading--c .c-heading__lead {
  margin-inline: auto;
}

.c-heading--num {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  column-gap: 16px;
}

.c-heading--num .c-heading__en {
  grid-row: 1 / 3;
  font-family: var(--c-font-head);
  font-size: clamp(44px, 6vw, 64px);
  font-weight: 700;
  line-height: 1;
  color: var(--c-main-ghost);
  font-variant-numeric: tabular-nums;
}

.c-heading--num .c-heading__lead {
  grid-column: 2;
}

/* ── ボタン ── */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border: 0;
  border-radius: var(--c-radius-btn);
  background: var(--c-main);
  color: var(--c-white);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--c-shadow);
  transition: translate 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.c-btn:hover {
  translate: 0 -2px;
  box-shadow: var(--c-shadow-hover);
  background: var(--c-main-dark);
  color: var(--c-white);
}

.c-btn--tel {
  font-size: clamp(20px, 2.6vw, 26px);
  padding: 16px 36px;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

.c-btn--ghost {
  background: var(--c-white);
  color: var(--c-main-dark);
  box-shadow: inset 0 0 0 2px var(--c-main);
}

.c-btn--ghost:hover {
  background: var(--c-main-pale);
  color: var(--c-main-dark);
}

.c-btns {
  margin-top: 32px;
  text-align: center;
}

/* 電話ボタン＋つながりやすい時間の注記（ngContactTime） */
.c-tel {
  text-align: center;
}

.c-tel--left {
  text-align: left;
}

.c-tel__note {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.7;
}

/* ── 表（概要・募集要項） ── */
.c-table {
  background: var(--c-white);
  border-radius: var(--c-radius);
  overflow: hidden;
  box-shadow: var(--c-shadow);
}

.c-table th,
.c-table td {
  padding: 14px 18px;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid var(--c-line);
  font-size: 15px;
  line-height: 1.8;
}

.c-table tr:first-child th,
.c-table tr:first-child td {
  border-top: 0;
}

.c-table--info th {
  width: 11em;
  background: var(--c-cream);
  font-weight: 700;
  color: var(--c-ink);
}

@media (max-width: 560px) {
  .c-table--info th,
  .c-table--info td {
    display: block;
    width: 100%;
  }

  .c-table--info th {
    padding-block: 8px;
    border-top: 1px solid var(--c-line);
  }

  .c-table--info td {
    border-top: 0;
    padding-top: 6px;
  }
}

/* FVの名刺に出す、募集中の職種（小さな表。枠線でなく行間で読ませる） */
.c-jobsmini th,
.c-jobsmini td {
  padding: 6px 0;
  text-align: left;
  vertical-align: baseline;
  font-size: 15px;
  border-top: 1px solid var(--c-line);
}

.c-jobsmini tr:first-child th,
.c-jobsmini tr:first-child td {
  border-top: 0;
}

.c-jobsmini th {
  font-weight: 700;
  padding-right: 14px;
  white-space: nowrap;
}

.c-jobsmini td {
  font-variant-numeric: tabular-nums;
}

/* ── 注記の面 ── */
.c-note {
  background: var(--c-main-pale);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.8;
}

/* ── 画像 ── */
.c-figure {
  margin: 0;
}

.c-figure img {
  width: 100%;
  height: auto;
  border-radius: var(--c-radius);
  display: block;
}

/* 画像スロット（写真が届くまでの予定地。本番では出ない） */
.c-imgslot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  border: 1.5px dashed var(--c-line);
  border-radius: var(--c-radius);
  background: repeating-linear-gradient(-45deg, var(--c-cream), var(--c-cream) 12px, var(--c-white) 12px, var(--c-white) 24px);
  color: var(--c-muted);
  font-size: 13px;
  text-align: center;
  padding: 16px;
}

.c-imgslot b {
  color: var(--c-ink);
}

.c-imgslot code {
  font-size: 12px;
}

.c-imgslot em {
  font-style: normal;
  font-size: 12px;
}

/* 地図は載せない枠（架空の事業者の担保） */
.c-mapblank {
  border: 1.5px dashed var(--c-line);
  border-radius: var(--c-radius);
  background: var(--c-white);
  text-align: center;
  padding: 28px 20px;
  color: var(--c-muted);
}

.c-mapblank b {
  display: block;
  color: var(--c-ink);
  margin-bottom: 6px;
}

/* ── フォーム ── */
.c-form__row {
  margin-top: 22px;
}

.c-form__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  margin-bottom: 8px;
}

.c-form__req,
.c-form__opt {
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  padding: 4px 8px;
  border-radius: var(--c-radius-btn);
}

.c-form__req {
  background: var(--c-main);
  color: var(--c-white);
}

.c-form__opt {
  background: var(--c-line);
  color: var(--c-muted);
}

.c-form__input,
.c-form__textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--c-line);
  border-radius: 12px;
  background: var(--c-white);
}

.c-form__input:focus-visible,
.c-form__textarea:focus-visible {
  outline: 3px solid var(--c-main);
  outline-offset: 0;
  border-color: var(--c-main);
}

.c-form__textarea {
  min-height: 140px;
  resize: vertical;
}

.c-form__radios {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.c-form__radios label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--c-radius-btn);
  background: var(--c-white);
  box-shadow: inset 0 0 0 1.5px var(--c-line);
  cursor: pointer;
}

.c-form__radios label:has(input:checked) {
  background: var(--c-main-pale);
  box-shadow: inset 0 0 0 2px var(--c-main);
}

.c-form__radios input {
  accent-color: var(--c-main);
}
