/* ============================================================
   Dynamic Effects - 動効果（科技感升级）
   v1 2026-05-07
   覆盖：
     - 数字计数器 .count-up
     - 滚动渐显 [data-reveal]
     - 卡片 hover 立体化 .c-box.-border:hover (优化)
     - Hero 实时数据浮窗 .live-ops-overlay
     - 仪表盘组件 .dashboard-mock
   ============================================================ */

/* === 0. 全局 - 尊重用户偏好 === */
@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  .count-up,
  .live-ops-overlay,
  .dashboard-mock { animation: none !important; transition: none !important; transform: none !important; }
}

/* === 1. 滚动渐显 === */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.215, 0.61, 0.355, 1), transform 700ms cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: opacity, transform;
}
[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="zoom"]  { transform: scale(0.92); }
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
/* Stagger delay (children of [data-reveal-stagger] reveal one after another) */
[data-reveal-stagger] > [data-reveal]:nth-child(1)  { transition-delay:  60ms; }
[data-reveal-stagger] > [data-reveal]:nth-child(2)  { transition-delay: 140ms; }
[data-reveal-stagger] > [data-reveal]:nth-child(3)  { transition-delay: 220ms; }
[data-reveal-stagger] > [data-reveal]:nth-child(4)  { transition-delay: 300ms; }
[data-reveal-stagger] > [data-reveal]:nth-child(5)  { transition-delay: 380ms; }
[data-reveal-stagger] > [data-reveal]:nth-child(6)  { transition-delay: 460ms; }
[data-reveal-stagger] > [data-reveal]:nth-child(n+7) { transition-delay: 540ms; }

/* === 2. 数字计数器 === */
.count-up {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.count-up.is-counting { animation: countPulse 600ms ease; }
@keyframes countPulse {
  0% { transform: scale(0.96); }
  50% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

/* === 3. 卡片 hover 立体化 === */
/* 服务卡片 / box 类的统一悬停效果 */
.c-box.-border,
.c-card,
.c-banner.c-box {
  transition: transform 350ms cubic-bezier(0.215, 0.61, 0.355, 1),
              box-shadow 350ms ease,
              border-color 350ms ease;
  will-change: transform;
}
.c-box.-border:hover,
.c-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(232, 93, 32, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: rgba(232, 93, 32, 0.4);
}
/* 流光边框（用 ::before 伪元素 + 渐变） */
.tech-card {
  position: relative;
  isolation: isolate;
}
.tech-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(232, 93, 32, 0) 0%, rgba(232, 93, 32, 0) 50%, rgba(232, 93, 32, 0) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 350ms ease, background 1500ms ease;
  pointer-events: none;
  z-index: -1;
}
.tech-card:hover::before {
  opacity: 1;
  background: linear-gradient(135deg, rgba(232, 93, 32, 0.6) 0%, rgba(232, 93, 32, 0.1) 50%, rgba(255, 200, 100, 0.6) 100%);
}

/* === 4. Hero 实时运营浮窗 === */
.live-ops-overlay {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 5;
  width: 320px;
  max-width: calc(100vw - 48px);
  padding: 16px 18px;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  font-size: 13px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(20px);
  animation: liveOpsIn 800ms 600ms cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
@keyframes liveOpsIn {
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
  .live-ops-overlay {
    right: 12px;
    bottom: 12px;
    width: 260px;
    padding: 12px 14px;
    font-size: 12px;
  }
}
.live-ops-overlay__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
}
.live-ops-overlay__pulse {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #34d399;
  letter-spacing: 0;
  text-transform: none;
}
.live-ops-overlay__pulse::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
  animation: pulseDot 1.6s infinite;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7); }
  70%  { box-shadow: 0 0 0 9px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}
.live-ops-overlay__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 4px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}
.live-ops-overlay__row:last-child { border-bottom: 0; }
.live-ops-overlay__label {
  color: rgba(255, 255, 255, 0.7);
}
.live-ops-overlay__value {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.live-ops-overlay__unit {
  font-size: 11px;
  margin-left: 2px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}
.live-ops-overlay__delta {
  margin-left: 6px;
  font-size: 11px;
  color: #34d399;
  font-weight: 600;
}

/* === 5. 仪表盘模拟组件 === */
.dashboard-mock {
  background: #0f172a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18), 0 6px 16px rgba(15, 23, 42, 0.10);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
  color: #e2e8f0;
}
.dashboard-mock__titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: linear-gradient(to bottom, #1e293b, #0f172a);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.dashboard-mock__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}
.dashboard-mock__dot.-red    { background: #ff5f57; }
.dashboard-mock__dot.-yellow { background: #febc2e; }
.dashboard-mock__dot.-green  { background: #28c840; }
.dashboard-mock__title {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
}
.dashboard-mock__status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #34d399;
}
.dashboard-mock__status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  animation: pulseDot 1.6s infinite;
}
.dashboard-mock__body {
  padding: 22px;
}
.dashboard-mock__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .dashboard-mock__grid { grid-template-columns: 1fr 1fr; }
  .dashboard-mock__body { padding: 16px; }
}
.dashboard-mock__metric {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 12px 14px;
}
.dashboard-mock__metric-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.dashboard-mock__metric-value {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  line-height: 1;
}
.dashboard-mock__metric-trend {
  display: inline-block;
  margin-top: 4px;
  font-size: 11px;
  color: #34d399;
  font-weight: 600;
}
.dashboard-mock__metric-trend.-down { color: #f87171; }

/* SVG 折线图 */
.dashboard-mock__chart {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 16px;
}
.dashboard-mock__chart-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.dashboard-mock__chart-title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}
.dashboard-mock__chart-value {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.dashboard-mock__chart svg { display: block; width: 100%; height: 80px; }
.dashboard-mock__chart-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 2.4s 600ms cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}
.dashboard-mock__chart-area {
  opacity: 0;
  animation: fadeIn 1s 1.6s ease forwards;
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* 进度条 */
.dashboard-mock__progress {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dashboard-mock__progress-row {
  display: grid;
  grid-template-columns: 100px 1fr 50px;
  gap: 10px;
  align-items: center;
  font-size: 12px;
}
.dashboard-mock__progress-label { color: rgba(255, 255, 255, 0.65); }
.dashboard-mock__progress-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
}
.dashboard-mock__progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #E85D20, #fbbf24);
  border-radius: 3px;
  width: 0;
  transition: width 1.2s 800ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.is-visible .dashboard-mock__progress-bar { width: var(--bar-width, 0); }
.dashboard-mock__progress-value {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: #fff;
}

/* === 6. Hero 增加位置基底（让浮窗能 absolute 在 hero 内） === */
.top-hero {
  position: relative;
}

/* ============================================================
   Logistics Flow Animation (D 部分 - /3pl 页面端到端流程动画)
   ============================================================ */
.logi-flow {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 14px;
  overflow: hidden;
  padding: 36px 28px 28px;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.18), 0 4px 12px rgba(15, 23, 42, 0.08);
}
/* subtle grid */
.logi-flow::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.logi-flow__head {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 28px;
}
.logi-flow__title {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin: 0;
}
.logi-flow__title small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #34d399;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.logi-flow__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #34d399;
  letter-spacing: 0.06em;
}
.logi-flow__live::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  animation: pulseDot 1.6s infinite;
}

/* ===== Track ===== */
.logi-flow__track {
  position: relative;
  padding: 24px 0 8px;
}
.logi-flow__line {
  position: absolute;
  left: 5%;
  right: 5%;
  top: 56px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}
.logi-flow__line::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 30%;
  background: linear-gradient(90deg, transparent, #E85D20, #fbbf24, transparent);
  animation: flowRunning 4s linear infinite;
}
@keyframes flowRunning {
  0%   { left: -30%; }
  100% { left: 100%; }
}

/* ===== Nodes ===== */
.logi-flow__nodes {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.logi-flow__node {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
}
.logi-flow__node-dot {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 12px;
  transition: all 350ms ease;
}
.logi-flow__node-label {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.logi-flow__node-meta {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
  min-height: 30px;
}

/* === Cycle animation: highlight each node in sequence ===
   Total cycle: 12s, 6 nodes, each lit for ~2s
   Nodes lit at offsets: 0s, 2s, 4s, 6s, 8s, 10s
*/
.logi-flow__node-dot {
  animation: nodeIdle 12s infinite;
}
.logi-flow__node:nth-child(1) .logi-flow__node-dot { animation-delay:  0s; }
.logi-flow__node:nth-child(2) .logi-flow__node-dot { animation-delay: -10s; }  /* lit at 2s */
.logi-flow__node:nth-child(3) .logi-flow__node-dot { animation-delay: -8s; }   /* lit at 4s */
.logi-flow__node:nth-child(4) .logi-flow__node-dot { animation-delay: -6s; }   /* lit at 6s */
.logi-flow__node:nth-child(5) .logi-flow__node-dot { animation-delay: -4s; }   /* lit at 8s */
.logi-flow__node:nth-child(6) .logi-flow__node-dot { animation-delay: -2s; }   /* lit at 10s */

@keyframes nodeIdle {
  0%   { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); transform: scale(1); box-shadow: 0 0 0 0 rgba(232,93,32,0); }
  3%   { background: rgba(232,93,32,0.25); border-color: #E85D20; transform: scale(1.18); box-shadow: 0 0 0 0 rgba(232,93,32,0.6); }
  10%  { background: rgba(232,93,32,0.18); border-color: #E85D20; transform: scale(1.10); box-shadow: 0 0 0 14px rgba(232,93,32,0); }
  16%  { background: rgba(232,93,32,0.06); border-color: rgba(232,93,32,0.4); transform: scale(1); box-shadow: none; }
  100% { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); transform: scale(1); }
}

/* === Moving container icon === */
.logi-flow__container {
  position: absolute;
  top: 32px;
  left: 5%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  filter: drop-shadow(0 4px 12px rgba(232, 93, 32, 0.5));
  animation: containerMove 12s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  z-index: 2;
}
@keyframes containerMove {
  0%   { left: 5%; opacity: 0; transform: translateX(0); }
  3%   { opacity: 1; }
  16%  { left: 19%; }   /* node 1 → node 2 */
  33%  { left: 35%; }   /* node 2 → node 3 */
  50%  { left: 51%; }   /* node 3 → node 4 */
  66%  { left: 67%; }   /* node 4 → node 5 */
  83%  { left: 83%; }   /* node 5 → node 6 */
  96%  { left: 95%; opacity: 1; }
  100% { left: 95%; opacity: 0; }
}

/* === Mobile: stack nodes vertically === */
@media (max-width: 768px) {
  .logi-flow__nodes {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 8px;
    padding-top: 8px;
  }
  .logi-flow__line { display: none; }
  .logi-flow__container { display: none; }
  .logi-flow__node-dot { animation: nodeMobilePulse 12s infinite; }
  @keyframes nodeMobilePulse {
    0%, 100% { background: rgba(232,93,32,0.06); border-color: rgba(232,93,32,0.4); }
    50%      { background: rgba(232,93,32,0.18); border-color: #E85D20; box-shadow: 0 0 16px rgba(232,93,32,0.4); }
  }
}

/* Bottom legend / metrics */
.logi-flow__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}
.logi-flow__legend-item {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.logi-flow__legend-item strong {
  color: #fbbf24;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   Modern Service Card Grid (统一服务卡片网格)
   用于首页 12 项服务下方布局
   ============================================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .service-grid { grid-template-columns: 1fr; gap: 10px; }
}

.service-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e0e0dc;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: transform 350ms cubic-bezier(0.215, 0.61, 0.355, 1),
              border-color 350ms ease,
              box-shadow 350ms ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #E85D20, #fbbf24);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 350ms ease;
}
.service-card:hover {
  border-color: #E85D20;
  box-shadow: 0 10px 24px rgba(232, 93, 32, 0.12), 0 4px 8px rgba(0, 0, 0, 0.04);
  transform: translateY(-3px);
}
.service-card:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}
.service-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  line-height: 1;
  /* Emoji-aware font stack: 强制使用彩色 emoji 字体 */
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji",
               "Segoe UI Symbol", "Twemoji Mozilla",
               -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fff5f0;
  border-radius: 50%;
  transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1), background 350ms ease;
}
.service-card:hover .service-card__icon {
  transform: rotate(-8deg) scale(1.08);
  background: linear-gradient(135deg, #fff0e6, #ffe4cc);
}
.service-card__body {
  flex: 1;
  min-width: 0;
}
.service-card__title {
  font-size: 14px;
  font-weight: 700;
  color: #1A2744;
  margin: 0 0 3px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.service-card__desc {
  font-size: 12px;
  color: #888;
  line-height: 1.45;
  margin: 0;
}
.service-card__arrow {
  flex-shrink: 0;
  color: #cbd5e1;
  font-size: 18px;
  font-weight: 600;
  transition: transform 350ms ease, color 350ms ease;
}
.service-card:hover .service-card__arrow {
  color: #E85D20;
  transform: translateX(4px);
}

/* ============================================================
   Page Title Background Fallback (for -solution / -news / -contact
   which had no dedicated background image, causing white-on-white)
   ============================================================ */

/* -solution: 越境ECモール pages — warm orange-navy gradient */
.l-pagetitle.-solution {
  background: linear-gradient(135deg, #1a2744 0%, #E85D20 60%, #fbbf24 100%);
  position: relative;
}
.l-pagetitle.-solution::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.08) 0%, transparent 40%);
  pointer-events: none;
}

/* -news: news pages — deep navy gradient */
.l-pagetitle.-news {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  position: relative;
}
.l-pagetitle.-news::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* -contact: contact pages — orange gradient */
.l-pagetitle.-contact {
  background: linear-gradient(135deg, #C0392B 0%, #E85D20 50%, #fbbf24 100%);
  position: relative;
}
.l-pagetitle.-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 40%, rgba(255,255,255,0.15) 0%, transparent 40%),
    radial-gradient(circle at 75% 70%, rgba(255,255,255,0.10) 0%, transparent 40%);
  pointer-events: none;
}

/* Make sure heading text stays above the ::before overlay */
.l-pagetitle.-solution .l-pagetitle__inner,
.l-pagetitle.-news .l-pagetitle__inner,
.l-pagetitle.-contact .l-pagetitle__inner {
  position: relative;
  z-index: 1;
}

/* Ensure heading visibility on these gradients */
.l-pagetitle.-solution .l-pagetitle__heading,
.l-pagetitle.-news .l-pagetitle__heading,
.l-pagetitle.-contact .l-pagetitle__heading {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45), 0 4px 16px rgba(0, 0, 0, 0.25);
}

/* ============================================================
   Missing Utility Classes (修复 u-h100p 等通用工具类未定义问题)
   多个页面使用了 u-h100p 但 CSS 中没有定义，导致卡片高度不齐
   ============================================================ */

/* 让卡片填满网格 cell 的完整高度（使所有卡片等高） */
.u-h100p {
  height: 100%;
}

/* 当 .l-grid__item 包裹 .c-box 时，让 box 自然撑满 cell 高度
   即使没有 u-h100p 类（这是更稳健的兜底方案） */
.l-grid > .l-grid__item > .c-box.-border {
  height: 100%;
}

/* ============================================================
   Tagline Strip (变体 4: Tech 深色科技感)
   位置: Hero Banner 之后 / 3 大卖点之前
   2026-05-08
   ============================================================ */
.tagline-strip {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  padding: 36px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tagline-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.tagline-strip__inner {
  position: relative;
  z-index: 1;
  max-width: 1256px;
  margin: 0 auto;
}
.tagline-strip__main {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.005em;
  line-height: 1.4;
  margin: 0 0 8px;
}
.tagline-strip__main strong {
  background: linear-gradient(135deg, #E85D20 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}
.tagline-strip__sub {
  font-size: 13px;
  color: #94a3b8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}
.tagline-strip__sub::before {
  content: '●';
  color: #34d399;
  margin-right: 8px;
  font-size: 9px;
  vertical-align: middle;
  animation: tagBlink 1.5s infinite;
}
@keyframes tagBlink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

/* 移动端适配 */
@media (max-width: 768px) {
  .tagline-strip {
    padding: 26px 20px;
  }
  .tagline-strip__main {
    font-size: 16px;
    line-height: 1.55;
  }
  .tagline-strip__sub {
    font-size: 11px;
    letter-spacing: 0.06em;
  }
}
@media (max-width: 480px) {
  .tagline-strip__main {
    font-size: 15px;
  }
  .tagline-strip__sub {
    font-size: 10px;
  }
}

/* =========================================================================
   案例中心 (Case Studies Hub) コンポーネント
   导入事例ハブと詳細ページ用
   ========================================================================= */

/* Hero — 案例中心ヘッダー */
.case-hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(26, 39, 68, 0.92) 0%, rgba(15, 23, 42, 0.88) 60%, rgba(15, 23, 42, 0.94) 100%),
    url('/shp/image/solutions/wh-service/wh_01.jpg') center/cover no-repeat;
  color: #fff;
  padding: 64px 40px 56px;
  border-radius: 12px;
  margin-bottom: 40px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.18);
}
.case-hero::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(232,93,32,0.25) 0%, transparent 65%);
  pointer-events: none;
}
.case-hero::after {
  content: "";
  position: absolute;
  bottom: -30%; left: -8%;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(251,191,36,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.case-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #FBBF24;
  margin-bottom: 12px;
  position: relative;
}
.case-hero__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  position: relative;
}
.case-hero__lead {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.85;
  max-width: 760px;
  margin-bottom: 36px;
  position: relative;
}
.case-hero__kpis {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
}
.case-hero__kpi {
  flex: 1 1 160px;
  min-width: 120px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-radius: 8px;
  backdrop-filter: blur(6px);
}
.case-hero__kpi-num {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #FBBF24;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.case-hero__kpi-label {
  font-size: 11px;
  opacity: 0.8;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .case-hero { padding: 36px 24px 32px; }
  .case-hero__title { font-size: 22px; }
  .case-hero__lead { font-size: 13px; }
  .case-hero__kpi-num { font-size: 22px; }
}

/* 筛选 chips */
.case-filter {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 32px;
}
.case-filter__group {
  margin-bottom: 16px;
}
.case-filter__group:last-child { margin-bottom: 0; }
.case-filter__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #1A2744;
  letter-spacing: 0.04em;
  margin-right: 12px;
  margin-bottom: 8px;
  min-width: 80px;
}
.case-chip {
  display: inline-block;
  padding: 6px 14px;
  margin: 0 6px 6px 0;
  font-size: 12px;
  background: #fff;
  border: 1px solid #CBD5E1;
  border-radius: 999px;
  color: #334155;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.case-chip:hover {
  border-color: #E85D20;
  color: #E85D20;
  background: #FFF7ED;
}
.case-chip.is-active {
  background: #E85D20;
  border-color: #E85D20;
  color: #fff;
}
.case-chip.is-active:hover {
  background: #c84a15;
}

/* 案例カードグリッド */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .case-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .case-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* 案例カード */
.case-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(26, 39, 68, 0.12);
  border-color: #E85D20;
}
.case-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #1A2744 0%, #334155 100%);
  overflow: hidden;
}
.case-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.case-card__media-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(251, 191, 36, 0.6);
}
.case-card__kpi-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(232, 93, 32, 0.95);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(232, 93, 32, 0.35);
}
.case-card__body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.case-card__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.case-card__tag {
  display: inline-block;
  padding: 2px 8px;
  font-size: 10px;
  background: #F1F5F9;
  color: #64748B;
  border-radius: 4px;
  letter-spacing: 0.02em;
}
.case-card__tag.-primary {
  background: #FFF7ED;
  color: #E85D20;
}
.case-card__client {
  font-size: 11px;
  color: #64748B;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.case-card__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: #1A2744;
  margin-bottom: 14px;
  flex: 1;
}
.case-card__kpi-row {
  display: flex;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid #F1F5F9;
}
.case-card__kpi {
  flex: 1;
}
.case-card__kpi-num {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #E85D20;
  line-height: 1;
  margin-bottom: 3px;
  letter-spacing: -0.02em;
}
.case-card__kpi-label {
  font-size: 10px;
  color: #64748B;
  letter-spacing: 0.02em;
}

/* 案例詳細ページ用 */
.case-detail-hero {
  background: linear-gradient(135deg, #1A2744 0%, #0F172A 100%);
  color: #fff;
  padding: 48px 40px 40px;
  border-radius: 12px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.case-detail-hero::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(232,93,32,0.22) 0%, transparent 65%);
  pointer-events: none;
}
.case-detail-hero__breadcrumb {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #FBBF24;
  margin-bottom: 12px;
  position: relative;
}
.case-detail-hero__client {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 8px;
  position: relative;
}
.case-detail-hero__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
  position: relative;
}
.case-detail-hero__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  position: relative;
}
.case-detail-hero__tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 11px;
  background: rgba(251, 191, 36, 0.15);
  color: #FBBF24;
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-radius: 4px;
  letter-spacing: 0.03em;
}
.case-detail-hero__kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
@media (max-width: 768px) {
  .case-detail-hero { padding: 32px 24px; }
  .case-detail-hero__title { font-size: 18px; }
  .case-detail-hero__kpis { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
.case-detail-hero__kpi {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-radius: 8px;
  text-align: center;
}
.case-detail-hero__kpi-num {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: #FBBF24;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.case-detail-hero__kpi-label {
  font-size: 10px;
  opacity: 0.85;
  letter-spacing: 0.04em;
}

/* 客户引语 */
.case-quote {
  position: relative;
  background: #FFF7ED;
  border-left: 4px solid #E85D20;
  padding: 24px 28px 24px 64px;
  border-radius: 0 8px 8px 0;
  margin: 32px 0;
}
.case-quote::before {
  content: "\201C";
  position: absolute;
  top: 6px; left: 18px;
  font-size: 56px;
  font-weight: 700;
  color: #E85D20;
  line-height: 1;
  font-family: Georgia, serif;
}
.case-quote__text {
  font-size: 15px;
  line-height: 1.8;
  color: #1A2744;
  margin-bottom: 12px;
  font-style: italic;
}
.case-quote__attr {
  font-size: 12px;
  color: #64748B;
  letter-spacing: 0.04em;
}

/* Before / After 对照表 */
.case-ba {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
  margin: 24px 0;
}
@media (max-width: 640px) {
  .case-ba { grid-template-columns: 1fr; }
  .case-ba__arrow { display: none; }
}
.case-ba__col {
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #E2E8F0;
}
.case-ba__col.-before {
  background: #FEF2F2;
  border-color: #FECACA;
}
.case-ba__col.-after {
  background: #ECFDF5;
  border-color: #A7F3D0;
}
.case-ba__label {
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 10px;
}
.case-ba__col.-before .case-ba__label { color: #C0392B; }
.case-ba__col.-after .case-ba__label { color: #047857; }
.case-ba__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #1A2744;
}
.case-ba__list li {
  padding: 4px 0 4px 18px;
  position: relative;
}
.case-ba__list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #E85D20;
  font-weight: 700;
}
.case-ba__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #E85D20;
  font-weight: 700;
}

/* "免责"小字 */
.case-disclaimer {
  margin-top: 40px;
  padding: 12px 16px;
  background: #F8FAFC;
  border-left: 3px solid #CBD5E1;
  font-size: 11px;
  color: #64748B;
  line-height: 1.6;
  border-radius: 0 4px 4px 0;
}

/* =========================================================================
   Aside 内の -border-2color 装飾線を除去
   理由: aside 幅 ~240px / main 幅 ~800px で線の長さが極端に違い、
   メイン見出しの装飾線と視覚的に競合・不整合に見える問題を解消
   (2026-05-13 修正)
   ========================================================================= */
.l-content__main ~ aside .c-heading.-border-2color,
aside .c-heading.-border-2color {
  border-top: none;
  margin-top: 0;
  padding-top: 6px;
}
.l-content__main ~ aside .c-heading.-border-2color::before,
aside .c-heading.-border-2color::before {
  display: none;
}
/* 代替の控えめな装飾: 見出し左に橙色のアクセントバー */
.l-content__main ~ aside .c-heading.-small,
aside .c-heading.-small {
  position: relative;
  padding-left: 12px;
  margin-bottom: 12px;
}
.l-content__main ~ aside .c-heading.-small::before,
aside .c-heading.-small::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  background: #E85D20;
  border-top: none !important;
}

/* =========================================================================
   商流図 (Trade Flow Diagram) - HTML/CSS 版
   2026-05-13 リファクタリング: SVG → HTML+CSS で responsive・清晰
   ========================================================================= */

/* === 共通コンテナ === */
.tf {
  --tf-orange: #E85D20;
  --tf-orange-light: #FF7A3C;
  --tf-navy: #1A2744;
  --tf-navy-dark: #0F172A;
  --tf-gold: #FBBF24;
  --tf-blue: #3B82F6;
  --tf-green: #10B981;
  --tf-gray-50: #F8FAFC;
  --tf-gray-100: #F1F5F9;
  --tf-gray-200: #E2E8F0;
  --tf-gray-500: #64748B;
  --tf-gray-700: #334155;

  background: linear-gradient(180deg, #FAFBFC 0%, #EEF2F6 100%);
  background-image:
    linear-gradient(180deg, #FAFBFC 0%, #EEF2F6 100%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='50' height='50'><path d='M50 0L0 0 0 50' fill='none' stroke='rgba(26,39,68,0.04)' stroke-width='1'/></svg>");
  border-radius: 12px;
  padding: 28px 28px 24px;
  margin: 16px 0;
  color: var(--tf-navy);
}

.tf-title {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--tf-navy);
  line-height: 1.35;
}
.tf-subtitle {
  font-size: 13px;
  color: var(--tf-gray-500);
  margin: 0 0 20px;
  line-height: 1.5;
}

/* === 凡例 (Legend) === */
.tf-legend {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  background: #fff;
  border: 1px solid var(--tf-gray-200);
  border-radius: 6px;
  padding: 8px 14px;
  margin-bottom: 24px;
  font-size: 12px;
}
.tf-legend__item { display: flex; align-items: center; gap: 8px; }
.tf-legend__line {
  display: inline-block;
  width: 24px; height: 0;
  border-top: 3px solid var(--tf-orange);
}
.tf-legend__line.-info { border-top: 3px dashed var(--tf-blue); }
.tf-legend__line.-money { border-top: 3px dotted var(--tf-green); }
.tf-legend__label { font-weight: 700; color: var(--tf-navy); }
.tf-legend__sub { color: var(--tf-gray-500); font-size: 10px; margin-left: 4px; }

/* === レイアウト: hub-spoke (case_201, 204, 206 等) === */
.tf-hubspoke {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(360px, 1.8fr) minmax(220px, 1fr);
  grid-template-rows: auto auto;
  gap: 24px 36px;
  align-items: center;
  position: relative;
}
@media (max-width: 900px) {
  .tf-hubspoke {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
  }
}

.tf-upstream {
  background: #fff;
  border: 2px solid var(--tf-navy);
  border-radius: 10px;
  overflow: hidden;
  grid-row: 1 / 3;
}
.tf-upstream__header {
  background: var(--tf-navy);
  padding: 14px 18px;
  color: #fff;
}
.tf-upstream__label {
  font-size: 11px;
  font-weight: 800;
  color: var(--tf-gold);
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.tf-upstream__name {
  font-size: 18px;
  font-weight: 800;
  margin: 0;
}
.tf-upstream__sub {
  font-size: 12px;
  opacity: 0.8;
  margin-top: 4px;
}
.tf-upstream__body {
  padding: 16px 18px;
  font-size: 13px;
  line-height: 1.85;
  color: var(--tf-gray-700);
}
.tf-upstream__body li {
  list-style: none;
  padding-left: 14px;
  position: relative;
}
.tf-upstream__body li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--tf-orange);
}

/* 中央ハブ */
.tf-hub {
  background: linear-gradient(180deg, var(--tf-navy) 0%, var(--tf-navy-dark) 100%);
  border: 3px solid var(--tf-gold);
  border-radius: 14px;
  padding: 0;
  grid-row: 1 / 3;
  color: #fff;
  position: relative;
  box-shadow: 0 0 80px rgba(251, 191, 36, 0.18);
}
.tf-hub__header {
  background: var(--tf-navy-dark);
  padding: 14px 18px 16px;
  border-radius: 11px 11px 0 0;
  border-bottom: 1px solid rgba(251,191,36,0.2);
  text-align: center;
}
.tf-hub__label {
  font-size: 11px;
  font-weight: 800;
  color: var(--tf-gold);
  letter-spacing: 4px;
  margin-bottom: 4px;
}
.tf-hub__name {
  font-size: 20px;
  font-weight: 800;
  margin: 0;
}
.tf-hub__caps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 18px;
}
.tf-cap {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 8px;
  padding: 14px 12px;
  text-align: center;
  transition: transform .2s, border-color .2s;
}
.tf-cap:hover {
  transform: translateY(-2px);
  border-color: var(--tf-gold);
}
.tf-cap.-accent {
  background: rgba(232, 93, 32, 0.2);
  border-color: var(--tf-orange);
  border-width: 2px;
}
.tf-cap__icon {
  font-size: 11px;
  font-weight: 800;
  color: var(--tf-gold);
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.tf-cap.-accent .tf-cap__icon { color: var(--tf-orange); }
.tf-cap__name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}
.tf-cap__sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 4px;
}
.tf-cap__accent {
  font-size: 11px;
  font-weight: 700;
  color: var(--tf-gold);
}

/* 下流 (platforms + end users) */
.tf-down {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tf-platform {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1.5px solid var(--tf-navy);
  border-radius: 8px;
  overflow: hidden;
  min-height: 60px;
}
.tf-platform.-accent { border-color: var(--tf-orange); border-width: 2px; }
.tf-platform__badge {
  flex-shrink: 0;
  width: 56px;
  align-self: stretch;
  background: var(--tf-navy);
  color: var(--tf-gold);
  font-size: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tf-platform.-accent .tf-platform__badge {
  background: var(--tf-orange);
  color: #fff;
}
.tf-platform__body { padding: 8px 14px; min-width: 0; flex: 1; }
.tf-platform__name {
  font-size: 14px;
  font-weight: 800;
  color: var(--tf-navy);
  line-height: 1.3;
}
.tf-platform__sub {
  font-size: 11px;
  color: var(--tf-gray-500);
  margin-top: 2px;
}
.tf-platform.-accent .tf-platform__sub {
  color: var(--tf-orange);
  font-weight: 700;
}

.tf-endusers {
  background: #FFF7ED;
  border: 2px solid var(--tf-gold);
  border-radius: 10px;
  padding: 16px 18px;
  text-align: center;
}
.tf-endusers__label {
  font-size: 11px;
  font-weight: 800;
  color: var(--tf-orange);
  letter-spacing: 3px;
  margin-bottom: 6px;
}
.tf-endusers__name {
  font-size: 15px;
  font-weight: 800;
  color: var(--tf-navy);
  margin-bottom: 6px;
}
.tf-endusers__data {
  font-size: 12px;
  color: var(--tf-gray-500);
  margin-bottom: 4px;
}
.tf-endusers__kpi {
  font-size: 11px;
  color: var(--tf-green);
  font-weight: 700;
}

/* === 接続 (流向アイコン + 方向ラベル) === */
.tf-flow {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  padding: 6px 0;
}
.tf-flow__arrow {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
.tf-flow__label {
  font-size: 11px;
  font-weight: 700;
  margin-top: 2px;
  white-space: nowrap;
}
.tf-flow__sub {
  font-size: 9px;
  color: var(--tf-gray-500);
}
.tf-flow.-goods { color: var(--tf-orange); }
.tf-flow.-info { color: var(--tf-blue); }
.tf-flow.-money { color: var(--tf-green); }

/* hub-spoke 上のフローラベル絶対配置 (PC) */
@media (min-width: 900px) {
  .tf-conn {
    position: absolute;
    background: rgba(255,255,255,0.92);
    border: 1px solid var(--tf-gray-200);
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
    line-height: 1.3;
  }
}

/* === KPI cards (底部 4 数据) === */
.tf-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}
@media (max-width: 900px) {
  .tf-kpis { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .tf-kpis { grid-template-columns: 1fr; }
}
.tf-kpi {
  background: #fff;
  border: 1px solid var(--tf-gray-200);
  border-left: 6px solid var(--tf-orange);
  border-radius: 8px;
  padding: 14px 16px;
}
.tf-kpi.-accent {
  background: var(--tf-navy);
  color: #fff;
  border-left-color: var(--tf-gold);
}
.tf-kpi__label {
  font-size: 10px;
  font-weight: 800;
  color: var(--tf-orange);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.tf-kpi.-accent .tf-kpi__label { color: var(--tf-gold); }
.tf-kpi__value {
  font-size: 22px;
  font-weight: 900;
  color: var(--tf-navy);
  margin-bottom: 4px;
  line-height: 1.2;
}
.tf-kpi.-accent .tf-kpi__value { color: #fff; }
.tf-kpi__delta {
  font-size: 13px;
  font-weight: 800;
  color: var(--tf-orange);
  margin-bottom: 6px;
}
.tf-kpi.-accent .tf-kpi__delta { color: var(--tf-gold); }
.tf-kpi__desc {
  font-size: 11px;
  line-height: 1.55;
  color: var(--tf-gray-500);
}
.tf-kpi.-accent .tf-kpi__desc { color: rgba(255,255,255,0.7); }

/* === SP 用 (モバイル) === */
@media (max-width: 540px) {
  .tf { padding: 18px 14px; }
  .tf-title { font-size: 17px; }
  .tf-subtitle { font-size: 12px; }
  .tf-hub__name { font-size: 17px; }
  .tf-hub__caps { grid-template-columns: 1fr 1fr; gap: 8px; padding: 12px; }
  .tf-cap { padding: 10px 8px; }
  .tf-cap__name { font-size: 12px; }
  .tf-upstream__name { font-size: 15px; }
  .tf-kpi__value { font-size: 18px; }
}

/* === レイアウト: convergence (case_103 香港ハブ等) === */
.tf-convergence {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 60px minmax(220px, 1.4fr) 60px minmax(220px, 1fr);
  gap: 20px 0;
  align-items: stretch;
}
.tf-conv-sources {
  display: grid;
  grid-template-rows: repeat(auto-fit, minmax(60px, 1fr));
  gap: 12px;
}
.tf-conv-source {
  background: #fff;
  border: 1.5px solid var(--tf-gray-200);
  border-left: 4px solid var(--tf-navy);
  border-radius: 6px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tf-conv-source__flag {
  width: 36px; height: 36px;
  background: var(--tf-navy);
  color: var(--tf-gold);
  font-size: 13px;
  font-weight: 900;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tf-conv-source__name { font-size: 14px; font-weight: 800; color: var(--tf-navy); }
.tf-conv-source__sub { font-size: 10px; color: var(--tf-gray-500); }
@media (max-width: 900px) {
  .tf-convergence {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto;
  }
  .tf-conv-arrow { display: none; }
  .tf-conv-sources { grid-template-rows: none; }
}
.tf-conv-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--tf-orange);
  font-weight: 700;
}

/* =========================================================================
   商流図 — 極簡 visual-first バージョン (v2)
   2026-05-13 改: 文字量 -80%, 图标 + 大数字主体
   ========================================================================= */
.tf2 {
  --orange: #E85D20;
  --navy: #1A2744;
  --navy-dark: #0F172A;
  --gold: #FBBF24;
  --blue: #3B82F6;
  --green: #10B981;
  background: linear-gradient(180deg, #FAFBFC 0%, #EEF2F6 100%);
  border-radius: 12px;
  padding: 28px 24px;
  margin: 16px 0;
}
.tf2-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tf2-title::before {
  content: "";
  display: inline-block;
  width: 6px; height: 24px;
  background: linear-gradient(180deg, var(--orange), var(--gold));
  border-radius: 3px;
}

/* メインフロー: 横 4 ステージ (上流 → 銘東 → 平台 → 終端) */
.tf2-flow {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr 1fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 32px;
}
@media (max-width: 980px) {
  .tf2-flow {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .tf2-flow {
    grid-template-columns: 1fr;
  }
}

/* 各ステージ box */
.tf2-stage {
  background: #fff;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  padding: 22px 18px 18px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}
.tf2-stage__tag {
  position: absolute;
  top: -10px;
  left: 18px;
  background: var(--navy);
  color: var(--gold);
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  border-radius: 3px;
}
.tf2-stage.-hub { border-color: var(--gold); border-width: 2.5px; background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%); color: #fff; }
.tf2-stage.-hub .tf2-stage__tag { background: var(--orange); color: #fff; }
.tf2-stage.-end { background: #FFF7ED; border-color: var(--gold); }

/* Stage icon (大图标 emoji or shape) */
.tf2-stage__icon {
  font-size: 38px;
  line-height: 1;
  margin-bottom: 10px;
}
.tf2-stage__name {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.3;
}
.tf2-stage.-hub .tf2-stage__name { color: #fff; font-size: 17px; }
.tf2-stage__num {
  font-size: 22px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-top: 4px;
}
.tf2-stage.-hub .tf2-stage__num { color: var(--gold); font-size: 24px; }
.tf2-stage__sub {
  font-size: 11px;
  color: #64748B;
  margin-top: 4px;
}
.tf2-stage.-hub .tf2-stage__sub { color: rgba(255,255,255,0.65); }

/* HUB の 4 capability mini icons */
.tf2-caps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}
.tf2-cap-mini {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(251,191,36,0.3);
  border-radius: 6px;
  padding: 8px 4px;
  text-align: center;
}
.tf2-cap-mini__icon { font-size: 20px; line-height: 1; margin-bottom: 4px; }
.tf2-cap-mini__name { font-size: 11px; color: #fff; font-weight: 700; line-height: 1.2; }
.tf2-cap-mini.-accent { background: rgba(232,93,32,0.25); border-color: var(--orange); }

/* 平台 4 列简洁 logo */
.tf2-plats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}
.tf2-plat {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 10px 4px;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.tf2-plat.-accent {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

/* ステージ間のフロー線 (横向 PC, 直角无交叉) */
.tf2-flow::before {
  content: "";
  position: absolute;
}

/* KPI cards - 极简, 大数字主体 */
.tf2-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 900px) {
  .tf2-kpis { grid-template-columns: 1fr 1fr; }
}
.tf2-kpi {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 18px 16px;
  text-align: center;
  position: relative;
  border-top: 4px solid var(--orange);
}
.tf2-kpi.-accent {
  background: var(--navy);
  color: #fff;
  border-color: var(--gold);
}
.tf2-kpi__value {
  font-size: 32px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
}
.tf2-kpi.-accent .tf2-kpi__value { color: var(--gold); }
.tf2-kpi__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
}
.tf2-kpi.-accent .tf2-kpi__label { color: #fff; }
@media (max-width: 600px) {
  .tf2-kpi__value { font-size: 26px; }
}

/* 大箭头分隔符 (PC only) */
.tf2-arrow-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 32px;
  font-weight: 700;
}
@media (max-width: 980px) {
  .tf2-arrow-sep { display: none; }
}

/* =========================================================================
   商流図 v3 — Hub-Radiate 視覚化
   核心メッセージ:「1 つの倉庫 → 複数モール 一括出荷」
   2026-05-13 改: 1 vs 多 を視覚的に直接訴求
   ========================================================================= */
.tf3 {
  --orange: #E85D20;
  --navy: #1A2744;
  --navy-dark: #0F172A;
  --gold: #FBBF24;
  background: linear-gradient(180deg, #FAFBFC 0%, #EEF2F6 100%);
  border-radius: 12px;
  padding: 28px 28px;
  margin: 16px 0;
}
.tf3-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tf3-title::before {
  content: "";
  display: inline-block;
  width: 6px; height: 26px;
  background: linear-gradient(180deg, var(--orange), var(--gold));
  border-radius: 3px;
}
.tf3-subtitle {
  font-size: 13px;
  color: #64748B;
  margin: 0 0 28px;
  padding-left: 16px;
}

/* メインビジュアル: 左 (他社) ─ VS ─ 右 (銘東) */
.tf3-compare {
  display: grid;
  grid-template-columns: 1fr 80px 1.4fr;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 28px;
}
@media (max-width: 900px) {
  .tf3-compare {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* === 他社 panel === */
.tf3-other {
  background: #fff;
  border: 1.5px solid #FCA5A5;
  border-radius: 12px;
  padding: 24px 18px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.tf3-other__tag {
  position: absolute;
  top: -11px;
  left: 18px;
  background: #C0392B;
  color: #fff;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  border-radius: 3px;
}
.tf3-other__title {
  font-size: 15px;
  font-weight: 800;
  color: #C0392B;
  margin-bottom: 18px;
  text-align: center;
}
/* 他社: 3 个独立的仓库 → 3 平台对应 */
.tf3-other-pairs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.tf3-other-pair {
  text-align: center;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 8px;
  padding: 18px 6px;
}
.tf3-other-pair__icon { font-size: 36px; line-height: 1; margin-bottom: 8px; }
.tf3-other-pair__label { font-size: 14px; font-weight: 800; color: #C0392B; margin-bottom: 4px; }
.tf3-other-pair__sub { font-size: 12px; color: #475569; line-height: 1.3; font-weight: 700; }

/* 他社の負の KPI (3 個的小数字 box, 補充垂直空間) */
.tf3-other-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin: auto 0 14px;  /* 弹性间距，自动填充上下 */
}
.tf3-other-stat {
  background: #FEF2F2;
  border: 1px dashed #FECACA;
  border-radius: 6px;
  padding: 10px 4px;
  text-align: center;
}
.tf3-other-stat__num {
  font-size: 20px;
  font-weight: 900;
  color: #C0392B;
  line-height: 1;
}
.tf3-other-stat__unit {
  font-size: 10px;
  color: #94A3B8;
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: 1px;
}

.tf3-other__summary {
  text-align: center;
  font-size: 13px;
  color: #64748B;
  font-weight: 600;
  padding-top: 12px;
  border-top: 1px dashed #FECACA;
}
.tf3-other__summary strong { color: #C0392B; font-size: 18px; font-weight: 900; }
.tf3-other__cons {
  margin-top: 6px;
  font-size: 11px;
  color: #94A3B8;
}

/* VS 分隔符 */
.tf3-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
  background: linear-gradient(180deg, var(--navy), var(--navy-dark));
  border-radius: 50%;
  width: 80px;
  height: 80px;
  align-self: center;
  justify-self: center;
  box-shadow: 0 4px 16px rgba(26,39,68,0.3);
  letter-spacing: 1px;
}
@media (max-width: 900px) {
  .tf3-vs {
    width: 50px;
    height: 50px;
    font-size: 14px;
    margin: 8px auto;
  }
}

/* === 銘東 hub-radiate panel === */
.tf3-meito {
  background: #fff;
  border: 2.5px solid var(--gold);
  border-radius: 12px;
  padding: 24px 22px 20px;
  position: relative;
  box-shadow: 0 0 0 4px rgba(251,191,36,0.12);
  display: flex;
  flex-direction: column;
}
.tf3-meito__tag {
  position: absolute;
  top: -11px;
  left: 18px;
  background: var(--orange);
  color: #fff;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  border-radius: 3px;
}
.tf3-meito__title {
  font-size: 15px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 14px;
  text-align: center;
}

/* Hub-radiate: 中央仓库 + 4 角平台 (使用绝对定位 + CSS 线) */
.tf3-radiate {
  position: relative;
  width: 100%;
  aspect-ratio: 1.5 / 1;
  max-height: 360px;
  margin: 12px auto;
}

/* 中央 hub (绝对居中) */
.tf3-radiate__hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36%;
  max-width: 180px;
  aspect-ratio: 1.05 / 1;
  background: linear-gradient(180deg, var(--navy), var(--navy-dark));
  border: 3px solid var(--gold);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  z-index: 3;
  box-shadow: 0 8px 28px rgba(232,93,32,0.35);
}
.tf3-radiate__hub-num {
  font-size: 64px;
  font-weight: 900;
  color: var(--gold);
  line-height: 0.85;
  letter-spacing: -3px;
}
.tf3-radiate__hub-unit {
  font-size: 12px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 3px;
  margin-top: 4px;
}
.tf3-radiate__hub-name {
  font-size: 13px;
  font-weight: 700;
  margin-top: 8px;
  color: #fff;
}
.tf3-radiate__hub-icon {
  font-size: 26px;
  margin-bottom: 4px;
}

/* 4 角平台 (绝对定位 + 各角) */
.tf3-plat-card {
  position: absolute;
  background: #FFF7ED;
  border: 2px solid var(--orange);
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--navy);
  z-index: 3;
  width: 22%;
  min-width: 110px;
  box-shadow: 0 2px 8px rgba(232,93,32,0.15);
}
.tf3-plat-card__logo {
  font-size: 15px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1.2;
}
.tf3-plat-card__sub {
  font-size: 11px;
  color: #64748B;
  font-weight: 600;
  margin-top: 3px;
}
.tf3-plat-card.-p1 { top: 6%;    left: 4%; }
.tf3-plat-card.-p2 { top: 6%;    right: 4%; }
.tf3-plat-card.-p3 { bottom: 6%; left: 4%; }
.tf3-plat-card.-p4 { bottom: 6%; right: 4%; }

/* 4 条辐射线 - 使用绝对定位的 div 作为对角线，从 hub 中心向 4 角 */
.tf3-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange) 70%, var(--gold) 100%);
  transform-origin: 0 50%;
  z-index: 1;
  opacity: 0.85;
}
.tf3-line::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}
/* 4 个方向: 左上 (-1, -1)、右上 (1, -1)、左下 (-1, 1)、右下 (1, 1)
   使用 transform rotate 计算角度 */
.tf3-line.-tl { transform: rotate(208deg); }    /* 左上 */
.tf3-line.-tr { transform: rotate(332deg); }    /* 右上 */
.tf3-line.-bl { transform: rotate(152deg); }    /* 左下 */
.tf3-line.-br { transform: rotate(28deg); }     /* 右下 */

@media (max-width: 900px) {
  .tf3-radiate {
    aspect-ratio: auto;
    max-height: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .tf3-radiate__hub {
    position: static;
    transform: none;
    width: 100%;
    max-width: none;
    aspect-ratio: auto;
    padding: 18px;
    order: 1;
  }
  .tf3-plat-card {
    position: static;
    width: 100%;
    order: 2;
  }
  .tf3-line { display: none; }
}

.tf3-meito__summary {
  text-align: center;
  font-size: 14px;
  color: var(--navy);
  margin-top: auto;
  padding-top: 14px;
  font-weight: 700;
  border-top: 1px dashed rgba(251,191,36,0.5);
}
.tf3-meito__summary strong { color: var(--orange); font-size: 18px; font-weight: 900; }
.tf3-meito__pros {
  margin-top: 6px;
  font-size: 11px;
  color: var(--green);
  font-weight: 700;
}

/* =========================================================================
   汎用商流図フレーム (案例別レイアウト)
   2026-05-15: 17 案例 - 各自にあったレイアウト 6 種
   ========================================================================= */
.tfx {
  --orange: #E85D20;
  --navy: #1A2744;
  --navy-dark: #0F172A;
  --gold: #FBBF24;
  --blue: #3B82F6;
  --green: #10B981;
  --red: #C0392B;
  --gray-50: #F8FAFC;
  --gray-200: #E2E8F0;
  --gray-500: #64748B;

  background: linear-gradient(180deg, #FAFBFC, #EEF2F6);
  border-radius: 12px;
  padding: 28px 24px 24px;
  margin: 16px 0;
  color: var(--navy);
}
.tfx-title {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tfx-title::before {
  content: "";
  width: 6px; height: 24px;
  background: linear-gradient(180deg, var(--orange), var(--gold));
  border-radius: 3px;
}
.tfx-subtitle {
  font-size: 13px;
  color: var(--gray-500);
  margin: 0 0 24px;
  padding-left: 16px;
}

/* 共通 KPI 4 列 */
.tfx-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}
@media (max-width: 900px) { .tfx-kpis { grid-template-columns: 1fr 1fr; } }
.tfx-kpi {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--orange);
  border-radius: 8px;
  padding: 16px 14px;
  text-align: center;
}
.tfx-kpi.-accent { background: var(--navy); color: #fff; border-color: var(--gold); }
.tfx-kpi__value {
  font-size: 28px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
}
.tfx-kpi.-accent .tfx-kpi__value { color: var(--gold); }
.tfx-kpi__label { font-size: 12px; font-weight: 700; color: var(--navy); }
.tfx-kpi.-accent .tfx-kpi__label { color: #fff; }
@media (max-width: 600px) { .tfx-kpi__value { font-size: 22px; } }

/* ─────────────── A. Linear Journey 線性流程 ─────────────── */
.tfx-journey {
  background: #fff;
  border-radius: 10px;
  padding: 24px 16px;
  position: relative;
}
.tfx-journey__line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  position: relative;
}
@media (max-width: 800px) { .tfx-journey__line { grid-template-columns: 1fr; gap: 16px; } }
.tfx-journey__step {
  background: linear-gradient(180deg, #FFFBF5, #FFF7ED);
  border: 2px solid var(--orange);
  border-radius: 10px;
  padding: 16px 10px 14px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.tfx-journey__step.-start { background: linear-gradient(180deg, var(--navy), var(--navy-dark)); border-color: var(--gold); color: #fff; }
.tfx-journey__step.-end { background: linear-gradient(180deg, var(--orange), #C84A15); border-color: var(--gold); color: #fff; }
.tfx-journey__num {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  width: 26px; height: 26px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tfx-journey__step.-start .tfx-journey__num,
.tfx-journey__step.-end .tfx-journey__num { background: var(--gold); color: var(--navy); }
.tfx-journey__icon { font-size: 30px; line-height: 1; margin: 6px 0 8px; }
.tfx-journey__name { font-size: 14px; font-weight: 800; line-height: 1.3; margin-bottom: 4px; }
.tfx-journey__sub { font-size: 11px; opacity: 0.85; line-height: 1.3; }
.tfx-journey__time {
  display: inline-block;
  background: rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 2px 10px;
  font-size: 10px;
  font-weight: 700;
  margin-top: 8px;
}
.tfx-journey__step.-start .tfx-journey__time,
.tfx-journey__step.-end .tfx-journey__time { background: rgba(251,191,36,0.25); color: var(--gold); }
/* 連結線 (PC のみ) */
@media (min-width: 801px) {
  .tfx-journey__line::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 8%; right: 8%;
    height: 3px;
    background: var(--orange);
    z-index: 1;
    opacity: 0.45;
  }
}

/* ─────────────── B. Convergence Hub 多源汇聚 ─────────────── */
.tfx-conv {
  background: #fff;
  border-radius: 10px;
  padding: 24px 18px;
  display: grid;
  grid-template-columns: minmax(140px, 1fr) 70px minmax(180px, 1.2fr) 70px minmax(160px, 1fr);
  gap: 0 12px;
  align-items: stretch;
}
@media (max-width: 800px) {
  .tfx-conv {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .tfx-conv__arrow { display: none; }
}
.tfx-conv__sources {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}
.tfx-conv__source {
  background: linear-gradient(90deg, #F8FAFC, #fff);
  border: 1.5px solid var(--gray-200);
  border-left: 4px solid var(--navy);
  border-radius: 6px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tfx-conv__source-flag {
  width: 38px; height: 38px;
  background: var(--navy);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tfx-conv__source-name { font-size: 14px; font-weight: 800; color: var(--navy); }
.tfx-conv__source-sub { font-size: 10px; color: var(--gray-500); }
.tfx-conv__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--orange);
  font-weight: 700;
}
.tfx-conv__hub {
  background: linear-gradient(180deg, var(--navy), var(--navy-dark));
  border: 3px solid var(--gold);
  border-radius: 12px;
  padding: 20px 16px;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 20px rgba(232,93,32,0.25);
}
.tfx-conv__hub-icon { font-size: 38px; line-height: 1; margin-bottom: 6px; }
.tfx-conv__hub-num { font-size: 28px; font-weight: 900; color: var(--gold); line-height: 1; letter-spacing: -1px; }
.tfx-conv__hub-unit { font-size: 10px; color: var(--gold); font-weight: 700; letter-spacing: 2px; margin-top: 4px; }
.tfx-conv__hub-name { font-size: 12px; font-weight: 700; margin-top: 8px; color: #fff; }
.tfx-conv__hub-sub { font-size: 10px; color: rgba(255,255,255,0.7); margin-top: 3px; }
.tfx-conv__target {
  background: #FFF7ED;
  border: 2px solid var(--gold);
  border-radius: 10px;
  padding: 18px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tfx-conv__target-icon { font-size: 30px; line-height: 1; margin-bottom: 6px; }
.tfx-conv__target-name { font-size: 14px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.tfx-conv__target-sub { font-size: 11px; color: var(--gray-500); }
.tfx-conv__target-kpi {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 900;
  color: var(--orange);
}

/* ─────────────── C. Parallel Mirror 双轨同步 ─────────────── */
.tfx-mirror {
  background: #fff;
  border-radius: 10px;
  padding: 22px 18px;
  display: grid;
  grid-template-columns: minmax(120px, 0.8fr) 1fr;
  gap: 16px;
  align-items: center;
}
@media (max-width: 800px) {
  .tfx-mirror { grid-template-columns: 1fr; }
}
.tfx-mirror__source {
  background: linear-gradient(180deg, var(--navy), var(--navy-dark));
  border: 2px solid var(--gold);
  border-radius: 10px;
  padding: 18px 14px;
  color: #fff;
  text-align: center;
}
.tfx-mirror__source-icon { font-size: 32px; line-height: 1; margin-bottom: 6px; }
.tfx-mirror__source-name { font-size: 14px; font-weight: 800; }
.tfx-mirror__source-sub { font-size: 10px; color: rgba(251,191,36,0.85); margin-top: 4px; }
.tfx-mirror__paths {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  position: relative;
}
.tfx-mirror__path {
  background: linear-gradient(90deg, #FFFBF5, #fff);
  border: 1.5px solid var(--orange);
  border-radius: 10px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 12px;
  align-items: center;
}
.tfx-mirror__path.-secondary { border-color: var(--gold); }
.tfx-mirror__path-label {
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 6px 8px;
  border-radius: 4px;
  text-align: center;
  letter-spacing: 1px;
}
.tfx-mirror__path.-secondary .tfx-mirror__path-label { background: var(--gold); color: var(--navy); }
.tfx-mirror__path-body { font-size: 13px; color: var(--navy); font-weight: 700; line-height: 1.4; }
.tfx-mirror__path-sub { font-size: 11px; color: var(--gray-500); font-weight: 500; margin-top: 2px; }
.tfx-mirror__path-num { font-size: 22px; font-weight: 900; color: var(--orange); }
.tfx-mirror__path.-secondary .tfx-mirror__path-num { color: var(--gold); }
.tfx-mirror__sync {
  text-align: center;
  margin-top: 6px;
  font-size: 12px;
  color: var(--green);
  font-weight: 700;
}

/* ─────────────── D. Y-Split 双向分流 ─────────────── */
.tfx-ysplit {
  background: #fff;
  border-radius: 10px;
  padding: 24px 18px;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) 80px minmax(140px, 0.9fr);
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 800px) {
  .tfx-ysplit { grid-template-columns: 1fr; gap: 12px; }
  .tfx-ysplit__split { display: none; }
}
.tfx-ysplit__hub {
  background: linear-gradient(180deg, var(--navy), var(--navy-dark));
  border: 3px solid var(--gold);
  border-radius: 12px;
  padding: 20px 14px;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.tfx-ysplit__hub-icon { font-size: 32px; margin-bottom: 6px; }
.tfx-ysplit__hub-name { font-size: 14px; font-weight: 800; }
.tfx-ysplit__hub-sub { font-size: 11px; color: var(--gold); font-weight: 700; margin-top: 4px; }
.tfx-ysplit__hub-data { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 6px; }
.tfx-ysplit__split {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--orange);
}
.tfx-ysplit__branches { display: flex; flex-direction: column; gap: 10px; justify-content: center; }
.tfx-ysplit__branch {
  background: #FFF7ED;
  border: 2px solid var(--gold);
  border-radius: 10px;
  padding: 14px 14px;
  text-align: center;
}
.tfx-ysplit__branch-flag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.tfx-ysplit__branch-name { font-size: 13px; font-weight: 800; color: var(--navy); margin-bottom: 3px; }
.tfx-ysplit__branch-sub { font-size: 10px; color: var(--gray-500); }

/* ─────────────── E. Funnel 漏斗（4 段検品）─────────────── */
.tfx-funnel {
  background: #fff;
  border-radius: 10px;
  padding: 24px 30px;
}
.tfx-funnel__top, .tfx-funnel__bottom {
  text-align: center;
  font-weight: 800;
  padding: 12px 16px;
  border-radius: 8px;
}
.tfx-funnel__top {
  background: linear-gradient(180deg, var(--navy), var(--navy-dark));
  color: #fff;
}
.tfx-funnel__bottom {
  background: linear-gradient(180deg, var(--orange), #C84A15);
  color: #fff;
  margin-top: 8px;
}
.tfx-funnel__amount { font-size: 22px; font-weight: 900; color: var(--gold); line-height: 1; }
.tfx-funnel__label { font-size: 12px; margin-top: 4px; }
.tfx-funnel__steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 10px 0;
}
.tfx-funnel__step {
  display: grid;
  grid-template-columns: 40px 1fr 90px;
  gap: 12px;
  align-items: center;
  background: #FFF7ED;
  border: 1.5px solid var(--orange);
  padding: 10px 16px;
  border-radius: 8px;
}
.tfx-funnel__step.-w1 { width: 92%; }
.tfx-funnel__step.-w2 { width: 84%; }
.tfx-funnel__step.-w3 { width: 76%; }
.tfx-funnel__step.-w4 { width: 68%; }
@media (max-width: 800px) {
  .tfx-funnel__step { width: 100% !important; grid-template-columns: 36px 1fr; }
  .tfx-funnel__step-num { display: none; }
}
.tfx-funnel__step-icon { font-size: 22px; text-align: center; }
.tfx-funnel__step-body { font-size: 13px; font-weight: 700; color: var(--navy); }
.tfx-funnel__step-sub { font-size: 10px; color: var(--gray-500); margin-top: 1px; }
.tfx-funnel__step-num { font-size: 14px; font-weight: 800; color: var(--orange); text-align: right; }

/* ─────────────── F. Surge Bar 波動対比 ─────────────── */
.tfx-surge {
  background: #fff;
  border-radius: 10px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tfx-surge__row {
  display: grid;
  grid-template-columns: 110px 1fr 110px;
  gap: 14px;
  align-items: center;
}
.tfx-surge__label {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
}
.tfx-surge__label-sub { display: block; font-size: 10px; color: var(--gray-500); font-weight: 500; margin-top: 2px; }
.tfx-surge__bar {
  position: relative;
  background: var(--gray-50);
  border-radius: 20px;
  height: 36px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.tfx-surge__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 1px;
}
.tfx-surge__row.-bad .tfx-surge__bar-fill { background: linear-gradient(90deg, var(--red), #F87171); }
.tfx-surge__row.-good .tfx-surge__bar-fill { background: linear-gradient(90deg, var(--green), #34D399); }
.tfx-surge__result {
  text-align: center;
  font-size: 18px;
  font-weight: 900;
}
.tfx-surge__row.-bad .tfx-surge__result { color: var(--red); }
.tfx-surge__row.-good .tfx-surge__result { color: var(--green); }
.tfx-surge__result-sub { display: block; font-size: 10px; color: var(--gray-500); font-weight: 500; margin-top: 2px; }
@media (max-width: 700px) {
  .tfx-surge__row { grid-template-columns: 1fr; gap: 6px; }
  .tfx-surge__bar { width: 100%; }
}

/* ─────────────── G. Shield 多層防護 ─────────────── */
.tfx-shield {
  background: #fff;
  border-radius: 10px;
  padding: 24px 20px;
  display: grid;
  grid-template-columns: minmax(140px, 1fr) repeat(4, 1fr) minmax(140px, 1fr);
  gap: 6px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .tfx-shield {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.tfx-shield__cargo, .tfx-shield__arrival {
  background: linear-gradient(180deg, var(--navy), var(--navy-dark));
  border: 2px solid var(--gold);
  border-radius: 10px;
  padding: 16px 12px;
  color: #fff;
  text-align: center;
}
.tfx-shield__arrival { background: linear-gradient(180deg, var(--green), #047857); }
.tfx-shield__icon { font-size: 30px; line-height: 1; margin-bottom: 4px; }
.tfx-shield__name { font-size: 13px; font-weight: 800; }
.tfx-shield__data { font-size: 11px; color: var(--gold); font-weight: 700; margin-top: 4px; }
.tfx-shield__arrival .tfx-shield__data { color: #fff; }
.tfx-shield__layer {
  background: linear-gradient(180deg, #FFFBF5, #FFF7ED);
  border: 2px solid var(--orange);
  border-radius: 10px;
  padding: 14px 8px;
  text-align: center;
  position: relative;
}
.tfx-shield__layer::before {
  content: "▶";
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 14px;
  z-index: 2;
}
@media (max-width: 900px) { .tfx-shield__layer::before { display: none; } }
.tfx-shield__layer-num {
  background: var(--orange);
  color: #fff;
  width: 22px; height: 22px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px;
}
.tfx-shield__layer-icon { font-size: 22px; line-height: 1; margin-bottom: 4px; }
.tfx-shield__layer-name { font-size: 12px; font-weight: 800; color: var(--navy); line-height: 1.3; }
.tfx-shield__layer-data { font-size: 10px; color: var(--orange); font-weight: 700; margin-top: 3px; }


/* KPI cards (横 4 列) */
.tf3-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 900px) {
  .tf3-kpis { grid-template-columns: 1fr 1fr; }
}
.tf3-kpi {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-top: 4px solid var(--orange);
  border-radius: 8px;
  padding: 16px 14px;
  text-align: center;
}
.tf3-kpi.-accent {
  background: var(--navy);
  color: #fff;
  border-color: var(--gold);
}
.tf3-kpi__value {
  font-size: 30px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
}
.tf3-kpi.-accent .tf3-kpi__value { color: var(--gold); }
.tf3-kpi__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
}
.tf3-kpi.-accent .tf3-kpi__label { color: #fff; }
@media (max-width: 600px) {
  .tf3-kpi__value { font-size: 24px; }
}


/* ============================================
   現場ギャラリー (.solution-gallery)
   Used on: 3pl/customs, 3pl/intl-freight, 3pl/bonded-warehouse,
            3pl/truck, logistics/wh_service
   Layout: responsive masonry-style grid, brand orange accent.
   ============================================ */
.solution-gallery {
  margin: 32px 0 48px;
}
.solution-gallery__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  border-bottom: 2px solid #1A2744;
  padding-bottom: 12px;
}
.solution-gallery__title {
  font-size: 20px;
  font-weight: 700;
  color: #1A2744;
  margin: 0;
  letter-spacing: 0.02em;
}
.solution-gallery__title::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 22px;
  background: #E85D20;
  margin-right: 10px;
  vertical-align: -3px;
  border-radius: 2px;
}
.solution-gallery__caption {
  font-size: 13px;
  color: #5a6578;
  margin: 0;
}
.solution-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.solution-gallery__cell {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #f3f4f6;
  aspect-ratio: 4 / 3;
  box-shadow: 0 2px 8px rgba(26, 39, 68, 0.08);
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1),
              box-shadow 0.35s ease;
}
.solution-gallery__cell:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(26, 39, 68, 0.18);
}
.solution-gallery__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.solution-gallery__cell:hover img {
  transform: scale(1.06);
}
.solution-gallery__cell--wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}
.solution-gallery__cell--tall {
  grid-row: span 2;
  aspect-ratio: 3 / 4;
}
.solution-gallery__caption-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent 0%, rgba(26, 39, 68, 0.85) 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.solution-gallery__cell:hover .solution-gallery__caption-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Fixed-column variants — used when image count is small.
   --2col: two equal images side by side.
   --1col: single hero image, centered, capped width. */
.solution-gallery__grid--2col {
  grid-template-columns: repeat(2, 1fr);
}
.solution-gallery__grid--2col .solution-gallery__cell {
  aspect-ratio: 16 / 10;
}
.solution-gallery__grid--1col {
  grid-template-columns: 1fr;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.solution-gallery__grid--1col .solution-gallery__cell {
  aspect-ratio: 16 / 9;
}

/* Tablet */
@media (max-width: 980px) {
  .solution-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .solution-gallery__cell--wide,
  .solution-gallery__cell--tall {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16 / 9;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .solution-gallery__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .solution-gallery__title { font-size: 17px; }
  .solution-gallery__caption { font-size: 12px; }
  .solution-gallery__grid,
  .solution-gallery__grid--2col,
  .solution-gallery__grid--1col {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .solution-gallery__cell--wide,
  .solution-gallery__cell--tall {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }
  .solution-gallery__grid--2col .solution-gallery__cell,
  .solution-gallery__grid--1col .solution-gallery__cell {
    aspect-ratio: 4 / 3;
  }
  .solution-gallery__caption-overlay {
    /* Always visible on touch — no hover */
    opacity: 1;
    transform: none;
    font-size: 12px;
    padding: 8px 12px;
  }
}


/* ============================================
   .service-card-v2 — 商务可点击服务卡片
   Used on: 3pl/precision_mecha 等服务总览页
   特点: hover 浮起 + 顶部渐变条 + 箭头位移
   ============================================ */
.service-card-v2 {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 32px 28px 24px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.32s cubic-bezier(0.2, 0.7, 0.3, 1),
              box-shadow 0.32s ease,
              border-color 0.32s ease;
}
.service-card-v2:hover {
  border-color: #E85D20;
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(232, 93, 32, 0.14);
  text-decoration: none;
  color: inherit;
}
.service-card-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #E85D20 0%, #ff9c4a 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.service-card-v2:hover::before {
  transform: scaleX(1);
}
.service-card-v2__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.service-card-v2__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #fff5f0 0%, #ffe4d6 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
}
.service-card-v2__heading {
  flex: 1;
  min-width: 0;
}
.service-card-v2__label {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #E85D20;
  font-weight: 700;
  margin: 0 0 4px;
  display: block;
}
.service-card-v2__title {
  font-size: 21px;
  font-weight: 700;
  color: #1A2744;
  margin: 0;
  line-height: 1.35;
  letter-spacing: 0.01em;
}
.service-card-v2__lead {
  font-size: 14px;
  color: #475569;
  line-height: 1.75;
  margin: 0 0 20px;
}
.service-card-v2__list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  flex: 1;
}
.service-card-v2__list li {
  padding: 9px 0 9px 24px;
  position: relative;
  font-size: 14px;
  color: #1A2744;
  line-height: 1.55;
  border-bottom: 1px dashed #eef0f3;
}
.service-card-v2__list li:last-child {
  border-bottom: none;
}
.service-card-v2__list li::before {
  content: '✓';
  position: absolute;
  left: 4px;
  top: 9px;
  color: #E85D20;
  font-weight: 700;
  font-size: 13px;
}
.service-card-v2__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #E85D20;
  font-size: 14px;
  font-weight: 600;
  border-top: 1px solid #f0f0ee;
  padding-top: 16px;
  margin-top: auto;
}
.service-card-v2__cta-arrow {
  display: inline-block;
  transition: transform 0.24s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.service-card-v2:hover .service-card-v2__cta-arrow {
  transform: translateX(5px);
}

@media (max-width: 600px) {
  .service-card-v2 {
    padding: 24px 20px 20px;
  }
  .service-card-v2__icon {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
  .service-card-v2__title {
    font-size: 18px;
  }
}


/* ============================================
   aside 浮动咨询电话框美化
   override .c-box.-bg-orange in aside context (sidebar widget)
   原问题: 容器太窄, 号码 06-6567-9768 被挤压换行
   ============================================ */
.l-content__inner aside .c-box.-bg-orange {
  background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%) !important;
  border: 1px solid #ffd9c0 !important;
  border-radius: 12px !important;
  padding: 22px 20px !important;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(232, 93, 32, 0.08);
}
.l-content__inner aside .c-box.-bg-orange::before {
  content: '☎';
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 38px;
  color: rgba(232, 93, 32, 0.12);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}
/* 解除 .-w-middle 的 max-width: 454px 限制 (aside 内不受限) */
.l-content__inner aside .c-box.-w-middle {
  max-width: none !important;
}
/* 副标题 (保税・通関のご相談 等) */
.l-content__inner aside .c-box.-bg-orange h5 {
  font-size: 14px !important;
  color: #1A2744 !important;
  font-weight: 700;
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #ffd9c0;
  letter-spacing: 0.02em;
  text-align: center;
}
.l-content__inner aside .c-box.-bg-orange p {
  margin: 0;
  text-align: center;
  line-height: 1.4;
}
/* "TEL：" 标签 */
.l-content__inner aside .c-box.-bg-orange p .u-fs-14 {
  display: inline-block;
  font-size: 11px !important;
  color: #888 !important;
  letter-spacing: 0.15em;
  vertical-align: middle;
  margin-right: 2px;
  font-weight: 600;
}
/* 号码 — 防换行 + 自适应字号 + 突出 */
.l-content__inner aside .c-box.-bg-orange p .u-font-mto-red {
  display: inline-block !important;
  font-size: clamp(20px, 2.4vw, 26px) !important;
  font-weight: 800 !important;
  white-space: nowrap;
  letter-spacing: 0.01em;
  color: #E85D20 !important;
  line-height: 1.2;
  vertical-align: middle;
}
.l-content__inner aside .c-box.-bg-orange .tel-link {
  color: #E85D20 !important;
  text-decoration: none;
  white-space: nowrap;
}
.l-content__inner aside .c-box.-bg-orange .tel-link:hover {
  text-decoration: underline;
}

/* 移动端: 让号码可点击拨打且更大 */
@media (max-width: 600px) {
  .l-content__inner aside .c-box.-bg-orange p .u-font-mto-red {
    font-size: 22px !important;
  }
}


/* ============================================
   全站标题换行优化 (.c-mto-heading / .l-pagetitle / .case-hero)
   长标题(>25 字)在窄屏/容器内换行更优雅:
   - 词不断在中间(keep-all)
   - 允许在符号/空格断行 (break-word)
   - 字号自适应 (clamp)
   ============================================ */
.c-mto-heading,
.l-pagetitle__heading,
.case-hero__title,
.case-detail-hero__title {
  word-break: keep-all;
  overflow-wrap: break-word;
  line-height: 1.35;
  hyphens: auto;
}

/* H1 主标题字号自适应 - 防止小屏标题撑破容器 */
.l-pagetitle .c-mto-heading,
.l-pagetitle__heading {
  font-size: clamp(22px, 3.6vw, 36px) !important;
  letter-spacing: 0.01em;
}

/* case 详情页 hero 标题 - 长标题字号自适应 */
.case-hero__title {
  font-size: clamp(26px, 4vw, 40px) !important;
  letter-spacing: 0.005em;
}
.case-detail-hero__title {
  font-size: clamp(22px, 3.4vw, 32px) !important;
}

/* 防止"｜銘東株式会社 導入事例" 等后缀紧贴换行 - 留 spacer */
@media (max-width: 600px) {
  .case-hero__title,
  .case-detail-hero__title,
  .l-pagetitle__heading {
    font-size: clamp(20px, 5vw, 26px) !important;
    padding: 0 8px;
  }
}


/* ============================================
   .platform-card — EC 平台对接卡片 (mall-partners 等)
   ============================================ */
.platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 24px 16px 20px;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.32s cubic-bezier(0.2, 0.7, 0.3, 1),
              box-shadow 0.32s ease,
              border-color 0.32s ease;
}
.platform-card:hover {
  transform: translateY(-3px);
  border-color: #E85D20;
  box-shadow: 0 10px 24px rgba(232, 93, 32, 0.12);
}
.platform-card__icon {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 10px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #fff5f0 0%, #ffe4d6 100%);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.platform-card__name {
  font-size: 15px;
  font-weight: 700;
  color: #1A2744;
  margin: 0 0 4px;
  line-height: 1.3;
}
.platform-card__sub {
  font-size: 12px;
  color: #64748B;
  margin: 0 0 8px;
  line-height: 1.4;
}
.platform-card__badge {
  display: inline-block;
  background: #fff5f0;
  color: #E85D20;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 12px;
  border: 1px solid #ffd9c0;
  margin-top: 4px;
}

/* CTA 升级 - .mall-cta */
.mall-cta {
  background: linear-gradient(135deg, #1A2744 0%, #0F172A 70%, #1A2744 100%);
  color: #fff;
  border-radius: 14px;
  padding: 36px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18);
}
.mall-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(232, 93, 32, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.mall-cta__icon {
  font-size: 38px;
  margin-bottom: 12px;
  display: block;
  line-height: 1;
}
.mall-cta__title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}
.mall-cta__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin: 0 0 22px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.mall-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #E85D20;
  color: #fff !important;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 18px rgba(232, 93, 32, 0.35);
}
.mall-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232, 93, 32, 0.45);
  text-decoration: none;
  color: #fff !important;
}
.mall-cta__btn-arrow {
  transition: transform 0.2s ease;
}
.mall-cta__btn:hover .mall-cta__btn-arrow {
  transform: translateX(4px);
}

@media (max-width: 600px) {
  .platform-card { padding: 18px 12px 16px; }
  .platform-card__icon { width: 48px; height: 48px; font-size: 26px; }
  .platform-card__name { font-size: 14px; }
  .mall-cta { padding: 28px 20px; }
  .mall-cta__title { font-size: 18px; }
}


/* ============================================
   .bonded-types — 保税地域 5 种类型卡片列表
   ============================================ */
.bonded-types {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 18px 0;
}
.bonded-types__item {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  align-items: start;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.bonded-types__item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}
.bonded-types__item--highlight {
  background: linear-gradient(135deg, #fff5f0 0%, #ffffff 70%);
  border-color: #E85D20;
  border-width: 2px;
  box-shadow: 0 6px 20px rgba(232, 93, 32, 0.10);
}
.bonded-types__head {
  display: flex;
  align-items: center;
  gap: 14px;
  grid-column: 1 / -1;
  padding-bottom: 12px;
  border-bottom: 1px dashed #eef0f3;
}
.bonded-types__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: #f1f5f9;
  color: #64748B;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.bonded-types__item--highlight .bonded-types__num {
  background: #E85D20;
  color: #ffffff;
}
.bonded-types__name {
  font-size: 17px;
  font-weight: 700;
  color: #1A2744;
  margin: 0;
  line-height: 1.4;
  flex: 1;
}
.bonded-types__star {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  background: #E85D20;
  color: #fff;
  padding: 3px 10px;
  border-radius: 12px;
  margin-left: 8px;
  letter-spacing: 0.04em;
  vertical-align: middle;
}
.bonded-types__count {
  font-size: 15px;
  font-weight: 700;
  color: #475569;
  padding-top: 4px;
}
.bonded-types__count--accent {
  color: #E85D20;
  font-size: 18px;
}
.bonded-types__count small {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: #94a3b8;
  margin-left: 4px;
}
.bonded-types__desc {
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
  margin: 0;
  padding-top: 4px;
}

@media (max-width: 768px) {
  .bonded-types__item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 18px;
  }
  .bonded-types__name { font-size: 16px; }
  .bonded-types__count--accent { font-size: 16px; }
  .bonded-types__star { display: inline-block; margin-top: 4px; margin-left: 0; }
}


/* ============================================
   .l-pagetitle.-medium — 全站默认页面顶部标题区背景图
   (case-studies / 3pl/* / logistics/* / company / news 等共用)
   有专属修饰类(-recruit/-strengths)的不影响,会被覆盖
   ============================================ */
.l-pagetitle.-medium {
  background-image:
    linear-gradient(135deg, rgba(26, 39, 68, 0.88) 0%, rgba(15, 23, 42, 0.82) 60%, rgba(26, 39, 68, 0.92) 100%),
    url('/shp/image/solutions/wh-service/wh_01.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  position: relative;
}
.l-pagetitle.-medium::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 93, 32, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.l-pagetitle.-medium .l-pagetitle__heading,
.l-pagetitle.-medium .l-pagetitle__inner h1,
.l-pagetitle.-medium .l-pagetitle__inner * {
  color: #ffffff !important;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 1;
}


/* ============================================
   .c-box.-bg-purple 电话框美化 (logistics/center 等紫色主题页)
   与 -bg-orange 同步美化, 但使用紫色调
   ============================================ */
.l-content__inner aside .c-box.-bg-purple {
  background: linear-gradient(135deg, #f3edff 0%, #ffffff 100%) !important;
  border: 1px solid #d4c5f0 !important;
  border-radius: 12px !important;
  padding: 22px 20px !important;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(124, 58, 237, 0.10);
}
.l-content__inner aside .c-box.-bg-purple::before {
  content: '☎';
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 38px;
  color: rgba(124, 58, 237, 0.14);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}
.l-content__inner aside .c-box.-bg-purple h5 {
  font-size: 14px !important;
  color: #1A2744 !important;
  font-weight: 700;
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #d4c5f0;
  letter-spacing: 0.02em;
  text-align: center;
}
.l-content__inner aside .c-box.-bg-purple p {
  margin: 0;
  text-align: center;
  line-height: 1.4;
}
.l-content__inner aside .c-box.-bg-purple p .u-fs-14 {
  display: inline-block;
  font-size: 11px !important;
  color: #888 !important;
  letter-spacing: 0.15em;
  vertical-align: middle;
  margin-right: 2px;
  font-weight: 600;
}
.l-content__inner aside .c-box.-bg-purple p .u-font-mto-red {
  display: inline-block !important;
  font-size: clamp(20px, 2.4vw, 26px) !important;
  font-weight: 800 !important;
  white-space: nowrap;
  letter-spacing: 0.01em;
  color: #7c3aed !important;
  line-height: 1.2;
  vertical-align: middle;
}
.l-content__inner aside .c-box.-bg-purple .tel-link {
  color: #7c3aed !important;
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .l-content__inner aside .c-box.-bg-purple p .u-font-mto-red {
    font-size: 22px !important;
  }
}


/* ============================================
   A2 — 右下浮动菜单 z-index 修复
   原问题: "Real-time Operations Dashboard" 区域 z-index 高于浮动按钮 → 遮挡
   ============================================ */
.l-rightmenu,
.l-rightmenu__inner,
.l-rightmenu__base,
.l-rightmenu__list,
.l-rightmenu__contact,
.l-rightmenu__tracking,
.l-rightmenu__open {
  z-index: 9999 !important;
}
.l-rightmenu {
  position: fixed !important;
  right: 0;
}
/* PC: 右下フローティングメニューを Page Top ボタンの上に持ち上げる */
@media (min-width: 768px) {
  .l-rightmenu { bottom: 80px; }
}
/* SP: 下部固定バーは画面最下部に密着 (bottom:80px だと本文/フッターを覆ってしまう不具合の修正 v20260615a) */
@media (max-width: 767px) {
  .l-rightmenu { bottom: 0 !important; }
}

/* A4 — 隐藏 header 搜索框 (MarsFlag 未接入, 隐藏避免无反应混淆) */
.c-header-search,
.mf_finder_container,
.c-header-search__main,
.c-header-search__submit,
.c-header-search__open,
.l-subnav__search,
.l-header__bottom .c-header-search {
  display: none !important;
}


/* ============================================
   C1 — Sticky 顶部导航 (滚动时固定在顶部)
   重要: 去掉 transition + backdrop-filter, 避免滚动时反复重绘抖动
   ============================================ */
header.l-header,
.l-header.-scroll {
  position: sticky !important;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #ececea;
  /* ⚠️ sticky 元素绝对不要 transform / will-change:
     它们会创建独立合成层, 与下方 banner 合成层在交汇边界 z-fighting 抖动。
     sticky 本身浏览器已优化, 保持简单最稳。
     仅用 backface-visibility 消除亚像素抖动。 */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  /* 不要 transition: 滚动时反复触发动画会抖 */
}

/* ⚠️ CSS 兜底防抖: 去掉 SBS 原 header 的 transition:0.3s all
   原设计 .-scroll toggle 时 logo 换图/padding/max-width 变化 + 0.3s 过渡 = 抖动。
   即使 JS toggle 缓存未更新, 去掉 transition 也不会抖。 */
header.l-header,
.l-header,
.l-header__inner,
.l-header__logo,
.l-header__logo a,
.l-header__logo img {
  transition: none !important;
}

/* sticky 模式下 .l-main 不再需要 margin-top (旧 fixed header 让位的 118px) */
.l-main,
.l-main.-contact {
  margin-top: 0 !important;
}

/* 大背景区: 仅 backface-visibility 防亚像素抖动。
   ⚠️ 不加 translateZ(0): banner/hero 作为独立合成层时, 与 sticky header
   合成层在交汇边界会 z-fighting 抖动。top-hero 尤其不能加 (首页 banner)。 */
.l-pagetitle.-medium,
.case-hero,
.case-detail-hero,
.top-hero {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 关闭 .l-pagetitle.-medium 内 ::before 的大 radial 装饰 — 这是抖动放大器 */
.l-pagetitle.-medium::before {
  display: none !important;
}


/* ============================================
   .sea-feat — case-studies hub 海运小包置顶特色横幅
   ============================================ */
.sea-feat {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #1A2744;
  border-radius: 12px;
  padding: 32px 36px;
  margin: 8px 0 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid #1A2744;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.sea-feat:hover {
  text-decoration: none;
  color: inherit;
  border-color: #E85D20;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2);
}
.sea-feat__badge {
  display: inline-block;
  background: #E85D20;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.sea-feat__title {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.sea-feat__lead {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  margin: 0 0 22px;
  max-width: 760px;
}
.sea-feat__lead strong { color: #ff9c4a; }
.sea-feat__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
}
.sea-feat__metric {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
}
.sea-feat__metric b {
  font-size: 22px;
  color: #ff9c4a;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2px;
  letter-spacing: 0.01em;
}
.sea-feat__arrow {
  position: absolute;
  right: 36px;
  bottom: 32px;
  font-size: 13px;
  font-weight: 600;
  color: #ff9c4a;
  transition: transform 0.2s ease;
}
.sea-feat:hover .sea-feat__arrow {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .sea-feat { padding: 24px 22px; }
  .sea-feat__metrics { gap: 12px 22px; }
  .sea-feat__metric b { font-size: 18px; }
  .sea-feat__arrow { position: static; display: inline-block; margin-top: 16px; }
}

/* C2 — 首页 section 间距 + CTA 强化 */

/* 章节间距 — 主要 section 之间加大留白让视觉呼吸 */
main.l-main > div[style*="background"],
main.l-main > section,
main.l-main > div.top-hero,
main.l-main > .tagline-strip {
  padding-top: 56px;
  padding-bottom: 56px;
}
@media (max-width: 600px) {
  main.l-main > div[style*="background"],
  main.l-main > section {
    padding-top: 36px;
    padding-bottom: 36px;
  }
}

/* P2 — 顶部 Quick-Access Bar (深紺细条, 商务克制) */
.quick-bar {
  background: #1A2744;
  color: #ffffff;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1001;
}
.quick-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.quick-bar__item {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}
.quick-bar__item--phone {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
}
.quick-bar__phone {
  color: #ffffff;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  margin-left: 2px;
}
.quick-bar__item--phone:hover .quick-bar__phone {
  color: #ff9c4a;
}
.quick-bar__item--hours {
  margin-left: auto;
  opacity: 0.55;
  font-size: 11px;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .quick-bar__inner {
    flex-wrap: wrap;
    gap: 4px 18px;
    padding: 6px 16px;
    font-size: 11.5px;
  }
  .quick-bar__item--hours { display: none; }
}

/* CTA 按钮 — 单色主橙 (克制) */
.c-btn.-bg-orange,
a.c-btn.-bg-orange {
  background: #E85D20 !important;
  border: 1px solid #E85D20 !important;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.c-btn.-bg-orange:hover,
a.c-btn.-bg-orange:hover {
  background: #d04e15 !important;
  border-color: #d04e15 !important;
}


/* ============================================
   P3 — 留白 + 字体层级 中度强化
   ============================================ */

/* H1/主标题: 字号 + letter-spacing 加大 */
.c-mto-heading,
.l-pagetitle__heading,
.tagline-strip__main {
  letter-spacing: 0.025em !important;
  font-weight: 700 !important;
}
.tagline-strip__main {
  font-size: clamp(20px, 2.6vw, 32px) !important;
  line-height: 1.45 !important;
}

/* H2 大标题: 加深色边底 + 字号微增 + 字间距 */
.c-heading.-large {
  letter-spacing: 0.02em;
  line-height: 1.45;
  font-weight: 700;
}
.c-heading.-large.-border-2color {
  position: relative;
  padding-left: 16px;
}
.c-heading.-large.-border-2color::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 65%;
  background: #E85D20;
}

/* H3 小标题 */
.c-heading.-small {
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1.5;
}

/* 正文段落 — 行高 + 字间距 */
.u-lh-l,
p.u-lh-l {
  line-height: 1.85 !important;
  letter-spacing: 0.015em;
}

/* .c-box 内边距加大 (留白强化) */
.c-box.-border.-pd-m { padding: 28px 26px !important; }
.c-box.-border.-pd-s { padding: 20px 18px !important; }

/* l-grid gap 加大 — 给卡片间留更多呼吸 */
.l-grid.-gap-l > .l-grid__item {
  margin-bottom: 4px;
}

/* 段落 + 章节间留白 */
.u-mb-xxxxl { margin-bottom: 80px !important; }
.u-mb-xxxl { margin-bottom: 56px !important; }
.u-mb-xxl { margin-bottom: 40px !important; }

@media (max-width: 600px) {
  .u-mb-xxxxl { margin-bottom: 48px !important; }
  .u-mb-xxxl { margin-bottom: 36px !important; }
  .u-mb-xxl { margin-bottom: 28px !important; }
  .c-box.-border.-pd-m { padding: 20px 18px !important; }
}


/* ============================================
   P4 — 主要事業 (.biz-tiles)
   物流科技感: 深色底 + 网格点阵 + 线条图标 + 扫描线 (克制)
   ============================================ */
.biz-tiles {
  position: relative;
  background: #0d1726;
  padding: 80px 20px;
  overflow: hidden;
}
/* 网格点阵 + 微光背景 */
.biz-tiles__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 18% 12%, rgba(232, 93, 32, 0.12) 0%, transparent 38%),
    radial-gradient(circle at 85% 80%, rgba(56, 130, 246, 0.10) 0%, transparent 42%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 44px 44px, 44px 44px;
}
.biz-tiles__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}
.biz-tiles__eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: #ff9c4a;
  text-align: center;
  margin: 0 0 10px;
  font-weight: 600;
  font-family: "Helvetica Neue", Arial, sans-serif;
}
.biz-tiles__heading {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin: 0 0 48px;
  letter-spacing: 0.08em;
}
.biz-tiles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.biz-tile {
  display: block;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px 30px 26px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.biz-tile:hover {
  text-decoration: none;
  color: inherit;
  background: rgba(232, 93, 32, 0.06);
  border-color: rgba(232, 93, 32, 0.65);
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(232, 93, 32, 0.25);
}
/* 顶部扫描线 (hover 时滑过) */
.biz-tile__scan {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff9c4a, transparent);
  transition: left 0.6s ease;
}
.biz-tile:hover .biz-tile__scan { left: 100%; }
.biz-tile__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.biz-tile__icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: rgba(232, 93, 32, 0.12);
  border: 1px solid rgba(232, 93, 32, 0.3);
  color: #ff9c4a;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.biz-tile__icon svg { width: 24px; height: 24px; }
.biz-tile:hover .biz-tile__icon {
  background: rgba(232, 93, 32, 0.22);
  box-shadow: 0 0 16px rgba(232, 93, 32, 0.35);
}
.biz-tile__num {
  font-size: 26px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.18);
  font-family: "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.02em;
  line-height: 1;
  transition: color 0.3s ease;
}
.biz-tile:hover .biz-tile__num { color: rgba(255, 156, 74, 0.5); }
.biz-tile__name {
  font-size: 21px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
  letter-spacing: 0.02em;
  line-height: 1.45;
  transition: color 0.25s ease;
}
.biz-tile:hover .biz-tile__name { color: #ff9c4a; }
.biz-tile__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 22px;
  line-height: 1.75;
  letter-spacing: 0.01em;
  min-height: 48px;
}
.biz-tile__arrow {
  display: inline-block;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.35);
  transition: transform 0.25s ease, color 0.25s ease;
  font-family: "Helvetica Neue", Arial, sans-serif;
}
.biz-tile:hover .biz-tile__arrow {
  transform: translateX(6px);
  color: #ff9c4a;
}

@media (max-width: 980px) {
  .biz-tiles__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .biz-tiles { padding: 56px 16px; }
  .biz-tiles__grid { grid-template-columns: 1fr; gap: 12px; }
  .biz-tile { padding: 24px 22px; }
  .biz-tile__name { font-size: 19px; }
  .biz-tile__desc { min-height: 0; }
  .biz-tile__icon { width: 44px; height: 44px; }
}


/* ============================================
   P6 — 移动端基础修复
   ============================================ */

/* 容器宽度 — 1256px 在窄屏强制全宽 */
@media (max-width: 1280px) {
  [style*="max-width:1256px"],
  [style*="max-width: 1256px"] {
    max-width: 100% !important;
  }
}

/* 移动端 PC-only 区强制隐藏 */
@media (max-width: 600px) {
  /* 让所有 inline width:1200/1256px 自适应 */
  [style*="max-width:1200px"],
  [style*="max-width: 1200px"] {
    max-width: 100% !important;
    height: auto !important;
  }
  /* 防止图片溢出 */
  img { max-width: 100% !important; height: auto !important; }
  /* table 横向滚动 */
  table { display: block; overflow-x: auto; }
  /* l-grid 在 sp 时强制单列(覆盖各 inline) */
  .l-grid > .l-grid__item.-sp-col12 { flex-basis: 100% !important; max-width: 100% !important; }
}




/* ============================================
   批次2 — 全站统一 (标题换行 / 字体 / 首图)
   ============================================ */

/* B2-1 全站标题换行强化 (含正文 .c-heading 系列 + 编号标题) */
.c-heading,
.c-heading.-large,
.c-heading.-small,
.c-heading.-xsmall,
.service-card-v2__title,
.biz-tile__name,
.sea-feat__title,
.bonded-types__name,
.platform-card__name,
.solution-gallery__title {
  overflow-wrap: break-word;
  word-break: normal;
  line-height: 1.55;
}
/* 日语: 长标题按字自然换行 + 禁則処理(strict), 避免窄框(-col6)内长串溢出.
   (keep-all 会禁止日文字符间断行, 导致 "① 関税・消費税の納付タイミング調整" 这类长标题溢出) */
html[lang^="ja"] .c-heading,
html[lang^="ja"] .c-heading.-large,
html[lang^="ja"] .c-heading.-small,
html[lang^="ja"] .c-heading.-xsmall,
html[lang^="ja"] .service-card-v2__title,
html[lang^="ja"] .biz-tile__name,
html[lang^="ja"] .sea-feat__title,
html[lang^="ja"] .bonded-types__name,
html[lang^="ja"] .platform-card__name,
html[lang^="ja"] .solution-gallery__title {
  word-break: normal;
  overflow-wrap: break-word;  /* anywhere→break-word: 防止 JPGOODBUY 等可放下的英文词被拦腰断成孤字 */
  line-break: strict;
}
/* 带编号长标题 (① xxx): 编号不单独悬挂, 与首字一起换行 */
.c-heading.-large.-border-2color,
.c-heading.-small.u-mt-l {
  text-indent: 0;
  hanging-punctuation: first;
}

/* B2-2 字体统一 — 清理零散 SF Pro, 继承全站商务栈 */
/* 仅容器级: 文字继承 canonical 商务栈; KPI 等宽数字由 m5-layout.css INTERIOR 块显式重申 Roboto Mono */
.live-ops-overlay,
.dashboard-mock {
  font-family: inherit;
}
/* 数字密集区用等宽数字特性, 保持清晰对齐 */
.live-ops-overlay__value,
.biz-tile__num,
.sea-feat__metric b,
.case-hero__kpi-num {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

/* B2-3 首图统一 — 各页正文第一张图统一尺寸 (放标题下一行, 16:6 比例) */
.l-content__main > section:first-child > .u-mb-l > img,
.l-content__main > section:first-child > img,
.l-content__inner > .l-content__main > section:first-child .u-mb-l img {
  width: 100% !important;
  max-width: 1080px !important;
  height: auto !important;
  max-height: 380px !important;
  object-fit: cover !important;
  border-radius: 8px !important;
  display: block !important;
  margin: 0 auto 4px !important;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.08) !important;
}
@media (max-width: 600px) {
  .l-content__main > section:first-child > .u-mb-l > img,
  .l-content__main > section:first-child > img {
    max-height: 200px !important;
  }
}

/* B2-4 location 拠点一覧 间距压缩 (减少滚屏) */
.c-card-horizontal.u-mb-xl {
  margin-bottom: 18px !important;
}
.c-card-horizontal .c-table.-border th,
.c-card-horizontal .c-table.-border td {
  padding-top: 7px !important;
  padding-bottom: 7px !important;
}
.c-card-horizontal > div[style*="padding: 24px"] {
  padding: 18px 22px !important;
}

/* ===================================================================== */
/* bonded-warehouse 国際物流フロー stepper (B3 重建, 去emoji/响应式, v20260605e) */
/* ===================================================================== */
.bonded-flow { display:flex; flex-wrap:wrap; gap:8px; }
.bonded-flow__step {
  position:relative; flex:1 1 calc(25% - 6px); min-width:140px;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; background:#2d4070; color:#fff; border-radius:6px;
  padding:14px 10px 12px; min-height:86px;
}
.bonded-flow__step.-start, .bonded-flow__step.-end { background:#1A2744; }
.bonded-flow__step.-hl { background:#E85D20; box-shadow:0 0 0 3px rgba(232,93,32,.22); }
.bonded-flow__no {
  width:22px; height:22px; border-radius:50%; background:rgba(255,255,255,.18);
  display:flex; align-items:center; justify-content:center;
  font-size:.72rem; font-weight:700; margin-bottom:6px;
}
.bonded-flow__ja { font-weight:700; font-size:.86rem; line-height:1.4; word-break:normal; line-break:strict; }
.bonded-flow__en { font-size:.66rem; opacity:.72; margin-top:3px; letter-spacing:.2px; }
.bonded-flow__tag {
  position:absolute; top:-9px; left:50%; transform:translateX(-50%);
  background:#fff; color:#E85D20; border:1px solid #E85D20; border-radius:10px;
  font-size:.64rem; font-weight:700; padding:1px 8px; white-space:nowrap;
}
@media (max-width:768px){ .bonded-flow__step { flex:1 1 calc(50% - 4px); } }
@media (max-width:430px){ .bonded-flow__step { flex:1 1 100%; } }

/* ===================================================================== */
/* solution 協力事例 等 c-box 内嵌套 l-grid: 防 CSS Grid 1fr 轨道(min-width:auto) */
/* 被长片假名/英数词撑破, 导致描述文字溢出卡片右边框 (v20260608)              */
/* ===================================================================== */
.c-box .l-grid > .l-grid__item { min-width: 0; }
.c-box .l-grid > .l-grid__item p { overflow-wrap: anywhere; }

/* ROOT FIX (v20260608b): 嵌套 .l-grid 是12列(repeat(12,1fr)); -gap-m 列间距40px×11间隙=440px
   超过窄卡片(~424px)内容宽 → 描述文字被挤出右边框. 收小 c-box 内嵌套 grid 的列间距. */
.c-box .l-grid.-gap-m { column-gap: 16px; }
.c-box .l-grid.-gap-l { column-gap: 16px; }
.c-box .l-grid.-gap-img { column-gap: 16px; }

/* ===================================================================== */
/* 防止标题末行"孤字"(如「予/約）」单字成行): text-wrap:balance 自动均衡各行 */
/* + line-break:strict 禁则处理(避免 ）。、 等出现在行首/）在行尾). (v20260609) */
/* ===================================================================== */
.c-heading, .c-heading.-large, .c-heading.-medium, .c-heading.-small, .c-heading.-xsmall,
.biz-tile__name, .biz-tile__desc,
.service-card__title, .service-card__desc,
.sea-feat__title, .bonded-types__name, .platform-card__name,
.solution-gallery__title, .case-card__title, .case-card__tag,
.bonded-flow__ja, .news-list__title, .l-pagetitle, .top-hero__heading,
.c-card__title, .c-figure__title {
  text-wrap: balance;
  line-break: strict;
  overflow-wrap: break-word;
}
/* 长描述段落用 pretty(末行不过短)更合适, 不强行等宽 */
.biz-tile__desc, .service-card__desc {
  text-wrap: pretty;
}

/* ===================================================================== */
/* 防止"词比卡片宽被拆开"(プラットフォーム/ソリューション等长片假名词): 卡片内标题   */
/* 用容器查询(cqi)随卡宽自适应缩小, 窄卡里字号变小让整词放得下. (v20260609e)        */
/* ===================================================================== */
.c-box { container-type: inline-size; }
.c-box .c-heading.-small  { font-size: clamp(14px, 7.5cqi, 22px); }
.c-box .c-heading.-xsmall { font-size: clamp(13px, 6.5cqi, 18px); }

/* 共享 CTA 橙框标题「…サービス…」在窄宽度拆词: 作用域内容器查询缩放 (v20260609f) */
.c-box.-bg-orange .c-heading { font-size: clamp(15px, 3.6cqi, 18px); }

/* ===================================================================== */
/* 首页优化 O1/O2/O6/O7 (品牌愿景/资质strip/お悩み导航/ミッション) v20260610a */
/* ===================================================================== */
.tagline-strip__vision { color:#fff; font-size:clamp(22px,3.4vw,34px); font-weight:800; letter-spacing:1px; margin:0 0 10px; line-height:1.4; }
.tagline-strip__main { font-size:clamp(13px,1.6vw,17px) !important; opacity:.85; font-weight:500 !important; }
.trust-strip { background:#fff; border-top:1px solid #ececea; border-bottom:1px solid #ececea; padding:15px 20px; }
.trust-strip__inner { max-width:1080px; margin:0 auto; display:flex; flex-wrap:wrap; gap:7px 26px; justify-content:center; align-items:center; font-size:13.5px; color:#1A2744; }
.trust-strip__label { color:#E85D20; font-weight:700; }
.trust-strip__muted { color:#8a8f98; }
.sec-eyebrow { text-align:center; color:#E85D20; font-weight:700; letter-spacing:3px; font-size:12.5px; margin:0 0 8px; }
.need-sec { background:#fff; padding:60px 20px 18px; }
.need-sec__inner { max-width:1080px; margin:0 auto; }
.needcard { display:block; text-decoration:none; color:inherit; text-align:center; transition:border-color .15s, transform .15s; }
.needcard:hover { border-color:#E85D20 !important; transform:translateY(-2px); }
.needcard__no { font-size:13px; color:#E85D20; font-weight:700; margin-bottom:6px; }
.mission-sec { background:#0d1726; padding:62px 20px; color:#fff; text-align:center; }
.mission-sec__inner { max-width:880px; margin:0 auto; }
.mission-sec__lead { font-size:clamp(20px,3vw,28px); font-weight:700; line-height:1.6; margin:0 0 16px; }
.mission-sec__sub { color:rgba(255,255,255,.72); line-height:1.9; font-size:14px; margin:0; }
.mission-sec__kpis { display:flex; flex-wrap:wrap; justify-content:center; gap:28px 52px; margin-top:34px; }
.mkpi { display:flex; flex-direction:column; align-items:center; }
.mkpi__num { font-size:32px; font-weight:800; color:#E85D20; line-height:1; }
.mkpi__lbl { font-size:12.5px; color:rgba(255,255,255,.72); margin-top:6px; }
@media (max-width:768px){ .mission-sec__kpis{ gap:20px 30px; } .mkpi__num{ font-size:26px; } }

/* mission KPI: 単位を数字に密着(13年/22,000㎡), sub文の孤行防止 (v20260610b) */
.mkpi__num { white-space: nowrap; }
.mkpi__unit { font-size: 17px; font-weight: 700; margin-left: 2px; }
.mission-sec__sub { text-wrap: balance; }

/* 全站段落孤行防止: 末行不再出现「す。」等超短行 (v20260610c) */
.l-content__main p, .l-content__main li, .l-content__main dd,
.biz-tile__desc, .needcard p, .mission-sec__sub, .c-box p { text-wrap: pretty; }
/* 数字+单位计数器不拆行 */
.live-ops-overlay__num, .live-ops-overlay__unit, .count-up, .mkpi__num { white-space: nowrap; }

/* mission sub は balance を最終優先(2行を均等に, 「ます。」孤行を解消) (v20260610d) */
.mission-sec__sub { text-wrap: balance !important; word-break: auto-phrase; }

/* -col2 右侧aside列宽修复: 原版CSS迁移时丢失aside宽度规则, 被flex压到min-content(130px),
   导致联系方式电话号码被截断 (v20260611a). main=calc(100%-315px) ⇒ aside 280+35=315 */
@media (min-width: 1256px) {
  .l-content__inner.-col2 > aside { width: 280px; flex: 0 0 280px; margin-left: 35px; }
}

/* ============================================
   モバイル: 下部固定バー(l-rightmenu)が本文末尾を隠す問題の修正 (v20260615a)
   audit P2: 底部固定三按钮が運営カード/会社画像/事例カードを覆う
   → 本文下に固定バー高さ分の余白を確保し、末尾コンテンツがバーに隠れないようにする
   ============================================ */
@media (max-width: 767px) {
  body { padding-bottom: 78px; }
  /* 固定バーと重なりやすい要素には追加の下マージン */
  .l-footer { margin-bottom: 0; }
  .live-ops-overlay { margin-bottom: 12px; }
}

/* ============================================
   拠点・アクセス ページのタイトルバナー: 万年筆/オフィス画像 → 実物の物流センター写真へ (v20260615a)
   audit P2: 位置页主视觉钢笔/办公图与主题弱相关 → 真实仓库写真
   (company 系ページは従来の company バナーを維持)
   ============================================ */
.l-pagetitle.-location {
  background-image: linear-gradient(rgba(26,39,68,.50), rgba(26,39,68,.42)), url(/shp/image/location/location_banner-pc.jpg) !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
}
@media (max-width: 767px) {
  .l-pagetitle.-location {
    background-image: linear-gradient(rgba(26,39,68,.50), rgba(26,39,68,.42)), url(/shp/image/location/location_banner-sp.jpg) !important;
  }
}
