/* =========================================================================
   ミツハシEC 商品詳細ページ – サイズ直後 情報カード（送料・返品・配送）
   - クラス・カスタムプロパティはすべて `mh-` プレフィックス（衝突回避）
   - PC/SPメディアクエリで両対応
   ========================================================================= */

.mh-info-card {
  /* デザイントークン（このスコープ内に閉じ込めて他CSSへ影響させない） */
  --mh-info-bg: #eef3fa;
  --mh-info-border: #d6e0ee;
  --mh-info-text: #1a2b48;
  --mh-info-icon: #2b4d8c;
  --mh-info-strong: #CA231E;
  --mh-info-radius: 8px;
  --mh-info-gap: 10px;
  --mh-info-pad-y: 14px;
  --mh-info-pad-x: 16px;

  box-sizing: border-box;
  margin: 24px 0 !important;
  padding: var(--mh-info-pad-y) var(--mh-info-pad-x);
  background: var(--mh-info-bg);
  border: 1px solid var(--mh-info-border);
  border-radius: var(--mh-info-radius);
  color: var(--mh-info-text);
  font-size: 14px;
  line-height: 1.55;
}

.mh-info-card *,
.mh-info-card *::before,
.mh-info-card *::after {
  box-sizing: border-box;
}

.mh-info-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mh-info-card__item {
  display: flex;
  align-items: flex-start;
  gap: var(--mh-info-gap);
  padding: 4px 0;
}

.mh-info-card__item + .mh-info-card__item {
  border-top: 1px dashed var(--mh-info-border);
  margin-top: 6px;
  padding-top: 10px;
}

.mh-info-card__icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--mh-info-icon);
  margin-top: 2px;
}

.mh-info-card__text {
  flex: 1 1 auto;
  word-break: break-word;
}

.mh-info-card__text strong {
  font-weight: 700;
  color: var(--mh-info-strong);
}

/* ====== SP（スマートフォン）対応 ====== */
@media screen and (max-width: 768px) {
  .mh-info-card {
    --mh-info-pad-y: 12px;
    --mh-info-pad-x: 12px;
    font-size: 13px;
    margin: 12px 0;
  }

  .mh-info-card__icon {
    width: 18px;
    height: 18px;
  }
}

/* ====== 余白がきつい小型端末向け微調整 ====== */
@media screen and (max-width: 360px) {
  .mh-info-card {
    font-size: 12.5px;
  }
}
