/* ===========================
   Reset & Base
   =========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Noto Sans JP', 'Yu Gothic', sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

/* ===========================
   Layout
   =========================== */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.bg-beige { background-color: #f5f0ea; }
.bg-gray  { background-color: #f4f4f2; }
.bg-dark  { background-color: #1a1a1a; }

/* ===========================
   Responsive helpers
   =========================== */
.pc-only { display: none; }
.sp-only { display: inline; }

@media (min-width: 768px) {
  .pc-only { display: inline; }
  .sp-only { display: none; }
}

/* ===========================
   Typography helpers
   =========================== */
.section-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999;
  font-weight: 600;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.01em;
  margin-bottom: 36px;
}

.section-lead {
  font-size: 15px;
  color: #666;
  line-height: 1.85;
  margin-bottom: 36px;
}

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-block;
  padding: 16px 28px;
  min-height: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.18s, transform 0.12s;
  white-space: nowrap;
}

.btn:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}

.btn-primary {
  background-color: #1a1a1a;
  color: #ffffff;
  border: 2px solid #1a1a1a;
}

.btn-secondary {
  background-color: #ffffff;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
}

.btn-outline {
  background-color: transparent;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
}

.btn-white {
  background-color: #ffffff;
  color: #1a1a1a;
  border: 2px solid #ffffff;
}

.btn-outline-white {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

/* ===========================
   Header
   =========================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #ffffff;
  border-bottom: 1px solid #e8e0d5;
  padding: 13px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-main {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.logo-sub {
  font-size: 10px;
  color: #aaa;
  letter-spacing: 0.04em;
}

.header-cta {
  display: inline-block;
  padding: 10px 18px;
  background-color: #1a1a1a;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: opacity 0.18s;
  flex-shrink: 0;
}

.header-cta:hover {
  opacity: 0.8;
}

/* ===========================
   Hero
   =========================== */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e8e0d5;
}

.hero-media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-overlay {
  background-color: #fdf9f5;
}

.hero-text {
  padding: 40px 20px 36px;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #999;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(28px, 7vw, 50px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: clamp(15px, 3vw, 17px);
  color: #555;
  line-height: 1.85;
  margin-bottom: 40px;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

@media (min-width: 520px) {
  .hero-cta-group {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

.hero-license {
  font-size: 11px;
  color: #bbb;
  letter-spacing: 0.06em;
}

@media (min-width: 768px) {
  .hero {
    min-height: 720px;
  }

  .hero-media {
    position: absolute;
    inset: 0;
  }

  .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 62% center;
    filter: brightness(1.04) saturate(0.93);
  }

  .hero-overlay {
    position: relative;
    z-index: 2;
    min-height: 720px;
    display: flex;
    align-items: center;
    background: linear-gradient(
      to right,
      rgba(253, 249, 245, 0.97) 0%,
      rgba(253, 249, 245, 0.91) 30%,
      rgba(253, 249, 245, 0.45) 52%,
      transparent 70%
    );
  }

  .hero-text {
    max-width: 560px;
    padding: 72px clamp(28px, 6vw, 96px) 68px;
  }
}

/* ===========================
   企業向け課題
   =========================== */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid #ddd8d0;
}

@media (min-width: 600px) {
  .pain-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 4px;
  border-bottom: 1px solid #ddd8d0;
  font-size: 15px;
  line-height: 1.65;
}

.pain-dash {
  color: #bbb;
  font-size: 14px;
  padding-top: 2px;
  flex-shrink: 0;
  font-weight: 300;
}

/* ===========================
   解決策
   =========================== */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

@media (min-width: 640px) {
  .solution-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .solution-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.solution-item {
  padding-top: 20px;
  border-top: 2px solid #1a1a1a;
}

.solution-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #bbb;
  margin-bottom: 12px;
}

.solution-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.45;
}

.solution-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

/* ===========================
   職種タグ
   =========================== */
.roles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.role-tag {
  display: inline-block;
  padding: 8px 16px;
  background-color: #ffffff;
  border: 1px solid #ddd8d0;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.02em;
}

.roles-note {
  font-size: 14px;
  color: #888;
  line-height: 1.7;
}

/* ===========================
   実務チェック
   =========================== */
.check-list {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid #e0dbd5;
}

@media (min-width: 640px) {
  .check-list {
    grid-template-columns: 1fr 1fr;
  }
}

.check-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 4px;
  border-bottom: 1px solid #e0dbd5;
  font-size: 15px;
  line-height: 1.6;
}

.check-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #1a1a1a;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===========================
   候補者評価
   =========================== */
.eval-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (min-width: 560px) {
  .eval-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.eval-item {
  background-color: #ffffff;
  border: 1px solid #ddd8d0;
  border-radius: 6px;
  padding: 18px 12px;
  text-align: center;
}

.eval-label {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}

/* ===========================
   30日タスク表
   =========================== */
.table-wrap {
  overflow-x: auto;
  border-radius: 6px;
  border: 1px solid #e0dbd5;
  margin-bottom: 16px;
}

.task-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 400px;
}

.task-table thead {
  background-color: #1a1a1a;
  color: #ffffff;
}

.task-table th {
  padding: 14px 20px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.task-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #e8e0d5;
  line-height: 1.65;
}

.task-table tbody tr:last-child td {
  border-bottom: none;
}

.task-table tbody tr:nth-child(even) {
  background-color: #faf9f7;
}

.task-table td.week {
  font-weight: 700;
  white-space: nowrap;
  color: #333;
  width: 90px;
}

.table-note {
  font-size: 13px;
  color: #999;
}

/* ===========================
   料金
   =========================== */
.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (min-width: 640px) {
  .price-grid {
    grid-template-columns: 1.5fr 1fr;
  }
}

.price-card {
  background-color: #ffffff;
  border: 1px solid #e0dbd5;
  border-radius: 8px;
  padding: 32px 28px;
}

.price-card--main {
  border: 2px solid #1a1a1a;
}

.price-type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #999;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.price-amount {
  font-size: clamp(34px, 8vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}

.price-basis {
  font-size: 14px;
  color: #555;
  margin-bottom: 4px;
}

.price-alt {
  font-size: 13px;
  color: #999;
  margin-bottom: 28px;
}

.price-includes-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #999;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.price-includes ul {
  list-style: none;
}

.price-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid #f0ebe5;
  line-height: 1.6;
}

.price-includes li::before {
  content: '✓';
  font-weight: 700;
  color: #1a1a1a;
  flex-shrink: 0;
  font-size: 13px;
  padding-top: 1px;
}

.price-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-top: 20px;
}

.price-value-note {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  border-left: 3px solid #1a1a1a;
  padding-left: 16px;
  margin-bottom: 16px;
}

.price-note {
  font-size: 12px;
  color: #bbb;
  margin-bottom: 32px;
}

.price-cta {
  text-align: center;
}

/* ===========================
   求職者向け
   =========================== */
.jobseeker-title {
  font-size: clamp(24px, 6vw, 38px);
  line-height: 1.55;
  margin-bottom: 24px;
}

.jobseeker-lead {
  font-size: 17px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 44px;
}

.jobseeker-target {
  background-color: #f5f0ea;
  border-radius: 8px;
  padding: 28px;
  margin-bottom: 40px;
}

.jobseeker-target-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #999;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.jobseeker-list {
  list-style: none;
}

.jobseeker-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  padding: 11px 0;
  border-bottom: 1px solid #ddd8d0;
  line-height: 1.65;
}

.jobseeker-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.jobseeker-list li::before {
  content: '→';
  color: #bbb;
  flex-shrink: 0;
  font-size: 13px;
  padding-top: 2px;
}

.jobseeker-cta-wrap {
  text-align: center;
}

.jobseeker-cta-note {
  font-size: 13px;
  color: #999;
  margin-top: 12px;
}

.jobseeker-free-note {
  font-size: 12px;
  color: #bbb;
  margin-top: 8px;
}

/* ===========================
   最終CTA
   =========================== */
.final-cta-title {
  font-size: clamp(22px, 5vw, 34px);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
  line-height: 1.45;
}

.final-cta-sub {
  font-size: 15px;
  color: #aaa;
  text-align: center;
  line-height: 1.85;
  margin-bottom: 40px;
}

.final-cta-micro {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
  margin-bottom: 36px;
  padding: 0;
}

.final-cta-micro li {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
}

.final-cta-micro li::before {
  content: '✓ ';
  color: rgba(255, 255, 255, 0.50);
}

.final-cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

@media (min-width: 520px) {
  .final-cta-buttons {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.final-free-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  margin-top: 16px;
  letter-spacing: 0.03em;
}

/* ===========================
   フッター
   =========================== */
.footer {
  background-color: #f5f0ea;
  border-top: 1px solid #e0dbd5;
  padding: 56px 0 36px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer-brand {
  flex-shrink: 0;
}

.footer-service {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.footer-company {
  font-size: 13px;
  color: #999;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

@media (min-width: 420px) {
  .footer-row {
    flex-direction: row;
    align-items: baseline;
    gap: 16px;
  }
}

.footer-row dt {
  font-size: 11px;
  color: #bbb;
  font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
  min-width: 172px;
}

.footer-row dd {
  font-size: 13px;
  color: #444;
}

.footer-row dd a {
  color: #444;
  text-decoration: none;
}

.footer-row dd a:hover {
  text-decoration: underline;
}

.footer-nickname {
  font-size: 13px;
  font-weight: 400;
  color: #aaa;
  margin-left: 4px;
}

.footer-privacy-text {
  font-size: 12px;
  color: #aaa;
  line-height: 1.8;
  border-top: 1px solid #e0dbd5;
  padding-top: 20px;
  margin-bottom: 20px;
}

.footer-copy {
  font-size: 11px;
  color: #ccc;
  text-align: center;
  letter-spacing: 0.06em;
}

/* ===========================
   取り扱い方針
   =========================== */
.policy-card {
  background-color: #ffffff;
  border: 1px solid #ddd8d0;
  border-radius: 8px;
  padding: 28px 28px 20px;
}

.policy-intro {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.policy-list {
  list-style: none;
}

.policy-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: #444;
  padding: 13px 0;
  border-bottom: 1px solid #ede8e2;
  line-height: 1.7;
}

.policy-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.policy-list li::before {
  content: '—';
  color: #bbb;
  flex-shrink: 0;
}

/* ===========================
   フォームページ共通
   =========================== */
.container--narrow {
  max-width: 680px;
}

/* ハニーポット非表示 */
.field-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ページヘッダー */
.page-header {
  background-color: #f5f0ea;
  padding: 48px 0 40px;
  border-bottom: 1px solid #e8e0d5;
}

.page-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999;
  font-weight: 600;
  margin-bottom: 14px;
}

.page-title {
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}

.page-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.9;
}

.page-desc p {
  margin-bottom: 6px;
}

.page-desc p:last-child {
  margin-bottom: 0;
}

.page-free-note {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  color: #888;
  background-color: #ffffff;
  border: 1px solid #ddd8d0;
  border-radius: 4px;
  padding: 8px 14px;
  letter-spacing: 0.02em;
}

/* フォームエリア */
.form-section {
  padding: 56px 0 72px;
}

.form-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* 各フィールド */
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.02em;
}

.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 3px;
  white-space: nowrap;
}

.badge-required {
  background-color: #1a1a1a;
  color: #ffffff;
}

.badge-optional {
  background-color: transparent;
  color: #bbb;
  border: 1px solid #ddd8d0;
}

.field-input,
.field-select,
.field-textarea {
  width: 100%;
  padding: 14px 16px;
  min-height: 50px;
  font-size: 16px;
  font-family: inherit;
  color: #1a1a1a;
  background-color: #ffffff;
  border: 1px solid #ddd8d0;
  border-radius: 6px;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.15s;
  line-height: 1.6;
}

.field-input:focus,
.field-select:focus,
.field-textarea:focus {
  outline: none;
  border-color: #1a1a1a;
}

.field-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.field-textarea {
  resize: vertical;
  min-height: 160px;
}

/* 区切り線 */
.divider {
  border: none;
  border-top: 1px solid #f0ebe5;
  margin: 0;
}

/* 同意チェックボックス */
.consent-area {
  background-color: #f5f0ea;
  border-radius: 8px;
  padding: 24px;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
}

.consent-checkbox {
  width: 22px;
  height: 22px;
  border: 2px solid #ddd8d0;
  border-radius: 4px;
  background-color: #ffffff;
  flex-shrink: 0;
  margin-top: 1px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  position: relative;
  transition: border-color 0.15s, background-color 0.15s;
}

.consent-checkbox:checked {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
}

.consent-checkbox:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 11px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
}

.consent-text {
  font-size: 15px;
  color: #1a1a1a;
  line-height: 1.65;
}

.consent-privacy-note {
  margin-top: 10px;
  font-size: 12px;
  color: #999;
  line-height: 1.75;
}

/* 送信ボタン */
.submit-area {
  text-align: center;
  padding-top: 8px;
}

.btn-submit {
  display: block;
  width: 100%;
  padding: 18px 28px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.04em;
  background-color: #1a1a1a;
  color: #ffffff;
  border: 2px solid #1a1a1a;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.18s, transform 0.12s;
  text-align: center;
}

.btn-submit:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}

@media (min-width: 480px) {
  .btn-submit {
    width: auto;
    min-width: 280px;
  }
}

/* ===========================
   服キャリとは（AI向け概要帯）
   =========================== */
.about-strip {
  padding: 28px 0;
  background-color: #fdf9f5;
  border-bottom: 1px solid #e8e0d5;
}

.about-strip-text {
  font-size: 14px;
  color: #555;
  line-height: 1.95;
  max-width: 760px;
  margin-bottom: 8px;
}

.about-strip-license {
  font-size: 11px;
  color: #bbb;
  letter-spacing: 0.04em;
}

/* ===========================
   フォーム追加スタイル（分離フォーム用）
   =========================== */

/* チェックボックスグループ */
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border: 1px solid #ddd8d0;
  border-radius: 6px;
  background-color: #ffffff;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.4;
  transition: border-color 0.14s, background-color 0.14s;
  min-width: 0;
}

.checkbox-item:hover {
  border-color: #999;
}

.checkbox-item input[type="checkbox"] {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  border: 1.5px solid #ccc8c2;
  border-radius: 3px;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  transition: border-color 0.14s, background-color 0.14s;
}

.checkbox-item input[type="checkbox"]:checked {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
}

.checkbox-item input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.checkbox-item:has(input:checked) {
  border-color: #1a1a1a;
  background-color: #f5f0ea;
}

/* フォーム補足説明文 */
.field-note {
  font-size: 13px;
  color: #888;
  line-height: 1.75;
  margin-bottom: 4px;
}

/* ファイル添付説明 */
.file-note {
  background-color: #f5f0ea;
  border-radius: 6px;
  padding: 12px 16px;
  margin-bottom: 12px;
}

/* ファイル添付フィールド群 */
.file-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.file-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.file-label {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  letter-spacing: 0.02em;
}

.field-file {
  font-size: 14px;
  font-family: inherit;
  color: #444;
  padding: 10px 0;
  cursor: pointer;
}

/* テキストエリア（短め） */
.field-textarea--short {
  min-height: 100px;
}

@media (min-width: 640px) {
  .file-fields {
    flex-direction: row;
    gap: 20px;
  }
  .file-field {
    flex: 1;
  }
}

/* フォーム下部補足文 */
.form-foot-note {
  font-size: 13px;
  color: #999;
  line-height: 1.8;
  text-align: center;
  padding-top: 4px;
}

/* ===========================
   送信完了ページ
   =========================== */
.thanks-section {
  padding: 64px 0 80px;
}

.thanks-body {
  font-size: 15px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 40px;
}

.thanks-body p {
  margin-bottom: 8px;
}

.thanks-body p:last-child {
  margin-bottom: 0;
}

.thanks-cta {
  margin-top: 40px;
}
