/* ============================================================
   いいにんにくSHOP &#8212; トップページ v2 (2026-06-12)
   スコープ: .l-main.top 配下の tc2- 接頭辞クラス
   ブレークポイント: 768px (min-width) &#8212; 共通テンプレートに合わせる
   ============================================================ */

/* ===== カラーパレット（トップ専用スコープ） ===== */
.l-main.top {
  --tc2-cream:     #FBF5EC;
  --tc2-cream2:    #F5EAD9;
  --tc2-page:      #FFFFFF;
  --tc2-ink:       #2E2620;
  --tc2-ink-soft:  #6E6053;
  --tc2-ink-mute:  #9B8D7E;
  --tc2-line:      #ECE1D1;
  --tc2-line2:     #E2D4BF;
  --tc2-brand:     #F18A3C;
  --tc2-brand-ink: #BF560E;
  --tc2-cta:       #E2670F;
  --tc2-cta-press: #C4580C;
  --tc2-sale:      #DC3A2A;
  --tc2-marigold:  #F6A623;
  --tc2-tint:      #FDEFE0;
  --tc2-tint2:     #FBE0C8;
  --tc2-shadow-sm: 0 1px 2px rgba(70,50,30,.06), 0 2px 8px rgba(70,50,30,.05);
  --tc2-shadow-md: 0 2px 6px rgba(70,50,30,.08), 0 10px 28px rgba(70,50,30,.07);
  --tc2-serif: "Noto Serif JP", serif;
  --tc2-sans:  "Noto Sans JP", system-ui, sans-serif;
  font-family: var(--tc2-sans);
  color: var(--tc2-ink);
}

/* ===== リセット（スコープ内） ===== */
.l-main.top * { box-sizing: border-box; }
.l-main.top a { text-decoration: none; color: inherit; }
.l-main.top img { max-width: 100%; height: auto; display: block; }

/* ===== セクション共通 ===== */
.tc2-sec {
  padding: 32px 16px;
}
.tc2-sec--cream  { background: var(--tc2-cream); }
.tc2-sec--white  { background: var(--tc2-page); }
.tc2-sec--tinted { background: var(--tc2-tint); }

.tc2-sec-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
}
.tc2-sec-head__en {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  color: var(--tc2-brand);
  text-transform: uppercase;
}
.tc2-sec-head__title {
  font-size: 20px;
  font-weight: 900;
  color: var(--tc2-ink);
  margin-top: 6px;
  line-height: 1.4;
}
.tc2-sec-head__title--serif {
  font-family: var(--tc2-serif);
  font-weight: 700;
}
.tc2-sec-head__rule {
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background: var(--tc2-brand);
  margin-top: 10px;
}
.tc2-sec-head__lead {
  font-size: 13px;
  color: var(--tc2-ink-soft);
  line-height: 1.85;
  margin-top: 10px;
  max-width: 520px;
}

@media screen and (min-width: 768px) {
  .tc2-sec { padding: 52px 24px; }
  .tc2-sec-head__title { font-size: 26px; }
}

/* ===== 送料バー ===== */
.tc2-shipbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px 16px;
  background: var(--tc2-brand);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}
.tc2-shipbar b { font-weight: 900; }
.tc2-shipbar__sep { opacity: .5; }

/* ===== ヒーロー ===== */
.tc2-hero { background: var(--tc2-page); }

.tc2-hero__photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--tc2-cream2);
}
.tc2-hero__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tc2-hero__tags {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  z-index: 2;
}
.tc2-hero__tags span {
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  background: rgba(46,38,32,.72);
  padding: 4px 10px;
  border-radius: 999px;
  backdrop-filter: blur(2px);
}
.tc2-hero__copy {
  padding: 22px 18px 28px;
}
.tc2-hero__eyebrow {
  font-size: 12px;
  font-weight: 800;
  color: var(--tc2-brand-ink);
  letter-spacing: .04em;
}
.tc2-hero__h1 {
  font-family: var(--tc2-serif);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.6;
  color: var(--tc2-ink);
  margin-top: 10px;
  letter-spacing: .02em;
}
.tc2-hero__h1 em {
  font-style: normal;
  color: var(--tc2-brand-ink);
}
.tc2-hero__desc {
  font-size: 13px;
  line-height: 1.9;
  color: var(--tc2-ink-soft);
  margin-top: 14px;
}
.tc2-hero__cta {
  margin-top: 20px;
}

/* ボタン */
.tc2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--tc2-sans);
  font-weight: 800;
  border: none;
  cursor: pointer;
  border-radius: 12px;
  transition: transform .08s, background .15s;
  text-decoration: none;
}
.tc2-btn:active { transform: translateY(1px); }
.tc2-btn--cta {
  background: var(--tc2-cta);
  color: #fff;
  font-size: 15px;
  padding: 14px 22px;
  box-shadow: 0 6px 16px rgba(226,103,15,.3);
  width: 100%;
}
.tc2-btn--cta:hover { background: var(--tc2-cta-press); color: #fff; opacity: 1; }

/* PC ヒーロー: 2カラム */
@media screen and (min-width: 768px) {
  .tc2-hero__inner {
    display: flex;
    align-items: center;
    max-width: 1120px;
    margin: 0 auto;
  }
  .tc2-hero__photo-wrap {
    flex: 0 0 55%;
    aspect-ratio: 16 / 10;
  }
  .tc2-hero__copy {
    flex: 1;
    padding: 40px 48px;
  }
  .tc2-hero__h1 { font-size: 30px; }
  .tc2-btn--cta { width: auto; padding: 16px 32px; }
}

/* ===== 業務用バナー ===== */
.tc2-bnr-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tc2-bnr {
  position: relative;
  display: flex;
  background: var(--tc2-page);
  border: 1px solid var(--tc2-line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--tc2-shadow-sm);
  transition: box-shadow .2s;
}
.tc2-bnr:hover { box-shadow: var(--tc2-shadow-md); opacity: 1; }
.tc2-bnr::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--tc2-brand);
}
.tc2-bnr__img {
  width: 118px;
  flex: 0 0 118px;
  align-self: stretch;
  overflow: hidden;
  background: var(--tc2-cream2);
}
.tc2-bnr__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tc2-bnr__body {
  flex: 1;
  padding: 14px 16px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}
.tc2-bnr__tag {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 900;
  color: #fff;
  background: var(--tc2-brand);
  padding: 3px 9px;
  border-radius: 6px;
  letter-spacing: .06em;
}
.tc2-bnr__title {
  font-size: 16px;
  font-weight: 900;
  color: var(--tc2-ink);
  line-height: 1.3;
}
.tc2-bnr__desc {
  font-size: 12px;
  color: var(--tc2-ink-soft);
  line-height: 1.6;
}
.tc2-bnr__go {
  position: absolute;
  right: 13px;
  bottom: 12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--tc2-tint);
  color: var(--tc2-brand-ink);
  font-weight: 900;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* バナー PC: 3列 */
@media screen and (min-width: 768px) {
  .tc2-bnr-wrap {
    flex-direction: row;
    gap: 18px;
    max-width: 1120px;
    margin: 0 auto;
  }
  .tc2-bnr {
    flex: 1;
    flex-direction: column;
  }
  .tc2-bnr::before {
    width: 100%;
    height: 4px;
    bottom: auto;
  }
  .tc2-bnr__img {
    width: 100%;
    flex: none;
    height: 160px;
  }
  .tc2-bnr__body { padding: 16px; }
  .tc2-bnr__go {
    position: static;
    align-self: flex-end;
    margin-top: auto;
  }
}

/* ===== その他バナー（B2C）===== */
.tc2-other-bnr-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.tc2-other-bnr-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--tc2-ink-mute);
  letter-spacing: .06em;
  text-align: center;
  margin-bottom: 4px;
}
.tc2-other-bnr {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--tc2-line);
}
.tc2-other-bnr img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .tc2-other-bnr-wrap {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1120px;
    margin: 20px auto 0;
  }
  .tc2-other-bnr {
    flex: 0 0 calc(33.333% - 8px);
  }
}

/* ===== 低臭加工USPバンド ===== */
.tc2-usp__lead {
  font-size: 13px;
  line-height: 1.95;
  color: var(--tc2-ink);
  text-align: center;
  max-width: 560px;
  margin: -4px auto 20px;
}
.tc2-usp__pts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}
.tc2-usp__pt {
  background: var(--tc2-page);
  border-radius: 14px;
  padding: 18px 8px 16px;
  text-align: center;
  box-shadow: var(--tc2-shadow-sm);
}
.tc2-usp__icon {
  display: block;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--tc2-tint);
  margin: 0 auto 12px;
  box-shadow: 0 2px 8px rgba(191, 86, 14, .12);
}
.tc2-usp__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tc2-usp__label {
  font-size: 12px;
  font-weight: 800;
  color: var(--tc2-ink);
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .tc2-usp__pts { max-width: 780px; gap: 20px; }
  .tc2-usp__pt { padding: 28px 16px 24px; }
  .tc2-usp__icon { width: 96px; height: 96px; }
  .tc2-usp__label { font-size: 13px; }
}

/* ===== カテゴリ ===== */
.tc2-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.tc2-cat {
  background: var(--tc2-page);
  border: 1px solid var(--tc2-line);
  border-radius: 14px;
  padding: 10px 6px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  transition: box-shadow .2s;
}
.tc2-cat:hover { box-shadow: var(--tc2-shadow-sm); opacity: 1; }
.tc2-cat__thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  background: var(--tc2-cream2);
}
.tc2-cat__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tc2-cat__name {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--tc2-ink);
  line-height: 1.3;
}

@media screen and (min-width: 768px) {
  .tc2-cats {
    grid-template-columns: repeat(6, 1fr);
    max-width: 1120px;
    margin: 0 auto;
    gap: 14px;
  }
  .tc2-cat__name { font-size: 12px; }
}

/* ===== 用途で選ぶ（アコーディオン） ===== */
.tc2-acc {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tc2-acc-item {
  border: 1px solid var(--tc2-line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--tc2-page);
}
.tc2-acc-item.is-open {
  border-color: var(--tc2-tint2);
  box-shadow: var(--tc2-shadow-sm);
}
.tc2-acc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
}
.tc2-acc-head__text { flex: 1; min-width: 0; }
.tc2-acc-head__title {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--tc2-ink);
  line-height: 1.35;
}
.tc2-acc-head__sub {
  display: block;
  font-size: 11px;
  color: var(--tc2-ink-soft);
  margin-top: 3px;
}
.tc2-acc-head__arrow {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--tc2-tint);
  color: var(--tc2-brand-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  transition: transform .25s;
  line-height: 1;
}
.tc2-acc-item.is-open .tc2-acc-head__arrow {
  transform: rotate(45deg);
}

/* アコーディオン開閉（grid-template-rows方式） */
.tc2-acc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease;
}
.tc2-acc-item.is-open .tc2-acc-body {
  grid-template-rows: 1fr;
}
.tc2-acc-inner { overflow: hidden; }

/* 業種別コンテンツ（現行の構造を維持） */
.tc2-use-content {
  padding: 4px 14px 16px;
}
.tc2-use-banner {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 12px;
}
.tc2-use-desc {
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--tc2-ink-soft);
  margin-bottom: 12px;
}
.tc2-use-menu {
  margin-bottom: 12px;
}
.tc2-use-menu ul {
  list-style: disc;
  padding-left: 18px;
  font-size: 12px;
  color: var(--tc2-ink-soft);
  line-height: 1.8;
}
.tc2-use-prods-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 800;
  color: var(--tc2-brand-ink);
  margin-bottom: 8px;
}
.tc2-use-prods {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tc2-use-prod {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px;
  border-radius: 10px;
  background: var(--tc2-cream);
  transition: background .15s;
}
.tc2-use-prod:hover { background: var(--tc2-cream2); opacity: 1; }
.tc2-use-prod__rank {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: var(--tc2-brand);
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tc2-use-prod__rank--1 { background: linear-gradient(140deg, #F6A623, #E2670F); }
.tc2-use-prod__rank--2 { background: #B7A48E; }
.tc2-use-prod__rank--3 { background: #C9B79C; }
.tc2-use-prod__img {
  width: 80px;
  height: 80px;
  border-radius: 9px;
  flex: 0 0 80px;
  object-fit: cover;
}
.tc2-use-prod__name {
  font-size: 12px;
  font-weight: 700;
  color: var(--tc2-ink);
  line-height: 1.4;
}
.tc2-use-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 12px;
  padding: 11px;
  border: 1px solid var(--tc2-brand);
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--tc2-brand-ink);
  background: var(--tc2-page);
  transition: background .15s;
}
.tc2-use-more:hover { background: var(--tc2-cream); opacity: 1; }
.tc2-use-more__arrow { font-weight: 900; }

@media screen and (min-width: 768px) {
  .tc2-acc { max-width: 800px; margin: 0 auto; }

  /* ランキングTOP3を縦型カード3カラムに */
  .tc2-use-prods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .tc2-use-prod {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "img  img"
      "rank name"
      "cta  cta";
    align-items: start;
    gap: 0;
    padding: 0 0 12px;
    overflow: hidden;
  }
  .tc2-use-prod__rank {
    grid-area: rank;
    width: 24px;
    height: 24px;
    flex: none;
    margin: 12px 0 0 10px;
  }
  .tc2-use-prod__img {
    grid-area: img;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    flex: none;
    border-radius: 10px 10px 0 0;
  }
  .tc2-use-prod__name {
    grid-area: name;
    padding: 12px 12px 0 8px;
    font-size: 12.5px;
  }
  .tc2-use-prod::after {
    content: "商品を見る \203A";
    grid-area: cta;
    display: block;
    padding: 6px 12px 0;
    font-size: 11.5px;
    font-weight: 800;
    color: var(--tc2-brand-ink);
  }
}

/* ===== 人気ランキング ===== */
.tc2-rank-list {
  background: var(--tc2-page);
  border: 1px solid var(--tc2-line);
  border-radius: 14px;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}
.tc2-rank-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-top: 1px solid var(--tc2-line);
  text-decoration: none;
  transition: background .15s;
}
.tc2-rank-item:first-child { border-top: none; }
.tc2-rank-item:hover { background: var(--tc2-cream); opacity: 1; }
.tc2-rank-badge {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--tc2-brand);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tc2-rank-badge--1 { background: linear-gradient(140deg, #F6A623, #E2670F); }
.tc2-rank-badge--2 { background: #B7A48E; }
.tc2-rank-badge--3 { background: #C9B79C; }
.tc2-rank-img {
  width: 52px;
  height: 52px;
  border-radius: 9px;
  flex: 0 0 52px;
  object-fit: cover;
}
.tc2-rank-info { flex: 1; min-width: 0; }
.tc2-rank-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--tc2-ink);
  line-height: 1.4;
}
.tc2-rank-price {
  font-size: 13px;
  font-weight: 900;
  color: var(--tc2-brand-ink);
  margin-top: 3px;
}

/* ランキング「もっと見る」ボタン */
.tc2-rank-more {
  width: 100%;
  padding: 14px;
  border: none;
  border-top: 1px solid var(--tc2-line);
  background: var(--tc2-cream);
  color: var(--tc2-brand-ink);
  font-family: inherit;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.tc2-rank-more__chev { transition: transform .25s; display: inline-block; }
.tc2-rank-more.is-open .tc2-rank-more__chev { transform: rotate(180deg); }

/* 4件目以降を初期非表示 */
.tc2-rank-item--hidden { display: none; }
.tc2-rank-item--hidden.is-shown { display: flex; }

/* PCではリストに余裕があるので画像・余白を拡大 */
@media screen and (min-width: 768px) {
  .tc2-rank-item { gap: 18px; padding: 18px 24px; }
  .tc2-rank-img {
    width: 80px;
    height: 80px;
    flex: 0 0 80px;
    border-radius: 11px;
  }
  .tc2-rank-name { font-size: 14px; }
  .tc2-rank-price { font-size: 14.5px; margin-top: 5px; }
}

/* ===== 選ばれる3つの理由 ===== */
.tc2-reasons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tc2-reason {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--tc2-page);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--tc2-shadow-sm);
}
.tc2-reason__img {
  width: 80px;
  flex: 0 0 80px;
  border-radius: 10px;
  overflow: hidden;
}
.tc2-reason__img img {
  width: 100%;
  height: 80px;
  object-fit: cover;
}
.tc2-reason__body { flex: 1; min-width: 0; }
.tc2-reason__no {
  font-size: 11px;
  font-weight: 900;
  color: var(--tc2-brand-ink);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tc2-reason__title {
  font-size: 15px;
  font-weight: 900;
  color: var(--tc2-ink);
  margin-top: 4px;
  line-height: 1.4;
}
.tc2-reason__desc {
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--tc2-ink-soft);
  margin-top: 6px;
}

@media screen and (min-width: 768px) {
  .tc2-reasons {
    flex-direction: row;
    gap: 20px;
    max-width: 1120px;
    margin: 0 auto;
    align-items: stretch;
  }
  .tc2-reason {
    flex: 1;
    flex-direction: column;
    gap: 14px;
  }
  .tc2-reason__img {
    width: 100%;
    flex: none;
  }
  .tc2-reason__img img {
    height: 160px;
  }
}

/* ===== 実績・取引先バンド ===== */
.tc2-trust-band {
  background: var(--tc2-cream);
  border-top: 2px solid var(--tc2-brand);
  border-bottom: 2px solid var(--tc2-brand);
  padding: 28px 16px;
  text-align: center;
}
.tc2-trust-band__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.tc2-trust-band__badge {
  background: var(--tc2-page);
  border: 2px solid var(--tc2-brand);
  border-radius: 10px;
  padding: 14px 24px;
  box-shadow: var(--tc2-shadow-sm);
}
.tc2-trust-band__badge-sub {
  display: block;
  font-size: 12px;
  color: var(--tc2-brand-ink);
  font-weight: 800;
  margin-bottom: 4px;
}
.tc2-trust-band__badge-main {
  display: block;
  font-size: 20px;
  color: var(--tc2-sale);
  font-weight: 900;
  line-height: 1.3;
}
.tc2-trust-band__content { text-align: left; }
.tc2-trust-band__title {
  font-size: 15px;
  font-weight: 900;
  color: var(--tc2-ink);
  margin-bottom: 8px;
  line-height: 1.5;
}
.tc2-trust-band__clients {
  font-size: 13px;
  color: var(--tc2-ink-soft);
  line-height: 1.7;
}

@media screen and (min-width: 768px) {
  .tc2-trust-band__inner {
    flex-direction: row;
    text-align: left;
    gap: 40px;
  }
  .tc2-trust-band__content { text-align: left; }
  .tc2-trust-band__title { font-size: 17px; }
}

/* ===== 業務用大口注文バナー（→業務用ハブLP） ===== */
.tc2-b2b-bnr-wrap {
  padding: 28px 16px;
  background: var(--tc2-page);
}
.tc2-b2b-bnr {
  display: block;
  max-width: 850px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--tc2-line);
  transition: box-shadow .15s;
}
.tc2-b2b-bnr:hover { box-shadow: var(--tc2-shadow-sm); opacity: 1; }
.tc2-b2b-bnr img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== 安心バンド ===== */
.tc2-assurance {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--tc2-line);
  border: 1px solid var(--tc2-line);
  border-radius: 14px;
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
}
.tc2-assurance__item {
  background: var(--tc2-page);
  padding: 16px 14px;
}
.tc2-assurance__head {
  font-size: 13px;
  font-weight: 900;
  color: var(--tc2-brand-ink);
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
}
.tc2-assurance__head::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--tc2-brand);
  border-radius: 2px;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.tc2-assurance__body {
  font-size: 12px;
  line-height: 1.7;
  color: var(--tc2-ink-soft);
}
.tc2-assurance__body a {
  color: var(--tc2-brand-ink);
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .tc2-assurance {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== おすすめ商品（カラーミー標準ブロック流用） ===== */
/* 既存の c-item-list 等のスタイルをそのまま使用するため追加CSSは最小限 */
.tc2-recommend-wrap {
  max-width: 1120px;
  margin: 0 auto;
}

/* ===== SEOテキスト ===== */
.tc2-seo-text {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 4px;
}
.tc2-seo-text p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--tc2-ink-soft);
  letter-spacing: .3px;
}
.tc2-seo-text strong {
  font-size: 14px;
  color: var(--tc2-ink);
}

/* ===== フェードインアニメーション（共通テンプレートのu-fade流用） ===== */
@media screen and (min-width: 768px) {
  .tc2-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .tc2-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}
