/* サンプルコンボ表の共通スタイル */
.t8sc-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
  table-layout: fixed; /* ← これで幅を固定化 */
}

.t8sc-table td {
  border: 1px solid #ccc;
  padding: 6px;
  vertical-align: top;
  word-break: break-word; /* 長すぎるコマンドも折り返す */
}

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

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

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


/* 補足ラベルセル */
.t8sc-table .memo-label {
  text-align: center;     /* 横中央 */
  vertical-align: middle; /* 縦中央 */
  background: none;       /* 背景色なし */
  font-size: 14px;
  text-align: center;
  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;
}

/* --- コンボ表 --- */
.t8sc-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 25px;
}
.t8sc-table td {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px;
  color: #eee;
}
.t8sc-table .combo {
  font-weight: bold;
  color: #ff7777; /* コンボは赤系 */
}
.t8sc-table .command {
  font-family: monospace;
  background: rgba(255,255,255,0.08);
  padding: 6px;
  border-radius: 4px;
  color: #fff;
}
.t8sc-table .damage {
  color: #00d4ff; /* ダメージは水色系で映える */
  font-weight: bold;
}
.t8sc-table .difficulty {
  color: #aaa;
  font-style: italic;
}



.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}









/* ===================================
   サンプルコンボ表示用スタイル
   ファイル: /css/samplecombo.css
   =================================== */

.samplecombo_intro {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 1.5em;
}

.samplecombo_video {
  max-width: 560px;      /* 最大幅を制限（例：PC用） */
  margin: 1em auto;      /* 上下余白を付け中央寄せ */
  width: 100%;           /* スマホ対応で100%幅に */
}

.samplecombo_video iframe {
  width: 100%;           /* 横幅100% */
  height: 315px;         /* 高さは16:9比率 */
  max-width: 100%;
  border: none;
}

.samplecombo_s2_hosoku {
    font-size: 14px;

}


.samplecombo_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2em;
}


/* コンボ番号 */
.combo {
  font-size: 14px;
  text-align: center;
  font-weight: bold;
  padding: 8px;
}

/* ダメージ表示 */
.damage {
  font-size: 14px;
  text-align: center;
  padding: 8px;
}

/* 難易度表示 */
.difficulty {
  font-size: 14px;
  text-align: center;
  padding: 8px;
}




/* コマンド表示（右の大きい欄） */
.command {
  font-size: 16px;
  line-height: 1.6;
  padding: 12px;
}

/* 補足情報（.hosoku）にも対応 */
.hosoku {
  font-size: 14px;
  line-height: 1.7;
  border-left: 4px solid #0073aa;
  padding: 10px 15px;
  margin: 1.5em 0;
  border-radius: 5px;
}
