/* =====================================================
   ad.css — 広告についてページ専用
   ===================================================== */

/* ── lower-hero カラー上書き（オレンジ系） ── */
.lower-title-en::after { background: var(--clr-orange); }
.lower-title-en .h1st  { color: var(--clr-orange); }
.cd-title-icon         { color: var(--clr-orange); }

.cd-body h2 { border-left-color: var(--clr-orange); }
.cd-body h3 { color: var(--clr-orange); }

.cd-back:hover {
  border-color: var(--clr-orange);
  color: var(--clr-orange);
  background: var(--clr-bg-warm);
}

/* ── CTAバナー ── */
.ad-cta-banner {
  background: linear-gradient(135deg, #fff8f0 0%, #fff0fa 100%);
  border: 2px solid var(--clr-orange);
  border-radius: var(--r-lg);
  padding: var(--sp-md) var(--sp-lg);
  margin: var(--sp-md) 0;
}

.ad-cta-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  flex-wrap: wrap;
}

.ad-cta-icon {
  font-size: 2.6rem;
  color: var(--clr-orange);
  flex-shrink: 0;
  line-height: 1;
}

.ad-cta-text { flex: 1; min-width: 200px; }

.ad-cta-lead {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 4px;
}

.ad-cta-sub {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.75;
}

.ad-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-orange);
  color: var(--clr-white);
  font-weight: 700;
  font-size: var(--fs-base);
  padding: 12px 28px;
  border-radius: var(--r-full);
  white-space: nowrap;
  transition: background var(--tr), box-shadow var(--tr), transform var(--tr);
  box-shadow: var(--shadow-hover);
  flex-shrink: 0;
}
.ad-cta-btn:hover {
  background: #e5694f;
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  opacity: 1;
}

@media (max-width: 767px) {
  .ad-cta-banner { padding: var(--sp-md); }
  .ad-cta-inner  { flex-direction: column; align-items: flex-start; gap: var(--sp-sm); }
  .ad-cta-btn    { width: 100%; justify-content: center; }
}

/* ── ご依頼の流れ ── */
.ad-flow-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: var(--sp-sm) 0;
  list-style: none;
  counter-reset: none;
}

.ad-flow-item {
  display: flex;
  gap: var(--sp-md);
  align-items: flex-start;
  padding: var(--sp-sm) 0;
  border-bottom: 1px solid var(--clr-border);
  position: relative;
}
.ad-flow-item:last-child { border-bottom: none; }

.ad-flow-num {
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-orange);
  opacity: 0.5;
  flex-shrink: 0;
  min-width: 36px;
  /* h3の line-height:1.8(body継承) の half-leading(0.4rem)に合わせる
     (lh-1)×1.5/2 = 0.4 → lh ≈ 1.53 */
  line-height: 1.53;
}

.ad-flow-body { flex: 1; }
.ad-flow-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 4px;
  border: none;
  padding: 0;
}
.ad-flow-body p {
  font-size: var(--fs-base);
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: 0;
}

/* ── サイドバー 広告お問い合わせ誘導 ── */
.sidebar-ad-contact {
  background: linear-gradient(135deg, #fff8f0, #fff0fa);
  border: 2px solid var(--clr-orange);
  border-radius: var(--r-md);
  padding: var(--sp-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.ad-contact-eyebrow {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--clr-orange);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.ad-contact-text {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-sm);
}

.ad-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  background: var(--clr-orange);
  color: var(--clr-white);
  font-weight: 700;
  font-size: var(--fs-sm);
  padding: 10px 16px;
  border-radius: var(--r-full);
  transition: background var(--tr), box-shadow var(--tr);
  box-shadow: var(--shadow-hover);
}
.ad-contact-btn:hover {
  background: #e5694f;
  box-shadow: var(--shadow-hover);
  opacity: 1;
}
