/*-----------------------------

TOP専用CSS

-----------------------------*/
body {
    margin: 0px;
}
ul {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}
/* ヘッダー
-----------------------------*/
#header {
    padding: 10px 0px;
    background-color: #e6e6e6
}

#header .inner {
    margin: 0px 10px;
}

#h1Style {
    margin: 0px;
}

/* グローバルナビゲーションバー
-----------------------------*/
#gNav {
    background-color: #7fbfff;
}

#gNav ul {
    list-style: none;
    display: flex;
    margin: 0px auto;
}

#gNav li {
    width: 200px;
    padding: 10px 0px;
    color: #fff;
    text-align: center;
    justify-content: center;
    border-right: #fff 1px solid;
}

#gNav li:first-child {
    border-left: #fff 1px solid;
}

#gNav li a {
    padding: 10px 0px;
    text-decoration: none;
    color: #fff;
}

/* フッター
-----------------------------*/
#footer {
    background-color: #e6e6e6;
}

#footer .inner {
    width: 940px;
}

#footer ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

/* メインコンテンツエリア
-----------------------------*/
#contents {
    display: flex;
    /* widht+padding=940px */
    margin: 0 auto;
}

/* サイドバーと記事を横並び表示
-----------------------------*/
.contentsPos {
    width: calc(33.3% - 10px);
    flex-wrap: wrap;
}

/* 記事枠+サイドバー=940px */
/* 記事枠
-----------------------------*/
#main {
    margin: 0px auto;
    bottom: 40px;
    background-color: #FF9999;
}

/* サイドバー
-----------------------------*/
#sideBar {
    margin: 0px auto;
    width: 180px;
    bottom: 40px;
    background-color: #99FF99;
}

/*
-----------------------------*/
