/* ============================
   製品詳細ページ 共通レイアウト
============================ */

/* 本文幅を1200pxに統一 */
.product-detail-page #contents,
.product-detail-page #contents2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================
   セクションタイトル
============================ */
.section-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 40px 0 20px;
  padding-left: 14px;
  border-left: 6px solid #1e90ff;
  color: #333;
}

/* ============================
   表（仕様・材料など）
============================ */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 0.95rem;
  background: #fff;
}

table th, table td {
  border: 1px solid #ddd;
  padding: 10px 12px;
}

table th {
  background: #1e90ff;
  color: #fff;
  font-weight: 600;
  text-align: center;
}

table td {
  background: #fafafa;
}

/* ============================
   注意書き
============================ */
.note-box {
  background: #f5f5f5;
  padding: 15px;
  border-radius: 6px;
  margin: 20px 0;
  line-height: 1.7;
}

/* ============================
   商標表記（1行で右寄せ）
============================ */
.trademark-note {
  text-align: right;
  margin: 15px 0 30px;
  color: #d60000;
  font-weight: bold;
  font-size: 1.2rem;
}

.trademark-note .mark-strong {
  font-size: 1.5rem; /* 商標登録済／特許取得済だけ大きく */
}

/* ============================
   装置写真（中央揃え）
============================ */
.machine-photo {
  text-align: center;
  margin: 30px 0;
}

.machine-photo img {
  max-width: 100%;
  height: auto;
  margin: 0 15px;
}

/* ============================
   YouTube（中央揃え）
============================ */
.youtube-wrap {
  text-align: center;
  margin: 30px 0;
}

.youtube-wrap iframe {
  width: 600px;
  max-width: 100%;
  height: 338px; /* 16:9 */
}
.h3 {
  font-size: 1.1rem;
  line-height: 1.7;
}

.h4 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 20px;
}
.accordion-header {
  cursor: pointer;
  padding: 12px;
  background: #f0f0f0;
  border-left: 4px solid #1e90ff;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.accordion-icon {
  font-size: 22px;
  width: 26px;
  text-align: center;
  color: #1e90ff;   /* ← 青色 */
  font-weight: bold;
  transition: 0.2s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  padding: 0 12px;
}

.accordion-content.open {
  max-height: 3000px; /* 内容に合わせて十分大きく */
  padding: 12px;
}

/* PCでは2列、スマホでは1列 */
.hks5002-cards {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2列 */
  gap: 20px;
}

/* スマホは1列に戻す */
@media (max-width: 768px) {
  .hks5002-cards {
    grid-template-columns: 1fr;
  }
}
.hks-card {
  background: #fff;
  padding: 15px 18px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  border: 1px solid #e0e0e0;
}
.hks-card h3 {
  margin-bottom: 6px;
  color: #333;
}
/* アコーディオン全体の背景を水色に */
.accordion-header,
.accordion-content {
  background: #e8f6ff;
}

/* 開いたときの padding を調整 */
.accordion-content.open {
  padding: 12px;
}
.accordion-close {
  cursor: pointer;
  text-align: right;
  padding: 10px;
  font-weight: bold;
  color: #1e90ff;
  background: #e8f6ff;
}