@charset "utf-8";

/* --------------------------------------------------
header__mainNavJump
ジャンプページ用に「header__cateNav」なしバージョン
　header__mainNavのtopを0pxに変更
-------------------------------------------------- */
body{
  padding-top: 86px;
}
#header{
  height: 86px;
}


#header__mainNavJump {
  position: absolute;
  top : 0px;
  width: 100%;
  vertical-align: top;
  background: #005bac;
  z-index: 3;
  min-width: 1024px;
  height: 86px;
}
#header__mainNavJump:after {
  content: "";
  display: block;
  clear: both;
}
#header__mainNavJump .innerWrap {
  width: 100%;
  min-width: 1024px;
  overflow-x: hidden;
  position: static;
}
#header__mainNavJump ul#gNav {
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  transition: all .2s ease;
  display: flex;
  justify-content: space-around;
}
#header__mainNavJump ul#gNav li a{
  display: block;
  padding: 0 5px 10px;
  font-size: 15px;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  transition: all .2s ease;
}
#header__mainNavJump ul#gNav li a:before {
  content: "";
  display: block;
  width: 100%;
  height: 45px;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  transition: all .2s ease;
}


/* ナビ追従時 */
#header.fixed {
  height: auto;
}
#header__mainNavJump.fixed {
  top : 0;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
}
#header__mainNavJump.fixed .header__logo{
  margin: 5px 3% 0 0;
}
#header__mainNavJump.fixed .header__logo .header__heading {
  width: 128px;
  height: 33px;
  background-size: 128px 33px;
}
#header__mainNavJump.fixed .header__codes{
  display: none;
}

#header__mainNavJump.fixed {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 50px;
}
#header__mainNavJump.fixed >.innerWrap {
  height: 50px;
}
#header__mainNavJump.fixed ul#gNav {
  padding-right: 160px;
}
#header__mainNavJump.fixed ul#gNav li a{
  padding-top: 15px;
  font-size: 13px;
}
#header__mainNavJump.fixed ul#gNav li a:before{
  display: none;
}


