/* components.css — 共通UIコンポーネント */
/* ── TICKER ── */
.ticker {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  height: 38px;
  overflow: hidden;
}
.ticker__label {
  flex-shrink: 0;
  padding: 0 16px 0 32px;
  font-family: var(--ff-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--orange);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ticker__label::after { content: ''; width: 20px; height: 1px; background: var(--orange-m); }
.ticker__track-wrap { overflow: hidden; flex: 1; }
.ticker__track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
  font-size: 0.75rem;
  color: var(--muted);
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker__item { display: flex; align-items: center; gap: 12px; }
.ticker__tag {
  font-size: 0.625rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  background: var(--leaf-l);
  color: var(--leaf);
  letter-spacing: .05em;
}
.ticker__tag.el_tagOrange { background: var(--orange-l); color: var(--orange); }

/* ── IMAGE PLACEHOLDER ── */
.el_imgPh {
  position: relative;
  overflow: hidden;
  background: var(--peach);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.el_imgPh::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent, transparent 10px,
    rgba(255,255,255,.3) 10px, rgba(255,255,255,.3) 11px
  );
}
.el_imgPh_inner {
  position: relative;
  z-index: var(--z-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(74,34,8,.4);
  width: 100%;
}
.el_imgPh_label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-align: center;
  line-height: 1.6;
  color: rgba(74,34,8,.4);
}


/* ── SEC LABEL / TITLE ── */
.el_secLabel { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.el_secLabel_text { font-family: var(--ff-sans); font-size: 0.6875rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--orange); }
.el_secLabel_text::before { content: ""; width: 24px; height: 3px; background: var(--orange); border-radius: 2px; display: inline-block; vertical-align: middle; margin-right: 12px; }
.el_secLabel--center .el_secLabel_text::after { content: ""; width: 24px; height: 3px; background: var(--orange); border-radius: 2px; display: inline-block; vertical-align: middle; margin-left: 12px; }
.el_secTitle { font-family: var(--ff-serif); font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--text); line-height: 1.4; margin-bottom: 16px; }
.el_secSub { font-size: 0.875rem; line-height: 1.9; color: var(--muted); }

