/*
//----------------------------------------------------------------------------
//  ヘッダー全体用CSS
//----------------------------------------------------------------------------
*/
#header {
    padding:0px 0px;
    margin: 0px 0px;
    font-family: "MS PGothic", Arial, sans-serif;
    font-size: 11pt;
}

/*
//----------------------------------------------------------------------------
//  ヘッダー内での表示位置
//----------------------------------------------------------------------------
*/
@media (min-width:1367px) { 
    .headerWaku{
        width: 1200px;
        height: 85px;
        margin: 0px auto;
        border: 0px solid #000000;
        background:#ffffd9 url("../../imgs/body/bg.gif") repeat 0 0;
    }
}
@media (max-width:1366px) and (min-width:1024px){ 
    .headerWaku{
        width: 1200px;
        height: 85px;
        margin: 0px auto;
        border: 0px solid #00DD00;
        background:#ffffd9 url("../../imgs/body/bg.gif") repeat 0 0;
    }
}
@media (max-width:1023px) { 
    .headerWaku{
        width: 100%;
        height: 85px;
        margin: 0px auto;
        border: 0px solid #0000DD;
        background:#ffffd9 url("../../imgs/body/bg.gif") repeat 0 0;
    }
}

.headerMenu .sub:hover{
    /*
//-----------------------------------
//  背景色のグラデーション
//-----------------------------------
// (上)#ffc0cb->(下)#f990a3
    */
    /* Webkit系 */
    background: -webkit-gradient(linear, left top, left bottom, from(#498b29), to(#498b29));
    /* Mozilla系 */
    background: -moz-linear-gradient(top, #498b29,#498b29);
    /* IE10+ */
    background: -ms-linear-gradient(top, #498b29,#498b29);
}
