/*=================*/
/* ナビゲーション設定 */
/*=================*/

* {margin:0px; padding:0px;}



/*----------------------------------------------------------------------------------------------------*/
/* ★★ for all ★★                                                                                  */
/*----------------------------------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------------------*/
/*        nav                                                                           */
/*--------------------------------------------------------------------------------------*/

#header{
    background-color: rgba(0, 130, 194, 0.22);
    position: fixed;
    width: 100%;
    height: 80px;
    
    top: 0;
    z-index: 10000;
}


/*　会社ロゴ　*/
.logo{
    float:left;
    margin-top:20px;
    margin-left:20px;
    z-index: 99999;
    width:150px;
}


/*チェックボックス等は非表示に*/
.nav-unshown {
    display:none;
}

#close {
    display:none;
}

#nav-drawer{
	/*width:1200px;*/
    text-align: right;
    margin: 0px auto;
	padding:30px 30px 10px 0px;
}


#nav-drawer li{
    display: inline-block;
    list-style-type: none;
    padding: 10px 0px 10px 30px;


}

#nav-drawer li a{
    text-decoration : none;
    color:#333333;
    font-size:15px;
    font-weight:600;

    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;

}

#nav-drawer li a:hover {
    color:#4097fc;
    border-bottom: solid 1px #4097fc;
}








/*----------------------------------------------------------------------------------------------------*/
/*  ★★ 1200px以下 ★★                                                                              */
/*----------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 1200px){ 












}
/*----------------------------------------------------------------------------------------------------*/
/*  ★★ 950px以下 ★★                                                                               */
/*----------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 950px){ 


/*--------------------------------------------------------------------------------------*/
/*        nav                                                                           */
/*--------------------------------------------------------------------------------------*/
    
/*チェックボックス等は非表示に*/
.nav-unshown {
    display:none;
}
    
#close {
    display:block;
}
  
#close input {
    font-size: 2.2em;
    background-color:#ffffff;
    background-image:none;
    border:none;
}    
    

/*アイコンのスペース*/
#nav-open {
    display: inline-block;
    width: 30px;
    height: 22px;
    vertical-align: middle;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 3px;/*線の太さ*/
    width: 25px;/*長さ*/
    border-radius: 3px;
    background: #555;
    display: block;
    content: '';
    cursor: pointer;
}
#nav-open span:before {
    bottom: -8px;
}
#nav-open span:after {
    bottom: -16px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
    display: none;/*はじめは隠しておく*/
    position: fixed;
    z-index: 99;
    top: 0;/*全体に広がるように*/
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: .3s ease-in-out;
}

/*中身*/
#nav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;/*最前面に*/
    width: 90%;/*右側に隙間を作る（閉じるカバーを表示）*/
    max-width: 300px;/*最大幅（調整してください）*/
    height: 100%;
    background: #fff;/*背景色*/
    transition: .3s ease-in-out;/*滑らかに表示*/
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);/*左に隠しておく*/
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
    display: block;/*カバーを表示*/
    opacity: .5;
}

#nav-input:checked ~ #nav-content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);/*中身を表示（右へスライド）*/
    box-shadow: 6px 0 25px rgba(0,0,0,.15);
}
    



#nav-drawer li{
    display: block;
    height:40px;
    text-align: left;
    
    list-style-type: none;
    padding: 0px 0px 0px 0px;
    border-bottom: solid 1px #a2b5c6;


}

#nav-drawer li a{
    display: block;
    padding: 10px 0px 0px 20px;
    height:30px;
    text-decoration : none;
    font-size:15px;
    font-weight:600;

    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;

}
    
#nav-drawer li a:hover {
    background-color: #7ea1bf;
    color:#ffffff;
    border-bottom:0 ;
}       
    
    








}
/*----------------------------------------------------------------------------------------------------*/
/*  ★★ 639px以下 ★★                                                                               */
/*----------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 639px){ 






}