/*
挙動関係
*/
input[type="checkbox"].bot1CheckBox {
  display: none;
}
 
input[type="checkbox"].bot1CheckBox + div.bot1panel {
  display: none;
}
 
input[type="checkbox"].bot1CheckBox:checked + div.bot1panel {
  display: block;
}
/*
ラジオ
*/
input[type="radio"].bot1RadioBox{
  display: none;
}
 
input[type="radio"].bot1RadioBox + div.rot1panel,input[type="radio"].bot1RadioBox + div.rot2panel,input[type="radio"].bot1RadioBox + div.rot3panel,input[type="radio"].bot1RadioBox + div.rot4panel,input[type="radio"].bot1RadioBox + div.rot5panel,input[type="radio"].bot1RadioBox + div.rot6panel,input[type="radio"].bot1RadioBox + div.rot7panel,input[type="radio"].bot1RadioBox + div.rot8panel,input[type="radio"].bot1RadioBox + div.rot9panel,input[type="radio"].bot1RadioBox + div.rot10panel{
  display: none;
}
 
input[type="radio"].bot1RadioBox:checked + div.rot1panel,input[type="radio"].bot1RadioBox:checked + div.rot2panel,input[type="radio"].bot1RadioBox:checked + div.rot3panel,input[type="radio"].bot1RadioBox:checked + div.rot4panel,input[type="radio"].bot1RadioBox:checked + div.rot5panel,input[type="radio"].bot1RadioBox:checked + div.rot6panel,input[type="radio"].bot1RadioBox:checked + div.rot7panel,input[type="radio"].bot1RadioBox:checked + div.rot8panel,input[type="radio"].bot1RadioBox:checked + div.rot9panel,input[type="radio"].bot1RadioBox:checked + div.rot10panel{
  display: block;
}
/*
スライド
*/
input[type="checkbox"].bot2CheckBox {
  display: none;
}
 
input[type="checkbox"].bot2CheckBox + div.bot2panel {
  display: none;
}
 
input[type="checkbox"].bot2CheckBox:checked + div.bot2panel {
  display: block;
}

 
input[type="checkbox"].bot2CheckBox:checked + div.bot3panel {
  display:none ;
}
 
input[type="checkbox"].bot2CheckBox + div.bot3panel {
  display:block ;
}

/*
cssでのボタン
*/
.bot1top {
   -moz-border-radius:10px 10px 0px 0px;    /* 古いFirefox */
   -webkit-border-radius:10px 10px 0px 0px; /* 古いSafari,Chrome */
   border-radius:10px 10px 0px 0px; 
}