/* =========================================================
   04. Components - Shared
   ========================================================= */
/* #region Components - Shared */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  border-radius: var(--r-md, 12px);
  transition: box-shadow 0.12s ease, transform 0.12s ease, filter 0.12s ease;
}

.btn--lg {
  padding: 12px 22px;
  font-size: 1rem;
}

.btn--sm {
  padding: 8px 12px;
  font-size: 0.92rem;
}

.btn--accent {
  background: var(--c-orange);
  color: #fff;
  border: 0;
  box-shadow: var(--elev-1);
}

/* .btn--accent:hover {
  text-decoration: none;
  box-shadow: var(--elev-2);
  transform: translateY(-1px);
  filter: brightness(0.98);
} */

.btn--accent:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(
    --elev-3,
    0 20px 25px -5px rgba(0, 0, 0, 0.15),
    0 10px 10px -5px rgba(0, 0, 0, 0.04)
  );
  filter: brightness(1.1) saturate(1.15);
}

.btn--ghost {
  background: #fff;
  color: var(--c-text);
  border: 1px solid var(--c-border);
  box-shadow: var(--elev-1);
}

.btn--ghost:hover {
  box-shadow: var(--elev-2);
  transform: translateY(-1px);
}

/* #endregion Components - Shared */

/* === Breadcrumb Base === */
.breadcrumb {
  max-width: 1200px;
  margin: 16px auto 24px;
  padding: 0 20px;
  font-size: 0.85rem;
  color: var(--c-muted);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.breadcrumb__item {
  display: inline-flex;
  align-items: center;
}

/* 区切り矢印 */
.breadcrumb__item + .breadcrumb__item::before {
  content: "›";
  margin: 0 4px 0 2px;
  color: #c7c7c7;
  font-size: 0.8em;
}

/* ピル型の見た目 */
.breadcrumb a,
.breadcrumb span {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f5f5f5;
  color: var(--c-muted);
  text-decoration: none;
  line-height: 1.4;
}

/* 現在ページ */
.breadcrumb__item.is-current span {
  background: var(--c-bg-blue);
  color: var(--c-navy);
  font-weight: 600;
}

/* ホバー */
.breadcrumb a:hover {
  background: #eaeaea;
  color: var(--c-navy);
}

/* テキストの省略（PCでは基本フル表示） */
.breadcrumb a,
.breadcrumb span {
  max-width: none;
  white-space: nowrap;
}

/* ページ上部用（従来どおり） */
.breadcrumb--top {
  margin-top: 12px;
  margin-bottom: 12px;
}

/* フッター直前用：上に罫線を引いて“締め”感を出す */
.breadcrumb--bottom {
  margin-top: 64px;
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 24px;
  border-top: 1px solid #eee;
}

@media (max-width: 768px) {
  .breadcrumb {
    margin: 12px auto 16px;
    padding: 0 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .breadcrumb ol {
    flex-wrap: nowrap; /* 折り返さず1行に */
    white-space: nowrap;
  }

  .breadcrumb a,
  .breadcrumb span {
    max-width: 160px; /* ここで長さを制限 */
    text-overflow: ellipsis;
    overflow: hidden;
  }

  /* 下部バージョンの時は少し余白多めでも */
  .breadcrumb--bottom {
    margin-top: 40px;
    padding-bottom: 20px;
  }
}

/* H1 Area */
.page-header {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 40px 20px;
  /*background: linear-gradient(120deg, #fdfbf7 0%, #fff 100%);
  border-radius: var(--r-lg);*/
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 320px;
}
.page-header__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

/* ビジュアル側の箱を共通化 */
.page-header__visual {
  flex: 0 0 340px; /* 横幅目安。320〜360pxくらいで調整 */
  max-width: 380px;
  height: 100%; /* ★親の高さ（=320px）いっぱい */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* PNG画像の場合 */
.page-header__img {
  max-width: 100%;
  max-height: 80%; /* ちょっと余白を残す */
  height: auto;
}

/* SVGの場合（partial 内の <svg> にこのクラスを付ける想定） */
.page-header__img-svg {
  max-width: 100%;
  max-height: 80%;
  height: auto;
  opacity: 0.8;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.page-header h1 {
  font-size: clamp(1.8rem, 1.5rem + 1.5vw, 2.4rem);
  margin: 0 0 16px;
  color: var(--c-navy);
}
.page-header__lead {
  font-size: 1.05rem;
  color: var(--c-text);
  line-height: 1.8;
}

.sketch-anim path {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: sketch 2s ease-out forwards;
  stroke: var(--c-navy);
  stroke-width: 1.5;
  fill: none;
}
@keyframes sketch {
  to {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 768px) {
  .page-header {
    position: relative;
    padding: 24px 20px 40px;
  }

  .page-header__visual {
    position: absolute;
    right: 8px;
    bottom: 8px;
    max-width: 180px;
    max-height: 140px;
    opacity: 0.5;
    pointer-events: none;
  }

  .page-header__img,
  .page-header__img-svg {
    width: 100%;
    height: auto;
  }

  .page-header h1 {
    font-size: 1.2rem;
  }

  .page-header__lead {
    font-size: 0.9rem;
  }
}

/* SVG全体の基本設定 */
.draw-anim {
  width: 100%; /* 親要素に合わせて調整 */
  max-width: 500px; /* 必要に応じて最大幅を指定 */
  height: auto;
  display: block;
}

.draw-anim path {
  fill: none; /* 最初は塗りつぶしなし */
  stroke: #0e2f47; /* ブランドカラー(ネイビー) */
  stroke-width: 1.5; /* 線の太さ */
  stroke-linecap: round;
  stroke-linejoin: round;

  /* アニメーションの準備：線の長さを隠す */
  stroke-dasharray: var(--length);
  stroke-dashoffset: var(--length);

  /* アニメーション定義 (名前, 時間, カーブ, 維持) */
  animation: drawLine 0.8s ease-out forwards;

  /* 最初は透明にしておく（JS読み込みラグ対策） */
  opacity: 0;
}

/* JSで長さが計算されたら表示する */
.draw-anim.ready path {
  opacity: 1;
}

/* --- グループごとの遅延設定 (順番に描く) --- */

/* 1. アウトライン (即座に開始) */
.draw-anim #outline path {
  animation-delay: 0s;
}

/* 2. メイン詳細 (0.8s後に開始) */
.draw-anim #main-detail path {
  animation-delay: 0.8s;
}

/* 3. 細かい詳細 (1.6s後に開始) */
.draw-anim #small-detail path {
  animation-delay: 1.6s;
}

/* --- キーフレーム --- */
@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

/* ---------------------------------------------------------
   Table Toolbar (New)
   --------------------------------------------------------- */
.table-toolbar {
  display: flex;
  justify-content: center; /* Center align */
  align-items: center;
  flex-wrap: wrap;
  gap: 24px; /* Gap between link button and actions */
  margin-bottom: 24px;
  padding: 0 4px;
}

.link-usage-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px; /* Modest height */
  padding: 0 20px;
  background-color: transparent;
  border: 1px solid var(--c-border);
  border-radius: 30px; /* Pill shape */
  color: var(--c-muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.link-usage-detail:hover {
  background-color: #fff;
  border-color: var(--c-navy);
  color: var(--c-navy);
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.table-toolbar__actions {
  display: flex;
  gap: 10px;
}

/* Redefine logic for btn-download if needed, 
   but keeping base classes is safer. 
   Just tweaked existing styles slightly above if necessary. */

/* ---------------------------------------------------------
   Product Table - Sticky & Zebra
   --------------------------------------------------------- */
.product-table-wrapper {
  position: relative;
  overflow: auto; /* Enable scroll */
  max-width: 100%;
  max-height: 80vh; /* Limit height for vertical sticky */
  margin-bottom: 32px;
  border: 1px solid var(--c-border);
  border-radius: 4px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.02);
}

.all-products .product-table-wrapper {
  max-height: 100%;
}

.product-table {
  width: 100%;
  border-collapse: separate; /* Required for sticky */
  border-spacing: 0;
}

.product-table th,
.product-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--c-border);
  border-right: 1px solid var(--c-border);
  vertical-align: middle;
  font-size: 0.9rem;
}

.product-table th {
  background: #f0f4f7;
  color: var(--c-navy);
  font-weight: 700;
  position: sticky;
  top: 0;
  z-index: 10;
  border-top: none;
  box-shadow: 0 1px 0 var(--c-border); /* Bottom border fix for sticky */
  white-space: nowrap;
}

.product-table td {
  white-space: normal;
}

.product-table .repeat-head th {
  background: #f5f7fb;
  font-weight: 700;
  border-top: 2px solid rgba(0, 0, 0, 0.06);
}

/* Sticky First Column (Product ID) */
.product-table td:first-child,
.product-table th:first-child {
  position: sticky;
  left: 0;
  z-index: 11; /* Higher than normal th */
  border-right: 2px solid #dce2e6; /* Separator */
}
/* Ensure th corner is highest */
.product-table th:first-child {
  z-index: 12;
}

.product-table td:first-child {
  background: #fff;
  font-weight: 700;
  color: var(--c-blue);
}

/* Zebra Striping */
.product-table tbody tr:nth-child(even) td {
  background-color: #fafbfc;
}
/* Ensure sticky column in zebra row also gets zebra bg? 
   No, sticky column usually needs solid bg to hide content behind. 
   Let's keep first col white or match zebra. */
.product-table tbody tr:nth-child(even) td:first-child {
  background-color: #fafbfc;
}

/* Hover Effect (Row & Col) */
.product-table tbody tr:hover td {
  background-color: #eaf6ff !important;
}
.product-table td.is-hovered-col {
  background-color: #f7fbfe;
}

/* Export Mode (Reset Sticky) */
.is-exporting .product-table th,
.is-exporting .product-table td {
  position: static !important;
  box-shadow: none !important;
  border: 1px solid var(--c-border) !important; /* Restore normal borders */
}
.is-exporting .product-table-wrapper {
  overflow: visible !important;
  max-height: none !important;
  border: none !important;
}

/* ---------------------------------------------------------
   Table CTA Block
   --------------------------------------------------------- */
.table-cta {
  background: #f9fafb;
  border: 1px dashed var(--c-border);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.table-cta__text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--c-muted);
}

.table-cta__btns {
  display: flex;
  gap: 16px;
}

/* ---------------------------------------------------------
   Product Table (Spec Table)
   --------------------------------------------------------- */
.product-table-wrapper {
  margin-bottom: 60px;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--elev-1);
  overflow: hidden;
}

.product-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.product-table th,
.product-table td {
  padding: 16px 12px;
  border-bottom: 1px solid var(--c-border);
  text-align: left;
  vertical-align: middle;
}

.product-table th {
  background: var(--c-gray);
  color: var(--c-navy);
  font-weight: 700;
  white-space: nowrap;
}

.product-table td {
  color: var(--c-text);
  line-height: 1.6;
}

.product-table .product-id {
  font-weight: 800;
  color: var(--c-navy);
}

/* Cross Highlighting */
.product-table tr:hover td {
  background-color: #fffaf5; /* Row highlight (Light Orange) */
}

.product-table td.is-hovered-col {
  background-color: #fffaf5; /* Column highlight (Light Orange) */
}

/* Intersection (Darker) */
.product-table tr:hover td.is-hovered-col {
  background-color: #ffe0b2; /* Intersection (Orange) */
}

/* SP: Scrollable Table */
@media (max-width: 768px) {
  .product-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .product-table th,
  .product-table td {
    padding: 12px 10px;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  /* Sticky First Column */
  .product-table th:first-child,
  .product-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    background-color: #fff; /* Ensure opacity */
    border-right: 1px solid var(--c-border); /* Separator */
    box-shadow: 2px 0 4px rgba(0, 0, 0, 0.05);
  }
  .product-table th:first-child {
    background-color: var(--c-gray); /* Match header bg */
  }

  .category-header__top {
    flex-direction: column;
    gap: 12px;
  }
}

/* Mobile Optimization for Headings and Spacing */
@media (max-width: 768px) {
  .category-header h2 {
    font-size: 1.4rem; /* Smaller heading */
  }
  .category-header {
    margin-bottom: 24px; /* Reduced margin */
  }
  .category-catch {
    font-size: 1rem;
  }
  .category-desc {
    font-size: 0.9rem;
    text-align: left; /* Better readability */
  }
  .product-table-wrapper {
    margin-bottom: 40px; /* Reduced margin */
  }
  .shapes-matrix {
    margin-bottom: 40px;
  }
  .merits-section {
    margin-bottom: 40px;
    padding: 40px 0;
  }
  .tech-column {
    margin-bottom: 40px;
  }
  .all-products {
    margin-bottom: 40px;
  }
}

/* ---------------------------------------------------------
   All Products Table
   --------------------------------------------------------- */
.all-products {
  margin-bottom: 80px;
}

/* ベースのコンテナデザイン（角丸と影でモダンさを出す） */
.table-wrap {
  width: 100%;
  max-width: 800px; /* 必要に応じて調整 */
  margin: 20px auto;
  border-radius: 8px;
  overflow: hidden; /* 角丸を適用するため */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
}

/* テーブル全体の基本設定 */
.table-spec {
  width: 100%;
  border-collapse: collapse;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: #fff;
}

/* PC・タブレット向けの共通スタイル */
.table-spec th,
.table-spec td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

/* 最後の行の線は消す */
.table-spec tr:last-child th,
.table-spec tr:last-child td {
  border-bottom: none;
}

/* 見出し（項目名）のデザイン */
.table-spec th {
  width: 30%; /* PCでの見出し幅 */
  background-color: #f9fafb; /* 薄いグレーで区分け */
  color: #333;
  font-weight: 600;
  white-space: nowrap; /* 勝手な改行を防ぐ */
}

/* データ（内容）のデザイン */
.table-spec td {
  color: #555;
}

/* 既存に加えてパターンを増やす */
.is-exporting .product-table-wrapper,
.product-table-wrapper.is-exporting {
  overflow: visible !important;
  max-height: none !important;
}

/* --- レスポンシブ対応（スマホ表示: 600px以下） --- */
@media screen and (max-width: 600px) {
  /* テーブルの概念を解除してブロック要素のように扱う */
  .table-spec,
  .table-spec tbody,
  .table-spec tr,
  .table-spec th,
  .table-spec td {
    display: block;
    width: 100%;
  }

  /* 行ごとの区切り線を設定 */
  .table-spec tr {
    border-bottom: 1px solid #e0e0e0;
  }

  /* 最後の行の下線は不要なら消す（コンテナの枠があるため） */
  .table-spec tr:last-child {
    border-bottom: none;
  }

  /* スマホでの見出し（ラベルのように見せる） */
  .table-spec th {
    background-color: transparent; /* 背景色を解除 */
    padding: 15px 15px 5px 15px; /* 下の余白を詰める */
    color: #888; /* 少し薄くしてラベル感を出す */
    font-size: 14px;
    border-bottom: none; /* 線を消す */
  }

  /* スマホでのデータ部分 */
  .table-spec td {
    padding: 0 15px 15px 15px; /* 上の余白をなくす */
    font-weight: 500;
    color: #333;
    border-bottom: none; /* 線を行（tr）側に任せるため消す */
  }
}

/* tableデザイン追加要素 */

.table-wrap {
  max-width: 100%;
  overflow-x: auto;
}

.table-spec {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.table-spec th,
.table-spec td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--c-border);
}

.table-spec th {
  width: 28%;
  background: var(--c-gray);
  font-weight: 700;
  color: var(--c-navy);
  text-align: left;
}

.table-spec td {
  background: #fff;
  line-height: 1.7;
}

/* SPでの詰まり感を軽く */
@media (max-width: 600px) {
  .table-spec th,
  .table-spec td {
    padding: 8px 10px;
  }

  .table-spec th {
    width: 35%;
  }
}

/* ---------------------------------------
   Scroll Hint (for horizontally scrollable wrappers)
   Usage: add class ".scroll-hint" to scroll wrapper
---------------------------------------- */
/* Scroll hint wrapper */
.scroll-hint {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Label (only on mobile) */
.scroll-hint__label {
  display: none;
  margin: 0 0 8px;
  font-size: 12px;
  line-height: 1.3;
  opacity: 0.75;
  text-align: center;
  user-select: none;
}

@media (max-width: 768px) {
  .scroll-hint__label {
    display: block;
  }

  /* Edge fades */
  .scroll-hint::before,
  .scroll-hint::after {
    content: "";
    position: sticky;
    top: 0;
    width: 24px;
    height: 100%;
    pointer-events: none;
    z-index: 2;
  }

  .scroll-hint::before {
    left: 0;
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.18),
      rgba(0, 0, 0, 0)
    );
  }

  .scroll-hint::after {
    right: 0;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0));
  }
}

/* =========================================================
   Lower Common Components (lc-*)
   ========================================================= */

/* Common Section & Container */

/* Electro Specific (Legacy/Specific) */
.electro-text-block {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.9;
  text-align: left;
}

/* Features (lc-feature) */
.lc-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
  text-align: center;
}

.lc-feature-card__icon {
  height: 80px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lc-feature-card__icon img {
  max-height: 100%;
  width: auto;
}

.lc-feature-card__title {
  font-size: 1.1rem;
  color: var(--c-navy);
  margin-bottom: 12px;
  font-weight: 700;
}

.lc-feature-card__desc {
  font-size: 0.9rem;
  color: var(--c-text);
  line-height: 1.6;
  text-align: left;
}

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

/* Electro Specific Lead & Note */
.electro-section-lead {
  text-align: center;
  margin-bottom: 30px;
}

.electro-note {
  margin-top: 30px;
  font-size: 0.9rem;
  color: var(--c-muted);
  text-align: center;
}

/* Technical Data (lc-tech-table) */
.lc-tech-table__wrapper {
  overflow-x: auto;
  margin-top: 40px;
  -webkit-overflow-scrolling: touch;
}

.lc-tech-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.lc-tech-table th,
.lc-tech-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: center;
}

.lc-tech-table th {
  background: #eef3f6;
  color: var(--c-navy);
  font-weight: 700;
  white-space: nowrap;
}

.lc-tech-table th:first-child {
  text-align: left;
  min-width: 140px;
}

.lc-tech-table td {
  background: #fff;
  color: var(--c-text);
}

.lc-tech-table--sub th {
  background: #f5f5f5;
}

/* Safety Guide (lc-checklist) */

.lc-checklist {
  list-style: none;
  /* 内容に応じて幅を決め、その箱を中央へ */
  display: inline-block;
  text-align: left; /* 中身のテキストは左揃え */
  margin: 30px auto 0;
  width: fit-content; /* shrink-to-fit：内容の幅に合わせる */
  max-width: 800px; /* あまり広がりすぎないよう上限だけかける */
}

/* アイコン＋テキストを気持ちよく並べる */
.lc-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-left: 0;
  margin-bottom: 16px;
  line-height: 1.6;
  font-weight: 700;
  color: var(--c-navy);
}

.lc-checklist li::before {
  content: "";
  flex: 0 0 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232196f3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3Crect x='1' y='1' width='22' height='22' rx='2' stroke='%232196f3' fill='%23e3f2fd' fill-opacity='0.3'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 2px;
}

/* セクション全体は中央揃えでOK（h2も含めて） */
.lc-checklist-wrapper {
  text-align: center;
}

/* --- 2. Use Cases (Photo Cards) --- */
.lc-usecase-grid {
  display: grid;
  /* PC: 4列, Tablet: 2列, Mobile: 1列 */
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.lc-usecase-photo-card {
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--c-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.lc-usecase-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.lc-usecase-photo-card__media {
  margin: 0;
  aspect-ratio: 16 / 10; /* 少し横長にトリミング */
  overflow: hidden;
  border-bottom: 1px solid var(--c-border);
}

.lc-usecase-photo-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* ホバー時に画像をゆっくりズーム */
.lc-usecase-photo-card:hover .lc-usecase-photo-card__media img {
  transform: scale(1.05);
}

.lc-usecase-photo-card__body {
  padding: 20px;
  flex-grow: 1;
}

.lc-usecase-photo-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-navy);
  margin: 0 0 10px;
  padding-left: 12px;
  position: relative;
  line-height: 1.4;
}

/* 左側のアクセントバー */
.lc-usecase-photo-card__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 4px;
  background: var(--c-orange);
  border-radius: 2px;
}

.lc-usecase-photo-card__text {
  font-size: 0.9rem;
  color: var(--c-muted);
  line-height: 1.6;
}

/* --- 3. Positioning (Concept Box) --- */
.lc-concept-box {
  background: #fff;
  border: 1px solid var(--c-border);
  border-left: 6px solid var(--c-navy); /* 左側に太い線で存在感 */
  border-radius: var(--r-md);
  padding: 32px 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.lc-concept-box__content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--c-text);
}
/* スマホ調整 */
@media (max-width: 768px) {
  .lc-concept-box {
    padding: 24px;
  }
}

/* --- 5. Technical Data (Modern Table) --- */
/* テーブルのスクロールラッパー */
.lc-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 32px;
  border-radius: var(--r-md);
  border: 1px solid var(--c-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.lc-data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px; /* スクロールさせるための最小幅 */
  font-size: 0.9rem;
  background: #fff;
}

/* ヘッダー行 */
.lc-data-table thead tr {
  background-color: var(--c-bg-blue);
  border-bottom: 2px solid var(--c-border);
}

.lc-data-table th,
.lc-data-table td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid var(--c-border);
  vertical-align: middle;
}

/* 項目列（縦見出し） */
.lc-th-head,
.lc-th-row {
  background-color: #fafafa;
  color: var(--c-navy);
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
  position: sticky; /* 横スクロール時に見出しを固定するモダンテクニック */
  left: 0;
  z-index: 1; /* データセルより上に来るように */
  border-right: 1px solid var(--c-border);
}

.lc-th-product {
  color: var(--c-navy);
  font-weight: 700;
  font-size: 1rem;
}

/* データセル */
.lc-data-table td {
  color: var(--c-text);
  line-height: 1.5;
}

/* 偶数行を少し色付けして読みやすく（ゼブラストライプ） */
.lc-data-table tbody tr:nth-child(even) td {
  background-color: #fcfcfc;
}

/* 318Uサブセクション */
.lc-sub-spec {
  margin-top: 48px;
}
.lc-sub-spec__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: -16px; /* テーブルとの距離感調整 */
  padding-left: 8px;
  border-left: 4px solid var(--c-border);
}

/* ヘルパークラス */
.u-font-mono {
  font-family: var(--font-mono); /* 数字等幅 */
}
.u-font-bold {
  font-weight: 700;
  color: var(--c-navy);
}
.u-unit {
  font-size: 0.8em;
  color: var(--c-muted);
  font-weight: normal;
}
.u-text-sub {
  color: #ccc;
}

/* アクションエリア */
.lc-action-area {
  margin-top: 48px;
  text-align: center;
}
.lc-btn-primary {
  display: inline-block;
  background: var(--c-navy);
  color: #fff;
  padding: 16px 48px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(14, 47, 71, 0.2);
}
.lc-btn-primary:hover {
  color: #fff;
  text-decoration: none;
  background: var(--c-link);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(14, 47, 71, 0.25);
}

/* =========================================================
   Lower Common Components (lc-*) - Extended
   ========================================================= */

/* Background Helpers */
.bg-blue-light {
  background: #eaf6fd;
}

.lc-lead-center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

/* 2 Column Layout */
.lc-two-col {
  display: flex;
  gap: 40px;
  align-items: center;
}
.lc-two-col__content {
  flex: 1;
}
.lc-two-col__media {
  flex: 0 0 360px;
  text-align: center;
}
.lc-two-col__media img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .lc-two-col {
    flex-direction: column-reverse;
  }
  .lc-two-col__media {
    flex: none;
    max-width: 320px;
    margin: 0 auto 16px;
  }
}

/* --- Tech Split Layout (New 2-Column) --- */
.lc-tech-split {
  display: flex;
  gap: 48px; /* 余白を少し広げてゆったりと */
  align-items: center;
  justify-content: space-between;
}

.lc-tech-split__content {
  flex: 1;
  max-width: 600px; /* テキストが横に伸びすぎないように */
}

.lc-tech-split__media {
  flex: 0 0 45%; /* 画像エリアの比率 */
  max-width: 500px;
}

/* --- Content Styling --- */
.lc-label-tech {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-link);
  background: rgba(22, 93, 134, 0.1);
  padding: 4px 10px;
  border-radius: 99px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lc-tech-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--c-text);
  margin-bottom: 32px;
}

/* --- Intro Text Adjustment --- */
.lc-tech-intro {
  margin-bottom: 32px;
}
.lc-tech-intro p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--c-text);
}
.lc-tech-intro strong {
  color: var(--c-navy);
  background: linear-gradient(
    transparent 60%,
    rgba(22, 93, 134, 0.1) 60%
  ); /* マーカー風装飾 */
}

/* --- Process List (Step by Step) --- */
.lc-process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lc-process-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--c-border); /* テクニカルな破線区切り */
}
.lc-process-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Number Circle */
.lc-process-num {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  background: var(--c-navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(
    --font-mono,
    sans-serif
  ); /* あれば等幅フォント、なければsans */
  margin-top: 2px;
}

/* Text Area */
.lc-process-text strong {
  display: block;
  font-size: 1rem;
  color: var(--c-navy);
  margin-bottom: 4px;
}
.lc-process-text p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--c-muted);
  line-height: 1.5;
}

/* スマホ対応調整 */
@media (max-width: 768px) {
  .lc-tech-split {
    flex-direction: column; /* スマホでは図解を下に（または上に） */
  }
  .lc-tech-split__media {
    max-width: 100%;
    margin-top: 24px;
  }
}

/* --- Temperature Compare Box (Key Feature) --- */
.lc-temp-compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.lc-temp-item {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  transition: transform 0.3s ease;
}

/* 低温タイプ（主役）のデザイン */
.lc-temp-item--low {
  border-color: var(--c-link);
  box-shadow: 0 4px 12px rgba(22, 93, 134, 0.1); /* 青い影で強調 */
  background: linear-gradient(to right, #fff, #fafdff);
}
.lc-temp-item--low::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--c-link);
  border-radius: 4px 0 0 4px;
}

/* 高温タイプ（比較対象）のデザイン */
.lc-temp-item--high {
  background: var(--c-gray); /* 背景をグレーにして「従来品」感を出す */
  border-style: dashed; /* 破線にして控えめに */
  opacity: 0.8;
}

.lc-temp-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-muted);
  margin-bottom: 4px;
  display: block;
}

/* 温度の数値デザイン */
.lc-temp-value {
  font-family: var(--font-mono); /* 等幅フォントでテック感 */
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.lc-temp-value .num {
  font-size: 2.2rem;
  letter-spacing: -0.02em;
}
.lc-temp-value .range {
  font-size: 1.2rem;
  color: var(--c-muted);
  margin: 0 4px;
}
.lc-temp-value .unit {
  font-size: 1rem;
  margin-left: 2px;
}

/* 補足ノート（メリット） */
.lc-temp-note {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-link);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lc-temp-note::before {
  content: "✔"; /* 簡易的なチェックマーク */
  font-size: 1.1em;
}

/* --- Media Styling --- */
.lc-tech-figure {
  margin: 0;
  background: #fff;
  padding: 16px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow); /* 共通の影変数を適用 */
  border: 1px solid var(--c-border);
  text-align: center;
}

.lc-tech-figure img {
  max-width: 100%;
  height: auto;
  display: block;
}

.lc-tech-figure figcaption {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--c-muted);
  text-align: right;
}

/* --- Responsive --- */
@media (min-width: 600px) {
  /* タブレット以上なら温度比較を横並びに */
  .lc-temp-compare {
    grid-template-columns: 1.2fr 1fr; /* 低温タイプを少し広く */
    align-items: stretch;
  }

  .lc-temp-value .num {
    font-size: 1.8rem; /* 横並び時は少し小さく調整 */
  }
}

@media (max-width: 768px) {
  .lc-tech-split {
    flex-direction: column-reverse; /* スマホでは図を上に、説明を下に */
    gap: 32px;
  }

  .lc-tech-split__media,
  .lc-tech-split__content {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .lc-temp-compare {
    grid-template-columns: 1fr; /* スマホは縦積み */
  }

  .lc-temp-item {
    padding: 16px;
  }
}

/* --- 共通ヘルパー (必要に応じて) --- */
.lc-grid-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .lc-grid-2col {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}
.sec-title--left {
  text-align: left;
  margin-bottom: 24px;
}
.sec-title--left::after {
  margin-left: 0; /* 下線の左寄せ */
}

/* --- 3. Features Section (Grid & Card) --- */
.lc-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.lc-feature-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 32px 24px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 100%;
}

.lc-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--c-link);
}

.lc-feature-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

/* アイコンを囲むボックス */
.lc-icon-box {
  width: 64px;
  height: 64px;
  background: var(--c-bg-blue); /* 薄い青背景 */
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lc-icon-box img {
  width: 40px;
  height: auto;
}

.lc-feature-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.4;
  margin: 0;
}

.lc-feature-card__text {
  font-size: 0.95rem;
  color: var(--c-muted);
  line-height: 1.7;
}

/* --- 4. Use Cases (Compact Grid) --- */
.lc-usecase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.lc-usecase-card {
  background: #fff;
  border-radius: var(--r-md);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid transparent; /* 透明なボーダーを持たせてガタつき防止 */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.lc-usecase-card:hover {
  box-shadow: var(--elev-2);
  transform: translateY(-2px);
}

.lc-usecase-card__icon {
  width: 48px;
  flex-shrink: 0;
}
.lc-usecase-card__icon img {
  width: 100%;
  height: auto;
}

.lc-usecase-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-navy);
  margin: 0 0 8px;
}
.lc-usecase-card__text {
  font-size: 0.85rem;
  color: var(--c-muted);
  line-height: 1.6;
}

/* --- 5. Differences (Tech Spec List) --- */
.lc-spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 2px solid var(--c-border);
}

.lc-spec-list__item {
  display: flex;
  flex-direction: column; /* スマホは縦積み */
  padding: 16px 0;
  border-bottom: 1px solid var(--c-border);
}

@media (min-width: 576px) {
  .lc-spec-list__item {
    flex-direction: row;
    align-items: baseline;
    gap: 20px;
  }
}

.lc-spec-list__label {
  font-weight: 700;
  color: var(--c-navy);
  min-width: 100px;
  font-size: 0.95rem;
}

.lc-spec-list__value {
  color: var(--c-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* 数値強調用のクラス */
.u-text-navy {
  color: var(--c-navy);
  font-weight: 700;
  margin-right: 12px;
  font-family: "Roboto Mono", monospace; /* 数字をテックっぽく */
}
.u-text-sub {
  color: var(--c-muted);
  font-size: 0.85rem;
}

/* --- 6. Safety (Guide Box) --- */
.lc-safety-box {
  background: #fff;
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-orange); /* 左側にアクセントライン */
  border-radius: var(--r-sm);
  padding: 24px;
}

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

.lc-check-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  line-height: 1.6;
  color: var(--c-text);
  font-size: 0.95rem;
}

.lc-check-list li:last-child {
  margin-bottom: 0;
}

/* チェックマークアイコン */
.lc-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--c-orange); /* 安全色はオレンジを使用 */
  border-bottom: 2px solid var(--c-orange);
  transform: rotate(-45deg);
}

.u-text-alert {
  color: var(--c-orange-d);
  background: rgba(233, 119, 48, 0.1); /* 薄いオレンジ背景 */
  padding: 0 4px;
}

/* Product Cards (Row) */

/* --- 局所的な変数定義（必要に応じて） --- */
.lc-tech-grid {
  /* 数値を技術的に見せるためのフォントスタックのみここで定義 */
  --font-mono: "Roboto Mono", "Menlo", "Courier New", monospace;
}

/* --- グリッドレイアウト --- */
.lc-tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

/* --- カード本体 --- */
.lc-tech-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md); /* 14px */
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* ホバー時の挙動：ブランド定義のシャドウを使用 */
.lc-tech-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow); /* 0 10px 24px rgba... */
  border-color: var(--c-link); /* リンク色でアクティブ感を表現 */
}

.lc-tech-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* --- ビジュアルエリア --- */
.lc-tech-card__visual {
  background-color: var(--c-gray); /* #f6f7f8 */
  padding: 24px;
  position: relative;
  border-bottom: 1px solid var(--c-border);
}

.lc-tech-card__figure {
  margin: 0;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lc-tech-card__figure img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply; /* 薄グレー背景に馴染ませる */
  transition: transform 0.3s ease;
}

.lc-tech-card:hover .lc-tech-card__figure img {
  transform: scale(1.08);
}

/* バッジ：低温対応などのラベル */
.lc-tech-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--c-navy); /* ブランドカラーで引き締める */
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--r-sm); /* 少し小さめの角丸 */
  letter-spacing: 0.05em;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* --- コンテンツエリア --- */
.lc-tech-card__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.lc-tech-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-navy); /* 見出しはネイビーで統一 */
  margin: 0 0 12px;
  line-height: 1.4;
}

.lc-tech-card__desc {
  font-size: 0.9rem;
  color: var(--c-muted); /* 説明文は落ち着いたグレー */
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* --- スペック表（定義リスト） --- */
.lc-tech-card__specs {
  background: var(--c-gray);
  border-radius: var(--r-sm); /* 10px */
  padding: 12px 16px;
  margin-bottom: 20px;
}

.lc-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed var(--c-border); /* 実線ではなく破線でテクニカル感を維持 */
  font-size: 0.85rem;
}

.lc-spec-row:last-child {
  border-bottom: none;
}

.lc-spec-row dt {
  color: var(--c-muted);
  font-weight: 600;
}

.lc-spec-row dd {
  color: var(--c-text); /* #222 */
  font-weight: 700;
  font-family: var(--font-mono); /* 数値強調 */
}

/* --- フッター / アクション --- */
.lc-tech-card__footer {
  text-align: right;
  margin-top: auto;
}

.lc-btn-arrow {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-link); /* リンク色 */
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease, gap 0.2s ease;
}

.lc-tech-card:hover .lc-btn-arrow {
  color: var(--c-link-hov); /* ホバー色 */
  gap: 12px;
}

/* 矢印アイコン（CSS生成） */
.lc-btn-arrow::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px; /* 位置微調整 */
}

/* --- スマホ対応（微調整） --- */
@media (max-width: 768px) {
  .lc-tech-grid {
    gap: 20px;
  }
  .lc-tech-card__visual,
  .lc-tech-card__content {
    padding: 20px;
  }
}

/* --- 3. Features (4 Column Adjustment) --- */

/* 基本のlc-feature-gridは repeat(auto-fit, minmax(260px, 1fr)) ですが、
   4つの要素をきれいに並べるためのバリエーションクラスを作成 */
.lc-feature-grid--4col {
  grid-template-columns: repeat(4, 1fr);
}

/* レスポンシブ対応: 画面が狭くなったら自動で折り返す */
@media (max-width: 1100px) {
  .lc-feature-grid--4col {
    grid-template-columns: repeat(2, 1fr); /* タブレットは2列 */
  }
}
@media (max-width: 600px) {
  .lc-feature-grid--4col {
    grid-template-columns: 1fr; /* スマホは1列 */
  }
}

/* --- Visual Tweaks for PUR --- */
/* 仕組み図の調整：図解を見やすく */
.lc-tech-figure {
  background: #fff;
  padding: 16px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow);
  border: 1px solid var(--c-border);
  text-align: center;
}
.lc-tech-figure img {
  max-width: 100%;
  height: auto;
}
.lc-tech-figure figcaption {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--c-muted);
  text-align: right;
}

/* ヒーローエリアのSVG配置調整（もしSVGを使う場合） */
.lc-hero-visual svg {
  width: 100%;
  height: auto;
  max-height: 400px;
  /* 影をつけて浮かせる */
  filter: drop-shadow(0 10px 20px rgba(14, 47, 71, 0.1));
}

/* --- System Wrapper (Layout) --- */
.lc-system-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

/* PC以上で2カラム化 */
@media (min-width: 992px) {
  .lc-system-wrapper {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }
}

/* --- Labels --- */
.lc-system-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-muted);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lc-system-label::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: var(--c-border);
}

/* --- Left Column: Main Gun --- */
.lc-system-main {
  flex: 0 0 40%; /* 左側 40% */
  width: 100%;
}

/* 既存のカードを少しカスタムして高さを埋める */
.lc-tech-card--hero {
  height: 100%; /* 親要素いっぱいに伸ばす */
  border-color: var(--c-navy); /* メイン感を出すため枠線をネイビーに */
  box-shadow: 0 8px 24px rgba(14, 47, 71, 0.08);
}
/* 画像を少し大きく見せる */
.lc-tech-card--hero .lc-tech-card__figure {
  aspect-ratio: 4 / 3;
}

/* --- Right Column: Accessories --- */
.lc-system-sub {
  flex: 1; /* 残りのスペース */
  width: 100%;
}

.lc-acc-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* アクセサリーカードのデザイン */
.lc-acc-card {
  display: flex;
  align-items: center; /* 縦方向中央揃え */
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 16px;
  gap: 20px;
  transition: all 0.3s ease;
}

.lc-acc-card:hover {
  border-color: var(--c-link);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transform: translateX(4px); /* 右に少し動くインタラクション */
}

.lc-acc-card__img {
  flex: 0 0 100px; /* 画像幅固定 */
  width: 100px;
  height: 80px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
}

.lc-acc-card__img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.lc-acc-card__body {
  flex: 1;
}

.lc-acc-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  margin: 0 0 6px;
}

.lc-acc-card__text {
  font-size: 0.85rem;
  color: var(--c-muted);
  line-height: 1.5;
  margin: 0;
}

.u-text-muted {
  display: block;
  margin-top: 4px;
  font-size: 0.8em;
  color: #999;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .lc-acc-card {
    flex-direction: column; /* スマホでは縦積みに */
    align-items: flex-start;
    text-align: left;
  }
  .lc-acc-card__img {
    width: 100%;
    height: 140px;
    flex: none;
  }
}

/* --- ブラッシュアップ用 CSS --- */

/* 3. アクセサリーカード（右）の画像をクリアに見せる */
.lc-acc-card__img {
  background: #fff; /* 背景を白にして清潔感を出す */
  border: 1px solid var(--c-border); /* 薄い枠線で囲む */
  padding: 4px; /* 内側にわずかな余白 */
  flex: 0 0 110px; /* 画像エリアを少し拡大 */
  width: 110px;
  height: 90px;
}

/* テキストの行間を微調整して読みやすく */
.lc-acc-card__title {
  margin-bottom: 8px;
  color: var(--c-navy);
}
