/* ページ全体のスタイル */
body {

    font-family: Arial, sans-serif; /* ページ全体のフォントを設定 */
    background-color: #f2f4f2; /* 背景色を設定 */
}

/* タイトルのスタイル */
.page-title {
    font-size: 30px; /* 例として適切なサイズを設定 */
    color: #0e12e5; /* タイトルの文字色を設定 */
}

/* メインコンテンツのスタイル */
#barChart {
    position: absolute;
    left:50px;
    width: 500px;
    height: 500px;
    margin: 20px auto;
}

#barChart2 {
    position: relative;
        left:650px; 
        width: 500px;
        height: 500px;
        margin: 20px auto;
}

#table-container{
    position: fixed;
    /* position: relative;  */
    top: 230px;
    left:1230px; 
    width: 500px;
    height: 500px;
    margin: 20px auto;
}

#barChart3 {
    position: absolute;
    left:50px;
    width: 500px;
    height: 500px;
    margin: 20px auto;
}

#barChart4 {
    position: relative;
        left:650px; 
        width: 500px;
        height: 500px;
        margin: 20px auto;
}

#barChart5 {
    position: absolute;
    left:375px;
    width: 500px;
    height: 500px;
    margin: 20px auto;
}

#loading {
    display: table;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    opacity: 0.8;
     }
    
     #loading .loadingMsg {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    padding-top: 140px;
    background: url("image/load-earth.gif") center center no-repeat;
     } 

#table-container1{
    position: relative;
    /* position: relative;  */
    left:50px; 
    width: 500px;
    height: 500px;
    margin: 20px auto;
}

/* ボタンのスタイル */
.t_area1 {
    /*background-color: #eff2f4;  ボタンの背景色を設定 */
    /*color: #fff;  ボタンの文字色を設定 */
    /*padding: 10px 20px; /* ボタンの内側の余白を設定 */
    position: relative;
    border-style:red; /* ボタンの枠線をなくす */
    border-radius: 3px; /* ボタンの角を丸める */
    /*cursor: pointer; /* マウスカーソルをポインターに変更する */
}