/******* Do not edit this file *******
Code Snippets Manager
Saved: Dec 18 2025 | 08:26:35 */
@charset "UTF-8";
/* ======================================================
 * t660 関連資料タブ：PC＋スマホ A案（横並び小ボタン）完全版
 * ====================================================== */
/*-----------------------------
  タブ
------------------------------*/
.t660-docs-tablist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 24px;
}
.t660-docs-tab {
  padding: 6px 18px;
  border-radius: 6px;
  background: #e5e5e5;
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 15px;
  line-height: 1.4;
}
.t660-docs-tab.is-active {
  background: #21a05f;
  color: #fff;
  border-color: #0b4c2d;
  font-weight: 600;
}
/*-----------------------------
  パネル表示制御
------------------------------*/
.t660-docs-panel {
  display: none;
}
.t660-docs-panel.is-active {
  display: block;
}
/*-----------------------------
  リスト共通（PCベース）
------------------------------*/
.t660-docs-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.t660-docs-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 8px 20px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 10px;
}
/* アイコン */
.t660-docs-icon img {
  width: 32px;
  height: auto;
  display: block;
}
/* タイトル */
.t660-docs-title {
  flex: 1 1 auto;
  font-size: 16px;
  line-height: 1.5;
  color: #c00000;
}
/* ダウンロードボタン（PC） */
.t660-docs-btn {
  display: inline-block;
  padding: 3px 11px;
  background: #d62828;
  color: #fff !important;
  border-radius: 4px;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 12px;
  white-space: nowrap;
}
.t660-docs-btn:hover {
  opacity: 0.85;
}
/* PC版：ダウンロードボタンを小さく */
@media (min-width: 768px) {
  .t660-docs-btn {
    padding: 3px 10px;
    /* ← 高さ・横幅を両方小さく */
    font-size: 12px;
    /* ← 少し控えめな文字サイズ */
    border-radius: 3px;
    /* ← 四角に近い控えめスタイル */
  }
}
/* ======================================================
 * 📱 スマホ版（A案）
 * アイコン＋タイトル＋右端の小ボタンを1行に並べる
 * ====================================================== */
@media (max-width: 767px) {
  /* 右端に小さめボタン（左余白はギャップのみ） */
  .t660-docs-item {
    padding: 12px 4px 16px;
    margin-bottom: 14px;
    gap: 8px;
    /* アイコン〜タイトル〜ボタンの間隔 */
  }
  .t660-docs-icon img {
    width: 28px;
  }
  .t660-docs-title {
    font-size: 14px;
    line-height: 1.4;
  }
  .t660-docs-btn {
    padding: 4px 10px;
    /* 小さめボタン */
    font-size: 12px;
    border-radius: 4px;
    margin-left: 0;
    /* 不要な左マージンを消す */
  }
}
