﻿/**************************************************/
/* table選択禁止 */
/**************************************************/
table {
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}

/**************************************************/
/* table補足説明PC表示 */
/**************************************************/
.isPc{
display: block;}
.isSp{
display: none;}

/**************************************************/
/* table補足説明SP表示 */
/**************************************************/
@media screen and (max-width: 768px){
.isPc{
 display: none;}
.isSp{
 display: block;}
}
