/* ============================================================
 * freight.css — 一般貨物利用運送業ページ専用スタイル
 * 影響範囲: .freight-* クラスのみ。他ページへの副作用なし。
 * ============================================================ */

/* ----------------------------------------------------------
 * (1) サービスの特長カード (2x2 グリッド)
 * ---------------------------------------------------------- */
.freight-features {
  margin-top: 48px;
}

.freight-features__heading {
  font-size: 26px;
  font-weight: 700;
  color: var(--theme-color-dark);
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--gold-mid);
}

.freight-feature-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  padding: 28px 24px 24px;
  height: 100%;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.freight-feature-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
  transform: translateY(-3px);
}

.freight-feature-card__icon {
  width: 52px;
  height: 52px;
  background: var(--gold-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.freight-feature-card__icon i {
  color: #fff;
  font-size: 22px;
}

.freight-feature-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--theme-color-dark);
  margin-bottom: 10px;
}

.freight-feature-card__body {
  font-size: 14px;
  line-height: 1.75;
  color: #555;
  margin: 0;
}

/* ----------------------------------------------------------
 * (2) 配送サービスの流れ — 6ステップフロー
 * ---------------------------------------------------------- */
.freight-flow {
  margin-top: 56px;
}

.freight-flow__heading {
  font-size: 26px;
  font-weight: 700;
  color: var(--theme-color-dark);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--gold-mid);
}

.freight-flow__lead {
  font-size: 15px;
  color: #555;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* フロー全体を縦に積む */
.freight-flow__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* 各ステップ行: [帯ボックス] + コネクタ */
.freight-flow__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 帯ボックス本体 */
.freight-flow__box {
  display: flex;
  align-items: flex-start;
  width: 100%;
  background: linear-gradient(135deg, var(--gold-mid) 0%, var(--gold-dark) 100%);
  border-radius: 6px;
  padding: 20px 24px;
  color: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  gap: 20px;
}

/* 大きな白抜き番号 */
.freight-flow__num {
  font-size: 56px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  color: rgba(255, 255, 255, 0.30);
  /* テキストに白のストローク風シャドウでメリハリを出す */
  text-shadow:
    0 0 0 rgba(255,255,255,0),
    1px 1px 0 rgba(255,255,255,0.60),
    -1px -1px 0 rgba(255,255,255,0.60);
  min-width: 60px;
  text-align: center;
  user-select: none;
  flex-shrink: 0;
  align-self: center;
}

/* 右側テキストブロック */
.freight-flow__text {
  flex: 1;
  min-width: 0;
}

.freight-flow__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.freight-flow__desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

/* ステップ間の下向き矢印コネクタ */
.freight-flow__connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 0;
  line-height: 1;
}

.freight-flow__connector::before {
  content: "";
  display: block;
  width: 2px;
  height: 14px;
  background: var(--gold-mid);
}

.freight-flow__connector::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid var(--gold-mid);
}

/* 最後のステップ後にコネクタは不要 */
.freight-flow__item:last-child .freight-flow__connector {
  display: none;
}

/* ----------------------------------------------------------
 * (3) 配送料金について
 * ---------------------------------------------------------- */
.freight-pricing {
  margin-top: 56px;
}

.freight-pricing__heading {
  font-size: 26px;
  font-weight: 700;
  color: var(--theme-color-dark);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--gold-mid);
}

.freight-pricing__body {
  background: #fafafa;
  border-left: 4px solid var(--gold-mid);
  border-radius: 0 6px 6px 0;
  padding: 20px 24px;
  font-size: 15px;
  line-height: 1.85;
  color: #444;
  margin-bottom: 28px;
}

/* CTA ブロック (freight 専用) */
.freight-cta {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 36px 32px;
  text-align: center;
  margin-top: 12px;
}

.freight-cta__heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--theme-color-dark);
  margin-bottom: 10px;
}

.freight-cta__sub {
  font-size: 14px;
  color: #666;
  margin-bottom: 22px;
}

/* ----------------------------------------------------------
 * レスポンシブ調整 (モバイル: max-width 767px)
 * ---------------------------------------------------------- */
@media (max-width: 767px) {
  .freight-features__heading,
  .freight-flow__heading,
  .freight-pricing__heading {
    font-size: 22px;
  }

  .freight-feature-card {
    padding: 22px 18px 18px;
    margin-bottom: 16px;
  }

  .freight-flow__box {
    padding: 16px 18px;
    gap: 14px;
  }

  .freight-flow__num,
  .freight-flow__num::after {
    font-size: 38px;
    min-width: 40px;
  }

  .freight-flow__title {
    font-size: 15px;
  }

  .freight-cta {
    padding: 28px 20px;
  }
}
