.prt-table {
  margin: 24px 0;
  font-family: 
    "M PLUS Rounded 1c",
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic Medium",
    "Meiryo",
    sans-serif;
  font-size: 15.5px;
  line-height: 1.65;
  color: #222;
  letter-spacing: 0.2px;
}


.prt-title {
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 14px;
  color: #fff;
  background: linear-gradient(90deg, #3b4cca, #2a2e8a);
  padding: 10px 14px;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  letter-spacing: 0.3px;
}

.prt-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid #dce1f0;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.prt-table th {
  background: #f0f3fa; /* 落ち着いたブルーグレー */
  text-align: left;
  padding: 10px 14px;
  font-weight: 600;
  border-bottom: 1px solid #d6dbea;
  width: 28%;
  color: #2b2b2b;
  font-size: 0.95em;
}

.prt-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
  font-size: 0.95em;
}

.prt-table tr:nth-child(even) td {
  background: #fafbfe;
}

@media (max-width: 600px) {
  .prt-table table, 
  .prt-table tr, 
  .prt-table th, 
  .prt-table td {
    display: block;
    width: 100%;
  }
  .prt-table th {
    background: transparent;
    color: #3b4cca;
    border: none;
    font-size: 0.9em;
    padding: 6px 0 2px;
  }
  .prt-table td {
    padding: 6px 0 12px;
    border: none;
    border-bottom: 1px solid #eee;
  }
  .prt-table tr {
    margin-bottom: 12px;
    border: none;
  }
}

.prt-icon {
  width: 28px;
  height: 28px;
  vertical-align: middle;
  margin-right: 6px;
}

.prt-highlight {
  font-weight: bold;
  color: #fff;
  background: linear-gradient(90deg, #ff66b2, #ff99cc);
  padding: 3px 8px;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(255, 102, 178, 0.4);
}

/* ステータスブロックの基本レイアウト */
.prt-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
  margin-top: 4px;
}

.prt-stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60px;
  padding: 6px 0;
 /*border-radius: 8px;*/
  /*background: #f4f6fc;*/
  /*box-shadow: inset 0 0 3px rgba(0,0,0,0.08);*/
  font-weight: 600;
}

.prt-stat-real {
  /*background: #fff7e6;*/ /* 実数値は少し暖色トーンで区別 */
  /*box-shadow: inset 0 0 3px rgba(255,200,100,0.4);*/
}

.prt-stat-label {
  font-size: 0.8em;
  color: #3b4cca;
  margin-bottom: 2px;
}

.prt-stat-value {
  font-size: 1.1em;
  color: #222;
}

@media (max-width: 600px) {
  .prt-stats {
    justify-content: space-between;
  }
  .prt-stat-block {
    width: 16%;
  }
}

/* 性格補正：上昇・下降色 */
.prt-stat-up {
  background: #ffe0e0; /* 淡い赤背景 */
  border: 1px solid #ff7b7b;
  color: #c00;
}

.prt-stat-down {
  background: #e6f0ff; /* 淡い青背景 */
  border: 1px solid #7baaff;
  color: #0040c0;
}

/* --- 技構成スタイル --- */
.prt-moves {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.prt-move-card {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f7f9ff;
  border: 1px solid #d6defa;
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 0.95em;
  line-height: 1.3;
  transition: 0.2s;
}

.prt-move-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.prt-move-name {
  font-weight: 600;
}

.prt-move-cat {
  font-size: 0.8em;
  color: #555;
  opacity: 0.8;
}

/* ハイライト技 */
.prt-highlight-move {
  border-color: #ff88b7;
  background: linear-gradient(90deg, #ffe4ec, #fff8fb);
}

/* --- タイプタグの色分け（例示） --- */
.prt-type-tag {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.8em;
  font-weight: 600;
  color: #fff;
  text-transform: capitalize;
}

/* --- 性格バッジスタイル --- */
.prt-nature {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.prt-nature-name {
  font-weight: 700;
  font-size: 1.05em;
  /*background: #f2f5ff;*/
  padding: 4px 10px;
  border-radius: 6px;
  /*border: 1px solid #ccd3f5;*/
}

.prt-nature-effect {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.prt-nature-up {
  background: #ffebeb;
  color: #d60000;
  border: 1px solid #ff7b7b;
  border-radius: 4px;
  padding: 2px 6px;
}

.prt-nature-down {
  background: #eaf2ff;
  color: #0040c0;
  border: 1px solid #7baaff;
  border-radius: 4px;
  padding: 2px 6px;
}

.prt-nature-neutral {
  color: #666;
  font-size: 0.9em;
  opacity: 0.8;
}


.type-ノーマル { background: #a8a77a; }
.type-ほのお { background: #ee8130; }
.type-みず { background: #6390f0; }
.type-くさ { background: #7ac74c; }
.type-でんき { background: #f7d02c; color: #333; }
.type-こおり { background: #96d9d6; color: #333; }
.type-かくとう { background: #c22e28; }
.type-どく { background: #a33ea1; }
.type-じめん { background: #e2bf65; color: #333; }
.type-ひこう { background: #a98ff3; }
.type-エスパー { background: #f95587; }
.type-むし { background: #a6b91a; }
.type-いわ { background: #b6a136; color: #333; }
.type-ゴースト { background: #735797; }
.type-ドラゴン { background: #6f35fc; }
.type-あく { background: #705746; }
.type-はがね { background: #b7b7ce; color: #333; }
.type-フェアリー { background: #d685ad; }