/* ===================================
   サンプルコンボ表 共通スタイル
   =================================== */

/* --- コンボ表 --- */
.t8sc-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0 25px;
  table-layout: fixed;
}

.t8sc-table td {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px;
  color: #eee;
  vertical-align: top;
  word-break: break-word;
}

/* 左カラム（コンボ名・ダメージ・難易度） */
.t8sc-table td:first-child {
  width: 25%;
  text-align: center;
}

/* 右カラム（コマンド） */
.t8sc-table td:last-child {
  width: 75%;
}

/* rowspan のセルを縦中央揃え */
.t8sc-table td[rowspan] {
  vertical-align: middle;
}

/* コンボ番号 */
.t8sc-table .combo {
  font-weight: bold;
  color: #ff7777;
  font-size: 14px;
}

/* ダメージ表示 */
.t8sc-table .damage {
  color: #00d4ff;
  font-weight: bold;
  font-size: 14px;
}

/* 難易度表示 */
.t8sc-table .difficulty {
  color: #aaa;
  font-style: italic;
  font-size: 14px;
}

/* コマンド表示 */
.t8sc-table .command {
  font-family: monospace;
  background: rgba(255,255,255,0.08);
  padding: 6px 12px;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
}

/* --- 補足ラベルセル --- */
.t8sc-table .memo-label {
  text-align: center;
  vertical-align: middle;
  background: none;
  font-size: 14px;
  padding: 8px;
}

/* --- 補足本文セル --- */
.t8sc-table .memo {
  background: none;
  font-size: 16px;
  line-height: 1.6;
  padding: 12px;
}

/* --- 凡例（補足） --- */
.t8sc-legend {
  font-size: 13px;
  margin: 20px 0;
  padding: 6px 10px;
  background: rgba(255,255,255,0.05);
  border-left: 4px solid #ff5555;
  color: #ddd;
  line-height: 1.6;
}
.t8sc-legend p {
  margin: 0;
  padding: 0;
}

/* --- セクション見出し（h2） --- */
.t8sc-h2 {
  font-size: 20px;
  margin: 40px 0 15px;
  padding-bottom: 6px;
  border-bottom: 2px solid #ff5555;
  color: #fff;
}

/* --- 動画埋め込み（黒枠防止 + 最大幅600px） --- */
.t8sc-movie {
  position: relative;
  width: 100%;
  max-width: 600px;     /* 最大幅を600pxに制限 */
  margin: 1em auto;
  aspect-ratio: 16 / 9; /* 16:9を維持 */
}
.t8sc-movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* --- サンプルコンボのイントロ文 --- */
.t8sc-intro {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 1.5em;
}
