/* ================================
   Reset（最低限で十分）
================================ */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

ul { list-style: none; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ================================
   Body 基本設定
================================ */
body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    background: #fff;
    padding: 15px;
}

/* ================================
   見出し（SEO × 視認性）
================================ */
h1 {
    font-size: clamp(1.2rem, 2.6vw, 1.2rem);
    font-weight: 600;
    margin: 1em 0 0.5em;
    line-height: 1.2;
}

h2 {
    font-size: 1.0rem;
    font-weight: 600;
    margin: 1.2em 0 0.6em;
    color: #444;
}

h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1em 0 0.5em;
}

/* ================================
   リンク
================================ */
a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ================================
   共通レイアウト
================================ */
.container {
    max-width: 900px;
    margin: 0 auto;
}

/* ================================
   商品ページ（items.php）
================================ */
.product-title {
    margin-bottom: 5px;
}

.product-meta {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-image {
    margin: 20px 0;
}

.product-description {
    margin: 1em 0;
    font-size: 1.05rem;
}

/* ================================
   メーカー一覧（maker.php）
================================ */
.item-list {
    margin-top: 20px;
}

.item-list li {
    border-bottom: 1px solid #eee;
    padding: 12px 0;
}

.item-list li a {
    font-size: 1.05rem;
    font-weight: 500;
    display: block;
}

/* ================================
   パンくず
================================ */
.breadcrumb {
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.breadcrumb a {
    color: #444;
}

.breadcrumb span {
    color: #999;
}

/* ================================
   フッタ
================================ */
footer {
    text-align: center;
    color: #777;
    font-size: 0.85rem;
    margin-top: 40px;
}

/* ================================
   list.php 用 カード表示
================================ */
.tool-item {
    padding: 15px;
    margin: 15px 0;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background: #fafafa;
}

.tool-item a {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0066cc;
    text-decoration: none;
}

.tool-item a:hover {
    text-decoration: underline;
}

/* 動画タイトル（list内容） */

.tool-item {
    line-height: 1.6;
}

.tool-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.2rem;
}


#chat-box {
  font-size: 12px;      /* ← 好みで 12px / 14px に */
  line-height: 1.6;    /* 読みやすさ維持 */
  white-space: pre-wrap;
}

#chat-box ul {
  padding-left: 18px;
}

