/*-------------------------------------------*/
/*  Menu Divide                              */
/*-------------------------------------------*/
@media screen and (min-width: 1024px)
{
body
{
  width:1024px;
  margin:0 auto;
}

#Header
{
  width:1024px;
  margin-left:0px;
  height:auto;
/*  background-color:#009b9f; */
}

#Menu
{
  width:1024px;
/*  min-height:500px; */
  height:auto;
/*  background-color:#009b9f; */
  float:Left;
  margin-top:10px;
}

#Menu-Bar
{
  width:250px;
  height:25px;
  margin-left:auto;
  margin-right:auto;
  background-color:#00ffff;
}

#Main
{ 
  margin-left:10px;
  width:1024px;
/*  min-height:500px; */
  height:auto;
/*  background-color:#009b9f; */
  margin-top:10px;
}

#Footer
{ 
  margin-top:10px;
  width:980px;
  height:100px;
  background-color:#009b9f;
}

A
{
  text-decoration: none ;
}

/*-- Menu -------------------------------------------*/
UL.Menu-Bar
{
  position: relative;
/*display: Block;*/
  display: flex;
  background-color: DodgerBlue;
  justify-content: center ;
/*  width: 768px; */
  height: 70px;
  margin: 0;
  padding: 0;
  list-style-type: none;
/*    width: 100%; */
/*    max-width: 1000px; */
 }

UL.Menu-Bar > LI
{
  width: 15%;
  height: 65px;
/*  display: inline; */
  display: Block;
/*float: left;*/
  margin-top: 0px;
  margin-Left: 0px;
  margin-Right: 0px;
  padding: 3px 1px 2px 2px;
/*border: 1px Blue solid;*/
/*background-color: DodgerBlue;*/
  text-align: center;
/*    float: left;
/*    width: 150PX;  *//* グローバルナビ4つの場合 */
/*    height: 50px; */
/*    line-height: 50px; */
/*  background-color: #00ffff; */
}

UL.Menu-Bar > LI A
{
/*  display: block; */
    display: inline;
    color: #ffffff;
}

/*UL.Menu-Bar > LI:hover
//{
//    background: #072A24;
//    -webkit-transition: all .5s;
//    transition: all .5s;
//} */

UL.Menu-Bar > LI A:hover
{
/*  float: left; */
    color: #0000ff ; 
/*  background-color: #0000ff ;*/
}

/* floatクリア */
UL.Menu-Bar:before,
UL.Menu-Bar:after {
    content: " ";
    display: table;
}

UL.Menu-Bar:after {
    clear: both;
}
UL.Menu-Bar {
    *zoom: 1;
}

UL.Menu-Bar > LI.Menu-Pulldown
{
  float: left;
  position: relative;
}

LI.Menu-Pulldown UL.Sub-Menu
{
/*  position: relative; */
  float: left;
  position: absolute;
/*    top: 40px; */
    top: 10px ;
    width: 100%;
/*    width: 100px; */
/*    background: #ff0000; */
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

LI.Menu-Pulldown:hover UL.Sub-Menu
{
  float: left;
  position: relative;
  top: 10px;
  visibility: visible;
/*  background: #ff0000; */
  opacity: 1;
}

UL.Sub-Menu
{
/*    display: inline-block; */
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}

UL.Sub-Menu LI
{
  display: Block;
    border-top: 1px solid #0066ff;
    background-color: #0066ff;
}

UL.Sub-Menu LI A:hover
{
/*  float: left; */
  color: #ffffff;
/*  background: #00ffff; */
}

/* 下矢印 */
.init-bottom:after
{
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 0 0 15px;
    border-right: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/*-- Menu -------------------------------------------*/

}

