/* 職人社長・平松明展 アドバイスパネル 共通スタイル */
.shachou-panel {
  max-width: 1200px; margin: 0 auto 20px;
  display: flex; gap: 16px; align-items: stretch;
  background: linear-gradient(135deg, #0f5132 0%, #196c44 100%);
  border-radius: 14px; padding: 18px 22px;
  box-shadow: 0 5px 18px rgba(15,81,50,0.22);
  color: white; position: relative;
  font-family: -apple-system, "Hiragino Sans", "Yu Gothic UI", sans-serif;
}
.shachou-panel.collapsed { padding: 10px 18px; cursor: pointer; }
.shachou-panel.collapsed .shachou-content,
.shachou-panel.collapsed .shachou-img { display: none; }
.shachou-panel.collapsed .shachou-title-min { display: flex; }
.shachou-title-min {
  display: none; font-size: 13px; font-weight: 700;
  align-items: center; gap: 8px;
}
.shachou-img {
  width: 100px; min-width: 100px; height: 130px;
  background: white; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}
.shachou-img img { width: 100%; height: 100%; object-fit: contain; padding: 5px; }
.shachou-content { flex: 1; min-width: 0; }
.shachou-content .shachou-title {
  font-size: 11px; font-weight: 700; color: #ffd66b;
  margin-bottom: 6px; letter-spacing: 0.5px;
}
.shachou-content .shachou-name {
  font-size: 14px; font-weight: 700; margin-bottom: 6px;
  line-height: 1.4;
}
.shachou-content .shachou-msg {
  font-size: 13px; line-height: 1.7;
}
.shachou-msg strong { color: #ffd66b; font-weight: 700; }
.shachou-msg em {
  background: rgba(255,214,107,0.18); padding: 1px 6px;
  border-radius: 4px; font-style: normal; color: #fff;
  font-weight: 600;
}
.shachou-close {
  position: absolute; top: 8px; right: 10px;
  background: rgba(255,255,255,0.2); color: white;
  border: none; width: 24px; height: 24px;
  border-radius: 50%; cursor: pointer; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  font-weight: bold; z-index: 2;
}
.shachou-close:hover { background: rgba(255,255,255,0.35); }
@media (max-width: 700px) {
  .shachou-panel { flex-direction: column; padding: 14px; }
  .shachou-img { width: 100%; height: 120px; }
}
@media print {
  .shachou-panel { display: none !important; }
}
