@charset "utf-8";

  /* =====================
     リセット・ベース
  ===================== */
  .page *, .page *::before, .page *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #2e2b28;
  }

  /* =====================
     カラー変数
  ===================== */
  :root {
    --color-bg-page:            #fff;
    --color-bg-header:          #e8ecee;
    --color-bg-row-even:        #f4f6f7;
    --color-border:             #cdd3d7;
    --color-border-accent:      #7a9aaa;
    --color-text-main:          #252b2e;
    --color-text-muted:         #4a6070;
    --color-placeholder:        #dde3e7;
    --color-placeholder-border: #bec8ce;
    --color-placeholder-text:   #6a8090;
  }

  /* =====================
     ページラッパー
  ===================== */
  .page {
    max-width: 666px;
    margin: 0 auto;
    padding: 24px 16px 40px;
  }

  /* =====================
     キャッチ画像
  ===================== */
  .catch-image {
    width: 100%;
    background: #dde3e7;
    border-radius: 8px;
    display: flex;
    flex-direction: column;  /* 縦並び */
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    color: #6a8090;
    margin-bottom: 0px;
    overflow: hidden;
  }

  .catch-image img {
    width: 100%;
    height: auto;      /* 画像の縦横比をそのまま保持 */
    display: block;    /* 画像間の隙間をなくす */
    object-fit: unset; /* containやcoverではなく自然なサイズに */
  }

  /* =====================
     セクション共通
  ===================== */
  .section {
    margin-bottom: 32px;
    background: #fff !important;
  }

  .section + .section {
    border-top: 1px solid var(--color-border);
    padding-top: 28px;
  }

  .section-heading {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-muted);
    background: var(--color-bg-header);
    border-left: 3px solid var(--color-border-accent);
    padding: 8px 14px;
    border-radius: 0 4px 4px 0;
    margin-bottom: 14px;
　letter-spacing: 0.1em;
  }

  /* =====================
     画像グリッド
  ===================== */
  .img-grid {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
  }

  .img-grid--3col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .img-placeholder {
    background: var(--color-placeholder);
    border: 1px solid var(--color-placeholder-border);
    border-radius: 4px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-placeholder-text);
    overflow: hidden;
  }

  .img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  /* =====================
     スペック表
  ===================== */
  .spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
  }

  .spec-table tr {
    border-bottom: 1px solid var(--color-border);
  }

  .spec-table tr:last-child {
    border-bottom: none;
  }

  .spec-table th {
    background: var(--color-bg-header);
    color: var(--color-text-muted);
    font-weight: 500;
    text-align: center;
    padding: 8px 12px;
    width: 18%;
    vertical-align: top;
    white-space: nowrap;
  }

  .spec-table td {
    padding: 8px 12px;
    color: var(--color-text-main);
    vertical-align: top;
  }

  .spec-table tr:nth-child(even) td {
    background: var(--color-bg-row-even);
  }

  /* =====================
     スマホ対応（480px以下）
  ===================== */
  @media (max-width: 480px) {

    .page {
      padding: 16px 12px 32px;
    }

    /* スペック表：th を上・td を下に縦積み */
    .spec-table,
    .spec-table tbody,
    .spec-table tr,
    .spec-table th,
    .spec-table td {
      display: block;
      width: 100%;
    }

    .spec-table tr {
      border-bottom: 1px solid var(--color-border);
    }

    .spec-table tr:last-child {
      border-bottom: none;
    }

    .spec-table th {
      text-align: left;
      white-space: normal;
      padding: 6px 12px 2px;
      width: 100%;
      border-bottom: none;
      background: var(--color-bg-header) !important;
    }

    .spec-table td {
      padding: 2px 12px 8px;
      background: #fff !important;
    }

    /* 偶数行の縞はスマホでは無効化 */
    .spec-table tr:nth-child(even) td {
      background: #fff !important;
    }

    .spec-table tr:nth-child(even) th {
      background: var(--color-bg-header) !important;
    }
  }
