@charset "utf-8";
html {
 overflow-y: scroll;
}

table.cal {
    border-spacing: 0;
    border-collapse: collapse;
    color: #555;	
    width: 100%;
}
.cal th {
    background-color: #f5f5f5;
    text-align: center;
    padding: 10px 0 10px 6px;
    border-top: 1px solid #aaa;
}
.cal td{
    text-align: center;
    border-top: 1px solid #aaa;
    padding: 10px 0 10px 6px;
}
.sun {
    color: #cc0000;
}
.sat {
    color: #0000cc;
}
.balloonoya {
    position   : relative;             /* 指定した分だけ相対的に移動 */
    cursor   : pointer;                /* カーソルをポインターで表示 */
    z-index: 99;
  }
  .balloon1 {
    display: none;                     /* 要素を非表示 */
    z-index: 99;
  }
  .balloon {
    border: #0000cc solid 1px;
    position: absolute;                   /* 親要素を基準 */
    display: inline;                      /* 要素をインラインとして表示 */
    padding: 10px;                         /* テキストの前後の余白 */
    background-color: #ffffff;       /* 背景色（透明度） */
    width:360px;                          /* 吹き出し全体の幅 */
    left : -200%;                           /* 表示位置 */
    bottom : 100%;                        /* 表示位置 */
    margin-bottom : 12px;                 /* 表示位置 */
    font-size: 80%;                       /* 文字サイズ */
    z-index: 99;
  }
  .balloon:after{
    content: "";
    position: absolute;
    bottom: -8px;
    left: 15%;
    width: 15px;
    height: 15px;
    box-sizing: border-box;
    border: 1px solid;
    background-color: #ffffff;
    border-color: #0000cc #0000cc transparent transparent;
    rotate: 135deg;
    translate: -50%;
  }