/* -----------------------------------------------------------------
 マニュアル　ダウンロード
 ----------------------------------------------------------------- */
@charset "euc-jp";

  /* ベーススタイル */
  body {
    margin: 0;
    font-family: 'Noto Sans JP', 'Yu Gothic', sans-serif;
    background-color: #fff;
    color: #333;
  }

  /* ヘッダーフレーム */
  .frame-header {
    width: 100%;
    height: 120px;
    overflow: auto;
  }

  /* フッターフレーム */
  .frame-footer {
    width: 100%;
    height: 100px;
    overflow: auto;
  }

  .container {
    display: flex;
    flex-direction: row;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
  }

  /* 車種別資料メニュー */
  nav.tbl_menu {
    flex: 0 0 200px;
    padding: 16px;
    background-color: #f9f9f9;
    border-right: 1px solid #ccc;
  }

  nav.tbl_menu a {
    display: block;
    margin-bottom: 12px;
  }

  nav.tbl_menu img {
    width: 100%;
    height: auto;
    display: block;
/*
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
*/
    transition: transform 0.2s ease;
  }

  nav.tbl_menu a:hover img {
    transform: scale(1.03);
  }

  main {
    flex: 1;
    padding: 16px;
  }

  /* フッター */
  footer {
    background-color: #fff;
    padding: 16px;
    text-align: center;
    font-size: 0.9em;
    color: #666;
  }

  /* トップへ戻るリンク */
  .toplink {
    text-align: left;
    margin-bottom: 20px;
  }

  /* ページ全体のタイトル */
  h1.title-page {
    font-size: 2.4em;
    font-weight: bold;
    color: #009933;
    text-align: center;
    margin: 10px 0 10px;
    border-bottom: 2px solid #009933;
    padding-bottom: 10px;
  }

  /* カテゴリタイトル */
  h2.title-cat {
    font-size: 1.6em;
    font-weight: bold;
    background: #444;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    margin: 10px 0 10px;
    letter-spacing: 1px;
  }

  /* 商品名タイトル */
  h3.title-prd {
    color:#009933;
    font-size:1.6em;
    font-weight: bold;
    text-align:center;
    margin: 10px 0 10px;
  }

  /* 注意書きフレーム */
  .frame-notes {
    width: 100%;
    height: 170px;
    overflow: auto;
  }


  /* セクション */
  .section {
    margin-bottom: 60px;
    font-size: 1.2em;
    font-family: 'Noto Sans JP', 'Yu Gothic', sans-serif;
  }

  /* 取説テーブル */
  .torisetsu-tbl {
    width: 100%;
    border-collapse: collapse;
  }
  .torisetsu-tbl th,
  .torisetsu-tbl td {
    border: 1px solid #ccc;
    padding: 8px 12px;
    text-align: left;
  }
  .torisetsu-tbl th {
    background-color: #f2f2f2;
    text-align: center;
  }
  .torisetsu-tbl td.trcode {
    text-align: center;
  }


  /* 最新バージョン */
  .newversion {
    font-weight: bold;
  }

  /* 旧バージョン表示 */
  .toggle-button {
    background-color: #009933;
    color: white;
    border: none;
    padding: 6px 12px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 5px;
  }
  .toggle-button:hover {
    background-color: #007a29;
  }
  .hidden {
    display: none;
    margin-top: 8px;
  }
  .version {
    line-height: 1.6;
    margin-left: 10px;
  }




  /* スマホ対応 */
  @media screen and (max-width: 769px) {

    /* 表示順変更 ↓ */
    body {
      display: flex;
      flex-direction: column;
    }

    nav.tbl_menu {
      order: 2;
    }

    main {
      order: 1;
    }
    /* 表示順変更 ↑ */

    .container {
      flex-direction: column;
      padding: 0 12px;
    }

    nav.tbl_menu {
      display: flex;
      flex-wrap: wrap;
      justify-content: left;
      gap: 12px;
      padding: 12px;
      border-right: none;
      border-top: 1px solid #ccc;
      border-bottom: 1px solid #ccc;
    }

    nav.tbl_menu a {
      flex: 0 0 calc(50% - 12px);
      box-sizing: border-box;
    }

    main {
      padding: 12px;
    }

    h1.title-page {
      font-size: 1.8em;
    }

    h2.title-cat {
      font-size: 1.2em;
    }

    h3.title-prd {
      font-size:1.2em;
    }


  }
