/*!
 * ============================================================
 * ラブケア コンポーネントスタイル v2.0
 * ============================================================
 * 
 * ヌキドコ v3.1 準拠 - Lightweight Elegant・Max Weight 500
 * 
 * 必須読み込み順:
 *   1. style.css
 *   2. lovecare-tokens.css
 *   3. lovecare.css ← このファイル
 * 
 * ============================================================
 */

/* ====================================================
 * ベース設定（ヌキドコ準拠）
 * ==================================================== */

html {
  font-size: 15px;  /* 16pxではない */
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--t1);  /* #1a1a24 純黒禁止 */
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.02em;
}

/* 数字専用 */
.lc-num {
  font-family: var(--font-inter);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

/* ====================================================
 * コンテナ（1400px統一）
 * ==================================================== */

.lc-container {
  width: 100%;
  max-width: var(--container-base);
  margin-inline: auto;
  padding-inline: 32px;
}

.lc-container-narrow {
  max-width: var(--container-narrow);
}

@media (max-width: 767px) {
  .lc-container,
  .lc-container-narrow {
    padding-inline: 16px;
  }
}

/* ====================================================
 * セクション
 * ==================================================== */

.lc-section {
  padding-block: 64px;
}

.lc-section-large {
  padding-block: 80px;
}

.lc-section-hero {
  padding: 80px 0 48px;
}

.lc-section--bg {
  background: var(--bg-secondary);
}

@media (max-width: 767px) {
  .lc-section { padding-block: 40px; }
  .lc-section-large { padding-block: 48px; }
  .lc-section-hero { padding: 48px 0 32px; }
}

/* ====================================================
 * セクション見出し（KICKER・タイトル・説明 3要素）
 * ==================================================== */

.lc-section-heading {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lc-section-heading--center {
  align-items: center;
  text-align: center;
}

/* KICKER: 11px の小さい英文ラベル（グラデーション） */
.lc-section-heading__en {
  font-family: var(--font-mont);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0;
}

/* セクションタイトル: weight 400・26px（細字が品格） */
.lc-section-heading__jp {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.3;
  color: var(--t1);
  letter-spacing: 0.02em;
  margin: 0;
}

@media (max-width: 767px) {
  .lc-section-heading__en {
    font-size: 9px;
    letter-spacing: 0.14em;
    margin-bottom: 5px;
  }
  .lc-section-heading__jp {
    font-size: 18px;
    font-weight: 500;
  }
}

/* セクション説明文 */
.lc-section-lead {
  font-size: 13px;
  color: var(--t3);  /* 薄グレー */
  line-height: 1.6;
  margin: 0 0 32px;
  max-width: 720px;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .lc-section-lead {
    font-size: 10px;
    line-height: 1.6;
  }
}

.lc-text-center { text-align: center; }
.lc-section-lead.lc-text-center { margin-inline: auto; }

/* ====================================================
 * ヘッダー
 * ==================================================== */

.lc-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
}

.lc-header__inner {
  max-width: var(--container-base);
  margin-inline: auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

@media (max-width: 767px) {
  .lc-header__inner { padding: 12px 16px; }
}

.lc-header__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity var(--transition-base);
}

.lc-header__logo:hover {
  opacity: 0.8;
}

.lc-header__logo svg {
  height: 32px;
  width: auto;
  display: block;
}

.lc-header__logo-fallback {
  font-family: var(--font-mont);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--t1);
}

@media (max-width: 767px) {
  .lc-header__logo svg {
    height: 26px;
  }
}

.lc-header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.lc-header__nav-link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--t2);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.lc-header__nav-link:hover {
  color: var(--accent);
  background: var(--accent-light);
}

@media (max-width: 767px) {
  .lc-header__nav { display: none; }
}

/* ====================================================
 * フッター（ヌキドコ準拠 v2.0）
 * 構造:
 *   [ロゴ] [探す] [カテゴリ] [読み物] [サイト情報] [姉妹サイト]
 *   ─────────────────────────────────────────────────
 *   © 2026 ラブケア              当サイトは18歳以上を対象...
 * ==================================================== */

.lc-footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-light);
  padding: 56px 0 0;
  margin-top: 80px;
}

.lc-footer__inner {
  max-width: var(--container-base);
  margin-inline: auto;
  padding-inline: 32px;
}

/* メイングリッド: 6列（ロゴ + 5カラム） */
.lc-footer__main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}

@media (max-width: 1023px) {
  .lc-footer__main {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
  }
  .lc-footer__brand { grid-column: 1 / -1; margin-bottom: 8px; }
}

@media (max-width: 640px) {
  .lc-footer__main {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
  }
}

/* ロゴエリア */
.lc-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lc-footer__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity var(--transition-base);
  margin-bottom: 4px;
}

.lc-footer__logo:hover {
  opacity: 0.8;
}

.lc-footer__logo svg {
  height: 36px;
  width: auto;
  display: block;
}

.lc-footer__logo-fallback {
  font-family: var(--font-mont);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--t1);
}

.lc-footer__tagline {
  font-size: 12px;
  color: var(--t3);
  letter-spacing: 0.05em;
  margin: 4px 0 0 0;
}

.lc-footer__description {
  font-size: 12px;
  line-height: 1.8;
  color: var(--t3);
  margin: 0;
  letter-spacing: 0.02em;
}

/* 各列の見出し */
.lc-footer__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lc-footer__col-title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  color: var(--t1);
  margin: 0;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lc-footer__col-title svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* リンクリスト */
.lc-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lc-footer__list a {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--t2);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--transition-base);
  line-height: 1.5;
}

.lc-footer__list a:hover {
  color: var(--accent);
}

/* 最下段: copyright + 年齢制限注記 */
.lc-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding: 18px 0;
  gap: 16px;
}

.lc-footer__copy {
  font-family: var(--font-mont);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--t3);
  margin: 0;
  text-transform: uppercase;
}

.lc-footer__notice {
  font-family: var(--font-sans);
  font-size: 8px;
  color: var(--t3);
  margin: 0;
  letter-spacing: 0.04em;
  text-align: right;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .lc-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .lc-footer__notice {
    text-align: left;
  }
}

/* ====================================================
 * カード（汎用）
 * ==================================================== */

.lc-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.lc-card--interactive:hover {
  border-color: var(--border-medium);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ====================================================
 * バッジ（ランクなど・極小10px）
 * ==================================================== */

.lc-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mont);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.lc-badge--rank-s {
  background: var(--rank-s-bg);
  color: var(--rank-s);
  border: 1px solid #e5dcc4;
}

.lc-badge--rank-a {
  background: var(--rank-a-bg);
  color: var(--rank-a);
  border: 1px solid var(--border-light);
}

.lc-badge--rank-b {
  background: var(--rank-b-bg);
  color: var(--rank-b);
  border: 1px solid var(--border-light);
}

/* ====================================================
 * タグ
 * ==================================================== */

.lc-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mont);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: var(--radius-md);
  text-transform: uppercase;
}

.lc-tag--buy-now { background: var(--accent-light); color: var(--accent); }
.lc-tag--wait-sale { background: #f5efe3; color: var(--accent-warning); }
.lc-tag--shop { background: #e8f0ec; color: var(--accent-trust); }
.lc-tag--info { background: #e5ecf5; color: var(--accent-info); }

/* ====================================================
 * ボタン
 * ==================================================== */

.lc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
}

.lc-btn--primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.lc-btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
}

.lc-btn--secondary {
  background: var(--bg-primary);
  color: var(--t2);
  border-color: var(--border-light);
}

.lc-btn--secondary:hover {
  border-color: var(--border-medium);
  background: var(--bg-secondary);
}

.lc-btn--ghost {
  background: transparent;
  color: var(--t2);
  border-color: transparent;
  padding: 6px 12px;
}

.lc-btn--ghost:hover {
  background: var(--accent-light);
  color: var(--accent);
}

.lc-btn--lg {
  padding: 14px 28px;
  font-size: 14px;
  letter-spacing: 0.06em;
}

/* ====================================================
 * アイコン（SVG）
 * ==================================================== */

.lc-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lc-icon--sm { width: 12px; height: 12px; }
.lc-icon--lg { width: 20px; height: 20px; }
.lc-icon--xl { width: 24px; height: 24px; }

/* ====================================================
 * リンク矢印
 * ==================================================== */

.lc-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  /* easeOutExpo: 後半にかけてふわっと減速。Apple系UIの感触 */
  transition: gap 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.lc-link-arrow:hover { gap: 10px; }

/* ====================================================
 * 固定ページ（about / methodology / privacy 等の共通レイアウト）
 * ==================================================== */

.lc-page-static {
  /* 2カラム内のメインコンテンツ用（外側 .lc-layout-2col__main で max制御）*/
  padding: 0;
}

.lc-page-static__hero {
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-light);
}

.lc-page-static__kicker {
  display: block;
  font-family: var(--font-mont);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 12px;
}

.lc-page-static__title {
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--t1);
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}

.lc-page-static__lede {
  font-size: 15px;
  line-height: 1.8;
  color: var(--t2);
  margin: 0;
}

.lc-page-static__body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--t1);
}

.lc-page-static__body h2 {
  font-family: var(--font-sans);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--t1);
  margin: 56px 0 20px;
  padding-left: 14px;
  border-left: 3px solid var(--accent);
}

.lc-page-static__body h2:first-child {
  margin-top: 0;
}

.lc-page-static__body h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--t1);
  margin: 32px 0 12px;
}

.lc-page-static__body p {
  margin: 0 0 20px;
}

.lc-page-static__body ul,
.lc-page-static__body ol {
  margin: 0 0 24px;
  padding-left: 1.5em;
}

.lc-page-static__body li {
  margin: 0 0 12px;
}

.lc-page-static__body li strong {
  color: var(--t1);
  font-weight: 600;
}

.lc-page-static__body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.lc-page-static__body a:hover {
  text-decoration-thickness: 2px;
}

/* 関連ページ（フッター手前） */
.lc-page-static__related {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.lc-page-static__related-kicker {
  font-family: var(--font-mont);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--t3);
  margin: 0 0 16px;
}

.lc-page-static__related-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* レスポンシブ */
@media (max-width: 767px) {
  .lc-page-static__hero {
    margin-bottom: 40px;
    padding-bottom: 24px;
  }
  .lc-page-static__title {
    font-size: 24px;
  }
  .lc-page-static__lede {
    font-size: 14px;
  }
  .lc-page-static__body {
    font-size: 14px;
    line-height: 1.85;
  }
  .lc-page-static__body h2 {
    font-size: 18px;
    margin: 40px 0 16px;
  }
}

/* ====================================================
 * データ規模ボックス（about ページなどで使用）
 * ==================================================== */

.lc-data-stat-box {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin: 0 0 24px;
}

.lc-data-stat-box__line {
  font-family: var(--font-mono, var(--font-sans));
  font-size: 14px;
  line-height: 1.7;
  color: var(--t2);
  margin: 0 0 4px;
}

.lc-data-stat-box__line strong {
  color: var(--t1);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.lc-data-stat-box__note {
  font-size: 11px;
  color: var(--t3);
  margin: 12px 0 0;
}

/* ====================================================
 * アーカイブ・商品グリッド共通
 * (archive-lc_product.php / taxonomy-*.php / 関連商品 等で使用)
 * ==================================================== */

.lc-archive-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.lc-archive-header__kicker {
  display: block;
  font-family: var(--font-mont);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 8px;
}

.lc-archive-header__title {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--t1);
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}

.lc-archive-header__desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--t2);
  margin: 0 0 12px;
}

.lc-archive-header__count {
  font-size: 12px;
  color: var(--t3);
  margin: 0;
}

.lc-archive-header__count strong {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
}

/* ツールバー */
.lc-archive-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}

.lc-archive-toolbar__form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lc-archive-toolbar__label {
  font-size: 12px;
  color: var(--t3);
}

.lc-archive-toolbar__select {
  font-size: 13px;
  padding: 8px 28px 8px 12px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg-primary);
  color: var(--t1);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 14px;
}

/* 商品グリッド */
.lc-product-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 48px;
}

.lc-product-grid--3 { grid-template-columns: repeat(3, 1fr); }
.lc-product-grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1023px) {
  .lc-product-grid--3,
  .lc-product-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .lc-product-grid--3,
  .lc-product-grid--4 { grid-template-columns: 1fr; }
}

/* 商品カード */
.lc-product-card {
  display: block;
  text-decoration: none;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 200ms ease, transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--bg-primary);
}

.lc-product-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.lc-product-card__thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-secondary);
  overflow: hidden;
}

.lc-product-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lc-product-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t3);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.lc-product-card__score {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--accent);
  color: white;
  font-family: var(--font-mont);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.lc-product-card__body {
  padding: 14px 14px 16px;
}

.lc-product-card__brand {
  display: block;
  font-family: var(--font-mont);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 4px;
}

.lc-product-card__title {
  font-size: 13px;
  line-height: 1.5;
  color: var(--t1);
  margin: 0 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lc-product-card__price {
  font-family: var(--font-mont);
  font-size: 13px;
  font-weight: 600;
  color: var(--t1);
  margin: 0;
}

/* ページネーション */
.lc-pagination {
  display: flex;
  justify-content: center;
  margin: 48px 0 0;
}

.lc-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  margin: 0 2px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--t1);
  text-decoration: none;
  transition: all 200ms ease;
}

.lc-pagination .page-numbers:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.lc-pagination .page-numbers.current {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.lc-pagination .page-numbers.dots {
  border-color: transparent;
}

/* 空状態 */
.lc-archive-empty {
  text-align: center;
  padding: 64px 24px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
}

.lc-archive-empty__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--t1);
  margin: 0 0 8px;
}

.lc-archive-empty__sub {
  font-size: 13px;
  color: var(--t2);
  margin: 0 0 24px;
  line-height: 1.7;
}

/* ====================================================
 * 固定ページ内テーブル (score-method, ranking-policy)
 * ==================================================== */

.lc-page-static__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin: 16px 0 24px;
  background: var(--bg-primary);
}

.lc-page-static__table thead {
  background: var(--bg-secondary);
}

.lc-page-static__table th {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--t2);
  text-align: left;
  padding: 12px 14px;
  border-bottom: 2px solid var(--border-light);
}

.lc-page-static__table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-light);
  color: var(--t1);
  vertical-align: top;
}

.lc-page-static__table tbody tr:last-child td,
.lc-page-static__table tbody tr:last-child th {
  border-bottom: 0;
  font-weight: 600;
}

.lc-page-static__table tbody tr:last-child {
  background: var(--bg-secondary);
}

@media (max-width: 600px) {
  .lc-page-static__table { font-size: 12px; }
  .lc-page-static__table th,
  .lc-page-static__table td { padding: 10px 8px; }
}

/* ====================================================
 * ブランド一覧 (archive-lc_brand.php) のグリッド
 * ==================================================== */

.lc-brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

@media (max-width: 1023px) {
  .lc-brand-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .lc-brand-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ====================================================
 * ブランド詳細 (single-lc_brand.php)
 * ==================================================== */

.lc-brand-hero {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.lc-brand-hero__kicker {
  display: block;
  font-family: var(--font-mont);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 8px;
}

.lc-brand-hero__title {
  font-family: var(--font-mont);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--t1);
  margin: 0 0 12px;
  letter-spacing: 0.04em;
}

.lc-brand-hero__lede {
  font-size: 14px;
  line-height: 1.8;
  color: var(--t2);
  margin: 0 0 16px;
}

.lc-brand-hero__meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.lc-brand-hero__count {
  font-size: 12px;
  color: var(--t3);
}

.lc-brand-hero__count strong {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
}

.lc-brand-body {
  margin-bottom: 48px;
}

.lc-brand-products {
  margin-top: 48px;
}

/* ====================================================
 * 商品詳細ページ (single-lc_product.php)
 * ==================================================== */

.lc-product {
  margin: 0;
}

/* --- ヒーロー --- */

.lc-product__hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-light);
}

@media (max-width: 767px) {
  .lc-product__hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.lc-product__media {
  position: relative;
}

.lc-product__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  display: block;
}

.lc-product__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  color: var(--t3);
  font-size: 12px;
  letter-spacing: 0.1em;
  border-radius: var(--radius-md);
}

.lc-product__image--placeholder span {
  display: block;
}

.lc-product__summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: start;
}

.lc-product__brand {
  display: inline-block;
  font-family: var(--font-mont);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-decoration: none;
  margin-bottom: 4px;
  transition: opacity 200ms ease;
}

.lc-product__brand:hover { opacity: 0.7; }

.lc-product__title {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--t1);
  margin: 0 0 4px;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .lc-product__title { font-size: 20px; }
}

.lc-product__category {
  font-size: 12px;
  color: var(--t3);
  margin: 0 0 8px;
}

.lc-product__category a {
  color: var(--t2);
  text-decoration: none;
  border-bottom: 1px solid var(--border-light);
}

.lc-product__category a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* --- 安心スコア --- */

.lc-product__score {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  padding: 16px 20px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  margin: 8px 0;
}

.lc-product__score-label {
  font-family: var(--font-mont);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--t3);
  flex-basis: 100%;
  margin-bottom: 4px;
}

.lc-product__score-value {
  font-family: var(--font-mont);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.lc-product__score-max {
  font-size: 13px;
  color: var(--t3);
}

.lc-product__score-pending {
  font-size: 13px;
  color: var(--t3);
}

.lc-product__score--pending {
  /* スコア未確定時はトーンを落とす */
  background: var(--bg-secondary);
  opacity: 0.85;
}

/* --- 公開ランクバッジ --- */

.lc-product__rank {
  display: inline-block;
  margin-left: auto;
  padding: 4px 12px;
  border-radius: 999px;
  font-family: var(--font-mont);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  color: var(--t2);
}

.lc-product__rank--rank-s {
  background: #d4a017;
  border-color: #d4a017;
  color: white;
}

.lc-product__rank--rank-a {
  background: #2ea043;
  border-color: #2ea043;
  color: white;
}

.lc-product__rank--rank-b {
  background: #0969da;
  border-color: #0969da;
  color: white;
}

.lc-product__rank--rank-c {
  background: var(--bg-secondary);
  border-color: var(--border-light);
  color: var(--t2);
}

/* --- 更新日 --- */

.lc-product__updated {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--t3);
  margin: 0;
}

.lc-product__updated time {
  font-family: var(--font-mont);
}

/* --- PR表記 --- */

.lc-product__pr-notice {
  font-size: 11px;
  line-height: 1.7;
  color: var(--t3);
  background: var(--bg-secondary);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--border-light);
  margin: 12px 0 0;
}

.lc-product__pr-notice .lc-link-arrow {
  font-size: 11px;
  margin-left: 8px;
}

/* --- セクション共通 --- */

.lc-product-section {
  margin-bottom: 48px;
}

.lc-product-section:last-of-type {
  margin-bottom: 0;
}

.lc-product-section__title {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--t1);
  margin: 0 0 24px;
  padding-left: 14px;
  border-left: 3px solid var(--accent);
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .lc-product-section__title { font-size: 17px; }
}

/* --- 編集部の判定 (向いている人 / 向いていない人) --- */

.lc-product-fit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 767px) {
  .lc-product-fit__grid { grid-template-columns: 1fr; }
}

.lc-product-fit__col {
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
}

.lc-product-fit__col--good {
  border-left: 3px solid #2ea043;
}

.lc-product-fit__col--bad {
  border-left: 3px solid #d4a017;
}

.lc-product-fit__heading {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--t1);
  margin: 0 0 12px;
}

.lc-product-fit__col--good .lc-product-fit__heading { color: #2ea043; }
.lc-product-fit__col--bad .lc-product-fit__heading  { color: #d4a017; }

.lc-product-fit__body {
  font-size: 14px;
  line-height: 1.8;
  color: var(--t2);
}

.lc-product-fit__body p {
  margin: 0 0 8px;
}

.lc-product-fit__body p:last-child {
  margin-bottom: 0;
}

.lc-product-fit__pending {
  font-size: 12px;
  color: var(--t3);
  margin: 0;
}

/* --- ショップ比較表 --- */

.lc-shop-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.lc-shop-table thead {
  background: var(--bg-secondary);
}

.lc-shop-table th {
  font-family: var(--font-mont);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--t3);
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
}

.lc-shop-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-light);
  color: var(--t1);
  vertical-align: middle;
}

.lc-shop-table tr:last-child td {
  border-bottom: 0;
}

.lc-shop-table time {
  font-family: var(--font-mont);
  font-size: 11px;
  color: var(--t3);
}

.lc-shop-table__note {
  font-size: 11px;
  color: var(--t3);
  margin: 12px 0 0;
}

@media (max-width: 767px) {
  .lc-shop-table thead { display: none; }
  .lc-shop-table tbody { display: block; }
  .lc-shop-table tr {
    display: block;
    margin-bottom: 12px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 12px;
  }
  .lc-shop-table td {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dotted var(--border-light);
    padding: 8px 0;
  }
  .lc-shop-table td:last-child {
    border-bottom: 0;
    padding-top: 12px;
  }
  .lc-shop-table td::before {
    content: attr(data-label);
    color: var(--t3);
    font-size: 11px;
  }
}

.lc-product-shops__pending {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
}

.lc-product-shops__pending p {
  margin: 0 0 8px;
  color: var(--t1);
  font-size: 14px;
}

.lc-product-shops__sub {
  font-size: 12px;
  color: var(--t3);
}

/* --- 口コミ要約 --- */

.lc-product-reviews__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 767px) {
  .lc-product-reviews__grid { grid-template-columns: 1fr; }
}

.lc-product-reviews__col {
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
}

.lc-product-reviews__heading {
  font-size: 13px;
  font-weight: 600;
  color: var(--t1);
  margin: 0 0 12px;
}

.lc-product-reviews__body {
  font-size: 14px;
  line-height: 1.8;
  color: var(--t2);
}

.lc-product-reviews__pending {
  font-size: 12px;
  color: var(--t3);
  margin: 0;
}

.lc-product-reviews__note {
  font-size: 11px;
  color: var(--t3);
  line-height: 1.7;
  margin: 12px 0 0;
}

/* --- 買い時判定 --- */

.lc-product-timing__verdict {
  display: inline-block;
  padding: 12px 24px;
  font-family: var(--font-mont);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

.lc-product-timing__verdict--now {
  background: #2ea043;
  color: white;
}

.lc-product-timing__verdict--wait {
  background: #d4a017;
  color: white;
}

.lc-product-timing__verdict--normal {
  background: var(--bg-secondary);
  color: var(--t2);
}

.lc-product-timing__reason {
  font-size: 13px;
  line-height: 1.8;
  color: var(--t2);
  margin: 0;
}

/* --- FAQ --- */

.lc-faq {
  margin: 0;
  padding: 0;
}

.lc-faq__item {
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
}

.lc-faq__item:first-child {
  border-top: 1px solid var(--border-light);
}

.lc-faq__q {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--t1);
  margin: 0 0 8px;
  line-height: 1.6;
}

.lc-faq__q::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: -1px;
  font-family: var(--font-mont);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

.lc-faq__a {
  position: relative;
  padding-left: 28px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--t2);
  margin: 0;
}

.lc-faq__a::before {
  content: "A";
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-mont);
  font-size: 13px;
  font-weight: 600;
  color: var(--t3);
}

.lc-faq__a p {
  margin: 0 0 8px;
}

.lc-faq__a p:last-child {
  margin-bottom: 0;
}

/* --- 関連商品 --- */

.lc-product-related {
  margin-top: 64px;
}

/* --- 関連商品カード内のスコア表示 --- */

.lc-product-card__brand + .lc-product-card__title {
  /* スコア表示の余地を確保（既存ルール尊重） */
}

/* ====================================================
 * 2カラムレイアウト（TOP以外の全ページ共通）
 *
 * 構造:
 *   .lc-layout-2col
 *     ├─ .lc-layout-2col__main    左メイン (1fr)
 *     └─ .lc-layout-2col__sidebar 右サイド (300px固定)
 *   合計 max 1400px
 *
 * モバイル(<=1023px)では1カラムに（サイドバーが下に回り込み）
 * ==================================================== */

.lc-layout-2col {
  max-width: 1400px;
  margin: 0 auto;
  padding: 64px 24px 96px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

.lc-layout-2col__main {
  min-width: 0; /* gridセル内のoverflow防止 */
}

.lc-layout-2col__sidebar {
  width: 300px;
  position: sticky;
  top: 24px;
}

@media (max-width: 1023px) {
  .lc-layout-2col {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 40px 20px 64px;
  }
  .lc-layout-2col__sidebar {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: static;
  }
}

/* ====================================================
 * サイドバー（template-parts/sidebar-main.php）
 * ==================================================== */

.lc-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.lc-sidebar-widget {
  margin: 0;
}

.lc-sidebar-widget__title {
  font-family: var(--font-mont);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--t3);
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
}

.lc-sidebar-widget__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lc-sidebar-widget__list > li { margin: 0; }

.lc-sidebar-widget__list a {
  display: block;
  padding: 10px 4px;
  font-size: 13px;
  color: var(--t1);
  text-decoration: none;
  border-bottom: 1px dotted var(--border-light);
  transition: color 200ms ease, padding-left 200ms ease-out;
}

.lc-sidebar-widget__list a:hover {
  color: var(--accent);
  padding-left: 8px;
}

.lc-sidebar-widget__pending {
  display: block;
  padding: 10px 4px;
  font-size: 13px;
  color: var(--t3);
  border-bottom: 1px dotted var(--border-light);
}

.lc-sidebar-widget__empty {
  font-size: 12px;
  color: var(--t3);
  padding: 16px 4px;
  text-align: center;
  list-style: none;
}

/* 検索フォーム */
.lc-sidebar-search {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-primary);
}

.lc-sidebar-search__input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 10px 12px;
  font-size: 13px;
  background: transparent;
  color: var(--t1);
  min-width: 0;
}

.lc-sidebar-search__submit {
  border: 0;
  background: var(--bg-secondary);
  padding: 0 14px;
  cursor: pointer;
  color: var(--t2);
  transition: background 200ms ease, color 200ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lc-sidebar-search__submit:hover {
  background: var(--accent);
  color: white;
}

/* 広告枠 300x250 */
.lc-banner-300x250 {
  width: 300px;
  height: 250px;
  background: var(--bg-secondary);
  border: 1px dashed var(--border-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lc-banner-300x250__placeholder {
  font-family: var(--font-mont);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--t3);
}

/* レスポンシブ: モバイルでサイドバー幅を100%に */
@media (max-width: 1023px) {
  .lc-banner-300x250 {
    margin: 0 auto;
  }
}

/* ====================================================
 * ユーティリティ
 * ==================================================== */

.lc-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ====================================================
 * セクション見出し v3.0（ヌキドコ準拠の3段構造）
 * ==================================================== */

.lc-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 32px;
}

.lc-section-head__main {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lc-section-head__kicker {
  font-family: var(--font-mont);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lc-section-head__title {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.3;
  color: var(--t1);
  letter-spacing: 0.02em;
  margin: 0;
}

.lc-section-head__desc {
  font-size: 13px;
  color: var(--t3);
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.02em;
}

.lc-section-head__more {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity var(--transition-base);
}

.lc-section-head__more:hover { opacity: 0.7; }

@media (max-width: 767px) {
  .lc-section-head { flex-direction: column; align-items: stretch; gap: 12px; }
  .lc-section-head__kicker { font-size: 9px; }
  .lc-section-head__title { font-size: 18px; font-weight: 500; }
  .lc-section-head__desc { font-size: 11px; }
}

/* ====================================================
 * ヒーロー v3.1（画像背景 + ダーク半透明オーバーレイ + コピー）
 *   画像: hero-pc.webp/jpg (1920x1080) / hero-sp.webp/jpg (1080x1920)
 *   Max Weight 500原則の例外: headline のみ 600 を許容
 * ==================================================== */

.lc-fv-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 86vh;
  min-height: 580px;
  max-height: 880px;
  background: var(--bg-tertiary);
}

.lc-fv-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.lc-fv-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.lc-fv-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 36, 0.55) 0%,
    rgba(26, 26, 36, 0.32) 50%,
    rgba(26, 26, 36, 0.48) 100%
  );
  display: flex;
  align-items: center;
  z-index: 1;
}

.lc-fv-hero__inner {
  text-align: left;
  max-width: 680px;
  color: #ffffff;
}

.lc-fv-hero__tagline {
  font-family: var(--font-mont);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.lc-fv-hero__headline {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin: 0 0 18px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.lc-fv-hero__lead {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 32px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.lc-fv-hero__search {
  display: flex;
  max-width: 520px;
  margin: 0 0 20px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-full);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lc-fv-hero__search-input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--t1);
  letter-spacing: 0.02em;
  outline: none;
}

.lc-fv-hero__search-input::placeholder {
  color: var(--t3);
}

.lc-fv-hero__search-btn {
  width: 44px;
  background: var(--accent);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-base);
}

.lc-fv-hero__search-btn:hover { background: var(--accent-hover); }

.lc-fv-hero__quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lc-fv-hero__quick-tags a {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  color: #ffffff;
  letter-spacing: 0.02em;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-full);
  text-decoration: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all var(--transition-base);
}

.lc-fv-hero__quick-tags a:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 767px) {
  .lc-fv-hero {
    height: 92vh;
    min-height: 520px;
    max-height: 820px;
  }
  .lc-fv-hero__overlay {
    align-items: flex-end;
    padding-bottom: 56px;
  }
  .lc-fv-hero__inner { text-align: left; }
  .lc-fv-hero__tagline { font-size: 9px; margin-bottom: 16px; }
  .lc-fv-hero__headline { font-size: 21px; line-height: 1.55; margin-bottom: 14px; }
  .lc-fv-hero__lead { font-size: 12px; line-height: 1.75; margin-bottom: 24px; }
  .lc-fv-hero__quick-tags a { font-size: 10px; padding: 5px 12px; }
}

/* ====================================================
 * 商品カード v3.0（極小タイトル・画像主役）
 * ==================================================== */

.lc-product-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  transition: all var(--transition-base);
}

.lc-product-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.lc-product-card__thumb {
  aspect-ratio: 1 / 1;
  background: var(--bg-tertiary);
  overflow: hidden;
  position: relative;
}

.lc-product-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lc-product-card__placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
}

.lc-product-card__body {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lc-product-card__title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  line-height: 1.5;
  color: var(--t1);
  letter-spacing: 0.02em;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lc-product-card__meta {
  font-family: var(--font-inter);
  font-size: 10px;
  color: var(--t3);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.lc-product-card--skeleton {
  cursor: default;
  pointer-events: none;
  opacity: 0.7;
}

@media (max-width: 767px) {
  .lc-product-card__title { font-size: 12px; }
}

/* 商品グリッド */
.lc-product-grid {
  display: grid;
  gap: 16px;
}

.lc-product-grid--3 { grid-template-columns: repeat(3, 1fr); }
.lc-product-grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1023px) {
  .lc-product-grid--4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  .lc-product-grid--3,
  .lc-product-grid--4 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ====================================================
 * 横スクロールトラック
 * ==================================================== */

.lc-hscroll {
  overflow-x: auto;
  overflow-y: hidden;
  margin: 0 -32px;
  padding: 0 32px;
  scrollbar-width: thin;
  scrollbar-color: var(--border-medium) transparent;
}

.lc-hscroll::-webkit-scrollbar { height: 6px; }
.lc-hscroll::-webkit-scrollbar-track { background: transparent; }
.lc-hscroll::-webkit-scrollbar-thumb {
  background: var(--border-medium);
  border-radius: 3px;
}

.lc-hscroll__track {
  display: flex;
  gap: 16px;
  padding-bottom: 12px;
}

.lc-hscroll__track > .lc-product-card {
  flex: 0 0 200px;
  width: 200px;
}

@media (max-width: 767px) {
  .lc-hscroll { margin: 0 -16px; padding: 0 16px; }
  .lc-hscroll__track > .lc-product-card { flex: 0 0 140px; width: 140px; }
}

/* ====================================================
 * ジャンルタブ
 * ==================================================== */

.lc-genre-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.lc-genre-tabs::-webkit-scrollbar { display: none; }

.lc-genre-tab {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  color: var(--t2);
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  letter-spacing: 0.04em;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-base);
}

.lc-genre-tab:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.lc-genre-tab.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

/* ====================================================
 * タブパネル切替（ジャンル / 60キャラ 共用）
 * ====================================================
 *
 * HTMLの hidden 属性は通常 display:none と等価だが、
 * .lc-product-grid / .lc-char-grid に display:grid が定義されているため
 * specificity (0,1,0) 同士の後勝ち判定で hidden が無効化される。
 * specificity (0,2,0) で確実に上書きする。
 * ==================================================== */

.lc-tab-panel[hidden] {
  display: none;
}

/* ====================================================
 * 特集カード（読み物・ガイド）
 * ==================================================== */

.lc-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 1023px) {
  .lc-feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .lc-feature-grid { grid-template-columns: 1fr; }
}

.lc-feature-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  transition: all var(--transition-base);
}

.lc-feature-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.lc-feature-card__thumb {
  aspect-ratio: 16 / 10;
  background: var(--bg-tertiary);
  overflow: hidden;
  position: relative;
}

.lc-feature-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lc-feature-card__placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
}

.lc-feature-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lc-feature-card__kicker {
  font-family: var(--font-mont);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.lc-feature-card__title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.5;
  color: var(--t1);
  letter-spacing: 0.02em;
  margin: 0;
}

.lc-feature-card__excerpt {
  font-size: 11px;
  color: var(--t3);
  line-height: 1.7;
  letter-spacing: 0.02em;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lc-feature-card--skeleton { opacity: 0.7; }

/* ====================================================
 * ランキング v3.0
 * ==================================================== */

.lc-ranking-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}

@media (max-width: 1023px) {
  .lc-ranking-layout { grid-template-columns: 1fr; }
}

.lc-rank-hero {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.lc-rank-hero__num {
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 64px;
  color: var(--accent);
  opacity: 0.12;
  line-height: 1;
}

.lc-rank-hero__thumb {
  aspect-ratio: 16 / 10;
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.lc-rank-hero__kicker {
  font-family: var(--font-mont);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.lc-rank-hero__title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--t1);
  letter-spacing: 0.02em;
  margin: 0;
}

.lc-rank-hero__meta {
  font-family: var(--font-inter);
  font-size: 11px;
  color: var(--t3);
  letter-spacing: 0.02em;
}

.lc-rank-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lc-rank-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.lc-rank-item:hover {
  border-color: var(--border-medium);
}

.lc-rank-item__num {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
  min-width: 18px;
  text-align: center;
}

.lc-rank-item__thumb {
  width: 40px;
  height: 40px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.lc-rank-item__title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  color: var(--t1);
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.4;
}

/* ====================================================
 * ピックアップグループ
 * ==================================================== */

.lc-pickup-group {
  margin-bottom: 32px;
}

.lc-pickup-group:last-child { margin-bottom: 0; }

.lc-pickup-group__head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.lc-pickup-group__kicker {
  font-family: var(--font-mont);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.lc-pickup-group__title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--t1);
  letter-spacing: 0.02em;
  margin: 0;
}

/* ====================================================
 * 5+1 診断カード v3.0
 * ==================================================== */

.lc-diag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 1023px) {
  .lc-diag-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .lc-diag-grid { grid-template-columns: 1fr; }
}

.lc-diag-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  position: relative;
  transition: all var(--transition-base);
  min-height: 160px;
}

.lc-diag-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.lc-diag-card__num {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 36px;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
}

.lc-diag-card__title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  color: var(--t1);
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.4;
}

.lc-diag-card__desc {
  font-size: 11px;
  color: var(--t3);
  line-height: 1.7;
  letter-spacing: 0.02em;
  margin: 0;
  flex: 1;
}

.lc-diag-card__meta {
  font-family: var(--font-mont);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t3);
  border-top: 1px solid var(--border-light);
  padding-top: 8px;
  margin-top: auto;
}

.lc-diag-card--all {
  background: var(--accent-light);
  border-color: var(--accent);
}

.lc-diag-card--all .lc-diag-card__num { opacity: 0.4; }

/* ====================================================
 * 60キャラクターセクション
 * ==================================================== */

.lc-char-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.lc-char-tabs::-webkit-scrollbar { display: none; }

.lc-char-tab {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  color: var(--t2);
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  letter-spacing: 0.04em;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-base);
}

.lc-char-tab:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.lc-char-tab.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.lc-char-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

@media (max-width: 1023px) {
  .lc-char-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 640px) {
  .lc-char-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}

.lc-char-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  transition: transform var(--transition-base);
}

.lc-char-card:hover { transform: translateY(-2px); }

.lc-char-card__img {
  aspect-ratio: 1 / 1;
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.lc-char-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lc-char-card__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
}

.lc-char-card__name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  color: var(--t1);
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.4;
}

.lc-char-card__catch {
  font-size: 10px;
  color: var(--t3);
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.5;
}

/* ====================================================
 * ブランドタイル（ロゴ風）
 * ==================================================== */

.lc-brand-row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}

@media (max-width: 1023px) {
  .lc-brand-row { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 640px) {
  .lc-brand-row { grid-template-columns: repeat(2, 1fr); }
}

.lc-brand-tile {
  aspect-ratio: 16 / 9;
  background-color: var(--bg-primary);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.lc-brand-tile:hover {
  border-color: var(--accent);
  background-color: var(--accent-light);
}

.lc-brand-tile__name {
  font-family: var(--font-mont);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--t2);
  position: relative;
  z-index: 2;
}

.lc-brand-tile__sub {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--t3);
  position: relative;
  z-index: 2;
}

.lc-brand-tile--skeleton {
  opacity: 0.6;
  pointer-events: none;
}

/* ====================================================
 * ブランドタイル: 背景画像あり版（商品が紐付いている時）
 * ==================================================== */

.lc-brand-tile--has-bg {
  background-color: transparent;
  border-color: transparent;
}

.lc-brand-tile--has-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: background 360ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.lc-brand-tile--has-bg:hover {
  border-color: transparent;
  background-color: transparent;
}

.lc-brand-tile--has-bg:hover::before {
  background: rgba(0, 0, 0, 0.3);
}

.lc-brand-tile--has-bg .lc-brand-tile__name,
.lc-brand-tile--has-bg .lc-brand-tile__sub {
  color: white;
}

/* ====================================================
 * お知らせリスト
 * ==================================================== */

.lc-news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.lc-news-item {
  display: grid;
  grid-template-columns: 100px 80px 1fr;
  gap: 16px;
  padding: 14px 0;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
}

.lc-news-item:last-child { border-bottom: none; }

.lc-news-item__date {
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 11px;
  color: var(--t3);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.lc-news-item__category {
  font-family: var(--font-mont);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  text-align: center;
}

.lc-news-item__text {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 13px;
  color: var(--t1);
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .lc-news-item { grid-template-columns: 80px 60px 1fr; gap: 10px; }
  .lc-news-item__date { font-size: 10px; }
  .lc-news-item__category { font-size: 8px; }
  .lc-news-item__text { font-size: 12px; }
}

/* ====================================================
 * カテゴリタイル（コンパクト）
 * ==================================================== */

.lc-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

@media (min-width: 768px) {
  .lc-category-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .lc-category-grid { grid-template-columns: repeat(4, 1fr); }
}

.lc-category-tile {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: all var(--transition-base);
  text-decoration: none;
}

.lc-category-tile:hover {
  border-color: var(--accent);
  background: var(--accent-light);
}

.lc-category-tile__name {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--t1);
  letter-spacing: 0.02em;
}

.lc-category-tile__count {
  font-family: var(--font-inter);
  font-size: 11px;
  color: var(--t3);
  font-variant-numeric: tabular-nums;
}

.lc-category-tile--disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.lc-category-tile--disabled .lc-category-tile__count {
  color: var(--accent);
}

/* ====================================================
 * パンくず
 * ==================================================== */

.lc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--t3);
  margin-block: 16px;
  letter-spacing: 0.02em;
}

.lc-breadcrumb__sep {
  color: var(--t4);
}

.lc-breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

.lc-breadcrumb a:hover {
  color: var(--accent);
}

/* ====================================================
 * AIコンシェルジュ（既存のまま・小調整）
 * ==================================================== */

.lc-concierge {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: var(--z-concierge);
}

.lc-concierge__trigger {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-accent);
  border: none;
  transition: all var(--transition-base);
  position: relative;
}

.lc-concierge__trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(198, 107, 92, 0.25);
  background: var(--accent-hover);
}

.lc-concierge__label {
  position: absolute;
  bottom: 64px;
  right: 0;
  background: var(--bg-primary);
  padding: 6px 12px;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--t1);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  gap: 6px;
}

.lc-concierge:hover .lc-concierge__label {
  opacity: 1;
  transform: translateY(0);
}

.lc-concierge__pulse {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: var(--radius-full);
  animation: lc-pulse 2s infinite;
}

@keyframes lc-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* AIコンシェルジュパネル */
.lc-concierge-panel {
  position: fixed;
  bottom: 88px;
  right: 24px;
  width: 360px;
  height: 520px;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  z-index: var(--z-concierge);
  overflow: hidden;
}

@media (max-width: 640px) {
  .lc-concierge-panel {
    width: calc(100vw - 32px);
    height: 70vh;
    bottom: 84px;
    right: 16px;
  }
}

.lc-concierge-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-light);
}

.lc-concierge-panel__title {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--t1);
  letter-spacing: 0.02em;
}

.lc-concierge-panel__subtitle {
  font-size: 10px;
  color: var(--t3);
  margin-top: 2px;
  letter-spacing: 0.04em;
}

.lc-concierge-panel__close {
  width: 28px; height: 28px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--t2);
  background: none;
  border: none;
  transition: background var(--transition-base);
}

.lc-concierge-panel__close:hover { background: var(--bg-tertiary); }

.lc-concierge-panel__messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lc-concierge-msg {
  padding: 10px 14px;
  border-radius: var(--radius-lg);
  font-size: 12px;
  line-height: 1.7;
  max-width: 85%;
  white-space: pre-wrap;
  letter-spacing: 0.02em;
}

.lc-concierge-msg--user {
  background: var(--accent);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: var(--radius-sm);
}

.lc-concierge-msg--assistant {
  background: var(--bg-secondary);
  color: var(--t1);
  align-self: flex-start;
  border-bottom-left-radius: var(--radius-sm);
}

.lc-concierge-msg--loading { opacity: 0.6; font-style: italic; }

.lc-concierge-panel__form {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-light);
}

.lc-concierge-panel__input {
  flex: 1;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  background: var(--bg-secondary);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.02em;
  outline: none;
  transition: border-color var(--transition-base);
}

.lc-concierge-panel__input:focus {
  border-color: var(--accent);
  background: var(--bg-primary);
}

.lc-concierge-panel__send {
  width: 32px; height: 32px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  flex-shrink: 0;
  transition: background var(--transition-base);
}

.lc-concierge-panel__send:hover { background: var(--accent-hover); }

/* ====================================================
 * ユーティリティ
 * ==================================================== */

.lc-text-muted { color: var(--t3); }
.lc-text-secondary { color: var(--t2); }
.lc-text-brand { color: var(--accent); }

.lc-mb-3 { margin-bottom: 12px; }
.lc-mb-4 { margin-bottom: 16px; }
.lc-mb-5 { margin-bottom: 24px; }

.lc-flex { display: flex; }
.lc-flex-col { flex-direction: column; }
.lc-items-center { align-items: center; }
.lc-justify-between { justify-content: space-between; }
.lc-gap-2 { gap: 8px; }
.lc-gap-3 { gap: 12px; }
.lc-gap-4 { gap: 16px; }

.lc-hidden { display: none !important; }

@media (max-width: 768px) {
  .lc-hidden-mobile { display: none !important; }
}

@media (min-width: 769px) {
  .lc-hidden-desktop { display: none !important; }
}

/* ====================================================
 * 配送・梱包で選ぶ（3カード）v3.0
 *   既存 .lc-card .lc-card--interactive を継承
 *   既存 .lc-section-head 見出しパターンを使用
 *   テラコッタ上端スライド線でホバー演出
 * ==================================================== */

.lc-delivery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .lc-delivery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.lc-delivery-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
}

.lc-delivery-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--transition-base);
}

.lc-delivery-card:hover::before,
.lc-delivery-card:focus-visible::before {
  transform: scaleX(1);
}

.lc-delivery-card__icon {
  width: 28px;
  height: 28px;
  color: var(--accent);
  margin-bottom: 20px;
}

.lc-delivery-card__icon .lc-icon {
  width: 100%;
  height: 100%;
}

.lc-delivery-card__eyebrow {
  font-family: var(--font-mont);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--t3);
  margin: 0 0 8px;
  text-transform: uppercase;
}

.lc-delivery-card__title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  color: var(--t1);
  letter-spacing: 0.02em;
  margin: 0 0 12px;
}

.lc-delivery-card__desc {
  font-size: 12px;
  line-height: 1.7;
  color: var(--t2);
  letter-spacing: 0.02em;
  margin: 0 0 20px;
  flex-grow: 1;
}

.lc-delivery-card__cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--accent);
}

@media (max-width: 767px) {
  .lc-delivery-card { padding: 24px 20px; }
  .lc-delivery-card__title { font-size: 13px; }
  .lc-delivery-card__desc { font-size: 11px; line-height: 1.65; }
}
