@charset "utf-8";
/*
  CSS のみのドロップダウンメニュー
  Copyright Rectus Inc, 2019
  https://www.rectus.co.jp/
 */
 
 .ib:link {
	color: #FFF;
	text-decoration: none;
}

 .ib:visited {
	text-decoration: none;
	color: #FFF;
}
 .ib:hover {
	text-decoration: underline;
	color: #FFF;
}
 .ib:active {
	text-decoration: none;
	color: #FFF;
}


 .sub:link {
	color: #FFF;
	text-decoration: none;
}

 .sub:visited {
	text-decoration: none;
	color: #FFF;
}
 .sub:hover {
	text-decoration: underline;
	color: #FFF;
}
 .sub:active {
	text-decoration: none;
	color: #FFF;
}


.companylogo{
	width:10%;
}

 

/* 基本CSS */

header {
	 z-index: 100000;
	 padding-bottom:20px;
	}

ul,
div,
img {
  margin: 0px;
  padding: 0px;
  list-style: none;
  font-weight: normal;
}

/* 本文をメニューの高さ分下げる */
#main {
  margin-top: 60px;
}

#navi {
  background-color: #003366;
  position: fixed;
  top: 0;
  left: 0;
  height: 60px;
  width: 100%;
}
/* チェックボックスを非表示 */
#navi input {
  display: none;
}
/* 左上ロゴ */
.menu-left {
  float: left;
  line-height: 60px;
}
.menu-left img {
  vertical-align: middle;
  margin-left: 10px;
  max-width:100%;
}
/* 上部メニュー */
.menu {
  float: right;
  margin-right: 10px;
}
.menu-parent {
  float: left;
  margin-right: 30px;
  line-height: 60px;
  font-size: 17px;
  font-weight: bold;
  white-space: nowrap;
}
/* パソコンでは V を非表示 */
.menu-parent .pd {
  display: none;
}
/* 上部メニューの最後の項目 */
.menu-parent:last-child {
  margin-right: 50px;
}

#menu-navibtn {
  display: none;
  cursor: pointer;
  cursor: hand;
}

@media screen and (max-width: 960px) {
  /* スマホの際に V を表示 */
  .menu-parent .pd {
    display: inline-block;
    width: 100%;
  }
    /* V の色変更 */
 .mywhite {
	 color:#F66;
	 size:2.0em;
	 }
 
  .menu {
    display: none;
  }
  .menu-parent {
    height: auto;
    width: 100%;
    padding: 0px 15px;
    border-bottom: 1px solid #DDD;
  }
  .menu-parent:first-child {
    border-top: 1px solid #DDD;
  }
  .menu-parent i {
    padding: 0px 6px;
  }
  /* メニューを移動させないため */
  #menu-navibtn:checked ~ #navi {
    position: fixed;
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100%;
  }
}

/* ドロップダウンメニュー */
.menu-parent {
  position: relative;
}
.menu-parent .menu-child {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  margin-left: -40px;
  width: auto;
  box-sizing: border-box;
  padding: 0px 20px;
  background-color: #036;
  border: 1px solid #036;
  opacity: 0.8;
}
/* パソコン用 */
@media screen and (min-width: 960px) {
  .menu-parent:hover .menu-child {
    visibility: visible;
  }
}
/* スマホ用 */
@media screen and (max-width: 960px) {
  /* ハンバーガーメニューがクリックされた時 */
  #menu-navibtn:checked ~ * .menu {
    display: block;
    opacity: 0.9;
  }
  #menu-navibtn:checked ~ * .menu-parent {
    max-height: inherit;
    overflow-y: visible;
  }
  #menu-navibtn:checked ~ * .menu-child {
    max-height: 0;
    overflow-y: hidden;
    visibility: hidden;
  }
  /* 子メニュー */
  .menu-parent .menu-child {
    border-top: 1px solid #DDD;
    border-left: 1px solid #FFF;
    border-right: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
    position: relative;
    padding: 0 20px;
    opacity: 1;
    top: 0;
    margin-left: auto;
    left: auto;
    width: auto;

  }
 
  .menu-parent > label:hover {
    cursor: pointer;
    cursor: hand;
  }
  
  .menu-parent .menu-child li:hover > a{
  background: #999;　/*------下メニュー選択時のメインメニュー色-------*/
  padding: 0px 20px;
  display: block;
  width: 100%;
  height: 100%;	
}
  .menu-parent .menu-child li a:hover{
  background: #006; /*------マウスで指定している色-------*/

}
  
  /* 子メニューがクリックされた時 */
  #navi input[type="checkbox"]:checked ~ .menu-child {
    max-height: inherit;
    overflow-y: visible;
    visibility: visible;
  }
  .angletoggle:before {
    content: "\f107";
  }
  #navi input[type="checkbox"]:checked ~ * .angletoggle:before {
    content: "\f106";
  }
}
/* 子メニュー */
.menu-child li {
  font-size: 0.9em;
  border-bottom: 1px solid #DDD;
  margin: 0px 0px;
}
/* 余分な最後の線を消去 */
.menu-child li:last-child {
  border: none;
}
.menu-child li i {
  margin-right: 3px;
}

/* ハンバーガー */
#navi #navibtn {
  display: none;
}

@media screen and (max-width: 960px) {
  #navi #navibtn {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
  }
  #navibtn span {
    display: block;
    width: 40px;
    height: 40px;
    background-color: #EEE;
	
  }


}

