/* ── ドラッグオーバー状態 ── */
#drop-zone.drag-over {
  border-color: #3b82f6;
  background-color: #eff6ff;
}

/* マウスホバー時のフォーカスフィードバック */
#drop-zone:hover {
  border-color: #3b82f6;
  background-color: #eff6ff;
}

/* ── iframe プレビュー ── */
#preview-frame {
  width: 100%;
  min-height: 500px;
  border: none;
  display: block;
}

/* ── サイトヘッダー ── */
.site-header {
  background: linear-gradient(135deg, #1e3a5f 0%, #1e40af 100%);
  box-shadow: 0 2px 8px rgba(30, 58, 95, 0.4);
}

/* ── ステップバー ── */
.steps-bar {
  background: #dbeafe;
  border-bottom: 1px solid #bfdbfe;
}

/* ── プライバシーバー ── */
.privacy-bar {
  background: #eff6ff;
  border-bottom: 1px solid #dbeafe;
}

/* ── 説明文パネル ── */
.tool-desc {
  border-left: 4px solid #1e40af;
  background: #ffffff;
  border-radius: 0 0.625rem 0.625rem 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

/* ── アフィリエイトセクション ── */
.affiliate-section {
  background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%);
  border: 1px solid #f59e0b;
  border-radius: 0.875rem;
}

/* ── アフィリエイトカード ── */
.aff-card {
  background: #ffffff;
  border: 1px solid #fde68a;
  border-radius: 0.625rem;
}

/* ── アフィリエイト CTA ボタン ── */
.aff-btn {
  background: #1e3a5f;
  color: #ffffff;
  border-radius: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.3125rem 0.75rem;
  text-decoration: none;
  display: inline-block;
  margin-top: 0.5rem;
  transition: background-color 0.15s;
}
.aff-btn:hover {
  background: #1e40af;
}
.aff-btn:focus-visible {
  outline: 2px solid #1e40af;
  outline-offset: 2px;
}

/* ── アフィリエイト PR ラベル ── */
.aff-pr-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 0.75rem;
}

/* ── アフィリエイトバナー（常時横並び） ── */
.affiliate-banners {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
}
.affiliate-banner {
  display: flex;
  justify-content: center;
}
.affiliate-banner img:not([width="1"]) {
  display: block;
  border-radius: 0.5rem;
  max-width: 100%;
  height: auto;
}
