/* ホバー無効化：テーブル要素にカーソルを乗せても変化しない */
tr:hover,
td:hover,
th:hover {
  background-color: inherit !important;
  color: inherit !important;
  cursor: default !important;
}

/* ホバー時の見た目を完全に固定 */
tr:hover, td:hover, th:hover {
  background-color: #f5fdf6 !important;  /* 通常背景色を明示 */
  color: #1f4d1f !important;             /* 通常文字色を明示 */
  cursor: default !important;
}

/* すべてのホバー効果を徹底無効化：列も個別に対応 */
tr:hover, td:hover, th:hover,
table tr:hover td,
table tr:hover th {
  background-color: #f5fdf6 !important; /* 通常背景色で固定 */
  color: #1f4d1f !important;            /* 通常文字色で固定 */
  cursor: default !important;
}


/* コンテナを1カラムにする */

#main_con .block1,#main_con .block2{
display:block;
width:100%;
}
#main_con .block2{/*rightbox*/
padding-left:0%;
}