/* ---- Hero Banner ---- */
.hero-banner {
  background: linear-gradient(135deg, #7a4a26 0%, #c96a24 45%, #de7a2a 100%);
  padding: 36px 20px 32px;
  position: relative;
  overflow: hidden;
}
.hero-banner::after {
  content: "";
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(255,255,255,.06); pointer-events: none;
}
.hero-banner::before {
  content: "";
  position: absolute; left: -30px; bottom: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.05); pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 720px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 12px;
}
.hero-tag::before {
  content: "★"; font-size: 10px; opacity: .85;
}
.hero-title {
  font-size: 22px; font-weight: 900; color: #fff;
  line-height: 1.35; letter-spacing: .03em;
  text-shadow: 0 1px 6px rgba(0,0,0,.25);
  margin-bottom: 10px;
}
.hero-title em {
  font-style: normal;
  color: #ffd475;
  text-shadow: 0 1px 8px rgba(0,0,0,.3);
}
.hero-sub {
  font-size: 13.5px; color: rgba(255,255,255,.9);
  line-height: 1.7; max-width: 560px;
}
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff; font-size: 12px; font-weight: 700;
  padding: 5px 14px; border-radius: 6px;
}
.hero-badge .badge-icon { font-size: 15px; }

/* ---- 応募CTA ---- */
.cta-primary {
  background: linear-gradient(135deg, #de7a2a, #c96a24);
  color: #fff;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 800; letter-spacing: .04em;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(180,80,0,.35);
  transition: all .2s;
  border: 2px solid transparent;
}
.cta-primary:hover {
  background: linear-gradient(135deg, #c96a24, #b05a1e);
  text-decoration: none; color: #fff;
  box-shadow: 0 6px 24px rgba(180,80,0,.45);
  transform: translateY(-1px);
}
.cta-primary .cta-arrow { font-size: 18px; }

.cta-block {
  background: var(--or-pale);
  border: 2px solid var(--or-tint);
  border-radius: var(--r);
  padding: 22px 20px;
  text-align: center;
  margin: 28px 0 0;
}
.cta-block p {
  font-size: 13px; color: var(--muted);
  margin-bottom: 14px; line-height: 1.6;
}
.cta-block p strong { color: var(--or-d); font-size: 14px; }

/* ---- 概要テーブル ---- */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin: 16px 0;
}
.overview-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex; align-items: flex-start; gap: 10px;
}
.overview-card .ov-icon {
  width: 38px; height: 38px; border-radius: 8px;
  background: linear-gradient(135deg, var(--or), var(--or-l));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0; color: #fff;
}
.overview-card .ov-body .ov-label {
  font-size: 10px; font-weight: 700; color: var(--muted);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 3px;
}
.overview-card .ov-body .ov-val {
  font-size: 13.5px; font-weight: 700; color: var(--text);
  line-height: 1.55;
}
.overview-card .ov-body .ov-note {
  font-size: 11px; color: var(--muted); margin-top: 3px; line-height: 1.5;
}
.free-badge {
  display: inline-block;
  background: #28a745;
  color: #fff; font-size: 11px; font-weight: 800;
  padding: 1px 8px; border-radius: 3px; letter-spacing: .06em;
  vertical-align: middle; margin-left: 4px;
}

/* ---- 悩みセクション ---- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  margin: 16px 0;
}
.pain-card {
  background: var(--white);
  border: 1px solid var(--or-tint);
  border-left: 4px solid var(--or);
  border-radius: 0 8px 8px 0;
  padding: 12px 14px;
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: var(--text); line-height: 1.6;
}
.pain-card::before {
  content: "●";
  color: var(--or); font-size: 11px; flex-shrink: 0; margin-top: 3px;
}

/* ---- 効果セクション ---- */
.effect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin: 16px 0;
}
.effect-card {
  background: linear-gradient(160deg, var(--or-pale) 0%, var(--white) 100%);
  border: 1px solid var(--or-tint);
  border-radius: 10px;
  padding: 16px 14px;
  position: relative;
  overflow: hidden;
}
.effect-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--or), var(--or-l));
}
.effect-card .ef-num {
  font-size: 26px; font-weight: 900; color: var(--or-tint);
  line-height: 1; margin-bottom: 6px; letter-spacing: -.02em;
}
.effect-card .ef-title {
  font-size: 13.5px; font-weight: 800; color: var(--or-d);
  margin-bottom: 6px; line-height: 1.3;
}
.effect-card .ef-desc {
  font-size: 12px; color: var(--muted); line-height: 1.65;
}

/* ---- 締めコピー ---- */
.closing-quote {
  background: linear-gradient(135deg, var(--or-d), var(--brown));
  border-radius: var(--r);
  padding: 18px 20px;
  text-align: center;
  margin-top: 6px;
}
.closing-quote p {
  font-size: 14px; font-weight: 800; color: #fff;
  line-height: 1.7; letter-spacing: .02em;
}

/* ---- フロー ---- */
.flow-list {
  list-style: none; padding: 0; margin: 16px 0;
  display: flex; flex-direction: column; gap: 0;
}
.flow-item {
  display: flex; gap: 14px;
  position: relative;
}
.flow-item + .flow-item {
  margin-top: 0;
}
.flow-left {
  display: flex; flex-direction: column; align-items: center;
  flex-shrink: 0;
}
.flow-step {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--or), var(--or-d));
  color: #fff; font-size: 14px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 2px 8px rgba(180,80,0,.3);
  z-index: 1; position: relative;
}
.flow-connector {
  width: 2px; flex: 1;
  background: linear-gradient(to bottom, var(--or-l), var(--or-tint));
  margin: 2px 0;
  min-height: 24px;
}
.flow-item:last-child .flow-connector { display: none; }
.flow-body {
  padding: 8px 0 24px;
}
.flow-body .flow-title {
  font-size: 13.5px; font-weight: 800; color: var(--or-d);
  margin-bottom: 4px; line-height: 1.4;
}
.flow-body .flow-desc {
  font-size: 12.5px; color: var(--muted); line-height: 1.65;
}

/* ---- 専門家 ---- */
.expert-list {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0;
}
.expert-tag {
  background: var(--or-pale);
  border: 1px solid var(--or-tint);
  color: var(--or-d); font-size: 13px; font-weight: 700;
  padding: 5px 14px; border-radius: 20px;
  display: flex; align-items: center; gap: 5px;
}
.expert-tag::before { content: "👤"; font-size: 13px; }

.recruit-box {
  background: var(--light);
  border: 1px dashed var(--or);
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 10px;
  font-size: 12.5px; color: var(--muted); line-height: 1.7;
}
.recruit-box strong { color: var(--or-d); }
.recruit-box a { color: var(--or); font-weight: 700; }

/* ---- 関連リンク ---- */
.related-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin: 14px 0;
}
.related-link-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text);
  transition: all .18s;
  font-size: 13px; font-weight: 600;
}
.related-link-card:hover {
  border-color: var(--or); color: var(--or-d);
  text-decoration: none;
  box-shadow: 0 2px 10px var(--shadow);
  transform: translateY(-1px);
}
.related-link-card .rl-icon {
  width: 36px; height: 36px; border-radius: 7px;
  background: var(--or-pale); border: 1px solid var(--or-tint);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}

/* ---- Infobox ---- */
.info-note {
  background: #fff8f2;
  border-left: 3px solid var(--or-l);
  padding: 10px 14px;
  font-size: 12px; color: var(--muted); line-height: 1.65;
  border-radius: 0 6px 6px 0; margin-top: 8px;
}

/* ---- Responsive ---- */
@media (max-width: 600px) {
  .hero-title { font-size: 18px; }
  .overview-grid { grid-template-columns: 1fr 1fr; }
  .effect-grid { grid-template-columns: 1fr 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .cta-primary { font-size: 14px; padding: 12px 20px; width: 100%; justify-content: center; }
}
@media (max-width: 400px) {
  .overview-grid { grid-template-columns: 1fr; }
  .effect-grid { grid-template-columns: 1fr; }
}