/*
    html要素にはデフォルトで有効なマージンがあるので、削除している。
    この方法は推奨されないので、推奨する方法を後述する。
    https://create.irec.jp/createinmac/css/css03/
*/


/*=============共有部分のスタイル=============*/

*{
    margin:0;
    padding:0;
    font-family: 'osaka','ヒラギノ角ゴシック';
    color:#cccccc;
}
    html { font-size: 25px; }

    iframe {
    border: none;
    height: 99%;
    width: 100%;
    }

  #left {
    position: absolute;
    top: 0rem;
    left: 0rem;
    width: 8.16rem;
    height: 100%;
    text-align: center;
    }

  #right{
    position: absolute;
    top: 0rem;
    right:0rem;
    left: 8.16rem;
    height: 100%;
    border-left: 0rem solid #0;

    }





