@charset "UTF-8";

/* copy right 表示 */
footer .copySection p:nth-child(2) {
    display:none !important;
}

/* 通常のボタン 01 */
.btn01 {
    width: 100px;
    height: 32px;
    background-color: #008000;
    border-radius: 5px;
	color: #FFFFFF;
}

/* 通常のボタン 02 */
.btn02 {
  width: 120px;
  height: 32px;
  background-color: #008000;
  border-radius: 5px;
color: #FFFFFF;
}

/* 通常のボタン 03 */
.btn03 {
  width: 50px;
  height: 24px;
  background-color: rgba(128, 128, 128, 0.363);
  border-radius: 5px;
color: #000;
}

/* 中央寄せ */
.text_center01 {
    border: 1px solid #aaa;
    width: 400px;
    text-align: center;  
}

.text_center02 {
    width: 100%;
    text-align: center;  
}

/************* table.log *************/
table.log{
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
  
table.log th{
    border-spacing: 1;
    padding: 2px 0;
    text-align: center;
}
  
table.log td{
    padding: 2px 0;
    text-align: center;
}

table.log tr:nth-child(even){
    background-color: #cccccc
}

table.log tr:nth-child(odd){
    background-color: #ffffff
}

/************* table.devlist *************/
table.devlist{
    width: 100%;
    border-collapse: collapse;
    border-spacing: 2px;
    background-color: #ffffff;
}
  
table.devlist th{
    padding: 3px 2px;
    text-align: center;
}

table.devlist td{
    padding: 3px 6px;
    text-align: left;
}


/* リストによる表組 */
ul.lst {
	list-style: none;
	display: table;
	margin: 0;
	padding: 0;
	width: 100%;
}

li.lst0 {
	display: table-cell;
	width: 5em;
	text-align: left;
	vertical-align: middle;
	background: #FFFFFF;
}
li.lst1 {
	display: table-cell;
	text-align: left;
	vertical-align: middle;
	background: #FFFFFF;
}

/* slide sw (checkbox) */
 /* === ボタンを表示するエリア ============================== */
 .switchArea {
    line-height    : 15px;                /* 1行の高さ          */
    letter-spacing : 0;                   /* 文字間             */
    text-align     : center;              /* 文字位置は中央     */
    font-size      : 10px;                /* 文字サイズ         */
  
    position       : relative;            /* 親要素が基点       */
    margin         : auto;                /* 中央寄せ           */
    width          : 50px;               /* ボタンの横幅       */
    background     : #fff;                /* デフォルト背景色   */
  }
    
   /* === チェックボックス ==================================== */
  .switchArea input[type="checkbox"] {
    display        : none;            /* チェックボックス非表示 */
  }
  
   /* === チェックボックスのラベル（標準） ==================== */
  .switchArea label {
    display        : block;               /* ボックス要素に変更 */
    box-sizing     : border-box;          /* 枠線を含んだサイズ */
    height         : 20px;                /* ボタンの高さ       */
    border         : 2px solid #999999;   /* 未選択タブのの枠線 */
    border-radius  : 9px;                /* 角丸               */
  }
  
   /* === チェックボックスのラベル（ONのとき） ================ */
  .switchArea input[type="checkbox"]:checked +label {
    border-color   : #007fff;             /* 選択タブの枠線     */
  }
  
   /* === 表示する文字（標準） ================================ */
  .switchArea label span:after{
    content        : "OFF";               /* 表示する文字       */
    padding        : 0 0 0 10px;          /* 表示する位置       */
    color          : #999999;             /* 文字色             */
  }
  
   /* === 表示する文字（ONのとき） ============================ */
  .switchArea  input[type="checkbox"]:checked + label span:after{
    content        : "ON";                /* 表示する文字       */
    padding        : 0 10px 0 0;          /* 表示する位置       */
    color          : #007fff;             /* 文字色             */
  }
  
   /* === 丸部分のSTYLE（標準） =============================== */
  .switchArea #swImg {
    position       : absolute;            /* 親要素からの相対位置*/
    width          : 10px;                /* 丸の横幅           */
    height         : 10px;                /* 丸の高さ           */
    background     : #999999;             /* カーソルタブの背景 */
    top            : 5px;                 /* 親要素からの位置   */
    left           : 4px;                 /* 親要素からの位置   */
    border-radius  : 5px;                /* 角丸               */
    transition     : .2s;                 /* 滑らか変化         */
  }
  
   /* === 丸部分のSTYLE（ONのとき） =========================== */
  .switchArea input[type="checkbox"]:checked ~ #swImg {
    transform      : translateX(32px);    /* 丸も右へ移動       */
    background     : #007fff;             /* カーソルタブの背景 */
  }
