.page-head {
  background: none !important;
}

/* =======================
   FC募集要項
   ======================= */
.fc-page {
  background: #fff;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
}

.fc-page .container {
  max-width: 1040px;
}

/* ヒーロー */
.fc-hero {
  padding: 28px 0 12px;
}

.fc-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 6px;
}

.fc-lead {
  color: #667085;
  margin: 0;
}

/* 2カラム表 */
.fc-spec {
  margin-top: 20px;
  border: 1px solid #080808;
  overflow: hidden;
}

.spec-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-bottom: 1px solid #080808;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-head {
  background: #2c2c2c;
  /* オレンジ（イメージに近い） */
  color: #fff;
  border: 1px solid #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 14px;
  text-align: center;
}

.spec-body {
  background: #fff;
  padding: 18px 20px;
  border-left: 1px solid #080808;
}

.spec-list {
  margin: 0;
  padding: 0;
  list-style: none;
  /* ← デフォルトの点を削除 */
}

.spec-list li {
  margin: 0.35rem 0;
  line-height: 1.7;
  padding-left: 0;
  /* 左余白をリセット */
}

.spec-body p {
  margin: 0.35rem 0;
  line-height: 1.7;
}

.spec-body .note {
  color: #6b7280;
  font-size: 0.95rem;
}

/* CTA */
.fc-cta {
  text-align: center;
  padding: 28px 0 40px;
}

.fc-cta-lead {
  margin-bottom: 14px;
  color: #475467;
}

.fc-cta-actions {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  transition: opacity .2s ease, transform .05s ease;
  text-decoration: none;
}

.btn-primary {
  background: #c07ade;
  color: #fff;
}

.btn-primary:hover {
  opacity: .92;
}

.btn-outline {
  border: 1px solid #c07ade;
  color: #c07ade;
}

.btn-outline:hover {
  background: #f7ecff;
}

@media (max-width: 900px) {
  .spec-row {
    grid-template-columns: 200px 1fr;
  }
}

@media (max-width: 768px) {
  .fc-title {
    font-size: 24px;
  }

  .spec-row {
    grid-template-columns: 1fr;
  }

  .spec-head {
    justify-content: flex-start;
    border-bottom: 1px solid #080808;
    padding-left: 16px;
  }

  .spec-body {
    border-left: none;
    padding: 16px;
  }

  .fc-page .container {
    padding: 0 16px;
  }
}

/* 共通セクション */
.fc-section {
  margin-top: 28px;
}

.fc-h2 {
  font-size: 22px;
  font-weight: 700;
  height: 2rem;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: 2rem 0;
}

.fc-h2::before {
  content: "";
  width: 6px;
  height: 1.8em;
  /* ← 高さを拡大（1.2em → 1.6em） */
  background: #080808;
  /* オレンジ寄りの色 */
  border-radius: 3px;
  flex-shrink: 0;
}


/* カード群（ブランドの特徴） */
.fc-cards {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.fc-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 16px 16px 14px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .03);
}

.fc-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
}

.fc-card p {
  margin: 0;
  color: #475467;
  line-height: 1.7;
}

/* 箇条書き */
.fc-list {
  margin: 0;
  padding-left: 1.2rem;
}

.fc-list li {
  margin: .35rem 0;
  line-height: 1.7;
}

/* 2列グリッド（メリット） */
.fc-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fc-sub {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
}

/* ステップ（番号付き） */
.fc-steps {
  counter-reset: step;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fc-steps li {
  counter-increment: step;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 12px 14px;
  margin: 10px 0;
  position: relative;
  padding-left: 48px;
}

.fc-steps li::before {
  content: counter(step);
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #5864ee;
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
}

/* オーナーの声 */
.fc-voices {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.voice {
  margin: 0;
  padding: 14px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .03);
}

.voice p {
  margin: 0 0 8px;
  color: #333;
}

.voice cite {
  font-size: .95rem;
  color: #6b7280;
}

/* FAQ（details/summary） */
.faq {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 12px 14px;
  margin: 10px 0;
  background: #fff;
}

.faq>summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  position: relative;
  padding-right: 24px;
}

.faq>summary::-webkit-details-marker {
  display: none;
}

.faq>summary::after {
  content: "＋";
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 700;
  color: #c07ade;
}

.faq[open]>summary::after {
  content: "−";
}

.faq-a {
  margin-top: 8px;
  color: #475467;
  line-height: 1.7;
}

/* レスポンシブ */
@media (max-width: 992px) {
  .fc-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .fc-grid-2 {
    grid-template-columns: 1fr;
  }

  .fc-cards {
    grid-template-columns: 1fr;
  }

  .fc-voices {
    grid-template-columns: 1fr;
  }

  .fc-page .container {
    padding: 0 16px;
  }
}

/* =======================
   ブランドの特徴（交互レイアウト）
   ======================= */
.brand-feats {
  margin-top: 28px;
}

.feat {
  display: grid;
  grid-template-columns: 48% 1fr;
  gap: 28px;
  align-items: center;
  padding: 22px 0;
}

.feat:last-child {
  border-bottom: none;
}

.feat__media {
  display: grid;
  place-items: center;
  max-height: 400px;
}

.feat__media img {
  width: 100%;
  height: auto;
  /* サンプル画像が円形なら維持、矩形にしたい場合は削除 */
  object-fit: cover;
}

.feat__body {
  color: #333;
}

.feat__ttl {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 8px;
  color: #e24b4b;
}

.feat__txt {
  margin: 0;
  color: #475467;
  line-height: 1.9;
}

/* 交互（reverse） */
.feat--rev {
  grid-template-columns: 1fr 48%;
}

.feat--rev .feat__media {
  order: 2;
}

.feat--rev .feat__body {
  order: 1;
}

/* レスポンシブ */
@media (max-width: 992px) {

  .feat,
  .feat--rev {
    grid-template-columns: 1fr;
  }

  .feat--rev .feat__media,
  .feat--rev .feat__body {
    order: initial;
  }

  .feat__media {
    aspect-ratio: auto;
  }
}

.market-img-pc {
  max-width: 100%;
  object-fit: contain;
}

.market-description {
  color: #667085;
  text-align: center;
}


/* ===== ブランド特徴：見出しの前に 01/02… を表示 ===== */
.brand-feats--num {
  counter-reset: feat;
}

.brand-feats--num .feat {
  counter-increment: feat;
}

/* 見出しの直前に番号を表示（画像の例の位置） */
.brand-feats--num .feat__ttl {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  /* 01 と文字の間隔 */
  font-weight: 700;
}

.brand-feats--num .feat__ttl::before {
  content: counter(feat, decimal-leading-zero);
  font-weight: 800;
  font-size: clamp(24px, 4vw, 40px);
  /* 画像のように大きめ */
  line-height: 1;
  color: #e24b4b;
  /* 番号の色（赤系） */
  letter-spacing: 0.02em;
}

/* 説明テキストの色を変更（お好みで調整可） */
.brand-feats--num .feat__txt {
  color: #4b5563;
  /* =グレー(やや濃い) #6b7280 でもOK */
}

/* レイアウトが左右入れ替わる .feat--rev でも自然に見えるよう微調整 */
.brand-feats--num .feat--rev .feat__ttl {
  justify-content: flex-start;
  /* 常に見出しの左に 01 を置く */
}

/* モバイルでの行間と余白を少し詰める */
@media (max-width: 768px) {
  .brand-feats--num .feat__ttl {
    gap: .45rem;
  }

  .brand-feats--num .feat__ttl::before {
    font-size: 30px;
  }
}

.fc-image {
  display: block;
  margin: 1rem auto;
  width: 100%;
  max-width: 400px;
  align-items: center;
}