body{
    display: flex;
    flex-direction: column;
}
.header{
    height: 70px;
    text-align: left;
}
.glovalNavigation{
    height: 30px;
    text-align: left;
}
@media screen and (max-width: 1080px) {
    .glovalNavigation{
    height: 40px;
    text-align: left;
    font-size:120%;
    }
  }
main{
    display: flex;
    min-height: 100vh;
    margin: 10px 0 10px 0;
}
.content{
    flex: 1;
    text-align: left;
    margin-right: 10px;
}
.localNavigation{
    text-align: left;
    width: 250px;
    line-height: 200%;
}

@media screen and (max-width: 1080px) {
    .localNavigation{
        display: none;
    }
  }


.footer{
    height: 70px;
    text-align: left;
    font:"Meiryo UI";
    font-size: 80%;
}
.main_title{
    background-color : #ff8000;
    color: #ffffff;
    font:"Meiryo UI";
    font-weight: bold;
    font-size: 200%;
}