@charset "utf-8";

/* メインナビのCSS
------------------------------------------------------------*/

#menu{
  width : 100%;
  background-color : #004080;
  height : auto;
  font-size : 10pt;
}

#menu ul{
  
  text-decoration : none;
  margin-right : auto;
  height : auto;
  margin-top : 0em;
}
	
#menu ul li{
  float : left;
  position : relative;
  text-align : center;
  padding-left : 2px;
  padding-right : 2px;
  border-left-width : 1px;
  border-left-style : solid;
  border-left-color : white;
  height : auto;
  padding-top : 10px;
  padding-bottom : 5px;
}

#menu ul li:last-child{
  border-right-width : 1px;
  border-right-style : solid;
  border-right-color : white;
}

#menu ul li a{
	display:block;
  color : white;
}

#menu ul li a:hover{
  text-decoration : none;
  color : silver;
}

#menu ul li:hover ul{
	display:block;
}
	
#menu li.current-menu-item{
  background-color : #004000;
}


/* メインナビここまで
------------------------------------------------------------*/

/* ハンバーガーナビのCSS
------------------------------------------------------------*/


#nav-drawer{
  margin-top : 10px;
  width : 40px;
  height : 30px;
    float : right;
    position : relative;
  }

/*チェックボックス等は非表示に*/
.nav-unshown{
  display:none;
}

/*アイコンのスペース*/
#nav-open{
  display: inline-block;
  width : 40px;
  height : 32px;
  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 : none 0% 0% / auto auto repeat scroll padding-box border-box #666666;
  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: 330px;/*最大幅（調整してください）*/
  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);
}

#h_menu{
  margin-top : 40px;
  margin-left : 20px;
}

#h_menu li{
  border-bottom-width : 1px;
  border-bottom-style : dotted;
  border-bottom-color : silver;
  padding-top : 10px;
}

/* ハンバーガーナビここまで
------------------------------------------------------------*/



/* サブナビのCSS
------------------------------------------------------------*/

.sub_navi{
  font-weight : normal;
  padding-top : 5px;
  padding-left : 5px;
  padding-right : 5px;
  padding-bottom : 5px;
}

.sub_navi h3{
  font-weight : normal;
  color : white;
  background-color : #414141;
  padding-top : 3px;
  padding-left : 10px;
  padding-right : 5px;
  padding-bottom : 2px;
  font-size : 12pt;
}

.sub_navi ul{
  font-weight : normal;
}

.sub_navi li{
  font-weight : normal;
  margin-top : 10px;
  border-bottom-width : 1px;
  border-bottom-style : dotted;
  border-bottom-color : gray;
  background-image : url(http://worker-service.com/wp/wp-content/uploads/2025/02/sankaku-line.png);
  background-repeat : no-repeat;
  background-position : left center;
  padding-left : 15px;
}

.sub_navi li a{
  font-weight : normal;
  color : #414141;
}

.sub_navi li a:hover{
  font-weight : normal;
  color : #cc0000;
}

/* サブナビ（スクロール付）のCSS
------------------------------------------------------------*/

.sub_navi_scroll{
  font-weight : normal;
  padding-top : 5px;
  padding-left : 5px;
  padding-right : 5px;
  padding-bottom : 5px;border-width : 1px;border-style : solid;border-color : silver;
  margin-top : 20px;
  overflow : scroll;
  overflow-x:hidden;
  height : 250px;
}

.sub_navi_scroll h3{
  font-weight : normal;
  color : white;
  background-color : #414141;
  padding-top : 3px;
  padding-left : 10px;
  padding-right : 5px;
  padding-bottom : 2px;
  font-size : 12pt;
}

.sub_navi_scroll ul{
  font-weight : normal;
}

.sub_navi_scroll li{
  font-weight : normal;
  margin-top : 10px;
  border-bottom-width : 1px;
  border-bottom-style : dotted;
  border-bottom-color : gray;
  margin-left : -10px;
}

.sub_navi_scroll li a{
  font-weight : normal;
  color : #414141;
}

.sub_navi_scroll li a:hover{
  font-weight : normal;
  color : #cc0000;
}


/* フッターナビのCSS
------------------------------------------------------------*/

footer h3{
  font-weight : normal;
  color : white;
  background-color : black;
  padding-left : 10px;
}

#footer_menu{
  font-weight : normal;
  padding-top : 5px;
  padding-left : 5px;
  padding-right : 5px;
  padding-bottom : 5px;
  margin-top : 20px;
}

#footer_menu ul{
  font-weight : normal;
}

#footer_menu li{
  font-weight : normal;
  margin-top : 5px;
  border-bottom-width : 1px;
  border-bottom-style : dotted;
  border-bottom-color : gray;
  font-size : 11pt;
  background-image : url(http://worker-service.com/wp/wp-content/uploads/2025/02/sankaku-line.png);
  background-repeat : no-repeat;
  background-position : left center;
  padding-left : 15px;
}

#footer_menu li a{
  font-weight : normal;
  color : #414141;
}

#footer_menu li a:hover{
  font-weight : normal;
  color : #cc0000;
}

#footer_menu_small li{
  font-weight : normal;
  margin-top : 5px;
  border-bottom-width : 1px;
  border-bottom-style : dotted;
  border-bottom-color : gray;
  margin-left : 0px;
  font-size : 10.5pt;
}

#footer_menu_small i{
  padding-right : 5px;
  padding-left : 5px;
  color : orange;
}

.ic_navi img{
  width : auto;
  height : 50px;
  text-align : center;
}

/* モバイル用
------------------------------------------------------------*/
@media all and (max-width: 1019px) {

/* メインナビのCSS
------------------------------------------------------------*/

#menu{
  margin-left : auto;
  margin-right : auto;
  border-bottom-width : 1px;
  border-bottom-style : none;
  padding-bottom : 5px;
  margin-bottom : 0px;
  float : left;
  position : relative;
  width : 100%;
}

#menu ul{
  font-weight : normal;
  border-right-width : 1px;
  border-right-style : solid;
  border-right-color : silver;
  border-left-width : 1px;
  border-left-style : solid;
  border-left-color : silver;
  }
	
#menu ul li{
  font-weight : normal;
  height : 30px;
  float : left;
  position : relative;
  margin-right : 5px;
  font-size : 10pt;
  text-align : center;
  padding-right : 10px;
  padding-top : 5px;
}

#menu li:last-child{
	border-right-style : none;
}

#menu ul li a{
	display:block;
}

#menu ul li a:hover{
  text-decoration : none;
  color : #cc0000;
}

#menu ul li:hover ul{
	display:block;
}
	
#menu li.current-menu-item{
  text-decoration : underline;
  border-bottom-width : 3px;
  border-bottom-style : none;
  border-bottom-color : #004080;
  
    font-weight : bold;
  }

i{
  padding-right : 5px;
  padding-left : 5px;
  color : gray;
}


/* メインナビここまで
------------------------------------------------------------*/

@charset "utf-8";


}






